|
1 | 1 | [tool.poetry] |
2 | 2 | name = "django-ninja-apikey" |
3 | 3 | version = "0.1.0" |
4 | | -description = "" |
| 4 | +description = "Easy to use API key authentication for Django Ninja REST Framework" |
| 5 | +license = "MIT" |
| 6 | +readme = "README.md" |
| 7 | +homepage = "https://github.com/mawassk/django-ninja-apikey" |
| 8 | +repository = "https://github.com/mawassk/django-ninja-apikey" |
| 9 | +keywords = ["django", "rest", "ninja", "auth", "apikey"] |
| 10 | +classifiers = [ |
| 11 | + "Environment :: Web Environment", |
| 12 | + "Framework :: Django", |
| 13 | + "Framework :: Django :: 2.0", |
| 14 | + "Framework :: Django :: 2.1", |
| 15 | + "Framework :: Django :: 2.2", |
| 16 | + "Framework :: Django :: 3.0", |
| 17 | + "Framework :: Django :: 3.1", |
| 18 | + "Framework :: Django :: 3.2", |
| 19 | + "Intended Audience :: Developers", |
| 20 | + "Intended Audience :: Information Technology", |
| 21 | + "Intended Audience :: System Administrators", |
| 22 | + "License :: OSI Approved :: MIT License", |
| 23 | + "Operating System :: OS Independent", |
| 24 | + "Programming Language :: Python :: 3", |
| 25 | + "Programming Language :: Python :: 3 :: Only", |
| 26 | + "Programming Language :: Python :: 3.6", |
| 27 | + "Programming Language :: Python :: 3.7", |
| 28 | + "Programming Language :: Python :: 3.8", |
| 29 | + "Programming Language :: Python :: 3.9", |
| 30 | + "Topic :: Internet", |
| 31 | + "Topic :: Internet :: WWW/HTTP", |
| 32 | + "Topic :: Internet :: WWW/HTTP :: HTTP Servers", |
| 33 | + "Topic :: Security", |
| 34 | + "Topic :: Software Development :: Libraries", |
| 35 | + "Topic :: Software Development :: Libraries :: Application Frameworks", |
| 36 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 37 | +] |
5 | 38 | authors = [ "Maximilian Wassink <[email protected]>"] |
6 | 39 | packages = [{ include = "ninja_apikey" }] |
7 | 40 |
|
|
0 commit comments