2013-05-19 02:20:41 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
|
|
with open('requirements.txt') as f:
|
|
|
|
required = f.read().splitlines()
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='pyicloud',
|
2020-03-10 00:14:46 +01:00
|
|
|
version='0.9.4',
|
2013-05-19 02:20:41 +02:00
|
|
|
url='https://github.com/picklepete/pyicloud',
|
|
|
|
description=(
|
|
|
|
'PyiCloud is a module which allows pythonistas to '
|
|
|
|
'interact with iCloud webservices.'
|
|
|
|
),
|
2016-03-17 02:38:55 +01:00
|
|
|
maintainer='The PyiCloud Authors',
|
|
|
|
maintainer_email=' ',
|
|
|
|
license='MIT',
|
2013-05-19 02:20:41 +02:00
|
|
|
packages=find_packages(),
|
2013-10-12 03:35:26 +02:00
|
|
|
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',
|
2016-03-17 02:38:55 +01:00
|
|
|
'License :: OSI Approved :: MIT License',
|
2013-10-12 03:35:26 +02:00
|
|
|
],
|
2014-04-14 03:46:11 +02:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'icloud = pyicloud.cmdline:main'
|
|
|
|
]
|
|
|
|
},
|
2013-05-19 02:20:41 +02:00
|
|
|
)
|