-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
executable file
·91 lines (80 loc) · 1.83 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
84
85
86
87
88
89
90
91
[tool.poetry]
authors = ["William C. Canin <[email protected]>"]
description = "Dotctrl is a package for managing your dotfiles on Linux."
homepage = "https://github.com/snakypy/dotctrl"
include = ["LICENSE"]
keywords = ["dotfiles", "snakypy", "dot", "linux"]
license = "MIT license"
name = "dotctrl"
readme = "README.rst"
repository = "https://github.com/snakypy/dotctrl"
version = "2.0.1"
classifiers = [
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
]
packages = [
{include = "snakypy"},
]
[tool.poetry.scripts]
dotctrl = "snakypy.dotctrl.dotctrl:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/snakypy/dotctrl/issues"
[tool.poetry.dependencies]
docopt = "^0.6.2"
python = "^3.9"
snakypy-helpers = "^0.3.1"
tomlkit = "^0.11.1"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
flake8 = "^5.0.4"
imake = "^0.3.1"
ipython = "^8.10.0"
isort = "^5.8.0"
mypy = "^0.812"
pre-commit = "^2.13.0"
pytest = "^6.2.3"
tox = "^3.26.0"
[tool.black]
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \venv
| buck-out
| build
| _build
| venv
| dist
| docs
| tmp
)/
)
'''
include = '\.pyi?$'
line-length = 79
target-version = ['py39']
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
line_length = 79
multi_line_output = 3
profile = "black"
src_paths = ["snakypy", "tests"]
use_parentheses = true
[tool.pytest.ini_options]
cache_dir = "/tmp/.pytest_cache"
minversion = "6.0"
# addopts = "-ra -q"
testpaths = ["tests"]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]