Skip to content

Commit 396aaea

Browse files
committed
update setup.py
1 parent c75aa63 commit 396aaea

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,12 @@ I believe that everyone who's working with FastApi and building some RESTful of
9393
pip install fastapi-quickcrud
9494
```
9595

96+
I suggest the following library if you try to connect to PostgreSQL
97+
```bash
98+
pip install psycopg2
99+
pip install asyncpg
100+
```
101+
96102
## Usage
97103

98104
#### Simple Code (get more example from `./example`)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
asyncpg
22
fastapi
3-
psycopg2
3+
psycopg2-binary
44
pydantic
55
SQLAlchemy
66
StrEnum

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = '0.1.1'
3+
VERSION = '0.1.3'
44

55
print("""
66
@@ -17,7 +17,7 @@
1717
setup(
1818
name='fastapi_quickcrud',
1919
version=VERSION,
20-
install_requires=["fastapi","starlette==0.14.2","pydantic","SQLAlchemy>=1.4","StrEnum","psycopg2","asyncpg",
20+
install_requires=["fastapi","starlette==0.14.2","pydantic","SQLAlchemy>=1.4","StrEnum",
2121
"aiosqlite","uvicorn"],
2222
python_requires=">=3.7",
2323
description="A comprehensive FastaAPI's CRUD router generator for SQLALchemy.",

0 commit comments

Comments
 (0)