2023-04-11 20:51:59 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "mapmakr"
|
|
|
|
description = 'An interactive map where you can place your own markers'
|
2023-04-12 20:03:01 +00:00
|
|
|
readme = "README.rst"
|
2023-04-11 20:51:59 +00:00
|
|
|
requires-python = ">=3.7"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = []
|
|
|
|
authors = [
|
|
|
|
{ name = "Raoul Snyman", email = "raoul@snyman.info" },
|
|
|
|
]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
"FastAPI",
|
|
|
|
"Jinja2",
|
2023-04-12 20:03:01 +00:00
|
|
|
"uvicorn[standard]",
|
|
|
|
"SQLModel",
|
2023-04-11 20:51:59 +00:00
|
|
|
]
|
|
|
|
dynamic = ["version"]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Documentation = "https://git.snyman.info/raoul/mapmakr#readme"
|
|
|
|
Issues = "https://git.snyman.info/raoul/mapmakr/issues"
|
|
|
|
Source = "https://git.snyman.info/raoul/mapmakr"
|
|
|
|
|
|
|
|
[tool.hatch.version]
|
|
|
|
path = "mapmakr/__about__.py"
|
|
|
|
|
|
|
|
[tool.hatch.envs.default]
|
|
|
|
dependencies = [
|
|
|
|
"pytest",
|
|
|
|
"pytest-cov",
|
|
|
|
]
|
|
|
|
[tool.hatch.envs.default.scripts]
|
|
|
|
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=mapmakr --cov=tests {args}"
|
|
|
|
no-cov = "cov --no-cov {args}"
|
|
|
|
|
|
|
|
[[tool.hatch.envs.test.matrix]]
|
|
|
|
python = ["37", "38", "39", "310", "311"]
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
branch = true
|
|
|
|
parallel = true
|
|
|
|
omit = [
|
|
|
|
"mapmakr/__about__.py",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.coverage.report]
|
|
|
|
exclude_lines = [
|
|
|
|
"no cov",
|
|
|
|
"if __name__ == .__main__.:",
|
|
|
|
"if TYPE_CHECKING:",
|
|
|
|
]
|