forked from Mizzou-CBMI/COSMOS2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (51 loc) · 1.53 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from distutils.core import setup
import os
import re
from setuptools import find_packages
with open(os.path.join(os.path.dirname(__file__), 'cosmos/VERSION'), 'r') as fh:
__version__ = fh.read().strip()
def find_all(path, reg_expr, inverse=False, remove_prefix=False):
if not path.endswith('/'):
path = path + '/'
for root, dirnames, filenames in os.walk(path):
for filename in filenames:
match = re.search(reg_expr, filename) is not None
if inverse:
match = not match
if match:
out = os.path.join(root, filename)
if remove_prefix:
out = out.replace(path, '')
yield out
setup(
name="cosmos-wfm",
version=__version__,
description="Workflow Management System",
url="https://cosmos.hms.harvard.edu/",
author="Erik Gafni",
author_email="[email protected]",
maintainer="Erik Gafni",
maintainer_email="[email protected]",
license="GPLv3",
install_requires=[
'gntp',
"psprofile",
"decorator",
"Flask",
'blinker',
"sqlalchemy",
'Flask-Admin',
'Flask-SQLAlchemy',
'networkx',
'configparser',
"enum34",
"Flask-Failsafe",
"six",
"SQLAlchemy-Utils",
"pyparsing==1.5.7",
"recordtype"
],
packages=find_packages(),
include_package_data=True,
package_data={'cosmos': list(find_all('cosmos/', '.py|.pyc$', inverse=True, remove_prefix=True))}
)