-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
30 lines (28 loc) · 1.04 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "aiodav"
license = { text = "MIT" }
description = "A Python Async WebDAV Client"
requires-python = ">=3.6"
keywords = ["webdav", "client", "files", "internet", "download", "upload"]
authors = [{ name = "Jorge Alejandro Jiménez Luna", email = "[email protected]" }]
urls = { homepage = "https://github.com/jorgeajimenezl/aiodav" }
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version", "dependencies"]
[tool.setuptools.dynamic]
version = { attr = "aiodav.__version__" }
dependencies = { file = ["requirements.txt"] }