orm2pydantic/setup.cfg

38 lines
1010 B
INI
Raw Normal View History

2022-08-02 11:09:41 +02:00
[metadata]
name = orm2pydantic
version = 0.1.1
2022-08-02 11:17:05 +02:00
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
2022-08-06 10:53:21 +02:00
keywords = pydantic, sql, sqlalchemy, orm, model, schema
url = https://github.com/daniil-berg/orm2pydantic
2022-08-02 11:09:41 +02:00
project_urls =
2022-08-06 10:53:21 +02:00
Bug Tracker = https://github.com/daniil-berg/orm2pydantic/issues
2022-08-02 11:09:41 +02:00
classifiers =
2022-08-02 11:17:05 +02:00
Development Status :: 3 - Alpha
2022-08-06 10:53:21 +02:00
Intended Audience :: Developers
2022-08-06 10:59:55 +02:00
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
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-06 10:53:21 +02:00
Topic :: Database
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