-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
51 lines (41 loc) · 1.21 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "trf2gff"
authors = [{ name = "Adam Taranto", email = "[email protected]" }]
description = "Convert Tandem Repeat Finder dat file output into gff3 format."
license = { text = "GPL" }
readme = "README.md"
requires-python = ">=3.8"
dependencies = []
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
]
[project.urls]
homepage = "https://github.com/adamtaranto/TRF2GFF"
documentation = "https://github.com/adamtaranto/TRF2GFF"
repository = "https://github.com/adamtaranto/TRF2GFF"
[project.scripts]
trf2gff = "trf2gff.app:main"
[tool.hatch.build]
source = "src"
exclude = [
"environment.yml",
".gitpod.Dockerfile",
".gitpod.yml",
".devcontainer/**",
".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/trf2gff/_version.py"