pyicloud/setup.py

45 lines
1.5 KiB
Python
Raw Normal View History

#!/usr/bin/env python
"""pyiCloud setup."""
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"
with open("requirements.txt") as f:
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()
setup(
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,
maintainer="The PyiCloud Authors",
2020-03-22 19:45:17 +01:00
packages=find_packages(include=["pyicloud*"]),
install_requires=required,
python_requires=">=3.6",
2020-04-02 19:45:17 +02:00
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
entry_points={"console_scripts": ["icloud = pyicloud.cmdline:main"]},
2020-04-02 19:45:17 +02:00
keywords=["icloud", "find-my-iphone"],
)