forked from agoragames/haigha
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (33 loc) · 1.28 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
37
import haigha
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requirements = map(str.strip, open('requirements.txt').readlines())
setup(
name='haigha',
version=haigha.__version__,
author='Vitaly Babiy, Aaron Westendorf',
author_email="[email protected], [email protected]",
packages = ['haigha', 'haigha.frames', 'haigha.classes', 'haigha.transports', 'haigha.connections'],
install_requires = requirements,
url='https://github.com/agoragames/haigha',
license="LICENSE.txt",
description='Synchronous and asynchronous AMQP client library',
long_description=open('README.rst').read(),
keywords=['python', 'amqp', 'event', 'rabbitmq'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Topic :: Communications",
"Topic :: System :: Distributed Computing",
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
#'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries'
]
)