-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 906 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 906 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "citydpc"
version = "0.1.22"
authors = [
{ name="Maxim Shamovich", email="shamovich@e3d.rwth-aachen.de" },
{ name="Simon Raming", email="simon.raming@rwth-aachen.de" },
]
description = "A python package for working with CityGML and CityJSON files"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "License.md", content-type = "text/markdown" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"lxml",
"numpy",
"scipy",
"shapely",
"pyproj",
"matplotlib",
"pandas",
]
[project.urls]
"Homepage" = "https://github.com/RWTH-E3D/CityDPC"
"Bug Tracker" = "https://github.com/RWTH-E3D/CityDPC/issues"