-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
47 lines (38 loc) · 1.09 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
[project]
name = "q2-mystery-stew"
authors = [
{ name = "None", email = "[email protected]" }
]
description = "Template out arbitrary QIIME 2 actions to test interfaces."
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
dynamic = ["version"]
[project.urls]
Homepage = "https://qiime2.org"
Repository = "https://github.com/qiime2/q2-mystery-stew"
[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-mystery-stew/_version.py"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["q2_mystery_stew*"]
[tool.setuptools.package-data]
q2_mystery_stew = ["**/*"]