From 5f823cb5522431e64e4f0451237e23f5d69e0d59 Mon Sep 17 00:00:00 2001 From: Daniil Fajnberg Date: Tue, 2 Aug 2022 11:17:05 +0200 Subject: [PATCH] Add dependencies; adjust setup --- requirements/common.txt | 2 ++ setup.cfg | 16 ++++++++++------ src/{package_name => orm2pydantic}/__init__.py | 0 3 files changed, 12 insertions(+), 6 deletions(-) rename src/{package_name => orm2pydantic}/__init__.py (100%) diff --git a/requirements/common.txt b/requirements/common.txt index e69de29..17bf63e 100644 --- a/requirements/common.txt +++ b/requirements/common.txt @@ -0,0 +1,2 @@ +Pydantic +SQLAlchemy \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index b8d0dec..ce03237 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,8 +1,8 @@ [metadata] name = orm2pydantic -version = 0.0.1 -author = Daniil -author_email = mail@placeholder123.to +version = 0.1.0 +author = Daniil Fajnberg +author_email = mail@daniil.fajnberg.de description = Convert SQLAlchemy models to Pydantic models long_description = file: README.md long_description_content_type = text/markdown @@ -10,16 +10,20 @@ url = https://git.fajnberg.de/daniil/orm2pydantic project_urls = Bug Tracker = https://git.fajnberg.de/daniil/orm2pydantic/issues classifiers = - Programming Language :: Python :: 3 + Development Status :: 3 - Alpha Operating System :: OS Independent + Programming Language :: Python :: 3 :: Only + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 [options] package_dir = = src packages = find: -python_requires = >=3 +python_requires = >=3.9, <4.0 install_requires = - ... + Pydantic + SQLAlchemy [options.extras_require] dev = diff --git a/src/package_name/__init__.py b/src/orm2pydantic/__init__.py similarity index 100% rename from src/package_name/__init__.py rename to src/orm2pydantic/__init__.py