-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.23 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "delly-scripts"
dynamic = ["version"]
description = 'Python scripts to do with delly.'
readme = "scripts/README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = []
authors = [
{ name = "Tobias Rausch", email = "rauschtobi@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"cyvcf2>=0.31.1, <0.32"
]
[project.urls]
Documentation = "https://github.com/dellytools/delly/tree/main/scripts#readme"
Issues = "https://github.com/dellytools/delly/issues"
Source = "https://github.com/dellytools/delly"
[project.scripts]
delly2bnd = "scripts.delly2bnd:main"
[tool.hatch.build.targets.wheel]
packages = ["scripts"]
[tool.hatch.version]
path = "src/version.h"
pattern = "std::string dellyVersionNumber = \"(?P<version>[^\"]+)\";"