-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (54 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
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=75.2"]
build-backend = "setuptools.build_meta"
[project]
name = "django-model-info"
version = "2024.11.5"
description = "A set of Django Management Commands to help you understand and visualize your project's models."
authors = [{ name = "Jack Linke", email = "jacklinke@gmail.com" }]
license = { text = "MIT" }
readme = "README.md"
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Utilities",
]
requires-python = ">=3.10,<4.0"
dependencies = ["django", "networkx>=3.4.2", "pydot>=3.0.2", "rich>=13"]
[project.urls]
Homepage = "https://github.com/OmenApps/django-model-info"
Repository = "https://github.com/OmenApps/django-model-info"
Documentation = "https://django-model-info.readthedocs.io/en/latest/"
Changelog = "https://github.com/OmenApps/django-model-info/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"invoke>=2",
"twine>=4",
"wheel>=0.38.1",
"coverage>=7",
"flake8>=5",
"tox>=4",
"coverage>=7",
"black==23.3.0",
"flake8==6.0.0",
"isort==5.11.4",
"pydocstyle[toml]==6.2.3",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
target-version = ["py310"]
[tool.flake8]
max-line-length = 88
[tool.isort]
atomic = true
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
combine_as_imports = true