pyicloud/setup.py

39 lines
1.1 KiB
Python
Raw Normal View History

from setuptools import setup, find_packages
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='pyicloud',
2020-03-22 18:32:48 +01:00
version='0.9.6',
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',
2020-03-22 19:45:17 +01:00
packages=find_packages(include=["pyicloud*"]),
install_requires=required,
classifiers=[
'Intended Audience :: Developers',
2020-03-20 12:36:07 +01:00
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
2020-03-20 12:36:07 +01:00
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
entry_points={
'console_scripts': [
'icloud = pyicloud.cmdline:main'
]
},
)