forked from workflux/workflUX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·63 lines (61 loc) · 2.41 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
58
59
60
61
62
63
#!/usr/bin/env python3
import os
from setuptools import find_packages, setup
SETUP_DIR = os.path.dirname(__file__)
README = os.path.join(SETUP_DIR, 'README.rst')
setup(
name='cwlab',
version='0.1.3',
description='A platform-agnostic, cloud-ready framework for simplified deployment of the Common Workflow Language using a graphical web interface',
long_description=open(README).read(),
long_description_content_type="text/x-rst",
url='https://github.com/CompEpigen/CWLab',
download_url="https://github.com/CompEpigen/CWLab",
author='Kersten Henrik Breuer',
author_email='[email protected]',
license='Apache 2.0',
include_package_data=True,
packages=find_packages(exclude=("scratchs")),
entry_points={
"console_scripts": [
"cwlab=cwlab.__main__:main",
]
},
install_requires=['flask',
'flask_wtf',
'flask-login',
'flask-sqlalchemy',
'pyexcel',
'pyexcel-io',
'pyexcel-ods',
'pyexcel-ods3',
'pyexcel-xls',
'pyexcel-xlsx',
'PyYAML',
'pexpect',
'cwltool==1.0.20181201184214',
'psutil'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: OS Independent',
'Operating System :: Microsoft :: Windows',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: Microsoft :: Windows :: Windows 8.1',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: System :: Distributed Computing',
]
)