-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (42 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (42 loc) · 1.27 KB
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 = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "crest4"
version = "4.4.6"
description = """The `crest4` python package can automatically assign \
taxonomic names to DNA sequences obtained from environmental sequencing."""
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Anders Lanzén", email = "anders.lanzen@gmail.com" },
{ name = "Lucas Sinclair", email = "lucas.sinclair@me.com" }
]
urls = { Homepage = "https://github.com/xapple/crest4/" }
dependencies = [
"autopaths>=1.6.3",
"plumbing>=2.11.4",
"fasta>=2.3.6",
"seqsearch>=2.2.4",
"optmagic>=1.1.1",
"biopython>=1.86",
"rich>=14.2.0",
"ete4>=4.3.0",
"pandas>=2.3.3",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
]
classifiers = [
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
[project.scripts]
crest4 = "crest4.__main__:main"
# Tell setuptools to include package data and use MANIFEST.in #
[tool.setuptools]
include-package-data = true
# Package discovery (equivalent to find_namespace_packages()) #
[tool.setuptools.packages.find]
# If crest4 is a (implicit) namespace package, this finds it and its
# subpackages. If you know the top package, you can be explicit:
include = ["crest4*"]