-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
52 lines (47 loc) · 1.48 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "woltka"
dynamic = ["version"]
dependencies = [
"numba",
"biom-format",
]
requires-python = ">=3.6"
authors = [
{name = "Qiyun Zhu", email = "qiyunzhu@gmail.com"}
]
maintainers = [
{name = "Qiyun Zhu", email = "qiyunzhu@gmail.com"}
]
description = "versatile meta-omic data classifier"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["bioinformatics", "metagenomics", "microbiome"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
[project.urls]
Homepage = "https://github.com/qiyunzhu/woltka"
Documentation = "https://github.com/qiyunzhu/woltka/blob/main/README.md"
Repository = "https://github.com/qiyunzhu/woltka.git"
Issues = "https://github.com/qiyunzhu/woltka/issues"
Changelog = "https://github.com/qiyunzhu/woltka/blob/main/CHANGELOG.md"
[project.scripts]
woltka = "woltka.cli:cli"
[project.entry-points."qiime2.plugins"]
q2-woltka = "woltka.q2.plugin_setup:plugin"
[tool.hatch.version]
path = "woltka/__init__.py"