fastapi-sqlalchemy-ease 0.1.0__tar.gz → 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastapi-sqlalchemy-ease
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A reusable SQLAlchemy extension for FastAPI
5
5
  Requires-Python: >=3.8
6
6
  Requires-Dist: sqlalchemy>=2.0.0
@@ -1,14 +1,14 @@
1
- # fastapi-sqlalchemy
1
+ # fastapi-sqlalchemy-ease
2
2
  A reusable SQLAlchemy extension for FastAPI.
3
3
 
4
4
  ## Installation
5
5
  ```bash
6
- pip install fastapi-sqlalchemy
6
+ pip install fastapi-sqlalchemy-ease
7
7
  ```
8
8
 
9
9
  ## Usage
10
10
  ```python
11
- from fastapi_sqlalchemy import SQLAlchemy
11
+ from fastapi_sqlalchemy_ease import SQLAlchemy
12
12
 
13
13
  db = SQLAlchemy()
14
14
  DATABASE_URI = "sqlite:///site.db"
@@ -1,7 +1,7 @@
1
1
  from .core import SQLAlchemy
2
2
  from .exceptions import DatabaseError, DatabaseNotInitializedError
3
3
 
4
- __version__='0.1.0'
4
+ __version__='0.1.1'
5
5
 
6
6
  # when someone call: from fastapi_sqlalchemy import SQLAlchemy
7
7
  # only these things are available
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastapi-sqlalchemy-ease
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A reusable SQLAlchemy extension for FastAPI
5
5
  Requires-Python: >=3.8
6
6
  Requires-Dist: sqlalchemy>=2.0.0
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='fastapi-sqlalchemy-ease',
5
- version='0.1.0',
5
+ version='0.1.1',
6
6
  description="A reusable SQLAlchemy extension for FastAPI",
7
7
  packages=find_packages(),
8
8
  python_requires='>=3.8',