-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 925 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 925 Bytes
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
[project]
name = "kanboard"
version = "1.1.8"
description = "Python client library for Kanboard"
readme = "README.rst"
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["kanboard", "api", "client"]
authors = [
{ name = "Frédéric Guillot", email = "fred@kanboard.net" }
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
]
[project.optional-dependencies]
dev = ["ruff"]
[project.urls]
"Homepage" = "https://github.com/kanboard/python-api-client"
"Bug Reports" = "https://github.com/kanboard/python-api-client/issues"
"Source" = "https://github.com/kanboard/python-api-client"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I"]