forked from Acellera/htmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.19 KB
/
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
37
38
39
# (c) 2015-2018 Acellera Ltd http://www.acellera.com
# All Rights Reserved
# Distributed under HTMD Software License Agreement
# No redistribution in whole or part
#
from setuptools import setup, find_packages
import subprocess
version = subprocess.Popen(["git", "describe", "--tags"], stdout=subprocess.PIPE).stdout.read().decode("utf8")
version = version.split("-")
version = version[0]
f = open("package/htmd-deps/DEPENDENCIES", "r")
deps = None
print("Version [%s]" % (version))
print("Dependencies:")
print(deps)
setup(name='htmd',
version=version,
description='HTMD',
packages=find_packages(exclude=['data']),
install_requires=deps,
zip_safe=False,
url="https://www.htmd.org",
maintainer="Acellera Ltd",
maintainer_email="[email protected]",
entry_points={
"console_scripts": [
'htmdnb = htmdx.cli:main_htmd_notebook',
'htmd = htmdx.cli:main_htmd',
'htmd_register = htmdx.cli:main_do_nothing',
'parameterize = htmd.parameterization.cli:main_parameterize',
'activate_license = htmdx.cli:main_activate'
]
},
include_package_data=True
)