-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (49 loc) · 1.47 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
52
53
54
[tool.poetry]
name = "django-sans-db"
version = "1.2.0"
description = "Tools to limit database access in parts of your Django codebase "
authors = ["Charlie Denton <[email protected]>"]
license = "MIT"
packages = [
{ include = "sans_db" }
]
repository = "https://github.com/meshy/django-sans-db"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: Utilities",
]
[project.urls]
Source = "https://github.com/meshy/django-sans-db"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.group.dev.dependencies]
django-stubs = ">=1.5,<5.0"
mypy = ">=0.982,<1.4"
pre-commit = "^2.6.0"
tox = ">=3.25.1,<5.0.0"
[tool.isort]
lines_after_imports = 2
profile = "black"
src_paths = ["sans_db", "test"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"