Skip to content

Commit

Permalink
pyproject toml edited
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Heinle committed Nov 18, 2024
1 parent 7a21911 commit bdcb4ca
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools>=70.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
Expand All @@ -14,20 +14,40 @@ version = "0.0.1"
authors = [
{ name="Jonas Heinle", email="[email protected]" },
]
license = {file = "LICENSE"}
description = "This package contains modules to easily communicate to a host via WebDav."
readme = "README.md"
dependencies = [
"requests",
"loguru",
]
requires-python = ">=3.11"
keywords=["webdav", "cloud"]
classifiers = [
"Development Status :: 1 - Production/Stable",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
]

dependencies=["loguru","requests"]

[project.urls]
Homepage = "https://github.com/Kataglyphis/WebDavClient"
Homepage = "https://webdavclient.jonas.heinle.de"
Source = "https://github.com/Kataglyphis/WebDavClient"

[project.optional-dependencies]
dev = [
"pytest",
"pytest-benchmark",
"pytest-cov",
"line_profiler",
"wsgidav",
"cheroot",
"black",
"flake8",
"mypy",
"pylint",
"isort",
"pre-commit"
]

[tool.black]
line-length = 88
Expand Down

0 comments on commit bdcb4ca

Please sign in to comment.