-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (34 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "maps4fs"
version = "0.9.7"
description = "Generate map templates for Farming Simulator from real places."
authors = [{name = "iwatkot", email = "[email protected]"}]
license = {text = "MIT License"}
readme = "README.md"
keywords = ["farmingsimulator", "fs", "farmingsimulator22", "farmingsimulator25", "fs22", "fs25"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"opencv-python",
"osmnx<2.0.0",
"rasterio",
"folium",
"geopy",
"trimesh",
"imageio",
"tifffile",
]
[project.urls]
Homepage = "https://github.com/iwatkot/maps4fs"
Repository = "https://github.com/iwatkot/maps4fs"
[tool.setuptools.packages.find]
where = ["."]
include = ["maps4fs*"]
exclude = ["dev*", "bot*", "*data", "*docker", "*webui", "*tutorials"]