-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
83 lines (77 loc) · 2.1 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
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
[project]
name = "gweatherrouting"
dynamic = ["version"]
description = ""
readme = "README.md"
requires-python = ">= 3.8.0, <=3.13.1"
license = {text = "GPLv3"}
authors = [
{name = "Davide Gessa", email = "[email protected]"},
]
dependencies = [
"requests",
"colorlog",
"eccodes==1.6.1",
"geojson_utils",
"bs4",
"vext @ git+https://github.com/vext-python/vext@32ad4d1c5f45797e244df1d2816f76b60f28e20e",
"vext.gi",
"pyserial",
"pynmea2",
"gpxpy",
"numpy",
"nmeatoolkit",
"matplotlib",
"weatherrouting",
"PyGObject",
"GDAL==3.9.2;sys_platform == 'darwin'",
"GDAL==3.6.4;sys_platform == 'linux'"
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/dakk/gweatherrouting"
"Bug Tracker" = "https://github.com/dakk/gweatherrouting/issues/"
Documentation = "https://github.com/dakk/gweatherrouting"
Source = "https://github.com/dakk/gweatherrouting"
[project.scripts]
gweatherrouting = "gweatherrouting.main:startUIGtk"
[tool.setuptools]
packages = [
"gweatherrouting",
"gweatherrouting.core",
"gweatherrouting.core.utils",
"gweatherrouting.core.geo",
"gweatherrouting.common",
"gweatherrouting.gtk",
"gweatherrouting.gtk.maplayers",
"gweatherrouting.gtk.settings",
"gweatherrouting.gtk.widgets",
"gweatherrouting.gtk.charts",
"gweatherrouting.gtk.charts.vectordrawer",
]
zip-safe = false
[tool.setuptools.package-data]
gweatherrouting = [
"data/*",
"data/boats/*",
"data/polars/*",
"data/symbols/*",
"data/s57/*",
"data/icons/*",
"gtk/*.glade",
"gtk/settings/*.glade",
"gtk/widgets/*.glade"
]
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]