-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
53 lines (43 loc) · 1.24 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
[project]
name = "q2-composition"
authors = [
{ name = "Jamie Morton", email = "[email protected]" }
]
description = "Compositional statistics plugin for QIIME2."
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-composition"
[project.entry-points.'qiime2.plugins']
"q2-composition" = "q2_composition.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-composition/_version.py"
[tool.setuptools]
include-package-data = true
script-files = [
"q2_composition/assets/run_ancombc.R"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["q2_composition*"]
[tool.setuptools.package-data]
q2_composition = ["**/*"]