-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (27 loc) · 836 Bytes
/
setup.py
File metadata and controls
34 lines (27 loc) · 836 Bytes
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
#!/usr/bin/env python
import platform
from setuptools import setup, find_packages
python_version = platform.python_version().rsplit(".", 1)[0]
install_requires = [
"boto3>=1.4.0",
"six>=1.9.0",
]
if python_version < "3.0":
install_requires.append("simplejson>=3.0.0")
if python_version < "3.5":
install_requires.append("typing>=3.6.1")
setup(
name="pynesis",
version="1.1.1",
author="Matias Surdi",
author_email="matias@surdi.net",
keywords=["kinesis", "aws"],
url="https://github.com/ticketea/pynesis",
description="Python high level client for Kinesis streams",
long_description="Kinesis based python eventbus",
packages=find_packages(exclude=['tests']),
include_package_data=True,
platforms="any",
install_requires=install_requires,
tests_require=["tox"],
)