-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
57 lines (46 loc) · 1.46 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
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.txt")
)
readme = read_file(os.path.join(os.path.dirname(__file__), "README.md"))
version = find_version(
os.path.join(os.path.dirname(__file__), "gliomagrowth", "__init__.py")
)
setup(
name="gliomagrowth",
version=version,
description="Fully learned glioma/tumor growth models.",
long_description=readme,
long_description_content_type="text/markdown",
author="Jens Petersen",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
install_requires=required,
zip_safe=True,
include_package_data=True,
)