2022-02-16 20:00:29 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
"""pyiCloud setup."""
|
|
|
|
|
2013-05-19 02:20:41 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2020-04-02 19:45:17 +02:00
|
|
|
REPO_URL = "https://github.com/picklepete/pyicloud"
|
2021-02-01 13:22:29 +01:00
|
|
|
VERSION = "0.10.2"
|
2013-05-19 02:20:41 +02:00
|
|
|
|
2020-03-24 14:54:43 +01:00
|
|
|
with open("requirements.txt") as f:
|
2013-05-19 02:20:41 +02:00
|
|
|
required = f.read().splitlines()
|
|
|
|
|
2020-04-02 19:45:17 +02:00
|
|
|
with open("README.rst", encoding="utf-8") as f:
|
|
|
|
long_description = f.read()
|
2013-05-19 02:20:41 +02:00
|
|
|
|
|
|
|
setup(
|
2020-03-24 14:54:43 +01:00
|
|
|
name="pyicloud",
|
2020-04-02 19:45:17 +02:00
|
|
|
version=VERSION,
|
|
|
|
url=REPO_URL,
|
|
|
|
download_url=REPO_URL + "/tarball/" + VERSION,
|
|
|
|
description="PyiCloud is a module which allows pythonistas to interact with iCloud webservices.",
|
|
|
|
long_description=long_description,
|
2020-03-24 14:54:43 +01:00
|
|
|
maintainer="The PyiCloud Authors",
|
2020-03-22 19:45:17 +01:00
|
|
|
packages=find_packages(include=["pyicloud*"]),
|
2013-10-12 03:35:26 +02:00
|
|
|
install_requires=required,
|
2022-02-16 20:00:29 +01:00
|
|
|
python_requires=">=3.6",
|
2020-04-02 19:45:17 +02:00
|
|
|
license="MIT",
|
2013-10-12 03:35:26 +02:00
|
|
|
classifiers=[
|
2022-02-16 20:00:29 +01:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
2020-03-24 14:54:43 +01:00
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
2022-02-16 20:00:29 +01:00
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
2020-03-24 14:54:43 +01:00
|
|
|
"Programming Language :: Python :: 3",
|
2020-04-02 19:45:17 +02:00
|
|
|
"Programming Language :: Python :: 3.6",
|
2020-03-20 12:36:07 +01:00
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
2022-02-16 20:00:29 +01:00
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Topic :: Software Development :: Libraries",
|
2013-10-12 03:35:26 +02:00
|
|
|
],
|
2020-03-24 14:54:43 +01:00
|
|
|
entry_points={"console_scripts": ["icloud = pyicloud.cmdline:main"]},
|
2020-04-02 19:45:17 +02:00
|
|
|
keywords=["icloud", "find-my-iphone"],
|
2013-05-19 02:20:41 +02:00
|
|
|
)
|