-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·73 lines (61 loc) · 1.68 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import kcpy
from setuptools import setup, find_packages
NAME = 'kcpy'
from pathlib import Path
README = Path('README.md')
# -*- Classifiers -*-
classes = """
Development Status :: 3 - Alpha
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Operating System :: POSIX
Operating System :: Microsoft :: Windows
Operating System :: MacOS :: MacOS X
Operating System :: Unix
Environment :: No Input/Output (Daemon)
Intended Audience :: Developers
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
# -*- Long Description -*-
if README.exists():
long_description = README.read_text(encoding='utf-8')
else:
long_description = 'See http://pypi.org/project/{}'.format(NAME)
setup(
name='kcpy',
version=kcpy.__version__,
description='A kinesis consumer is purely written in python.',
author='Hengfeng Li',
author_email='[email protected]',
license='MIT License',
packages=find_packages(),
package_dir={'kcpy': 'kcpy'},
include_package_data=True,
python_requires='>=3.6.0',
classifiers=classifiers,
keywords=[
'kinesis',
'consumer',
'stream',
'processing',
'queue',
],
scripts=[],
install_requires=[
'boto3',
],
dependency_links=[],
tests_require=[
'pytest',
'moto',
'faker',
],
zip_safe=False,
long_description=long_description,
long_description_content_type="text/markdown",
)