-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 939 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
import codecs
from setuptools import setup, find_packages
with codecs.open('README.md', 'r', 'utf8') as reader:
long_description = reader.read()
setup(
name='deco',
version='0.0.3',
packages=find_packages(),
url='https://github.com/mfojtak/deco',
license='MIT',
author='mfojtak',
author_email='[email protected]',
description='deco',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=["tensorflow", "numpy", "keras-bert", "pyarrow",
"quart", "faiss-cpu", "tensorflow-text", "sentencepiece"],
scripts=['export_to_serving.py', 'server.py'],
classifiers=(
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
)