-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (81 loc) · 2.04 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (81 loc) · 2.04 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["hatchling>=1.24.0"]
build-backend = "hatchling.build"
[project]
name = "pymizer"
version = "0.1.0"
description = "Python wrappers for the mizer R package"
readme = "README.md"
requires-python = ">=3.10"
license = "GPL-3.0-or-later"
authors = [
{ name = "mizer developers" }
]
keywords = ["ecology", "fisheries", "marine", "mizer", "size-spectrum"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: R",
"Topic :: Scientific/Engineering",
]
dependencies = [
"matplotlib>=3.8",
"numpy>=1.23",
"packaging>=23",
"pandas>=1.5",
"rpy2>=3.5",
"xarray>=2023.1.0",
]
[project.urls]
Homepage = "https://github.com/sizespectrum/mizer"
Documentation = "https://sizespectrum.github.io/pymizer/"
Issues = "https://github.com/sizespectrum/pymizer/issues"
Repository = "https://github.com/sizespectrum/pymizer"
Changelog = "https://sizespectrum.github.io/pymizer/news.html"
[project.optional-dependencies]
docs = [
"ipykernel>=6",
"nbclient>=0.10",
"nbformat>=5.10",
"quartodoc>=0.11",
]
test = [
"build>=1.2",
"pytest>=8",
"twine>=5",
]
dev = [
"build>=1.2",
"ipykernel>=6",
"nbclient>=0.10",
"nbformat>=5.10",
"pytest>=8",
"quartodoc>=0.11",
"twine>=5",
]
[tool.hatch.build.targets.wheel]
packages = ["src/pymizer"]
[tool.hatch.build.targets.sdist]
include = [
"/.github",
"/LICENSE",
"/README.md",
"/docs",
"/examples",
"/pyproject.toml",
"/src",
"/tests",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: tests that exercise the live R bridge",
"docs: tests that exercise documentation generation",
]