-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
44 lines (41 loc) · 1.62 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=67", "setuptools_scm>=7", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "automagic_rest/_version.py"
[project]
name = "automagic-rest"
authors = [{name = "Tim Allen", email = "[email protected]"},]
description = "Automagic REST: Django REST Framework Code Generator for Underlying PostgreSQL DBs"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["django", "automagic-rest", "rest", "drf", "django-rest-framework", "djangorestframework"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 4",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [
"djangorestframework>=3.9",
"djangorestframework-filters==1.0.0.dev2",
"django-filter==21.1", # last release to support DRF-filters 1.0.0.dev2
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/wharton/automagic-rest"
"Repository" = "https://github.com/wharton/automagic-rest"
"Documentation" = "https://github.com/wharton/automagic-rest"