-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 1.04 KB
/
pyproject.toml
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
[project]
name = "clinvar_gk_pilot"
authors = [{ name = "Kyle Ferriter", email = "[email protected]" }]
description = "Conversion of ClinVar Variation expressions to GA4GH GKS forms"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["bioinformatics", "clinvar"]
license = { text = "MIT" }
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"google-cloud-storage~=2.13.0",
#"ga4gh.vrs[extras] @ git+https://github.com/ga4gh/[email protected]",
"ga4gh.vrs[extras] @ git+https://github.com/ga4gh/vrs-python@main-draft"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"ipykernel",
"black~=23.9.1",
"isort~=5.12.0",
"ruff~=0.1.5",
"pytest~=7.4.3",
"pylint~=3.0.2",
]
[project.scripts]
clinvar-gk-pilot = "clinvar_gk_pilot.main:main"
[tool.setuptools.packages.find]
include = ["clinvar_gk_pilot*"]
# [tool.setuptools.package-data]
# "clinvar_ingest" = ["*.json", ".*.env"]
# "clinvar_ingest.cloud.bigquery.bq_json_schemas" = ["*.json"]
[tool.isort]
profile = "black"