-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
62 lines (46 loc) · 2.14 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
from setuptools import setup, find_packages
# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setup(
# $ pip install sampleproject
name='rowordnet', # Required
version='1.1.0', # Required
description='Python API for the Romanian WordNet', # Required
long_description=long_description,
long_description_content_type="text/markdown",
maintainer = "Stefan Daniel Dumitrescu and Andrei Marius Avram",
maintainer_email = "[email protected], [email protected]",
author = "Stefan Daniel Dumitrescu and Andrei Marius Avram",
author_email = "[email protected], [email protected]",
url='https://github.com/dumitrescustefan/RoWordNet', # Optional
classifiers=[ # Optional
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3'
],
keywords='romanian wordnet rowordnet rown python', # Optional
#packages=find_packages(exclude=['jupyter']), # Required
packages=find_packages("."), # Required
install_requires=['networkx','lxml'], # Optional
zip_safe=False,
package_data={ # Optional
'rowordnet': ['rowordnet.pickle'],
}
)