-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·54 lines (46 loc) · 1.42 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
#!/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
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',
'jsonpickle',
# 'munch',
# 'wrapt==1.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()
)