-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (47 loc) · 1.18 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "bag3d-dashboard"
version = "2024.1001"
description = "Dashboard for the 3DBAG quality information"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "3DGI", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"pandas==2.1.1",
"scipy==1.11.4",
"matplotlib==3.8.1",
"psycopg==3.1.14",
"psycopg-pool==3.2.0",
"geopandas==0.14.3",
"folium==0.15.1",
"plotly==5.18.0",
"dash==2.15.0",
"dash-leaflet==1.0.15",
"dash-mantine-components==0.12.1",
"dash-bootstrap-components==1.5.0",
"gunicorn==21.2.0",
"pyarrow==15.0.0",
"orjson==3.9.15",
"seaborn==0.13.2"
]
optional-dependencies = { dev = ["bumpver", "jupyter"] }
[tool.bumpver]
current_version = "2024.1001"
version_pattern = "YYYY.BUILD"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"',
]