forked from ga4gh/htsget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.52 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
from __future__ import division
from __future__ import print_function
from setuptools import setup
with open("README.txt") as f:
long_description = f.read()
setup(
name="htsget",
description="Python API and command line interface for the GA4GH htsget API.",
long_description=long_description,
packages=["htsget"],
author="Jerome Kelleher",
author_email="jerome.kelleher@well.ox.ac.uk",
url="http://pypi.python.org/pypi/htsget",
entry_points={
'console_scripts': [
'htsget=htsget.cli:htsget_main',
]
},
install_requires=["requests", "six", "humanize"],
keywords=["BAM", "CRAM", "htsget"],
license="Apache Software License",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
setup_requires=['setuptools_scm'],
use_scm_version={"write_to": "htsget/_version.py"},
)