-
Notifications
You must be signed in to change notification settings - Fork 187
/
setup.py
30 lines (28 loc) · 1015 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
# encoding: utf-8
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='service_streamer',
version="0.1.2",
description='Boosting your web service of deep learning applications',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: OS Independent',
],
keywords='service_streamer',
url='https://github.com/shannonAI',
packages=find_packages(exclude=["example"]),
install_requires=[
'redis',
'tqdm',
],
include_package_data=True,
python_requires='>=3.5',
zip_safe=False
)