-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
51 lines (48 loc) · 1.69 KB
/
setup.cfg
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
[metadata]
name = lexpy
version = 1.1.0
description = Python package for lexicon
long_description = file: README.md
long_description_content_type = text/markdown
keywords = trie, suffix-trees, lexicon, directed-acyclic-word-graph, dawg
url = https://github.com/aosingh/lexpy
license = GNU GPLv3
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'
author = Abhishek Singh
author_email = [email protected]
maintainer = Abhishek Singh
maintainer_email = [email protected]
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
[options]
zip_safe = False
packages = find:
package_dir =
lexpy=lexpy
include_package_data = True
python_requires = >=3.7
[options.packages.find]
where = lexpy
exclude = tests