forked from cogniteev/pyonedrive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 977 Bytes
/
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
""" Setup file for distutils
"""
from distutils.core import setup
from setuptools import find_packages
setup(
name='pyonedrive',
version='1.1.2',
author='Tony Sanchez',
author_email='mail.tsanchez@gmail.com',
url='https://github.com/tsanch3z/pyonedrive',
download_url='https://github.com/tsanch3z/pyonedrive/archive/master.zip',
description='Onedrive REST api client',
packages=find_packages(exclude=['tests']),
license='GPLv2',
platforms='OS Independent',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
'Development Status :: 4 - Beta'
],
install_requires='requests>=2.2.1'
)