0c138d6dac
Adam Coddington <me@adamcoddington.net> (2): Drops support for Python 2.6. [#64] Adds Keychain-based Authentication Daren Lord <dlaccount@icloud.com> (1): Squashed commit of the following: Tor Arne Vestbø <torarnv@gmail.com> (11): Normalize HTTP header names to title case Remove three unused endpoint definitions from PyiCloudService base Use same setup/login endpoint as iCloud webapp Don't set Host header manually Fix reStructuredText inline literal formatting in README Document how to use the contacts API Simplify login sequence Add centralized logging of iCloud API requests Add support for two-factor authentication Add iCloud Photo Library service Tweak wording of password prompt yannickulrich <yannick.ulrich@collinproject.de> (3): Adding Reminder support PEP8 compatibility PEP8 for base.py
33 lines
891 B
Python
33 lines
891 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
with open('requirements.txt') as f:
|
|
required = f.read().splitlines()
|
|
|
|
|
|
setup(
|
|
name='pyicloud',
|
|
version='0.8.0',
|
|
url='https://github.com/picklepete/pyicloud',
|
|
description=(
|
|
'PyiCloud is a module which allows pythonistas to '
|
|
'interact with iCloud webservices.'
|
|
),
|
|
author='Peter Evans',
|
|
author_email='evans.peter@gmail.com',
|
|
packages=find_packages(),
|
|
install_requires=required,
|
|
classifiers=[
|
|
'Intended Audience :: Developers',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'icloud = pyicloud.cmdline:main'
|
|
]
|
|
},
|
|
)
|