-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 850 Bytes
/
setup.py
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
from setuptools import setup, find_packages
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name="icloudpd",
version="1.7.2",
url="https://github.com/icloud-photos-downloader/icloud_photos_downloader",
description=(
"icloudpd is a command-line tool to download photos and videos from iCloud."
),
maintainer="Nathan Broadbent",
maintainer_email="[email protected]",
license="MIT",
packages=find_packages(),
install_requires=required,
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
entry_points={"console_scripts": ["icloudpd = icloudpd.base:main"]},
)