-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (52 loc) · 2.02 KB
/
setup.py
File metadata and controls
58 lines (52 loc) · 2.02 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
import os
import glob
import warnings
import subprocess
from setuptools import setup, find_packages
install_requires = [line.rstrip() for line in open(os.path.join(os.path.dirname(__file__), "requirements.txt"))]
with open("README.md") as fh:
long_description = fh.read()
def get_version():
filepath = os.path.join(os.path.dirname(__file__), "ssds", "version.py")
if os.path.isfile(filepath):
# In source distributions or builds, version is available in the generated ssds/version.py file
with open(filepath) as fh:
version = dict()
exec(fh.read().strip(), version)
return version['__version__']
else:
p = subprocess.run(["git", "describe", "--tags", "--match", "v*.*.*"], stdout=subprocess.PIPE)
if 128 == p.returncode:
warnings.warn('There are no git tags with version information. '
'To tag the first commit as v0.0.0 use '
'`git tag --annotate "v0.0.0" $(git rev-list --max-parents=0 HEAD) -m "v0.0.0"`')
return "0"
else:
p.check_returncode()
out = p.stdout.decode("ascii").strip()
if "-" in out:
out = out.split("-", 1)[0]
assert out.startswith("v")
return out[1:]
setup(
name="ssds",
version=get_version(),
description="Simple data storage system for AWS and GCP.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DataBiosphere/ssds.git",
author="Brian Hannafious",
author_email="bhannafi@ucsc.edu",
license="MIT",
packages=find_packages(exclude=["tests", "dev_scripts"]),
scripts=glob.glob("scripts/*"),
zip_safe=False,
install_requires=install_requires,
platforms=["MacOS X", "Posix"],
test_suite="tests",
classifiers=[
"Intended Audience :: Developers, Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7"
]
)