-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
97 lines (90 loc) · 2.21 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = [
"setuptools==69.0.2",
"wheel==0.42.0",
]
build-backend = "setuptools.build_meta"
[project]
version="1.16.2"
name = "icloudpd"
description = "icloudpd is a command-line tool to download photos and videos from iCloud."
readme = "README_PYPI.md"
requires-python = ">=3.8,<=3.12"
keywords = ["icloud", "photo"]
license = {file="LICENSE.md"}
authors=[
{name = "The iCloud Photo Downloader Authors"}
]
classifiers = [
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"requests==2.31.0",
"schema==0.7.5",
"click==8.1.6",
"python-dateutil==2.8.2",
"tqdm==4.66.0",
"piexif==1.1.3",
"urllib3==1.26.16",
# from pyicloud_ipd
"six==1.16.0",
"tzlocal==4.3.1",
"pytz==2022.7.1",
"certifi==2022.12.7",
"keyring==23.13.1",
"keyrings-alt==4.2.0"
]
[project.optional-dependencies]
dev = [
"twine==4.0.2",
"pyinstaller==5.13.2",
"wheel==0.42.0",
"auditwheel==5.4.0"
]
test = [
"pytest==7.4.3",
"mock==5.1.0",
"freezegun==1.2.2",
"vcrpy==4.4.0",
"pytest-cov==4.1.0",
"pylint==2.17.5",
"coveralls==3.3.1",
"autopep8==2.0.2",
"pytest-timeout==2.1.0",
"pytest-xdist==3.3.1",
"mypy==1.7.0",
"types-pytz==2022.7.1.2",
"types-tzlocal==4.3.0.0",
"types-requests==2.31.0.2",
"types-six==1.16.0",
"types-urllib3==1.26.16",
"types-tqdm==4.66.0.1",
"types-mock==5.1.0.1"
]
[project.urls]
Homepage="https://github.com/icloud-photos-downloader/icloud_photos_downloader"
[project.scripts]
icloudpd = "icloudpd.base:main"
icloud = "pyicloud_ipd.cmdline:main"
icloudpd_ex = "starters.icloudpd_ex:main"
[tool.pytest.ini_options]
log_format = "%(levelname)-8s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
timeout = 300
testpaths = [
"tests",
"src" # needed for doctests
]
pythonpath = [
"src"
]
addopts = "--doctest-modules"
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
exclude = ["starters"]
[[tool.mypy.overrides]]
module = ['piexif.*', 'vcr.*']
ignore_missing_imports = true