-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (48 loc) · 1.69 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vcf-rdfizer"
version = "3.0.2"
description = "Docker-first VCF to RDF conversion targeting the VCF Core vocabulary, with compressed queryable representations (HDT, COTTAS), semantic validation, and data linking"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "VCF-RDFizer maintainers" }
]
keywords = ["bioinformatics", "vcf", "rdf", "rml", "docker", "hdt"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"rich>=13.7.0",
"rdflib>=7.0.0",
]
[project.urls]
Homepage = "https://github.com/ecrum19/VCF-RDFizer"
Issues = "https://github.com/ecrum19/VCF-RDFizer/issues"
[project.scripts]
vcf-rdfizer = "vcf_rdfizer:main"
vcf-rdfizer-rules = "vcf_rdfizer_rules:main"
vcf-rdfizer-link = "vcf_rdfizer_link:main"
[project.optional-dependencies]
dev = [
"build>=1.2.2",
"twine>=5.1.1",
]
[tool.setuptools]
py-modules = ["vcf_rdfizer", "vcf_rdfizer_gzip", "vcf_rdfizer_rules", "vcf_rdfizer_link", "vcf_rdfizer_vocab"]
packages = ["vcf_rdfizer_data", "vcf_rdfizer_data.rules", "vcf_rdfizer_data.linkers", "vcf_rdfizer_linking"]
include-package-data = true
[tool.setuptools.package-data]
"vcf_rdfizer_data.rules" = ["default_rules.ttl"]
"vcf_rdfizer_data.linkers" = ["*/linker.ttl", "*/resolver.py", "*/genes.gff3", "*/README.md"]