-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
36 lines (30 loc) · 947 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
31
32
33
34
35
36
"""Cloudknot is a python library to run your existing code on AWS Batch."""
from setuptools import setup
import string
import os.path as op
import glob
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 = dict(
use_scm_version={
"root": ".",
"relative_to": __file__,
"write_to": op.join("cloudknot", "_version.py"),
"local_scheme": local_version,
},
scripts=[op.join("bin", op.split(f)[-1]) for f in glob.glob("bin/*")],
)
if __name__ == "__main__":
setup(**opts)