-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,31 @@ | ||
[tool.poetry] | ||
name = "fastcrud" | ||
version = "0.1.0" | ||
description = "FastCRUD is a Python package that streamlines CRUD operations in FastAPI, offering easy integration with SQLAlchemy and Pydantic for efficient API development." | ||
authors = ["Igor Magalhaes <[email protected]>"] | ||
description = "FastCRUD is a Python package for FastAPI, offering robust async CRUD operations and flexible endpoint creation utilities." | ||
authors = ["Igor Benav <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
repository = "https://github.com/igorbenav/fastcrud" | ||
include = [ | ||
"LICENSE", | ||
] | ||
|
||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Libraries", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Operating System :: OS Independent", | ||
"Framework :: FastAPI", | ||
"Typing :: Typed" | ||
] | ||
|
||
keywords = ["fastapi", "crud", "async", "sqlalchemy", "pydantic"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
|