forked from sbuschjaeger/experiment_runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 699 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"]
}
)