-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
39 lines (35 loc) · 1.15 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
from __future__ import print_function
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("Run 'make' first.", file=sys.stderr)
sys.exit(1)
setuptools.setup(
name='puka',
version=open('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',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
zip_safe=True,
install_requires=['future'],
)