-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
28 lines (24 loc) · 937 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
import sys
# Make sure we are running python3.5+
if 10 * sys.version_info[0] + sys.version_info[1] < 35:
sys.exit("Sorry, only Python 3.5+ is supported.")
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name = 'pfurl',
version = '2.3.0.2',
description = '(Python) Path-File URL comms',
long_description = readme(),
author = 'Rudolph Pienaar',
author_email = '[email protected]',
url = 'https://github.com/FNNDSC/pfurl',
packages = ['pfurl'],
install_requires = ['pycurl', 'pyzmq', 'webob', 'pudb', 'psutil', 'pyyaml', 'pfmisc'],
test_suite = 'nose.collector',
tests_require = ['nose'],
scripts = ['bin/pfurl'],
license = 'MIT',
zip_safe = False
)