-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.01 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
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "isoxml"
version = "0.0.4"
description = "Python ISOXML read/write"
license = {text = "Apache License 2.0"}
authors = [
{ name="Josephinum-Research" },
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
keywords = ["isoxml", "isobus", "iso", "11783-10", "xml", "precision farming"]
dependencies = [
"xsdata >= 24.7",
"numpy >= 1.26",
"shapely >= 2.0",
]
[project.urls]
Homepage = "https://github.com/Josephinum-Research/isoxml-py"
Issues = "https://github.com/Josephinum-Research/isoxml-py/issues"
[project.optional-dependencies]
dev = [
"xsdata[cli]",
"geopandas",
"xmlschema",
"jupyter",
"folium",
"matplotlib",
"mapclassify"
]
test = [
"pytest",
"xmlschema"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["isoxml*"]
exclude = ["examples"]
namespaces = false