Skip to content

Commit

Permalink
adding setuptools to toml
Browse files Browse the repository at this point in the history
  • Loading branch information
David Slusser committed Dec 9, 2023
1 parent 0cee5fc commit ee35608
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ description = "django project created from djangoaddicts django_project_template
dynamic = ["version"]
keywords = ["django"]
license = {file = "LICENSE"}
name = "my_django_project"
name = "web_demo_python"
readme = "README.md"
requires-python = ">=3.8"

Expand All @@ -47,6 +47,7 @@ dev = [
"typing_extensions",
]


[tool.bandit]
exclude_dirs = ["venv", "django_project/tests"]

Expand Down Expand Up @@ -102,3 +103,10 @@ filterwarnings = [
[tool.ruff]
line-length = 120
exclude = ["django_project/manage.py", "django_project/tests", "django_project/*/migrations", "django_project/*/scripts", "django_project/*/local_test"]


[tool.setuptools.packages.find]
where = ["."]
include = ["django_project"]
exclude = []
namespaces = false

0 comments on commit ee35608

Please sign in to comment.