-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
54 lines (44 loc) · 1.38 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
[project]
name = "q2-quality-control"
authors = [
{ name = "Nicholas Bokulich", email = "[email protected]" },
{ name = "Jorden Rabasco", email = "[email protected]" }
]
description = "Quality control methods for feature and sequence data."
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/qiime2/q2-quality-control"
Repository = "https://github.com/qiime2/q2-quality-control"
[project.entry-points.'qiime2.plugins']
"q2-quality-control" = "q2_quality_control.plugin_setup:plugin"
[build-system]
requires = [
"setuptools",
"versioningit",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.versioningit.vcs]
method = "git-archive"
describe-subst = "$Format:%(describe)$"
default-tag = "0.0.1"
[tool.versioningit.next-version]
method = "minor"
[tool.versioningit.format]
distance = "{base_version}+{distance}.{vcs}{rev}"
dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"
distance-dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"
[tool.versioningit.write]
file = "q2-quality-control/_version.py"
[tool.setuptools]
include-package-data = true
script-files = [
"q2_quality_control/decontam_assets/run_decontam.R"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["q2_quality_control*"]
[tool.setuptools.package-data]
q2_quality_control = ["**/*"]