forked from FNNDSC/pman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·26 lines (22 loc) · 898 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
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 = 'pman',
version = '3.2.0',
description = 'Process Manager',
long_description = readme,
author = 'FNNDSC Developers',
author_email = '[email protected]',
url = 'https://github.com/FNNDSC/pman',
packages = find_packages(),
install_requires = ['pudb', 'pfmisc', 'docker', 'openshift', 'kubernetes',
'python-keystoneclient', 'Flask', 'Flask_RESTful', 'environs'],
test_suite = 'nose.collector',
tests_require = ['nose'],
scripts = ['bin/pman'],
license = 'MIT',
zip_safe = False,
python_requires = '>=3.6'
)