This repository has been archived by the owner on Nov 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·56 lines (54 loc) · 2.23 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
#!/usr/bin/env python3
from distutils.core import setup
setup(
name='cc-server',
version='0.12.2',
summary='Curious Containers is an application management service that is able to execute thousands of '
'short-lived applications in a distributed cluster by employing Docker container engines.',
description='Curious Containers is an application management service that is able to execute thousands of '
'short-lived applications in a distributed cluster by employing Docker container engines. In this '
'context applications are atomic entities taking files and parameters as input and producing new files '
'as output. They are short-lived in a sense that they calculate something and terminate as soon as all '
'results have been produced. Curious Containers supports scientific use cases like biomedical analysis '
'and reproducible research by providing standardized methods for packaging applications and executing '
'them in a compute environment. Therefore application dependencies are added to a compatible Docker '
'container image, including all necessary scripts, binaries and configurations.',
author='Christoph Jansen, Michael Witt, Maximilian Beier',
author_email='[email protected]',
url='https://github.com/curious-containers/cc-server',
packages=[
'cc_server',
'cc_server.commons',
'cc_server.services',
'cc_server.services.log',
'cc_server.services.master',
'cc_server.services.master.scheduling_strategies',
'cc_server.services.web',
'cc_server.services.files'
],
entry_points={
'console_scripts': ['cc-server=cc_server.__main__:main']
},
scripts=[
'bin/cc-create-user',
'bin/cc-create-user-non-interactive',
'bin/cc-drop-db',
'bin/cc-create-systemd-unit-file'
],
license='Apache-2.0',
platforms=['any'],
install_requires=[
'toml',
'jsonschema',
'zmq',
'requests',
'pymongo',
'docker',
'flask',
'werkzeug',
'gunicorn',
'cryptography',
'gevent',
'chardet'
]
)