-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
executable file
·48 lines (45 loc) · 1.63 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
import sys
from os import path
from setuptools import setup, find_packages
VERSION = (1, 2, "0b1")
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))
here = path.abspath(path.dirname(__file__))
installation_requirements = [
"requests>=2.0.0, <3.0.0",
"PyVCF3>=1.0.1",
"jsonmodels>=2.2",
]
if sys.version_info < (3, 4):
installation_requirements.extend(["asyncio", "unittest2"])
setup(
name="varsome_api_client",
version=__versionstr__,
packages=find_packages(
".",
),
scripts=["scripts/varsome_api_run.py", "scripts/varsome_api_annotate_vcf.py"],
url="https://github.com/saphetor/varsome-api-client-python",
license="Apache License, Version 2.0",
author="Saphetor S.A.",
author_email="[email protected]",
description="A basic python api client implementation for https://api.varsome.com",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache License",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
install_requires=installation_requirements,
python_requires=">=3.3",
)