-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
66 lines (54 loc) · 1.66 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
58
59
60
61
62
63
64
65
66
# Build system configuration
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
# Project metadata
[project]
name = "blastbesties"
authors = [{ name = "Adam Taranto", email = "[email protected]" }]
description = "Rapid discovery of reciprocal best blast pairs from BLAST output files."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
# Classifiers for project categorization
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
]
# Project dependencies
dependencies = ["argparse_tui"]
# Dynamic versioning
dynamic = ["version"]
# Project URLs
[project.urls]
homepage = "https://github.com/adamtaranto/blast-besties"
documentation = "https://github.com/adamtaranto/blast-besties"
repository = "https://github.com/adamtaranto/blast-besties"
# Command-line script entry point
[project.scripts]
blastbesties = "blastbesties.app:main"
# Hatch build configuration
[tool.hatch.build]
source = "src"
# Exclude files and directories from the build
exclude = [
"environment.yml",
"env_osx64.yml",
".github",
".vscode",
]
# Hatch versioning configuration
[tool.hatch.version]
source = "vcs"
# Version control system (VCS) versioning
[tool.hatch.version.vcs]
tag-pattern = "v*" # Git tags starting with 'v' will be used for versioning
fallback-version = "0.0.0"
# Version file location for VCS
[tool.hatch.build.hooks.vcs]
version-file = "src/blastbesties/_version.py"
# Optional dependencies for testing
[project.optional-dependencies]
tests = ["pytest"]