-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 950 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
29
30
31
from setuptools import setup, find_packages
setup(
name='pomsets-core',
version='1.0.9',
packages=find_packages(
'src',exclude=["*.test", "*.test.*", "test.*", "test",
"*.utils", "*.utils.*", "utils.*", "utils",]),
package_dir={'':'src'},
test_suite="test",
tests_require=[
'euca2ools>=1.1'
],
install_requires = [
'cloudpool>=0.1.3',
'pypatterns>=0.1.3',
'Reaction>=0.2.2',
'simplejson>=2.0.9'
],
# metadata for upload to PyPI
author = "michael j pan",
author_email = "[email protected]",
description = "workflow management for the cloud",
license = "GPL (personal use) or commercial",
keywords = "workflow cloud hadoop parameter sweep",
url = "http://pomsets.org",
long_description = "pomsets-core implements the core functionality for workflow management in the cloud.",
platforms = ["All"]
)