forked from llnl/maestrowf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 1.05 KB
/
setup.py
File metadata and controls
35 lines (34 loc) · 1.05 KB
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
from setuptools import setup, find_packages
setup(name='maestrowf',
description='A tool and library for specifying and conducting general '
'workflows.',
version='1.1.3dev',
author='Francesco Di Natale',
author_email='[email protected]',
url='https://github.com/llnl/maestrowf',
license='MIT License',
packages=find_packages(),
entry_points={
'console_scripts': [
'maestro = maestrowf.maestro:main',
'conductor = maestrowf.conductor:main',
]
},
install_requires=[
'PyYAML',
'six',
'enum34',
"filelock",
"tabulate",
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)