-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "eppoPynder"
version = "2.0.0"
description = "Python interface to the EPPO Database and Public APIs"
readme = "README.md"
authors = [
{ name = "Lorenzo Copelli" },
{ name = "Dayana Stephanie Buzle" },
{ name = "Rafael Vieira" },
{ name = "Agata Kaczmarek" },
{ name = "Luca Belmonte" }
]
maintainers = [
{ name = "Luca Belmonte", email = "luca.belmonte@efsa.europa.eu" }
]
license = "EUPL-1.2"
license-files = ["LICENSE"]
requires-python = ">=3.11"
dependencies = [
"numpy>=2.0",
"pandas>=2.2",
"requests>=2.32",
"python-dotenv>=1.0"
]
[project.optional-dependencies]
dev = [
"coverage>=7.6",
"pytest>=8.0",
]
[project.urls]
"Homepage" = "https://openefsa.github.io/eppoPynder/"
"Repository" = "https://github.com/openefsa/eppoPynder"
"Bug Tracker" = "https://github.com/openefsa/eppoPynder/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]