-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (25 loc) · 730 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (25 loc) · 730 Bytes
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
import os.path as op
import string
from setuptools import setup
from setuptools_scm import get_version
def local_version(version):
"""Patch in a version that can be uploaded to test PyPI."""
scm_version = get_version()
if "dev" in scm_version:
gh_in_int = []
for char in version.node:
if char.isdigit():
gh_in_int.append(str(char))
else:
gh_in_int.append(str(string.ascii_letters.find(char)))
return "".join(gh_in_int)
else:
return ""
opts = {
"use_scm_version": {
"write_to": op.join("afqinsight", "_version.py"),
"local_scheme": local_version,
}
}
if __name__ == "__main__":
setup(**opts)