Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #35

Merged
merged 16 commits into from
Jan 6, 2024
Next Next commit
refactor: Separate development and production dependencies in setup.py
- Moved development dependencies (e.g., uvicorn) to the 'dev' extras_require
- Users can now install development dependencies with `pip install fastapi_quickcrud[dev]`
- Updated the setup.py file accordingly
  • Loading branch information
LuisLuii committed Jan 6, 2024
commit 2ccfd77969e5e43a6fa9682a12418c43f1063df9
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = '0.2.4'
VERSION = '0.2.5'

print("""

Expand All @@ -19,7 +19,13 @@
name='fastapi_quickcrud',
version=VERSION,
install_requires=["fastapi<=0.68.2","pydantic<=1.8.2","SQLAlchemy<=1.4.30","StrEnum==0.4.7","starlette==0.14.2",
"aiosqlite==0.17.0","uvicorn==0.17.0","greenlet==1.1.2","anyio==3.5.0"],
"aiosqlite==0.17.0","anyio==3.5.0"],
extras_require={
'dev': [
"uvicorn==0.17.0",
"greenlet==1.1.2"
],
},
python_requires=">=3.7",
description="A comprehensive FastaAPI's CRUD router generator for SQLALchemy.",
long_description=open("README.md",'r',encoding="utf-8").read(),
Expand Down