-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
46 lines (36 loc) · 1.11 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "itsxpress"
dynamic = ["version"]
description = "Rapidly trim sequences down to their Internal Transcribed Spacer (ITS) regions"
authors = [
{name = "Adam R. Rivers", email = "adam.rivers@usda.gov"},
{name = "Sveinn V. Einarsson", email = "seinarsson@ufl.edu"}]
maintainers = [
{name = "Adam R. Rivers", email = "adam.rivers@usda.gov"},
{name = "Sveinn V. Einarsson", email = "seinarsson@ufl.edu"}]
license = {file = "LICENSE.txt"}
readme = "README.rst"
keywords = ["Amplicon", "sequencing", "fungal", "ITS"]
requires-python = ">=3.7"
dependencies = [
"biopython >=1.79",
"pyzstd >=0.15.3",
"pandas",
]
[project.urls]
repository = "http://github.com/usda-ars-gbru/itsxpress"
[project.optional-dependencies]
tests = [
"pytest"
]
[tool.setuptools_scm]
version_file = "itsxpress/_version.py"
[tool.setuptools.package-data]
itsxpress = ["*.bib"]
[project.scripts]
itsxpress="itsxpress.main:main"
[project.entry-points."qiime2.plugins"]
itsxpress="itsxpress.plugin_setup:plugin"