-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
14 additions
and
13 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 |
---|---|---|
|
@@ -7,33 +7,34 @@ all = true | |
|
||
[tool.poetry] | ||
name = "django-ninja-crud" | ||
version = "0.3.0.post1" | ||
version = "0.3.1" | ||
description = "Django Ninja CRUD is a library that allows you to create CRUD APIs in a few lines of code." | ||
authors = ["Hicham Bakri <[email protected]>"] | ||
maintainers = ["Hicham Bakri <[email protected]>"] | ||
readme = "README.md" | ||
homepage = "https://github.com/hbakri/django-ninja-crud" | ||
license = "MIT" | ||
classifiers = [ | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: System Administrators", | ||
"Operating System :: OS Independent", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Development Status :: 4 - Beta", | ||
"Topic :: Internet", | ||
"Environment :: Web Environment", | ||
"Operating System :: OS Independent", | ||
"Topic :: Software Development :: Libraries :: Application Frameworks", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: Software Development :: Testing", | ||
"Topic :: Software Development", | ||
"Typing :: Typed", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python", | ||
"Framework :: Django :: 3.2", | ||
"Framework :: Django :: 4.1", | ||
"Framework :: Django :: 4.2", | ||
"Framework :: Django", | ||
"Framework :: AsyncIO", | ||
"Topic :: Internet :: WWW/HTTP :: HTTP Servers", | ||
"Topic :: Internet :: WWW/HTTP", | ||
"Typing :: Typed", | ||
] | ||
packages = [{ include = "ninja_crud" },] | ||
|
||
|