pyicloud/setup.py
Tor Arne Vestbø 49eebc5cdc Release 0.8.1
Bart274 <de_van_bos@msn.com> (1):
      Replace manual time zone handling with use of the tzlocal module

Tor Arne Vestbø <torarnv@gmail.com> (5):
      Remove leftover debug logging from iCloud Photo service
      Remove useless sanity check for sparse photo album assets
      Don't assume request response is always JSON
      Charge HTTP logging to separate child logger of each service
      Don't set host header in reminders service
2016-03-12 14:57:26 +01:00

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.1',
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'
]
},
)