-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathpyproject.toml
51 lines (42 loc) · 1.26 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "doge"
version = "3.8.0"
description = "wow very terminal doge"
authors = [{ name = "Olivia Thiderman", email = "[email protected]" }]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: Unix',
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ["python-dateutil>=2.8.2"]
[project.urls]
Homepage = "https://github.com/thiderman/doge"
[project.scripts]
doge = "doge.core:main"
[tool.ruff]
extend-exclude = ["pdbsh/rpcc_client.py"]
line-length = 88
target-version = "py39"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D107", "D203", "D213", "COM812", "T20", "S311"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["D104"]
[tool.ruff.lint.flake8-annotations]
ignore-fully-untyped = true
[tool.ruff.lint.flake8-type-checking]
quote-annotations = true
[tool.ruff.format]
docstring-code-format = true