generated from daniil-berg/boilerplate-py
Add meta data and dependencies
This commit is contained in:
parent
934f596316
commit
aa7fed7817
@ -12,7 +12,7 @@ Company publications API
|
|||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
Python Version ..., OS ...
|
Python Version 3.10+, OS ...
|
||||||
|
|
||||||
## Building from source
|
## Building from source
|
||||||
|
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
Pydantic
|
||||||
|
FastAPI
|
||||||
|
SQLAlchemy[asyncio]
|
||||||
|
Alembic
|
@ -1,2 +1,4 @@
|
|||||||
-r common.txt
|
-r common.txt
|
||||||
coverage
|
coverage
|
||||||
|
sqlalchemy-stubs
|
||||||
|
aiosqlite
|
||||||
|
19
setup.cfg
19
setup.cfg
@ -1,8 +1,8 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = compub
|
name = compub
|
||||||
version = 0.0.1
|
version = 0.0.1
|
||||||
author = Daniil
|
author = Daniil Fajnberg
|
||||||
author_email = mail@placeholder123.to
|
author_email = mail@daniil.fajnberg.de
|
||||||
description = Company publications API
|
description = Company publications API
|
||||||
long_description = file: README.md
|
long_description = file: README.md
|
||||||
long_description_content_type = text/markdown
|
long_description_content_type = text/markdown
|
||||||
@ -10,20 +10,29 @@ url = https://git.fajnberg.de/daniil/compub
|
|||||||
project_urls =
|
project_urls =
|
||||||
Bug Tracker = https://git.fajnberg.de/daniil/compub/issues
|
Bug Tracker = https://git.fajnberg.de/daniil/compub/issues
|
||||||
classifiers =
|
classifiers =
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3 :: Only
|
||||||
|
Programming Language :: Python :: 3.10
|
||||||
Operating System :: OS Independent
|
Operating System :: OS Independent
|
||||||
|
Development Status :: 3 - Alpha
|
||||||
|
Framework :: AsyncIO
|
||||||
|
Framework :: FastAPI
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
package_dir =
|
package_dir =
|
||||||
= src
|
= src
|
||||||
packages = find:
|
packages = find:
|
||||||
python_requires = >=3
|
python_requires = >=3.10
|
||||||
install_requires =
|
install_requires =
|
||||||
...
|
Pydantic
|
||||||
|
FastAPI
|
||||||
|
SQLAlchemy[asyncio]
|
||||||
|
Alembic
|
||||||
|
|
||||||
[options.extras_require]
|
[options.extras_require]
|
||||||
dev =
|
dev =
|
||||||
coverage
|
coverage
|
||||||
|
sqlalchemy-stubs
|
||||||
|
aiosqlite
|
||||||
|
|
||||||
[options.packages.find]
|
[options.packages.find]
|
||||||
where = src
|
where = src
|
||||||
|
Loading…
Reference in New Issue
Block a user