-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
55 lines (44 loc) · 1.73 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
import os
import re
from setuptools import setup, find_packages
def resolve_requirements(file):
requirements = []
with open(file) as f:
req = f.read().splitlines()
for r in req:
if r.startswith("-r"):
requirements += resolve_requirements(os.path.join(os.path.dirname(file), r.split(" ")[1]))
else:
requirements.append(r)
return requirements
def read_file(file):
with open(file) as f:
content = f.read()
return content
def find_version(file):
content = read_file(file)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
required = resolve_requirements(os.path.join(os.path.dirname(__file__), 'requirements_full.txt'))
readme = read_file(os.path.join(os.path.dirname(__file__), "Readme.md"))
#license = read_file(os.path.join(os.path.dirname(__file__), "LICENSE"))
version = find_version(os.path.join(os.path.dirname(__file__), "trixi", "__init__.py"))
setup(name='trixi',
version=version,
description='Manage your machine learning experiments with trixi - modular, reproducible, high fashion',
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/MIC-DKFZ/trixi',
author='Medical Image Computing Group, DKFZ',
author_email='[email protected]',
license="MIT",
packages=find_packages(),
install_requires=required,
zip_safe=True,
entry_points={
'console_scripts': ['trixi-browser=trixi.experiment_browser.browser:start_browser'],
},
include_package_data=True
)