-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
162 lines (139 loc) · 4.86 KB
/
Copy pathsetup.py
File metadata and controls
162 lines (139 loc) · 4.86 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# -*- coding: utf-8 -*-
"""
Setup
Changelog:
v1.0: add branch to local version if possible
"""
from setuptools import setup
from os.path import dirname, isdir, join
import re
from subprocess import CalledProcessError, check_output
def readme():
with open("README.md") as f:
return f.read()
tag_re = re.compile(r"\btag: %s([0-9][^,]*)\b")
version_re = re.compile("^Version: (.+)$", re.M)
def version_from_git_describe(version):
if version[0] == "v":
version = version[1:]
# PEP 440 compatibility
number_commits_ahead = 0
if "-" in version:
version, number_commits_ahead, commit_hash = version.split("-")
number_commits_ahead = int(number_commits_ahead)
split_versions = version.split(".")
if "post" in split_versions[-1]:
suffix = split_versions[-1]
split_versions = split_versions[:-1]
else:
suffix = None
for pre_release_segment in ["a", "b", "rc"]:
if pre_release_segment in split_versions[-1]:
if number_commits_ahead > 0:
split_versions[-1] = str(
split_versions[-1].split(pre_release_segment)[0]
)
if len(split_versions) == 2:
split_versions.append("0")
if len(split_versions) == 1:
split_versions.extend(["0", "0"])
split_versions[-1] = str(int(split_versions[-1]) + 1)
future_version = ".".join(split_versions)
return "{}.dev{}+{}".format(future_version, number_commits_ahead, commit_hash)
else:
return ".".join(split_versions)
if number_commits_ahead > 0:
if len(split_versions) == 2:
split_versions.append("0")
if len(split_versions) == 1:
split_versions.extend(["0", "0"])
split_versions[-1] = str(int(split_versions[-1]) + 1)
split_versions = ".".join(split_versions)
return "{}.dev{}+{}".format(split_versions, number_commits_ahead, commit_hash)
else:
if suffix is not None:
split_versions.append(suffix)
return ".".join(split_versions)
# Just testing if get_version works well
assert version_from_git_describe("v0.1.7.post2") == "0.1.7.post2"
assert version_from_git_describe("v0.0.1-25-gaf0bf53") == "0.0.2.dev25+gaf0bf53"
assert version_from_git_describe("v0.1-15-zsdgaz") == "0.1.1.dev15+zsdgaz"
assert version_from_git_describe("v1") == "1"
assert version_from_git_describe("v1-3-aqsfjbo") == "1.0.1.dev3+aqsfjbo"
assert version_from_git_describe("v0.13rc0") == "0.13rc0"
def get_version():
# Return the version if it has been injected into the file by git-archive
version = tag_re.search("$Format:%D$")
if version:
return version.group(1)
d = dirname(__file__)
if isdir(join(d, ".git")):
cmd = "git describe --tags"
try:
version = check_output(cmd.split()).decode().strip()[:]
except CalledProcessError:
raise RuntimeError("Unable to get version number from git tags")
version = version_from_git_describe(version)
else:
# Extract the version from the PKG-INFO file.
with open(join(d, "PKG-INFO")) as f:
version = version_re.search(f.read()).group(1)
# branch = get_branch()
# if branch and branch != 'master':
# branch = re.sub('[^A-Za-z0-9]+', '', branch)
# if '+' in version:
# version += f'{branch}'
# else:
# version += f'+{branch}'
return version
def get_branch():
if isdir(join(dirname(__file__), ".git")):
cmd = "git branch --show-current"
try:
return check_output(cmd.split()).decode().strip()[:]
except CalledProcessError:
pass
return None
setup(
name="dessia_common",
version=get_version(),
description="Common tools for DessIA software",
long_description=readme(),
long_description_content_type='text/markdown',
keywords=["Dessia", "SDK", "engineering"],
url="https://github.com/Dessia-tech/dessia_common",
author="Dessia Technologies SAS",
author_email="root@dessia.tech",
include_package_data=True,
packages=[
"dessia_common",
"dessia_common.workflow",
"dessia_common.utils",
"dessia_common.models",
"dessia_common.models.workflows",
"dessia_common.datatools",
"dessia_common.schemas"
],
install_requires=[
# Keep the list with alphabetical order
"cma",
"dectree",
"docx",
"humanize",
"matplotlib",
"networkx",
"numpy<2.0.0",
"openpyxl",
"orjson>=3.8.0",
"pandas",
"parameterized",
"psutil",
"pyDOE",
"pyDOE2",
"python-docx",
"scikit-learn>=1.2.0",
"scipy<1.14.0",
"typeguard",
],
python_requires=">=3.9",
)