-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
52 lines (42 loc) · 1.5 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
import os
import re
from setuptools import find_packages, setup
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)
requirements = resolve_requirements(os.path.join(os.path.dirname(__file__),
'requirements.txt'))
readme = read_file(os.path.join(os.path.dirname(__file__), "README.md"))
mscl_version = find_version(os.path.join(os.path.dirname(__file__), "mscl",
"__init__.py"))
setup(
name='mscl',
author='Michael Baumgartner, Christoph Haarburger',
version=mscl_version,
packages=find_packages(),
url='https://github.com/haarburger/multi-scale-curriculum',
test_suite="unittest",
long_description=readme,
long_description_content_type='text/markdown',
install_requires=requirements,
tests_require=["coverage"],
python_requires=">=3.6",
)