-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (45 loc) · 1.49 KB
/
setup.py
File metadata and controls
51 lines (45 loc) · 1.49 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
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("afqbrowser", "version.py"),
"local_scheme": local_version,
},
scripts=[op.join("bin", op.split(f)[-1]) for f in glob.glob("bin/*")],
package_data={
"afqbrowser": [
op.join("afqbrowser", "site", "*"),
op.join("afqbrowser", "site", "client", "*"),
op.join("afqbrowser", "site", "client", "data", "*"),
op.join("afqbrowser", "site", "client", "data", "tracula_data", "*"),
op.join(
"afqbrowser", "site", "client", "data", "tracula_data", "stats", "*"
),
op.join("afqbrowser", "site", "client", "css", "*"),
op.join("afqbrowser", "site", "client", "js", "*"),
op.join("afqbrowser", "site", "client", "js", "third-party", "*"),
]
},
)
if __name__ == "__main__":
setup(**opts)