-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.13 KB
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
[project]
name = "tzero"
version = "0.2.0"
description = "Tzero - IRC timeboxing"
readme = "etc/PKG-README.md"
license = {text = "MIT"}
keywords = ["irc", "matrix", "bridge", "service"]
authors = [{name = "Susam Pal"}]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Internet",
"Topic :: Utilities"
]
[project.urls]
homepage = "https://github.com/susam/tzero"
[project.scripts]
tzero = "tzero:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
# The presence of etc/ directory prevents setuptools from
# autodiscovering tzero.py, so we explicitly ask it to include this
# module.
[tool.setuptools]
py-modules = ["tzero"]
[tool.ruff.lint]
select = ["ALL"]
ignore = ["COM812", "C901", "PLR0913", "FBT001", ]
# COM812 (missing-trailing-comma)
# C901 (complex-structure)
# PLR0913 (too-many-arguments)
# FBT001 (boolean-type-hint-positional-argument)