forked from IDSIA/sacred
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·58 lines (50 loc) · 1.57 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
57
58
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup
classifiers = """
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Utilities
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Software Development :: Libraries :: Python Modules
License :: OSI Approved :: MIT License
"""
try:
from sacred import __about__
about = __about__.__dict__
except ImportError:
# installing - dependencies are not there yet
# Manually extract the __about__
about = dict()
exec(open("sacred/__about__.py").read(), about)
setup(
name='sacred',
version=about['__version__'],
author=about['__author__'],
author_email=about['__author_email__'],
url=about['__url__'],
packages=['sacred', 'sacred.observers', 'sacred.config', 'sacred.stflow'],
scripts=[],
install_requires=[
'docopt>=0.3, <1.0',
'jsonpickle>=0.7.2, <1.0',
'munch>=2.0.2, <3.0',
'wrapt>=1.0, <2.0',
'py-cpuinfo>=4.0',
'colorama>=0.4',
'packaging>=18.0'
],
tests_require=[
'mock>=0.8, <3.0',
'pytest>=3.0.1, <4.0'],
classifiers=list(filter(None, classifiers.split('\n'))),
description='Facilitates automated and reproducible experimental research',
long_description=open('README.rst').read()
)