-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 826 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
from setuptools import setup, find_packages
import sys
with open('README.md', 'r') as fh:
long_description = fh.read()
if sys.version_info >= (2, 7) and sys.version_info < (3,):
REQUIRES = [
"redis>=2.10.6", "confluent-kafka==1.7.0", "psutil>=5.8.0"
]
else:
REQUIRES = [
"redis>=2.10.6", "confluent-kafka>=1.7.0", "psutil>=5.8.0"
]
setup(
name="streamback",
version="0.5.0",
author='Stefanos Liakis',
author_email='stliakis@gmail.com',
description="Two way streams for your microservices",
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=REQUIRES,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)