-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (23 loc) · 923 Bytes
/
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
import os
import re
from setuptools import setup
if __name__ == "__main__":
try:
PKG = "cvar_sensing"
# Configure version.
def find_version() -> str:
def read(fname: str) -> str:
return open(os.path.realpath(os.path.join(os.path.dirname(__file__), fname)), encoding="utf8").read()
version_file = read(f"src/{PKG}/version.py").split("\n")[0]
version_re = r"__version__ = \"(?P<version>.+)\""
version_raw = re.match(version_re, version_file)
if version_raw is None:
raise RuntimeError(f"__version__ value not found, check src/{PKG}/version.py")
version = version_raw.group("version")
return version
setup(
version=find_version(),
)
except: # noqa
print("\n\nAn error occurred while building the project") # noqa: T201
raise