forked from IDSIA/sacred
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·49 lines (41 loc) · 1.32 KB
/
setup.py
File metadata and controls
executable file
·49 lines (41 loc) · 1.32 KB
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
#!/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.3
Programming Language :: Python :: 3.4
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'],
scripts=[],
install_requires=[
'docopt', 'six', 'wrapt'
],
tests_require=['mock', 'mongomock', 'pytest'],
classifiers=list(filter(None, classifiers.split('\n'))),
description='Facilitates automated and reproducible experimental research',
long_description=open('README.rst').read()
)