forked from AccordBox/python-webpack-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (47 loc) · 1.19 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
[tool.poetry]
name = "python-webpack-boilerplate"
version = "1.0.0"
description = "Jump start frontend project bundled by Webpack"
authors = ["Michael Yin <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/AccordBox/python-webpack-boilerplate"
keywords = ["python", "django", "flask", "webpack"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Flask",
]
packages = [
{ include = "webpack_boilerplate" },
]
[tool.poetry.dependencies]
python = "^3.6"
cookiecutter = "^1.7.0"
[build-system]
requires = ["setuptools", "poetry_core>=1.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| fixtures
| static
| staticfiles
| templates
| migrations # also separately exclude django migrations folder in apps
)/
)
'''