forked from fossasia/eventyay-talk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
137 lines (129 loc) · 3.45 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[project]
name = "pretalx"
dynamic = ["version"]
description = "Conference organisation: CfPs, scheduling, much more"
readme = "README.rst"
requires-python = ">=3.11"
keywords = ["conference", "event", "schedule", "talk", "cfp"]
authors = [
{name = "Tobias Kunze", email = "r@rixx.de"},
]
maintainers = [
{name = "Tobias Kunze", email = "r@rixx.de"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [
"beautifulsoup4[lxml]~=4.12.0",
"bleach~=6.1.0",
"celery~=5.3.0",
"css_inline~=0.13.0",
"csscompressor~=0.9.0",
"cssutils~=2.9.0",
"defusedcsv~=2.0.0",
"Django~=4.2.0",
"django-bootstrap4~=3.0.0",
"django-compressor~=4.4.0",
"django-context-decorator",
"django-countries~=7.0",
"django-csp~=3.8.0",
"django-filter==24.1",
"django-formset-js-improved==0.5.0.3",
"django-formtools~=2.5.1",
"django-hierarkey~=1.1.0",
"django-i18nfield~=1.9.0",
"django-libsass~=0.8",
"django-scopes~=2.0.0",
"django-pdb~=0.6.2",
"djangorestframework~=3.14.0",
"libsass~=0.23.0",
"Markdown~=3.5.0", # https://python-markdown.github.io/change_log/
# We can upgrade markdown again once django-bootstrap4 upgrades or once we drop Python 3.6 and 3.7
# 3.3.5 requires importlib-metadata>=4.4, but django-bootstrap3 requires importlib-metadata<3.
# see also https://github.com/zostera/django-bootstrap4/issues/380
"Pillow~=10.2.0",
"publicsuffixlist~=0.10.0",
"python-dateutil~=2.9.0",
"qrcode~=7.0",
"reportlab~=4.1.0",
"requests~=2.31.0",
"rules~=3.3.0",
"urlman~=2.0.1",
"vobject~=0.9.0",
"whitenoise~=6.6.0",
"zxcvbn~=4.4.0",
'pretalx_pages @ git+https://github.com/fossasia/eventyay-talk-pages.git@main',
'pretalx_venueless @ git+https://github.com/fossasia/eventyay-talk-video.git@main',
'pretalx-downstream @ git+https://github.com/fossasia/eventyay-talk-downstream.git@main',
"django-allauth~=0.63.3",
"PyJWT~=2.8.0",
]
[project.optional-dependencies]
dev = [
"black",
"build",
"check-manifest",
"coverage",
"djhtml",
"Faker",
"flake8",
"flake8-bugbear",
"freezegun",
"isort",
"jsonschema",
"lxml",
"pytest",
"pytest-cov",
"pytest-django",
"pytest-mock",
"pytest-rerunfailures",
"pytest-sugar",
"pytest-xdist",
"pywatchman",
"responses",
"rich",
"urllib3",
]
mysql = ["mysqlclient"]
postgres = ["psycopg2-binary"]
redis = ["redis~=5.0.0"]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[project.urls]
homepage = "https://pretalx.com"
documentation = "https://docs.pretalx.org"
repository = "https://github.com/pretalx/pretalx.git"
Changelog = "https://docs.pretalx.org/en/latest/changelog.html"
Issues = "https://github.com/pretalx/pretalx/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "pretalx.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["pretalx*"]
exclude = ["pretalx/frontend/node_modules"]
namespaces = false
[tool.check-manifest]
ignore = [
".*",
"assets/*",
"CODE_OF_CONDUCT.md",
"CONTRIBUTORS",
"docs/*",
"src/.watchmanconfig",
"src/local/*",
"src/tests",
"src/tests/*",
"SECURITY.md",
]