forked from FNNDSC/pfcon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·27 lines (23 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
from os import path
from setuptools import find_packages, setup
with open(path.join(path.dirname(path.abspath(__file__)), 'README.rst')) as f:
readme = f.read()
setup(
name = 'pfcon',
version = '3.4.0',
description = '(Python) Process and File Controller',
long_description = readme,
author = 'FNNDSC Developers',
author_email = '[email protected]',
url = 'https://github.com/FNNDSC/pfcon',
packages = find_packages(),
install_requires = ['pfmisc', 'Flask', 'Flask_RESTful', 'environs',
'requests', 'keystoneauth1', 'python-keystoneclient',
'python-swiftclient'],
test_suite = 'nose.collector',
tests_require = ['nose'],
scripts = ['bin/pfcon'],
license = 'MIT',
zip_safe = False,
python_requires = '>=3.6'
)