2024-10-23 16:19:51 +02:00
|
|
|
[project]
|
|
|
|
name = "treetrail-srv"
|
2024-10-23 16:34:58 +02:00
|
|
|
version = "0.3.0"
|
2024-10-23 16:19:51 +02:00
|
|
|
#dynamic = ["version"]
|
2024-10-23 16:32:40 +02:00
|
|
|
#dynamic = ["version"]
|
2024-10-23 16:19:51 +02:00
|
|
|
description = "A fun and pedagogic tool to discover the trails and trees around"
|
|
|
|
authors = [
|
|
|
|
{ name = "Philippe May", email = "phil.treetrail@philome.mooo.com" }
|
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
"aiofiles",
|
|
|
|
"aiohttp-client-cache",
|
|
|
|
"aiosqlite",
|
|
|
|
"asyncpg",
|
|
|
|
"fastapi",
|
|
|
|
"geoalchemy2",
|
|
|
|
"geopandas",
|
|
|
|
"httptools>=0.6.1",
|
|
|
|
"orjson",
|
|
|
|
"pandas",
|
|
|
|
"passlib[bcrypt]",
|
|
|
|
"pillow",
|
|
|
|
"psycopg2-binary",
|
|
|
|
"pyarrow",
|
|
|
|
"pydantic-settings",
|
|
|
|
"python-jose[cryptography]",
|
|
|
|
"python-multipart",
|
|
|
|
"requests",
|
|
|
|
"sqlalchemy[asyncio]",
|
|
|
|
"sqlmodel",
|
|
|
|
"uvicorn[standard]",
|
|
|
|
"uvloop",
|
|
|
|
]
|
|
|
|
requires-python = ">=3.11"
|
|
|
|
readme = "README.md"
|
|
|
|
license = {text = "MIT"}
|
|
|
|
classifiers = [
|
2024-10-23 16:32:40 +02:00
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Framework :: FastAPI",
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: GNU General Public License (GPL)",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Operating System :: MacOS :: MacOS X",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Programming Language :: Python",
|
2024-10-23 16:19:51 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
#[project.scripts]
|
|
|
|
#treetrail-srv = "treetrail_srv:main"
|
|
|
|
|
2024-10-23 16:32:40 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["src/treetrail"]
|
|
|
|
|
|
|
|
[tool.uv]
|
|
|
|
dev-dependencies = [
|
|
|
|
"httpx",
|
|
|
|
"ipdb",
|
|
|
|
"pandas-stubs",
|
|
|
|
"pytest",
|
|
|
|
"types-Pillow",
|
|
|
|
"types-PyYAML",
|
|
|
|
"types-aiofiles",
|
|
|
|
"types-passlib",
|
|
|
|
"types-python-jose",
|
|
|
|
"types-requests",
|
|
|
|
]
|
2024-10-23 16:19:51 +02:00
|
|
|
|
|
|
|
#[tool.pdm.version]
|
|
|
|
#source = "scm"
|
|
|
|
#write_to = "treetrail/_version.py"
|
|
|
|
#write_template = "__version__ = '{}'"
|
|
|
|
#
|