generated from daniil-berg/boilerplate-py
Daniil Fajnberg
9f487d515d
set up two basic CRUD-like functions; create two test routes; make `db_uri` setting more flexible
46 lines
976 B
INI
46 lines
976 B
INI
[metadata]
|
|
name = compub
|
|
version = 0.0.1
|
|
author = Daniil Fajnberg
|
|
author_email = mail@daniil.fajnberg.de
|
|
description = Company publications API
|
|
long_description = file: README.md
|
|
long_description_content_type = text/markdown
|
|
url = https://git.fajnberg.de/daniil/compub
|
|
project_urls =
|
|
Bug Tracker = https://git.fajnberg.de/daniil/compub/issues
|
|
classifiers =
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: 3.10
|
|
Operating System :: OS Independent
|
|
Development Status :: 3 - Alpha
|
|
Framework :: AsyncIO
|
|
Framework :: FastAPI
|
|
|
|
[options]
|
|
package_dir =
|
|
= src
|
|
packages = find:
|
|
python_requires = >=3.10, <4
|
|
install_requires =
|
|
Pydantic
|
|
FastAPI
|
|
SQLAlchemy[asyncio]==1.4.35
|
|
Alembic
|
|
SQLAlchemy-Utils
|
|
SQLModel
|
|
Babel
|
|
Python-Slugify
|
|
|
|
[options.extras_require]
|
|
srv =
|
|
Uvicorn[standard]
|
|
dev =
|
|
Uvicorn[standard]
|
|
coverage
|
|
sqlalchemy-stubs
|
|
aiosqlite
|
|
|
|
[options.packages.find]
|
|
where = src
|