forked from FNNDSC/pfioh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 993 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
from setuptools import setup
# 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.")
def readme():
with open('README.rst') as f:
return f.read()
setup(
name = 'pfioh',
version = '2.2.0.6',
description = 'Path-and-File-IO-over-HTTP',
long_description = readme(),
author = 'Rudolph Pienaar',
author_email = '[email protected]',
url = 'https://github.com/FNNDSC/pfioh',
packages = ['pfioh'],
install_requires = ['pycurl', 'pyzmq', 'webob', 'pudb', 'psutil', 'keystoneauth1', 'python-keystoneclient', 'python-swiftclient', 'pfmisc'],
test_suite = 'nose.collector',
tests_require = ['nose'],
scripts = ['bin/pfioh'],
license = 'MIT',
zip_safe = False
)