-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (37 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
[project]
name = "sourmash_plugin_directsketch"
description = "Download and Sketch GenBank Assembly Datasets"
readme = "README.md"
version = "0.4.1"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["sourmash>=4.8.5,<5"]
authors = [
{ name= "N. Tessa Pierce-Ward" },
]
[build-system]
requires = ["maturin>=1.4.0,<2"]
build-backend = "maturin"
[project.entry-points."sourmash.cli_script"]
gbsketch = "sourmash_plugin_directsketch:Download_and_Sketch_Assemblies"
urlsketch = "sourmash_plugin_directsketch:Download_and_Sketch_Url"
[project.optional-dependencies]
test = [
"pytest>=6.2.4,<8.4.0",
"pytest-cov>=2.12,<7.0",
"pytest-xdist",
"black",
]
[tool.maturin]
python-source = "src/python"
[tool.maturin.target.x86_64-apple-darwin]
macos-deployment-target = "10.14"
[metadata]
license = { text = "GNU Affero General Public License v3" }
authors = [
{ name="N. Tessa Pierce-Ward", orcid="0000-0002-2942-5331" },
]