-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 735 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name='experiment_runner',
version='0.1',
description='Simple wrapper to run multiple experiments via Ray / Multiprocessing on different machines',
url='https://github.com/sbuschjaeger/experiment_runner/',
author=u'Sebastian Buschjäger, Lukas Pfahler',
author_email='{sebastian.buschjaeger, lukas.pfahler}@tu-dortmund.de',
license='MIT',
packages=['experiment_runner'],
zip_safe=False,
setup_requires=[
"numpy",
"tqdm"
],
extras_require={
"ray": ["ray"],
"malocher": ["malocher @ git+https://github.com/Whadup/malocher@main#egg=malocher"],
"pymongo": ["pymongo"]
}
)