-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (47 loc) · 1.55 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
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-compat-patcher"
version = "0.12"
authors = [
{name = "Pascal Chambon", email = "[email protected]"},
]
description = "A monkey-patcher to ease the transition of project to latest Django versions"
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"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",
"Topic :: System :: Filesystems",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
]
dependencies = [
'compat-patcher-core>=1.2',
'six',
'Django'
]
[project.urls]
Repository = "https://github.com/pakal/django-compat-patcher"
[tool.setuptools]
#packages = ["compat_patcher_core"]
include-package-data = false
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["django_compat_patcher*"]
exclude = ["tests*"] # exclude packages matching these glob patterns (empty by default)
namespaces = false