-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpyproject.toml
83 lines (77 loc) · 1.75 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
[project]
name = "django-minio-storage"
description = "Django file storage using the minio python client"
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
"django>=3.2",
"minio>=7.1.16",
]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Framework :: Django",
]
authors = [
{name = "Thomas Frössman", email = "[email protected]"},
{name = "Tom Houlé", email = "[email protected]"},
]
maintainers = [
{name = "Thomas Frössman", email = "[email protected]"},
]
readme = "README.md"
dynamic = ["version"]
[build-system]
requires = ["setuptools>=62", "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.black]
target_version = ['py38']
[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.isort]
profile = "black"
skip = [".tox", "migrations", "node_modules", ".git", ".eggs"]
[tool.ruff]
target-version = 'py38'
line-length = 88
select = [
"B",
"C4",
"C9",
"DJ",
"E",
"F",
"I",
"ISC",
"NPY",
"PLC",
"PLE",
"PLW",
"RUF010",
"RUF013",
"S5",
"S6",
"UP",
"W",
]
ignore = ["E203"]
exclude = [
"docs",
"migrations",
".git",
".ropeproject",
".cache",
".tox",
".eggs",
"minio_storage/version.py",
]