-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (58 loc) · 1.55 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
[tool.black]
line-length = 178
target-version = ['py33']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.poetry]
name = "django-dynamic-storages"
version = "0.5.3"
description = "A collection of file fields and associated components to allow for dynamic configuration of storage properties for file-based fields within Django models."
authors = ["Patrick McClory <[email protected]>"]
license = "BSD-3-Clause"
packages = [
{ include = "dynamic_storages" },
]
readme = "README.md"
homepage = "https://github.com/mcclory/django-dynamic-storages"
repository = "https://github.com/mcclory/django-dynamic-storages"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django :: 3.1",
"Intended Audience :: Developers",
"Natural Language :: English"
]
[tool.poetry.dependencies]
python = "^3.9"
django = "^4.1.0"
django-storages = {extras = ["azure", "boto3", "dropbox", "google", "libcloud", "sftp"], version = "^1.13.2"}
django-fernet-fields = "^0.6"
django-appconf = "^1.0.4"
python-magic = "^0.4.27"
djangorestframework = "^3.14.0"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
flake8 = "^6.0.0"
autoflake = "^2.0.2"
factory-boy = "^3.2.1"
python-dotenv = "^0.14.0"
django-extensions = "^3.0.9"
django-test-plus = "^1.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"