Add meta data and dependencies

This commit is contained in:
Daniil Fajnberg 2022-06-29 11:53:42 +02:00
parent 934f596316
commit aa7fed7817
5 changed files with 21 additions and 6 deletions

View File

@ -12,7 +12,7 @@ Company publications API
## Dependencies
Python Version ..., OS ...
Python Version 3.10+, OS ...
## Building from source

View File

@ -0,0 +1,4 @@
Pydantic
FastAPI
SQLAlchemy[asyncio]
Alembic

View File

@ -1,2 +1,4 @@
-r common.txt
coverage
sqlalchemy-stubs
aiosqlite

View File

@ -1,8 +1,8 @@
[metadata]
name = compub
version = 0.0.1
author = Daniil
author_email = mail@placeholder123.to
author = Daniil Fajnberg
author_email = mail@daniil.fajnberg.de
description = Company publications API
long_description = file: README.md
long_description_content_type = text/markdown
@ -10,20 +10,29 @@ url = https://git.fajnberg.de/daniil/compub
project_urls =
Bug Tracker = https://git.fajnberg.de/daniil/compub/issues
classifiers =
Programming Language :: Python :: 3
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
python_requires = >=3.10
install_requires =
...
Pydantic
FastAPI
SQLAlchemy[asyncio]
Alembic
[options.extras_require]
dev =
coverage
sqlalchemy-stubs
aiosqlite
[options.packages.find]
where = src