forked from roman-kutlak/nlglib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.42 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
from setuptools import setup, find_packages
def long_description():
with open('README.rst', 'r') as f:
return f.read()
setup(
name='nlglib',
version='0.2.1',
description='Natural Language Generation library for Python',
long_description=long_description(),
author='Roman Kutlak',
author_email='kutlak.roman@gmail.com',
url='https://github.com/roman-kutlak/nlglib',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries',
'Topic :: Text Processing :: Linguistic',
],
packages=find_packages(exclude=['docs', 'examples/*', 'tests/*']),
keywords=['natural language generation', 'NLG', 'text generation', 'nlglib', 'library'],
install_requires=['nltk'],
extras_require={'dev': [
'coverage',
'nose',
'pycodestyle',
'rednose',
]},
test_suite='nose.collector',
include_package_data=True,
package_dir={'nlglib': 'nlglib'},
package_data={'nlglib': ['res/*']},
zip_safe=True,
)