-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (38 loc) · 983 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
from setuptools import find_packages
setup(
name='text-generator',
version='0.0.0',
packages=find_packages(exclude=["*_tests"]),
license='MIT license',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
entry_points = {
'console_scripts': [
'text_generator = text_generator.cli:cli',
],
},
install_requires = [
'ariadne',
'click',
'flask',
'torch',
'transformers'
],
extras_require={
'dev': [
'pylint',
'coverage',
'twine'
]
},
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Environment :: Console"
]
)