-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
27 lines (23 loc) · 938 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
from setuptools import find_packages, setup
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='text_gen',
packages=find_packages(include=['text_gen']),
version = '1.8.0',
description='build a text generation model',
long_description_content_type='text/markdown',
long_description = README,
author='Emeka Boris Ama',
author_email = '[email protected]',
license='MIT',
include_package_data=True,
url='https://github.com/Emekaborisama/textgen',
#install_requires=[],
setup_requires=['pytest-runner'],
tests_require=['pytest==4.4.1'],
test_suite='tests',
)
install_requires = ['pandas', 'tensorflow', 'torchvision', 'numpy', 'matplotlib', 'keras', 'setuptools>=47.1.1', 'parameter-sherpa', 'deepsegment', 'tensorflow-serving-api==1.12.0']
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)