-
Notifications
You must be signed in to change notification settings - Fork 79
/
pyproject.toml
53 lines (48 loc) · 1.62 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name='django-cleanup'
authors = [
{name = "Ilya Shalyapin", email = "[email protected]"}
]
description = "Deletes old files."
readme = "README.rst"
keywords = ["django"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Utilities'
]
requires-python = ">=3.8"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/un1t/django-cleanup"
Changelog = "https://github.com/un1t/django-cleanup/blob/master/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {attr = "django_cleanup.__version__"}
[tool.isort]
sections = ["FUTURE", "STDLIB", "DJANGO", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
line_length = 100
default_section = "THIRDPARTY"
known_first_party = ["django_cleanup"]
known_third_party = ["easy_thumbnails", "sorl", "pytest"]
known_django = "django"
multi_line_output = 4
lines_after_imports = 2
combine_as_imports = true
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "test.settings"
pythonpath = [".", "src"]
addopts = ["-v", "--cov-report=term-missing", "--cov=django_cleanup"]
markers = [
"cleanup_selected_config: marks test as using the CleanupSelectedConfig app config",
"django_storage: change django storage backends"
]