orm2pydantic/setup.cfg

34 lines
818 B
INI
Raw Normal View History

2022-08-02 11:09:41 +02:00
[metadata]
name = orm2pydantic
2022-08-02 11:17:05 +02:00
version = 0.1.0
author = Daniil Fajnberg
author_email = mail@daniil.fajnberg.de
2022-08-02 11:09:41 +02:00
description = Convert SQLAlchemy models to Pydantic models
long_description = file: README.md
long_description_content_type = text/markdown
url = https://git.fajnberg.de/daniil/orm2pydantic
project_urls =
Bug Tracker = https://git.fajnberg.de/daniil/orm2pydantic/issues
classifiers =
2022-08-02 11:17:05 +02:00
Development Status :: 3 - Alpha
2022-08-02 11:09:41 +02:00
Operating System :: OS Independent
2022-08-02 11:17:05 +02:00
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
2022-08-02 11:09:41 +02:00
[options]
package_dir =
= src
packages = find:
2022-08-02 11:17:05 +02:00
python_requires = >=3.9, <4.0
2022-08-02 11:09:41 +02:00
install_requires =
2022-08-02 11:17:05 +02:00
Pydantic
SQLAlchemy
2022-08-02 11:09:41 +02:00
[options.extras_require]
dev =
coverage
[options.packages.find]
where = src