-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (31 loc) · 950 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cityjson2jsonfg"
version = "1.2"
description = "Convert CityJSON files to JSON-FG format"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "Apache-2.0 License" }
authors = [
{ name = "3DGI", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
"License :: OSI Approved :: Apache Software License"
]
urls = { github = "https://github.com/3DGI/cityjson2jsonfg" }
dependencies = [
"cjio==0.8.2",
"click>=8.1",
"pyproj>=3.1"
]
optional-dependencies = { develop = ["pytest", "tox"] }
scripts = { cityjson2jsonfg = "cityjson2jsonfg.cli:main_cmd" }
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"