-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (54 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (54 loc) · 1.56 KB
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.black]
extend-exclude = 'migrations/'
skip-string-normalization = 'True'
[tool.isort]
profile = 'black'
[tool.setuptools.dynamic]
version = { attr = "tracker.__version__"}
[project]
authors = [
{ name = 'Games Done Quick, LLC', email = 'tracker@gamesdonequick.com' },
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Other Audience',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
dependencies = [
'babel~=2.17.0',
'celery~=5.0',
'channels>=4.0',
'Django>=5.2,!=6.0,<6.1',
'django-ical~=1.7',
'django-mptt~=0.10',
'django-paypal~=1.1',
'django-post-office~=3.2',
'django-timezone-field>=7.0,<8.0',
'djangorestframework~=3.9',
'python-dateutil~=2.8.1;python_version<"3.11"',
'requests>=2.33.1,<2.35.0',
]
description = 'A Django app to assist in tracking donations for live broadcast events.'
dynamic = ['version']
license-files = ['LICENSE', 'tracker/static/gen/**/*.LICENSE.txt']
name = 'django-donation-tracker'
readme = 'README.md'
requires-python = '>= 3.10'
[project.optional-dependencies]
development = [
'daphne~=4.0',
]
tqdm = [
'tqdm>=4.67.1,<4.69.0',
]