-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
52 lines (41 loc) · 1.49 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
"""This file sets up the thoth-lab module."""
import os
from pathlib import Path
from setuptools import find_packages
from setuptools import setup
def get_install_requires():
"""Get thoth lab installation requirements."""
with open("requirements.txt", "r") as requirements_file:
# TODO: respect hashes in requirements.txt file
res = requirements_file.readlines()
return [req.split(" ", maxsplit=1)[0] for req in res if req]
def get_version():
"""Get thoth lab version."""
with open(os.path.join("thoth", "lab", "__init__.py")) as f:
content = f.readlines()
for line in content:
if line.startswith("__version__ ="):
# dirty, remove trailing and leading chars
return line.split(" = ")[1][1:-2]
raise ValueError("No version identifier found")
VERSION = get_version()
setup(
name="thoth-lab",
version=VERSION,
description="Code for Thoth experiments in Jupyter notebooks.",
long_description=Path("README.rst").read_text(),
long_description_content_type="text/x-rst",
author="Fridolin Pokorny",
author_email="[email protected]",
license="GPLv3+",
packages=["thoth.{subpackage}".format(subpackage=p) for p in find_packages("thoth/")],
include_package_data=True,
install_requires=get_install_requires(),
zip_safe=False,
command_options={
"build_sphinx": {
"version": ("setup.py", VERSION),
"release": ("setup.py", VERSION),
}
},
)