generated from LoveDuckie/python-tool-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (51 loc) · 1.64 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
[tool.poetry]
name = "search-pathfinding"
version = "0.1.0"
description = "A template repository for building tools in Python"
readme = "README.md"
authors = ["Luc Shelton <lucshelton@gmail.com>"]
homepage = "https://github.com/loveduckie/search-pathfinding"
repository = "https://github.com/loveduckie/search-pathfinding"
documentation = "https://github.com/loveduckie/search-pathfinding/-/wikis/home"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
packages = [
{ include = "search_pathfinding" },
{ include = "search_pathfinding_tests" }
]
[tool.poetry.dependencies]
python = "^3.11"
rich = "^13.8.1"
rich-click = "^1.8.3"
click = "^8.1.7"
[tool.poetry.scripts]
search-pathfinding = 'search_pathfinding.__main__:cli'
[tool.black]
line-length = 100
target-version = ['py311']
include = '\.pyi?$'
# 'extend-exclude' excludes files or directories in addition to the defaults
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
(
^/foo.py # exclude a file named foo.py in the root of the project
| .*_pb2.py # exclude autogenerated Protocol Buffer files anywhere in the project
)
'''
[tool.poetry.group.docs.dependencies]
sphinx = "^7.4.4"
sphinx-rtd-theme = "^2.0.0"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
pylint = "^3.2.5"
[tool.poetry.group.test.dependencies]
coverage = "^7.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry_bumpversion.file."search-pathfinding/__init__.py"]
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'