-
Notifications
You must be signed in to change notification settings - Fork 7
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
1 parent
f5d2ba9
commit b2424ec
Showing
5 changed files
with
44 additions
and
79 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
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
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,3 +1,37 @@ | ||
[project] | ||
name = "worf" | ||
url = "https://github.com/gundotio/worf" | ||
description = "Wade's own REST Framework: A more Djangonic approach to REST APIs" | ||
authors = [ | ||
{name = "Wade Williams", email = "[email protected]"}, | ||
{name = "Steve Lacey", email = "[email protected]"}, | ||
] | ||
keywords = ["django", "rest", "framework", "api"] | ||
license = "MIT" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Web Environment", | ||
"Framework :: Django :: 3.2", | ||
"Framework :: Django :: 4.0", | ||
"Framework :: Django :: 4.1", | ||
"Framework :: Django", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
dependencies = [ | ||
"Django>=3.0.0,<4.2", | ||
"dj-url-filter>=0.4.2", | ||
"marshmallow>=3.18.0", | ||
] | ||
dynamic = ["readme", "version"] | ||
requires-python = ">=3.9" | ||
zip-safe = false | ||
|
||
[tool.black] | ||
line-length = 88 | ||
|
||
|
@@ -45,3 +79,10 @@ known_django = "django" | |
known_firstparty = "worf" | ||
profile = "black" | ||
sections = "FUTURE,STDLIB,THIRDPARTY,DJANGO,FIRSTPARTY,LOCALFOLDER" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "worf.__version__"} | ||
readme = {file = ["README.md"], content-type = "text/markdown"} | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["tests*"] |