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
|
import glob
import os.path as op
import string
from setuptools_scm import get_version
from setuptools import setup
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 = dict(use_scm_version={
"root": ".", "relative_to": __file__,
"write_to": op.join("trx", "version.py"),
"local_scheme": local_version},
scripts=glob.glob("scripts/*.py"))
if __name__ == '__main__':
setup(**opts)
|