-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (58 loc) · 1.63 KB
/
Copy pathsetup.py
File metadata and controls
60 lines (58 loc) · 1.63 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
59
60
from setuptools import setup, find_packages
from civicpy.__version__ import (
__version__,
__authors__,
__author_email__,
__description__,
__url__,
)
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="civicpy",
version=__version__,
packages=find_packages(),
url=__url__,
license="MIT",
author=", ".join(__authors__),
author_email=__author_email__,
description=__description__,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
install_requires=[
"requests",
"obonet",
"networkx",
"pandas<=2.3.3",
"Click",
"vcfpy~=0.13.8",
"pysam",
"python-dateutil",
"deprecation",
"ga4gh.vrs~=2.4.0-a1",
"ga4gh.cat_vrs~=0.8.0-a1",
"ga4gh.va_spec~=0.5.0-a0",
],
extras_require={
"test": [
"pytest==6.2.5",
"pytest-cov==5.0.0",
"attrs==22.1.0",
"coveralls",
"coverage<7.4.4",
"deepdiff",
],
"docs": ["sphinx", "sphinxjp.themes.basicstrap", "sphinxcontrib.programoutput"],
},
python_requires=">=3.10",
entry_points={"console_scripts": ["civicpy=civicpy.cli:cli"]},
)