-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
57 lines (45 loc) · 1.33 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "teloclip"
description = "A tool for the recovery of unassembled telomeres from soft-clipped read alignments."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "Adam Taranto", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
]
#dependencies = ["biopython"]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/adamtaranto/teloclip"
documentation = "https://github.com/adamtaranto/teloclip"
repository = "https://github.com/adamtaranto/teloclip"
[project.scripts]
teloclip = "teloclip.app:main"
teloclip-extract = "teloclip.app_extract:main"
[tool.hatch.build]
source = "src"
exclude = [
"environment.yml",
".gitpod.Dockerfile",
".gitpod.yml",
".dockerignore",
".vscode",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.vcs]
tag-pattern = "v*" # Git tags starting with 'v' will be used for versioning
fallback-version = "0.0.0"
[tool.hatch.build.hooks.vcs]
version-file = "src/teloclip/_version.py"
[project.optional-dependencies]
tests = ["pytest"]