forked from seatme/nucleon.amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.14 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
import sys
from setuptools import setup, find_packages
import os.path
thisdir = os.path.dirname(__file__)
generated_files = [
os.path.join(thisdir, 'nucleon', 'amqp', 'spec.py'),
os.path.join(thisdir, 'nucleon', 'amqp', 'spec_exceptions.py')
]
if any(not os.path.exists(f) for f in generated_files):
sys.exit('Please run `make` first.')
setup(
name='nucleon.amqp',
version='0.2.1sm3',
description='A gevent-based AMQP library with fast, synchronous API',
author='Daniel Pope',
author_email='[email protected]',
url='https://bitbucket.org/kriswehner/nucleon.amqp',
packages=find_packages(),
namespace_packages=['nucleon'],
install_requires=[
'gevent>=1.0b4',
],
dependency_links=[
'http://code.google.com/p/gevent/downloads/list',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Programming Language :: Python',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)