-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.49 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
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mobility-db-api"
version = "0.5.0"
authors = [
{ name="Bence Damokos" }
]
description = "A Python client for the Mobility Database API"
readme = "README.md"
requires-python = ">=3.7"
keywords = [
"gtfs",
"public-transport",
"mobility",
"transit",
"open-data",
"transportation",
"api-client",
"mobility-database"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"unidecode>=1.3.7",
]
[project.urls]
"Homepage" = "https://github.com/bdamokos/mobility-db-api"
"Bug Tracker" = "https://github.com/bdamokos/mobility-db-api/issues"
"Documentation" = "https://bdamokos.github.io/mobility-db-api/"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["mobility_db_api"]
# Explicitly exclude tests and examples from the package
[tool.setuptools.exclude-package-data]
"*" = ["tests/*", "examples/*"]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0", # For coverage reporting
"pytest-json-report>=1.5.0", # For JSON test results
"black>=23.0.0", # For code formatting
"isort>=5.0.0", # For import sorting
"responses>=0.25.0", # For mocking HTTP requests in tests
]