-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (35 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#
# setup.py
# CloudKitPy
#
# Created by James Barrow on 28/04/2016.
# Copyright (c) 2016 James Barrow - Pig on a Hill Productions.
#
# !/usr/bin/env python
# flake8: noqa
import cloudkitpy
from setuptools import setup
description = 'CloudKitPy - A python wrapper of CloudKit Web Services'
setup(
name='cloudkitpy',
version=cloudkitpy.__version__,
description=description,
author=cloudkitpy.__author__,
author_email='[email protected]',
url='https://github.com/Baza207/CloudKitPy',
license=cloudkitpy.__license__,
zip_safe=False,
packages=['cloudkitpy'],
install_requires=['ecdsa', 'requests'],
classifiers=[
'Development Status :: 1 - Development',
'Environment :: Console',
'Framework :: CloudKitPy',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
]
)