Skip to content
This repository has been archived by the owner on Jul 24, 2021. It is now read-only.

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioChen committed Feb 12, 2013
1 parent ad57e78 commit 2bdd531
Show file tree
Hide file tree
Showing 4 changed files with 799 additions and 779 deletions.
90 changes: 46 additions & 44 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,50 +6,52 @@
pkg_root = os.path.dirname(__file__)

# Error-handling here is to allow package to be built w/o README included
try: readme = open(os.path.join(pkg_root, 'README.txt')).read()
except IOError: readme = ''
try:
readme = open(os.path.join(pkg_root, 'README.txt')).read()
except IOError:
readme = ''

setup(

name = 'python-skydrive',
version = '13.01.2',
author = 'Mike Kazantsev',
author_email = 'mk.fraggod@gmail.com',
license = 'WTFPL',
keywords = 'skydrive api oauth2 rest microsoft cloud live liveconnect',
url = 'http://github.com/mk-fg/python-skydrive',

description = 'Python and command-line interface'
' for Microsoft LiveConnect SkyDrive REST API v5.0',
long_description = readme,

classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Internet',
'Topic :: Software Development',
'Topic :: System :: Archiving',
'Topic :: System :: Filesystems',
'Topic :: Utilities' ],

# install_requires = [],
extras_require = dict(
standalone=['requests'],
cli=['PyYAML', 'requests'],
conf=['PyYAML', 'requests'] ),

packages = find_packages(),
include_package_data = True,
package_data = {'': ['README.txt']},
exclude_package_data = {'': ['README.*']},

entry_points = dict(console_scripts=[
'skydrive-cli = skydrive.cli_tool:main' ]) )
name='python-skydrive',
version='13.01.2',
author='Mike Kazantsev',
author_email='mk.fraggod@gmail.com',
license='WTFPL',
keywords='skydrive api oauth2 rest microsoft cloud live liveconnect',
url='http://github.com/mk-fg/python-skydrive',

description='Python and command-line interface'
' for Microsoft LiveConnect SkyDrive REST API v5.0',
long_description=readme,

classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Internet',
'Topic :: Software Development',
'Topic :: System :: Archiving',
'Topic :: System :: Filesystems',
'Topic :: Utilities'],

# install_requires = [],
extras_require=dict(
standalone=['requests'],
cli=['PyYAML', 'requests'],
conf=['PyYAML', 'requests']),

packages=find_packages(),
include_package_data=True,
package_data={'': ['README.txt']},
exclude_package_data={'': ['README.*']},

entry_points=dict(console_scripts=[
'skydrive-cli = skydrive.cli_tool:main']))
Loading

0 comments on commit 2bdd531

Please sign in to comment.