-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
19 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include ez_setup.py | ||
include LICENSE | ||
include *.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
# Don't import unicode_literals because of a bug in py2 setuptools | ||
# where package_data is expected to be str and not unicode. | ||
from __future__ import absolute_import, division, print_function | ||
|
||
# Ensure setuptools is available | ||
import sys | ||
|
||
from ez_setup import use_setuptools | ||
use_setuptools() | ||
try: | ||
from ez_setup import use_setuptools | ||
use_setuptools() | ||
except ImportError: | ||
# Try to use ez_setup, but if not, continue anyway. The import is known | ||
# to fail when installing from a tar.gz. | ||
print('Could not import ez_setup', file=sys.stderr) | ||
|
||
from setuptools import setup | ||
|
||
|
@@ -16,7 +25,7 @@ | |
|
||
dist = setup( | ||
name='dropbox', | ||
version='3.13', | ||
version='3.14', | ||
description='Official Dropbox API Client', | ||
author='Dropbox', | ||
author_email='[email protected]', | ||
|