-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 919 Bytes
/
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
import setuptools
setuptools.setup(
name="sdem",
version="0.2.2",
author="O Hamelijnck",
author_email="ohamelijnck@gmail.com",
description="Sacred Experiment Manager",
long_description="",
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
scripts=["cli/sdem"],
install_requires = [
"typer",
"loguru",
"slurmjobs==0.2.0",
"sacred@git+https://github.com/IDSIA/sacred.git@e16b15725d88227daa8315b12217d856cca4184d#egg=sacred",
"seml",
"scikit-learn",
"tabulate",
"jupyter",
"black",
"rich",
"dvc",
"pandas ",
"numpy",
"PyYAML"
]
)