-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.07 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1.07 KB
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
from setuptools import setup, find_packages
with open('VERSION') as version_fd:
version = version_fd.read().strip()
with open('README.md', 'r') as readme_fd:
long_description = readme_fd.read()
setup(
name='async-kinesis-client',
version=version,
description='Asynchronous Python client for AWS Kinesis',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/whale2/async-kinesis-client',
install_requires=[
'aioboto3>=6.0.1',
'multidict>=4.5.2'
],
packages=find_packages('src'),
package_dir={'': 'src'},
author='Nikita Makeev',
author_email='whale2.box@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Internet',
'Topic :: Software Development :: Libraries'
]
)