-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (40 loc) · 1.2 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
[tool.poetry]
name = "poetry-plugin-pycopy"
version = "1.0.6"
description = "Copy fields from pyproject.toml to source directory"
authors = ["Daniel Fajt <[email protected]>"]
license = "unlicense.org"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/danielfajt/poetry-plugin-pycopy"
"Bug Tracker" = "https://github.com/danielfajt/poetry-plugin-pycopy/issues"
[tool.poetry.dependencies]
python = "^3.7"
poetry = "^1.2.2"
[tool.poetry.group.dev.dependencies]
isort = "^5.10.1"
mypy = "^0.982"
black = "^22.10.0"
flake8 = "^5.0.4"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."poetry.application.plugin"]
poetry_plugin_pycopy = "poetry_plugin_pycopy.plugin:PoetryPluginPycopy"
[tool.mypy]
ignore_missing_imports = true
ignore_missing_imports_per_module = true
[tool.black]
skip-string-normalization = true
line-length = 120
[tool.isort]
profile = "black"
skip_glob = [".venv", "venv", "docs/*"]
skip = [".md", ".json"]