pyicloud/setup.py

34 lines
891 B
Python
Raw Permalink Normal View History

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