-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (43 loc) · 1.34 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 = "tinscan"
description = """Find alignment signatures characteristic of transposon insertion sites."""
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "Adam Taranto", email = "adam.p.taranto@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
]
dependencies = ["biopython>=1.70"]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/adamtaranto/TE-insertion-scanner"
documentation = "https://github.com/adamtaranto/TE-insertion-scanner"
repository = "https://github.com/adamtaranto/TE-insertion-scanner"
[project.scripts]
tinscan-prep = "tinscan.run_prep:main"
tinscan-align = "tinscan.run_align:main"
tinscan-find = "tinscan.run_scan:main"
[tool.hatch.build]
source = "src"
exclude = [
"environment.yml",
"env_osx64.yml",
]
[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/tinscan/_version.py"
[project.optional-dependencies]
tests = ["pytest"]