-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (41 loc) · 1 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
[project]
name = "mailru-cloud-cli"
version = "1.4.3"
description = "Неофициальный CLI-клиент для Mail.ru Cloud (WebDAV)"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "mueqee", email = "you@example.com"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Environment :: Console",
]
dependencies = [
"click>=8",
"webdavclient3>=3.14",
"pytest>=8", # для пользователей, желающих запускать тесты
"rich>=12.0.0",
]
[project.scripts]
mailrucloud = "main:cli"
[project.urls]
Homepage = "https://github.com/mueqee/mailrucloud"
Changelog = "https://github.com/mueqee/mailrucloud/blob/main/CHANGELOG.md"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = [
"api",
"auth",
"cli",
"download",
"main",
"network",
"sync",
"upload",
"sync_daemon",
]