-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
48 lines (40 loc) · 1.34 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
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
"""
Python Distutils setup for for amqp. Build and install with
python setup.py install
2007-11-10 Barry Pederson <[email protected]>
"""
import sys
try:
from setuptools import setup
except:
from distutils.core import setup
try:
from distutils.command.build_py import build_py_2to3 as build_py
except ImportError:
# 2.x
from distutils.command.build_py import build_py
setup(name = "amqplib",
description = "AMQP Client Library",
version = "1.0.2",
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Intended Audience :: Developers',
],
license = "LGPL",
author = "Barry Pederson",
author_email = "[email protected]",
url = "https://github.com/barryp/py-amqplib",
packages = ['amqplib', 'amqplib.client_0_8'],
cmdclass = {'build_py':build_py},
)