forked from globalwordnet/gwadoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (38 loc) · 1.11 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
#!/usr/bin/env python3
from setuptools import setup
setup(
name='gwadoc',
version='0.1.0',
description=('Documentation for sense relations '
'for the Open Multilingual Wordnet'),
#long_description=long_description,
url='https://github.com/globalwordnet/gwadoc',
author='GWA Documentation Working Group',
author_email='[email protected]',
license='CC-BY 4.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Documentation',
],
keywords='wordnet linguistics',
packages=[
'gwadoc'
],
install_requires=[
],
extras_require={
"build": [
'jinja2',
'docutils',
'pygments'
]
}
)