-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.28 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
[tool.poetry]
name = "pyfocalboard"
version = "1.0.2"
description = "Python bindings for Focalboard HTTP API"
authors = ["Michal Karol <[email protected]>"]
license = "MIT License"
readme = "README.md"
keywords = ["mattermost", "focalboard"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Communications :: Chat",
"Topic :: Internet :: WWW/HTTP",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.urls]
Homepage = "https://michalkarol.github.io/pyfocalboard/"
Documentation = "https://michalkarol.github.io/pyfocalboard/"
Repository = "https://github.com/MichalKarol/pyfocalboard"
Issues = "https://github.com/MichalKarol/pyfocalboard/issues"
Releases = "https://github.com/MichalKarol/pyfocalboard/releases"
Changelog = "https://github.com/MichalKarol/pyfocalboard/blob/main/CHANGELOG"
[tool.poetry.dependencies]
python = "^3.12"
requests = "^2.32.3"
dataclasses-json = "^0.6.7"
ruff = "^0.7.0"
[tool.ruff.lint]
extend-select = ["I"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"