-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.74 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
[project]
name = "bike-radar"
description = "Bike Radar is a free and open source app for Nextbike users. It secures nearby rides for you by booking them as soon as they become available in your selected area."
readme = "README.md"
requires-python = ">=3.9"
license = "AGPL-3.0"
keywords = ["bike radar", "bike share", "bike sharing", "bikes", "nextbike", "radar"]
authors = [{ name = "MC51 (Michael)", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python",
]
dependencies = [
"dash-bootstrap-components==1.6.0",
"dash-extensions==1.0.16",
"dash-leaflet==1.0.15",
"dash==2.17.0",
"geopy==2.4.1",
"gunicorn==21.2.0",
]
version = "0.2.4"
[project.urls]
Documentation = "https://github.com/mc51/bike-radar#readme"
Issues = "https://github.com/mc51/bike-radar/issues"
Source = "https://github.com/mc51/bike-radar"
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = ["black==23.12.1", "mypy==1.8.0", "pylint==3.0.3"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/bike_radar"]