-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
45 lines (43 loc) · 1.29 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
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
setup(
name='kinesis_producer',
version='0.3.dev0',
description='Producer for AWS Kinesis Stream with record aggregation',
long_description=open('README.rst').read(),
keywords='kinesis kafka producer client',
author='Pior Bastida',
author_email='[email protected]',
url='https://github.com/ludia/kinesis_producer',
license='MIT',
packages=find_packages(exclude=['tests']),
zip_safe=False,
install_requires=[
'six',
'boto3',
],
extras_require={
'test': [
'tox',
'pytest',
'pytest-cov',
'moto',
'mock',
],
'dev': [
'zest.releaser[recommended]',
'pylama',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Internet',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy',
],
)