-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
68 lines (59 loc) · 2.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from os import path
from setuptools import setup, find_packages
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
DISTNAME = 'lexpy'
AUTHOR = 'Abhishek Singh'
MAINTAINER = 'Abhishek Singh'
MAINTAINER_EMAIL = '[email protected]'
DESCRIPTION = 'Python package for lexicon'
LICENSE = 'GNU GPLv3'
URL = 'https://github.com/aosingh/lexpy'
VERSION = '1.1.0'
PACKAGES = ['lexpy']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Text Processing :: Linguistic',
'Topic :: Text Processing :: Indexing',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS'
]
keywords = 'trie suffix-trees lexicon directed-acyclic-word-graph dawg'
project_urls = {"Documentation": "https://github.com/aosingh/lexpy",
"Source": "https://github.com/aosingh/lexpy",
"Bug Tracker": "https://github.com/aosingh/lexpy/issues",
"CI": "https://github.com/aosingh/lexpy/actions",
"Release Notes": "https://github.com/aosingh/lexpy/releases",
"License": "https://github.com/aosingh/lexpy/blob/main/LICENSE"}
setup(
name=DISTNAME,
long_description=long_description,
long_description_content_type='text/markdown',
author=AUTHOR,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
url=URL,
project_urls=project_urls,
version=VERSION,
packages=find_packages(exclude=("tests",)),
package_dir={'lexpy': 'lexpy'},
include_package_data=True,
classifiers=classifiers,
keywords=keywords.split(),
)