-
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.
- Fix broken tests. - Additional repo cleanup.
- Loading branch information
Showing
7 changed files
with
289 additions
and
247 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 |
---|---|---|
@@ -1,13 +1,14 @@ | ||
__pycache__/ | ||
.cache/ | ||
.eggs/ | ||
*.egg | ||
*.egg-info/ | ||
*.pyc | ||
*~ | ||
/.cache/ | ||
/.eggs/ | ||
/.idea/ | ||
/.tox/ | ||
/build/ | ||
/dist/ | ||
/docs/_build/ | ||
/setuptools-3.1.zip | ||
__pycache__/ | ||
.DS_Store | ||
*.egg | ||
*.egg-info/ | ||
*.pyc | ||
*.pyo | ||
*~ |
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
# where package_data is expected to be str and not unicode. | ||
from __future__ import absolute_import, division, print_function | ||
|
||
import codecs | ||
import os | ||
import sys | ||
|
||
|
@@ -43,46 +44,38 @@ | |
with open('test/requirements.txt') as f: | ||
test_reqs += f.read().splitlines() | ||
|
||
with open('LICENSE') as f: | ||
LICENSE = f.read() | ||
|
||
with open('README.rst') as f: | ||
with codecs.open('README.rst', encoding='utf-8') as f: | ||
README = f.read() | ||
|
||
dist = setup( | ||
name='dropbox', | ||
version=version, | ||
description='Official Dropbox API Client', | ||
author='Dropbox', | ||
author_email='[email protected]', | ||
url='http://www.dropbox.com/developers', | ||
install_requires=install_reqs, | ||
setup_requires=setup_requires, | ||
tests_require=test_reqs, | ||
license=LICENSE, | ||
zip_safe=False, | ||
packages=['dropbox'], | ||
package_data={'dropbox': ['trusted-certs.crt']}, | ||
zip_safe=False, | ||
author_email='[email protected]', | ||
author='Dropbox', | ||
description='Official Dropbox API Client', | ||
license='MIT License', | ||
long_description=README, | ||
platforms=[ | ||
'CPython 2.7', | ||
'CPython 3.3', | ||
'CPython 3.4', | ||
'CPython 3.5', | ||
'CPython 3.6', | ||
], | ||
url='http://www.dropbox.com/developers', | ||
# From <https://pypi.python.org/pypi?%3Aaction=list_classifiers> | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: POSIX', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: Implementation :: CPython', | ||
'Programming Language :: Python :: Implementation :: PyPy', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
) |
Submodule stone
updated
21 files
+9 −12 | .gitignore | |
+5 −6 | docs/builtin_generators.rst | |
+0 −0 | docs/evolve_spec.rst | |
+0 −0 | docs/generator_ref.rst | |
+0 −0 | docs/json_serializer.rst | |
+0 −0 | docs/lang_ref.rst | |
+0 −0 | docs/managing_specs.rst | |
+0 −0 | docs/network_protocol.rst | |
+16 −20 | setup.py | |
+3 −3 | stone/api.py | |
+1 −0 | stone/cli.py | |
+6 −2 | stone/generator.py | |
+72 −0 | stone/target/python_helpers.py | |
+1 −0 | stone/target/python_rsrc/stone_base.py | |
+91 −0 | stone/target/python_type_mapping.py | |
+357 −0 | stone/target/python_type_stubs.py | |
+25 −84 | stone/target/python_types.py | |
+6 −0 | stone/typing_hacks.py | |
+1 −0 | test/requirements.txt | |
+366 −0 | test/test_python_type_stubs.py | |
+3 −2 | tox.ini |
Oops, something went wrong.