-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (51 loc) · 1.5 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
[tool.poetry]
name = "graphlib_backport"
version = "1.1.0"
description = "Backport of the Python 3.9 graphlib module for Python 3.6+"
authors = ["Marius Helf <helfsmarius@gmail.com>"]
license = "PSF"
homepage = "https://github.com/mariushelf/graphlib_backport"
repository = "https://github.com/mariushelf/graphlib_backport"
documentation = "https://github.com/mariushelf/graphlib_backport"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: Python Software Foundation License",
]
packages = [
{include="graphlib"}
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
[tool.ruff]
select = [
"A", # flake8-builtins
"E", # Flake8
"F", # Flake8
"I", # isort
# "D", # pydocstyle
"RUF", # ruff specific rules
]
ignore = [
"E501", # LineTooLong
"E712", # TrueFalseComparison
"E741", # AmbiguousVariableName
]
target-version = "py37"
[tool.ruff.per-file-ignores]
"__init__.py" = [
"F401", # UnusedImport
"F403", # ImportStarUsed
]
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"