forked from benjamin-hodgson/asynqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.13 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
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='asynqp',
version='0.3',
author="Benjamin Hodgson",
author_email="[email protected]",
url="https://github.com/benjamin-hodgson/asynqp",
description="An AMQP (aka RabbitMQ) client library for asyncio.",
package_dir={'': 'src'},
packages=find_packages('src'),
package_data={'asynqp': ['amqp0-9-1.xml']},
install_requires=["setuptools"],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.4",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Telecommunications Industry",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking"
]
)