-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (69 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
75 lines (69 loc) · 1.72 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "django-minio-storage"
description = "Django file storage using the minio python client"
license = "MIT OR Apache-2.0"
license-files = ["LICENSE", "LICENSE-APACHE"]
requires-python = ">=3.9"
dependencies = [
"django>=4.2",
"minio>=7.1.16,<7.2.19",
]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Framework :: Django",
]
authors = [
{name = "Thomas Frössman", email = "thomasf@jossystem.se"},
{name = "Tom Houlé", email = "tom@kafunsho.be"},
]
maintainers = [
{name = "Thomas Frössman", email = "thomasf@jossystem.se"},
]
readme = "README.md"
dynamic = ["version"]
[build-system]
requires = ["setuptools>=77.0.3", "setuptools_scm[toml]>=6.2"]
[project.urls]
Homepage = "https://github.com/py-pa/django-minio-storage"
Repository = "https://github.com/py-pa/django-minio-storage"
Documentation = "https://django-minio-storage.readthedocs.io/"
[tool.setuptools_scm]
write_to = "minio_storage/version.py"
write_to_template = '__version__ = "{version}"'
tag_regex = "^v(?P<prefix>v)?(?P<version>[^\\+]+)(?P<suffix>.*)?$"
[tool.ruff]
target-version = "py39"
line-length = 88
[tool.ruff.lint]
select = [
"B",
"C4",
"C9",
"DJ",
"E",
"F",
"I",
"ISC",
"NPY",
"PLC",
"PLE",
"PLW",
"RUF010",
"RUF013",
"S5",
"S6",
"UP",
"W",
]
ignore = ["E203"]
[tool.pytest.ini_options]
pythonpath = [".", "tests"]
addopts = ["--tb=short"]
python_files = ["tests.py", "test_*.py", "*_tests.py"]
django_find_project = false
DJANGO_SETTINGS_MODULE = "django_minio_storage_tests.settings"