forked from ga4gh/ga4gh-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (57 loc) · 1.98 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# First, we try to use setuptools. If it's not available locally,
# we fall back on ez_setup.
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
with open("README.pypi.rst") as readmeFile:
long_description = readmeFile.read()
install_requires = []
with open("requirements.txt") as requirementsFile:
for line in requirementsFile:
line = line.strip()
if len(line) == 0:
continue
if line[0] == '#':
continue
pinnedVersion = line.split()[0]
install_requires.append(pinnedVersion)
setup(
name="ga4gh",
description="A reference implementation of the ga4gh API",
license='Apache License 2.0',
long_description=long_description,
packages=["ga4gh", "ga4gh.datamodel", "ga4gh.templates"],
include_package_data=True,
zip_safe=False,
author="Global Alliance for Genomics and Health",
author_email="theglobalalliance@genomicsandhealth.org",
url="https://github.com/ga4gh/server",
entry_points={
'console_scripts': [
'ga4gh_client=ga4gh.cli:client_main',
'ga4gh_configtest=ga4gh.cli:configtest_main',
'ga4gh_server=ga4gh.cli:server_main',
'ga2vcf=ga4gh.cli:ga2vcf_main',
'ga2sam=ga4gh.cli:ga2sam_main',
'ga4gh_repo=ga4gh.cli:repo_main',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
keywords='genomics reference',
install_requires=install_requires,
# Use setuptools_scm to set the version number automatically from Git
setup_requires=['setuptools_scm'],
use_scm_version={
"write_to": "ga4gh/_version.py"
},
)