-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
40 lines (35 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-tidb"
authors = [
{ name="Xiang Zhang", email="[email protected]" },
{ name="Di Wang", email="[email protected]" }
]
description = "Django backend for TiDB"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 5.0",
"License :: OSI Approved :: Apache Software 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"
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/pingcap/tidb"
"Bug Reports" = "https://github.com/pingcap/django-tidb/issues"
"Source" = "https://github.com/pingcap/django-tidb"
[project.optional-dependencies]
vector = ["numpy~=1.0"]
[tool.setuptools]
packages = ["django_tidb", "django_tidb.fields"]
[tool.setuptools.dynamic]
version = {attr = "django_tidb.__version__"}