-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1.02 KB
/
setup.py
File metadata and controls
30 lines (27 loc) · 1.02 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
from setuptools import setup
with open('README.rst') as file:
long_description = file.read()
setup(
name="asyncio_dispatch",
version="1.1.0",
packages=['asyncio_dispatch'],
package_data={
# Include readme and license
'': ['LICENSE.txt', 'README.rst'],
},
# Metadata
author="Mike Lenzen",
author_email="lenzenmi@gmail.com",
description="asyncio_dispatch is a is a signal dispatcher for the asyncio event loop found in Python versions 3.4 and up.",
long_description=long_description,
keywords="asyncio_dispatch asyncio dispatch signal event",
url="https://github.com/lenzenmi/asyncio_dispatch/",
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
'Development Status :: 4 - Beta'
]
)