-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
36 lines (31 loc) · 1.12 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
import setuptools
github_url = 'https://github.com/gistart/asyncio-pool'
readme_lines = []
with open('README.md') as fd:
readme_lines = filter(None, fd.read().splitlines())
readme_lines = list(readme_lines)[:3]
readme_lines.append('Read more at [github page](%s).' % github_url)
readme = '\n\n'.join(readme_lines)
setuptools.setup(
name='asyncio_pool',
version='0.6.0',
author='gistart',
author_email='[email protected]',
description='Pool of asyncio coroutines with familiar interface',
long_description=readme,
long_description_content_type='text/markdown',
url=github_url,
license='MIT',
packages=['asyncio_pool'],
# install_requires=['asyncio'], # where " openstack/deb-python-trollius asyncio" comes from???
python_requires='>=3.5',
classifiers=(
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
)
)