-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
40 lines (35 loc) · 1.05 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
import os
from setuptools import setup
import versioneer
_here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(_here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="incense",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Interactively retrieve data from sacred experiments.",
long_description=long_description,
author="Rüdiger Busche",
author_email="rbusche@uos.de",
url="https://github.com/JarnoRFB/incense",
license="MIT",
packages=["incense"],
python_requires=">=3.5",
install_requires=[
"sacred>=0.8",
"jsonpickle>=0.7.2",
"matplotlib>=3",
"pandas>=0.23",
"jupyterlab>=1.0",
"pymongo>=3.7",
"pyrsistent>=0.15.2",
],
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)