forked from chicagopython/chipy.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
100 lines (94 loc) · 1.92 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "chipy_website"
version="2.4.0"
description = "The ChiPy Website"
objects.license = { text = "MIT License" }
requires-python = ">=3.11.10"
authors = [
{ name = "ChiPy Web Guild", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
# "Programming Language :: Python :: 3.12",# TODO: upgrade python
# "Programming Language :: Python :: 3.13",
]
dependencies = [
"boto3",
"crispy-bootstrap5",
"dj-database-url",
"django",
"django-admin-tools",
"django-bleach",
"django-crispy-forms",
"django-extensions",
"django-flatblocks",
"django-grappelli",
"django-gravatar2",
"django-honeypot",
"django-ical",
"django-simple-captcha",
"django-storages",
"django-tinymce",
"djangorestframework",
"gunicorn",
"pillow",
"probablepeople",
"psycopg2-binary",
"python-openid2",
"requests",
"six",
"social-auth-app-django",
"sorl-thumbnail",
"whitenoise",
"bleach",
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"isort",
"pylint",
"pylint-django",
"pytest",
"pytest-django",
"uwsgi",
]
[tool.hatch.build.targets.wheel]
packages = [
"chipy_org",
]
exclude = [
"*.pxi",
"*.pyx",
]
[tool.black]
line-length = 100
target-version = ['py39']
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.vscode
| dist
| migrations
| venv
)/
'''
[tool.isort]
atomic = true
include_trailing_comma = true
line_length = 100
multi_line_output = 3
skip = 'manage.py'
skip_glob = '**/migrations/*'