-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (67 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
79 lines (67 loc) · 1.67 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
[project]
name = "psi-plantscreen"
description = "Python API implementation of PSI plantscreen API"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["PSI", "plantscreen", "API"]
license = {file = "LICENSE"}
maintainers = [
{name = "NPEC WUR"},
{name = "VBCF PlantS"}
]
dynamic = ["version"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: OS Independent',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
]
dependencies = [
"certifi",
"six",
"python_dateutil>=2.8.2",
"urllib3>=2.1.0,<3.0.0",
"pydantic>=2",
"pydantic-xml",
"typing-extensions>=4.7.1",
"requests>=2.32.5"
]
[project.optional-dependencies]
test = [
"pytest>=7.2.1",
"pytest-cov>=2.8.1",
"tox>=3.9.0",
"flake8>=4.0.0",
"types-python-dateutil>=2.8.19.14",
"mypy>=1.5"
]
build = [
"build >= 1.0.3",
"setuptools >= 21.0.0",
"twine >= 4.0.2",
"mkdocs >= 1.5.3",
"mkdocs-material >= 9.5.6",
"mkdocstrings[python]",
"ruff"
]
[tool.setuptools]
packages = ["plantscreen"]
[tool.setuptools_scm]
version_file = "plantscreen/_version.py"
local_scheme = "no-local-version"
[project.urls]
"Homepage" = "https://github.com/NPEC-NL/PSI-Plantscreen-API"
[tool.flake8]
max-line-length = 100
[tool.ruff]
line-length = 100
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"