-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 807 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from aioutils import __version__
with open('HISTORY.md') as f:
history = f.read()
setup(
name='aioutils',
version=__version__,
description='Python3 Asyncio Utils',
long_description= history,
author='Jingchao Hu',
author_email='[email protected]',
url='https://github.com/observerss/aioutils',
packages=['aioutils'],
license='Apache 2.0',
zip_safe=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4'
],
)