-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathsetup.py
37 lines (32 loc) · 1.1 KB
/
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
31
32
33
34
35
36
37
from __future__ import absolute_import
from setuptools import find_packages, setup
with open('VERSION') as version_fd:
version = version_fd.read().strip()
with open('README.rst', 'r') as readme_fd:
long_description = readme_fd.read()
setup(
name='kinesis-python',
version=version,
description='Low level, multiprocessing based AWS Kinesis producer & consumer library',
long_description=long_description,
url='https://github.com/NerdWalletOSS/kinesis-python',
install_requires=[
'boto3>=1.4.4,<2.0',
'offspring>=0.0.3,<1.0',
'six>=1.11.0,<2.0',
],
packages=find_packages('src'),
package_dir={'': 'src'},
author='Evan Borgstrom',
author_email='[email protected]',
license='Apache License Version 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Software Development :: Libraries'
]
)