-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (61 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
65 lines (61 loc) · 1.25 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
[tool.poetry]
name = "giant-plugins"
version = "1.0.18"
description = "Adds a generic list of plugins for use within projects"
authors = ["Will-Hoey <will.hoey@giantdigital.co.uk>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/giantmade/giant-plugins"
repository = "https://github.com/giantmade/giant-plugins"
keywords = ["plugins", "app"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
"LICENSE",
]
packages = [
{ include = "giant_plugins" }
]
[tool.poetry.dependencies]
python = "^3.9"
django-filer = "*"
giant-mixins = "*"
requests = "*"
[tool.poetry.dev-dependencies]
pytest = "~7"
black = "~22"
django-cms = "~3"
django = "~3"
pytest-cov = "~4"
pytest-django = "~3"
six = "~1"
django-polymorphic = "~3"
pytest-mock = "<3.10"
[tool.black]
line-length = 99
target-version = ['py36']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.ipython
| \.mypy_cache
| \.ropeproject
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"