-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
32 lines (30 loc) · 874 Bytes
/
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
[project]
name = "django-cf"
version = "0.0.17"
authors = [
{ name="Gabriel Massadas" },
]
dependencies = [
'websocket-client',
'sqlparse',
]
description = "Django backend for Cloudflare D1 and Durable Objects"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Framework :: Django :: 5.0",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
[project.urls]
"Bug Reports" = "https://github.com/G4brym/django-cf/issues"
"Source" = "https://github.com/G4brym/django-cf"
[tool.setuptools]
packages = ["django_d1", "django_dbms"]