pyicloud/setup.py
Tor Arne Vestbø e59eafe04d Add MIT license
As discussed in #78
2016-04-02 13:25:48 +02:00

35 lines
957 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.'
),
maintainer='The PyiCloud Authors',
maintainer_email=' ',
license='MIT',
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',
'License :: OSI Approved :: MIT License',
],
entry_points={
'console_scripts': [
'icloud = pyicloud.cmdline:main'
]
},
)