forked from majek/puka
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (28 loc) · 933 Bytes
/
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
import os
import sys
import setuptools
# Some filesystems don't support hard links. Use the power of
# monkeypatching to overcome the problem.
import os, shutil
os.link = shutil.copy
if not os.path.exists("puka/spec.py"):
print >> sys.stderr, "Run 'make' first."
sys.exit(1)
setuptools.setup(name='puka',
version=file('VERSION').read().strip(),
description='Puka - the opinionated RabbitMQ client',
author='Marek Majkowski',
author_email='[email protected]',
url='http://github.com/majek/puka#readme',
packages=['puka'],
platforms=['any'],
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe = True,
)