-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "webdavclient3"
version = "3.14.7"
description = "WebDAV client, based on original package https://github.com/designerror/webdav-client-python but uses requests instead of PyCURL"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Evgeny Ezhov", email = "ezhov.evgeny@gmail.com" }
]
keywords = [
"webdav", "client", "python", "module", "library", "packet",
"Yandex.Disk", "Dropbox", "Google Disk", "Box", "4shared"
]
classifiers = [
"Environment :: Console",
"Environment :: Web Environment",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: Unix",
"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",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.6"
dependencies = [
"requests",
"lxml",
"python-dateutil",
]
[project.optional-dependencies]
test = ["pytest", "coverage"]
dev = ["pytest", "coverage", "ruff"]
[project.urls]
Homepage = "https://github.com/ezhov-evgeny/webdav-client-python-3"
Repository = "https://github.com/ezhov-evgeny/webdav-client-python-3"
[tool.setuptools]
script-files = ["wdc"]
[tool.setuptools.packages.find]
exclude = ["tests*"]