From: DongHun Kwak Date: Mon, 14 Jan 2019 02:18:57 +0000 (+0900) Subject: Bump to python-setuptools 40.6.3 X-Git-Tag: submit/tizen_base/20190114.040546^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=82e8ea976a515d7f30c2c2e6cb324b2024b614da;p=platform%2Fupstream%2Fpython-setuptools.git Bump to python-setuptools 40.6.3 Change-Id: Ibd9a4f46a1213dff05f5fa59a1dc8fe1ed1c2e92 Signed-off-by: DongHun Kwak --- diff --git a/.codecov.yml b/.codecov.yml deleted file mode 100644 index 69cb760..0000000 --- a/.codecov.yml +++ /dev/null @@ -1 +0,0 @@ -comment: false diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index aa55080..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,12 +0,0 @@ - - - -## Summary of changes - - - -Closes - -### Pull Request Checklist -- [ ] Changes have tests -- [ ] News fragment added in changelog.d. See [documentation](http://setuptools.readthedocs.io/en/latest/developer-guide.html#making-a-pull-request) for details diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 0c272d1..0000000 --- a/.gitignore +++ /dev/null @@ -1,21 +0,0 @@ -# syntax: glob -bin -build -dist -docs/build -include -lib -distribute.egg-info -setuptools.egg-info -.coverage -.eggs -.tox -.venv -*.egg -*.py[cod] -*.swp -*~ -.hg* -.cache -.idea/ -.pytest_cache/ diff --git a/.readthedocs.yml b/.readthedocs.yml deleted file mode 100644 index 3aef6b6..0000000 --- a/.readthedocs.yml +++ /dev/null @@ -1,4 +0,0 @@ -python: - version: 3 - requirements_file: docs/requirements.txt - pip_install: false diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d1febcc..0000000 --- a/.travis.yml +++ /dev/null @@ -1,84 +0,0 @@ -dist: trusty -language: python - -jobs: - fast_finish: true - include: - - &latest_py2 - python: 2.7 - - <<: *latest_py2 - env: LANG=C - - python: pypy - env: DISABLE_COVERAGE=1 # Don't run coverage on pypy (too slow). - - python: pypy3 - env: DISABLE_COVERAGE=1 - - python: 3.4 - - python: 3.5 - - &default_py - python: 3.6 - - &latest_py3 - python: 3.7 - dist: xenial - - <<: *latest_py3 - env: LANG=C - - python: 3.8-dev - dist: xenial - env: DISABLE_COVERAGE=1 # Ignore invalid coverage data. - - <<: *default_py - stage: deploy (to PyPI for tagged commits) - if: tag IS present - install: skip - script: skip - after_success: true - before_deploy: - - python bootstrap.py - - "! grep pyc setuptools.egg-info/SOURCES.txt" - deploy: - provider: pypi - on: - tags: true - all_branches: true - user: jaraco - password: - secure: tfWrsQMH2bHrWjqnP+08IX1WlkbW94Q30f4d7lCyhWS1FIf/jBDx4jrEILNfMxQ1NCwuBRje5sihj1Ow0BFf0vVrkaeff2IdvnNDEGFduMejaEQJL3s3QrLfpiAvUbtqwyWaHfAdGfk48PovDKTx0ZTvXZKYGXZhxGCYSlG2CE6Y6RDvnEl6Tk8e+LqUohkcSOwxrRwUoyxSnUaavdGohXxDT8MJlfWOXgr2u+KsRrriZqp3l6Fdsnk4IGvy6pXpy42L1HYQyyVu9XyJilR2JTbC6eCp5f8p26093m1Qas49+t6vYb0VLqQe12dO+Jm3v4uztSS5pPQzS7PFyjEYd2Rdb6ijsdbsy1074S4q7G9Sz+T3RsPUwYEJ07lzez8cxP64dtj5j94RL8m35A1Fb1OE8hHN+4c1yLG1gudfXbem+fUhi2eqhJrzQo5vsvDv1xS5x5GIS5ZHgKHCsWcW1Tv+dsFkrhaup3uU6VkOuc9UN+7VPsGEY7NvquGpTm8O1CnGJRzuJg6nbYRGj8ORwDpI0KmrExx6akV92P72fMC/I5TCgbSQSZn370H3Jj40gz1SM30WAli9M+wFHFd4ddMVY65yxj0NLmrP+m1tvnWdKtNh/RHuoW92d9/UFtiA5IhMf1/3djfsjBq6S9NT1uaLkVkTttqrPYJ7hOql8+g= - distributions: release - skip_cleanup: true - skip_upload_docs: true - -cache: pip - -install: - -# ensure we have recent pip/setuptools/wheel -- pip install --disable-pip-version-check --upgrade pip setuptools wheel -# need tox to get started -- pip install --upgrade tox tox-venv - -# Output the env, to verify behavior -- pip freeze --all -- env - -# update egg_info based on setup.py in checkout -- python bootstrap.py -- "! grep pyc setuptools.egg-info/SOURCES.txt" - -script: - - | - ( # Run testsuite. - if [ -z "$DISABLE_COVERAGE" ] - then - tox -- --cov - else - tox - fi - ) - -after_success: - - | - ( # Upload coverage data. - if [ -z "$DISABLE_COVERAGE" ] - then - export TRAVIS_JOB_NAME="${TRAVIS_PYTHON_VERSION} (LANG=$LANG)" CODECOV_ENV=TRAVIS_JOB_NAME - tox -e coverage,codecov - fi - ) diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index ef4a9f7..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,36 +0,0 @@ -clone_depth: 50 - -environment: - - APPVEYOR: True - CODECOV_ENV: APPVEYOR_JOB_NAME - - matrix: - - APPVEYOR_JOB_NAME: "python36-x64" - PYTHON: "C:\\Python36-x64" - - APPVEYOR_JOB_NAME: "python27-x64" - PYTHON: "C:\\Python27-x64" - -install: - # symlink python from a directory with a space - - "mklink /d \"C:\\Program Files\\Python\" %PYTHON%" - - "SET PYTHON=\"C:\\Program Files\\Python\"" - - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - -build: off - -cache: - - '%LOCALAPPDATA%\pip\Cache' - -test_script: - - python --version - - python -m pip install --disable-pip-version-check --upgrade pip setuptools wheel - - pip install --upgrade tox tox-venv - - pip freeze --all - - python bootstrap.py - - tox -- --cov - -after_test: - - tox -e coverage,codecov - -version: '{build}' diff --git a/changelog.d/.gitignore b/changelog.d/.gitignore deleted file mode 100644 index e69de29..0000000 diff --git a/netlify.toml b/netlify.toml deleted file mode 100644 index ec21e7b..0000000 --- a/netlify.toml +++ /dev/null @@ -1,5 +0,0 @@ -# Configuration for pull request documentation previews via Netlify - -[build] - publish = "docs/build/html" - command = "pip install tox && tox -e docs" diff --git a/packaging/python-setuptools.spec b/packaging/python-setuptools.spec index b649b72..a3e5151 100644 --- a/packaging/python-setuptools.spec +++ b/packaging/python-setuptools.spec @@ -16,7 +16,7 @@ # Name: python-setuptools -Version: 34.3.3 +Version: 40.6.3 Release: 0 Summary: Easily download, build, install, upgrade, and uninstall Python packages License: MIT diff --git a/packaging/python3-setuptools.manifest b/packaging/python3-setuptools.manifest new file mode 100644 index 0000000..017d22d --- /dev/null +++ b/packaging/python3-setuptools.manifest @@ -0,0 +1,5 @@ + + + + + diff --git a/packaging/python3-setuptools.spec b/packaging/python3-setuptools.spec new file mode 100644 index 0000000..73cf164 --- /dev/null +++ b/packaging/python3-setuptools.spec @@ -0,0 +1,80 @@ +# +# spec file for package python3-setuptools +# +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +Name: python3-setuptools +Version: 40.6.3 +Release: 0 +Summary: Easily download, build, install, upgrade, and uninstall Python packages +License: MIT +Group: Development/Languages/Python +Source: https://pypi.io/packages/source/s/setuptools/setuptools-%{version}.zip +Source1001: %{name}.manifest + +BuildRequires: python3-devel +BuildRequires: python3-xml +BuildRequires: unzip + +# needed for SLE +Requires: python3 +Requires: python3-xml + +Provides: python3-distribute = %{version} +Obsoletes: python3-distribute < %{version} + +BuildArch: noarch + +%description +setuptools is a collection of enhancements to the Python distutils that +allow you to more easily build and distribute Python packages, +especially ones that have dependencies on other packages. + + +%prep +%setup -q -n setuptools-%{version} +find . -type f -name "*.orig" -delete + +# fix rpmlint spurious-executable-perm +chmod -x README.rst + +# strip shebangs to fix rpmlint warnings +# "explain the sed": +# 1 = first line only +# s@...@...@ = same as s/.../.../ except with @ instead of / +# ^ = start; #!/ = shebang leading characters; .* = rest of line; $ = end +# replace with nothing +sed -r -i '1s@^#!/.*$@@' setuptools/command/easy_install.py + +%build +cp %{SOURCE1001} . +python3 setup.py build + +%install +python3 setup.py install --prefix=%{_prefix} --root=%{buildroot} + +%files +%manifest %{name}.manifest +%defattr(-,root,root,-) +%license LICENSE +%{_bindir}/easy_install* +%{python3_sitelib}/setuptools +%{python3_sitelib}/setuptools-%{version}-py%{python3_version}.egg-info +%{python3_sitelib}/easy_install.py* +%{python3_sitelib}/pkg_resources +%{python3_sitelib}/__pycache__/easy_install.cpython-36.pyc + +%changelog + diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 07c23bb..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,37 +0,0 @@ -[build-system] -requires = ["wheel"] - -[tool.towncrier] - package = "setuptools" - package_dir = "setuptools" - filename = "CHANGES.rst" - directory = "changelog.d" - title_format = "v{version}" - issue_format = "#{issue}" - template = "towncrier_template.rst" - underlines = ["-"] - - [[tool.towncrier.type]] - directory = "deprecation" - name = "Deprecations" - showcontent = true - - [[tool.towncrier.type]] - directory = "breaking" - name = "Breaking Changes" - showcontent = true - - [[tool.towncrier.type]] - directory = "change" - name = "Changes" - showcontent = true - - [[tool.towncrier.type]] - directory = "doc" - name = "Documentation changes" - showcontent = true - - [[tool.towncrier.type]] - directory = "misc" - name = "Misc" - showcontent = true diff --git a/setup.cfg b/setup.cfg index 57ab623..364c8a8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,8 +4,8 @@ commit = True tag = True [egg_info] -tag_build = .post -tag_date = 1 +tag_build = +tag_date = 0 [aliases] clean_egg_info = egg_info -Db '' diff --git a/setuptools.egg-info/PKG-INFO b/setuptools.egg-info/PKG-INFO new file mode 100644 index 0000000..bf575df --- /dev/null +++ b/setuptools.egg-info/PKG-INFO @@ -0,0 +1,69 @@ +Metadata-Version: 2.1 +Name: setuptools +Version: 40.6.3 +Summary: Easily download, build, install, upgrade, and uninstall Python packages +Home-page: https://github.com/pypa/setuptools +Author: Python Packaging Authority +Author-email: distutils-sig@python.org +License: UNKNOWN +Project-URL: Documentation, https://setuptools.readthedocs.io/ +Description: .. image:: https://img.shields.io/pypi/v/setuptools.svg + :target: https://pypi.org/project/setuptools + + .. image:: https://readthedocs.org/projects/setuptools/badge/?version=latest + :target: https://setuptools.readthedocs.io + + .. image:: https://img.shields.io/travis/pypa/setuptools/master.svg?label=Linux%20build%20%40%20Travis%20CI + :target: https://travis-ci.org/pypa/setuptools + + .. image:: https://img.shields.io/appveyor/ci/pypa/setuptools/master.svg?label=Windows%20build%20%40%20Appveyor + :target: https://ci.appveyor.com/project/pypa/setuptools/branch/master + + .. image:: https://img.shields.io/codecov/c/github/pypa/setuptools/master.svg + :target: https://codecov.io/gh/pypa/setuptools + + .. image:: https://img.shields.io/pypi/pyversions/setuptools.svg + + .. image:: https://tidelift.com/badges/github/pypa/setuptools + :target: https://tidelift.com/subscription/pkg/pypi-setuptools?utm_source=pypi-setuptools&utm_medium=readme + + See the `Installation Instructions + `_ in the Python Packaging + User's Guide for instructions on installing, upgrading, and uninstalling + Setuptools. + + Questions and comments should be directed to the `distutils-sig + mailing list `_. + Bug reports and especially tested patches may be + submitted directly to the `bug tracker + `_. + + + Code of Conduct + --------------- + + Everyone interacting in the setuptools project's codebases, issue trackers, + chat rooms, and mailing lists is expected to follow the + `PyPA Code of Conduct `_. + +Keywords: CPAN PyPI distutils eggs package management +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python :: 2 +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: System :: Archiving :: Packaging +Classifier: Topic :: System :: Systems Administration +Classifier: Topic :: Utilities +Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.* +Description-Content-Type: text/x-rst; charset=UTF-8 +Provides-Extra: certs +Provides-Extra: ssl diff --git a/setuptools.egg-info/SOURCES.txt b/setuptools.egg-info/SOURCES.txt new file mode 100644 index 0000000..b6fd1d5 --- /dev/null +++ b/setuptools.egg-info/SOURCES.txt @@ -0,0 +1,191 @@ +CHANGES.rst +LICENSE +MANIFEST.in +README.rst +bootstrap.py +conftest.py +easy_install.py +launcher.c +msvc-build-launcher.cmd +pavement.py +pytest.ini +setup.cfg +setup.py +towncrier_template.rst +tox.ini +docs/Makefile +docs/conf.py +docs/developer-guide.txt +docs/development.txt +docs/easy_install.txt +docs/ez_setup.txt +docs/formats.txt +docs/history.txt +docs/index.txt +docs/pkg_resources.txt +docs/python3.txt +docs/releases.txt +docs/requirements.txt +docs/roadmap.txt +docs/setuptools.txt +docs/_templates/indexsidebar.html +docs/_theme/nature/theme.conf +docs/_theme/nature/static/nature.css_t +docs/_theme/nature/static/pygments.css +pkg_resources/__init__.py +pkg_resources/api_tests.txt +pkg_resources/py31compat.py +pkg_resources/_vendor/__init__.py +pkg_resources/_vendor/appdirs.py +pkg_resources/_vendor/pyparsing.py +pkg_resources/_vendor/six.py +pkg_resources/_vendor/vendored.txt +pkg_resources/_vendor/packaging/__about__.py +pkg_resources/_vendor/packaging/__init__.py +pkg_resources/_vendor/packaging/_compat.py +pkg_resources/_vendor/packaging/_structures.py +pkg_resources/_vendor/packaging/markers.py +pkg_resources/_vendor/packaging/requirements.py +pkg_resources/_vendor/packaging/specifiers.py +pkg_resources/_vendor/packaging/utils.py +pkg_resources/_vendor/packaging/version.py +pkg_resources/extern/__init__.py +pkg_resources/tests/__init__.py +pkg_resources/tests/test_find_distributions.py +pkg_resources/tests/test_markers.py +pkg_resources/tests/test_pkg_resources.py +pkg_resources/tests/test_resources.py +pkg_resources/tests/test_working_set.py +setuptools/__init__.py +setuptools/_deprecation_warning.py +setuptools/archive_util.py +setuptools/build_meta.py +setuptools/cli-32.exe +setuptools/cli-64.exe +setuptools/cli.exe +setuptools/config.py +setuptools/dep_util.py +setuptools/depends.py +setuptools/dist.py +setuptools/extension.py +setuptools/glibc.py +setuptools/glob.py +setuptools/gui-32.exe +setuptools/gui-64.exe +setuptools/gui.exe +setuptools/launch.py +setuptools/lib2to3_ex.py +setuptools/monkey.py +setuptools/msvc.py +setuptools/namespaces.py +setuptools/package_index.py +setuptools/pep425tags.py +setuptools/py27compat.py +setuptools/py31compat.py +setuptools/py33compat.py +setuptools/py36compat.py +setuptools/sandbox.py +setuptools/script (dev).tmpl +setuptools/script.tmpl +setuptools/site-patch.py +setuptools/ssl_support.py +setuptools/unicode_utils.py +setuptools/version.py +setuptools/wheel.py +setuptools/windows_support.py +setuptools.egg-info/PKG-INFO +setuptools.egg-info/SOURCES.txt +setuptools.egg-info/dependency_links.txt +setuptools.egg-info/entry_points.txt +setuptools.egg-info/requires.txt +setuptools.egg-info/top_level.txt +setuptools.egg-info/zip-safe +setuptools/_vendor/__init__.py +setuptools/_vendor/pyparsing.py +setuptools/_vendor/six.py +setuptools/_vendor/vendored.txt +setuptools/_vendor/packaging/__about__.py +setuptools/_vendor/packaging/__init__.py +setuptools/_vendor/packaging/_compat.py +setuptools/_vendor/packaging/_structures.py +setuptools/_vendor/packaging/markers.py +setuptools/_vendor/packaging/requirements.py +setuptools/_vendor/packaging/specifiers.py +setuptools/_vendor/packaging/utils.py +setuptools/_vendor/packaging/version.py +setuptools/command/__init__.py +setuptools/command/alias.py +setuptools/command/bdist_egg.py +setuptools/command/bdist_rpm.py +setuptools/command/bdist_wininst.py +setuptools/command/build_clib.py +setuptools/command/build_ext.py +setuptools/command/build_py.py +setuptools/command/develop.py +setuptools/command/dist_info.py +setuptools/command/easy_install.py +setuptools/command/egg_info.py +setuptools/command/install.py +setuptools/command/install_egg_info.py +setuptools/command/install_lib.py +setuptools/command/install_scripts.py +setuptools/command/launcher manifest.xml +setuptools/command/py36compat.py +setuptools/command/register.py +setuptools/command/rotate.py +setuptools/command/saveopts.py +setuptools/command/sdist.py +setuptools/command/setopt.py +setuptools/command/test.py +setuptools/command/upload.py +setuptools/command/upload_docs.py +setuptools/extern/__init__.py +setuptools/tests/__init__.py +setuptools/tests/contexts.py +setuptools/tests/environment.py +setuptools/tests/files.py +setuptools/tests/fixtures.py +setuptools/tests/mod_with_constant.py +setuptools/tests/namespaces.py +setuptools/tests/script-with-bom.py +setuptools/tests/server.py +setuptools/tests/test_archive_util.py +setuptools/tests/test_bdist_egg.py +setuptools/tests/test_build_clib.py +setuptools/tests/test_build_ext.py +setuptools/tests/test_build_meta.py +setuptools/tests/test_build_py.py +setuptools/tests/test_config.py +setuptools/tests/test_dep_util.py +setuptools/tests/test_depends.py +setuptools/tests/test_develop.py +setuptools/tests/test_dist.py +setuptools/tests/test_dist_info.py +setuptools/tests/test_easy_install.py +setuptools/tests/test_egg_info.py +setuptools/tests/test_find_packages.py +setuptools/tests/test_glibc.py +setuptools/tests/test_glob.py +setuptools/tests/test_install_scripts.py +setuptools/tests/test_integration.py +setuptools/tests/test_manifest.py +setuptools/tests/test_msvc.py +setuptools/tests/test_namespaces.py +setuptools/tests/test_packageindex.py +setuptools/tests/test_pep425tags.py +setuptools/tests/test_register.py +setuptools/tests/test_sandbox.py +setuptools/tests/test_sdist.py +setuptools/tests/test_setuptools.py +setuptools/tests/test_test.py +setuptools/tests/test_unicode_utils.py +setuptools/tests/test_upload.py +setuptools/tests/test_upload_docs.py +setuptools/tests/test_virtualenv.py +setuptools/tests/test_wheel.py +setuptools/tests/test_windows_wrappers.py +setuptools/tests/text.py +setuptools/tests/textwrap.py +setuptools/tests/indexes/test_links_priority/external.html +setuptools/tests/indexes/test_links_priority/simple/foobar/index.html +tests/manual_test.py \ No newline at end of file diff --git a/setuptools.egg-info/dependency_links.txt b/setuptools.egg-info/dependency_links.txt new file mode 100644 index 0000000..e87d021 --- /dev/null +++ b/setuptools.egg-info/dependency_links.txt @@ -0,0 +1,2 @@ +https://files.pythonhosted.org/packages/source/c/certifi/certifi-2016.9.26.tar.gz#md5=baa81e951a29958563689d868ef1064d +https://files.pythonhosted.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2 diff --git a/setuptools.egg-info/entry_points.txt b/setuptools.egg-info/entry_points.txt new file mode 100644 index 0000000..4159fd0 --- /dev/null +++ b/setuptools.egg-info/entry_points.txt @@ -0,0 +1,65 @@ +[console_scripts] +easy_install = setuptools.command.easy_install:main +easy_install-3.6 = setuptools.command.easy_install:main + +[distutils.commands] +alias = setuptools.command.alias:alias +bdist_egg = setuptools.command.bdist_egg:bdist_egg +bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm +bdist_wininst = setuptools.command.bdist_wininst:bdist_wininst +build_clib = setuptools.command.build_clib:build_clib +build_ext = setuptools.command.build_ext:build_ext +build_py = setuptools.command.build_py:build_py +develop = setuptools.command.develop:develop +dist_info = setuptools.command.dist_info:dist_info +easy_install = setuptools.command.easy_install:easy_install +egg_info = setuptools.command.egg_info:egg_info +install = setuptools.command.install:install +install_egg_info = setuptools.command.install_egg_info:install_egg_info +install_lib = setuptools.command.install_lib:install_lib +install_scripts = setuptools.command.install_scripts:install_scripts +register = setuptools.command.register:register +rotate = setuptools.command.rotate:rotate +saveopts = setuptools.command.saveopts:saveopts +sdist = setuptools.command.sdist:sdist +setopt = setuptools.command.setopt:setopt +test = setuptools.command.test:test +upload = setuptools.command.upload:upload +upload_docs = setuptools.command.upload_docs:upload_docs + +[distutils.setup_keywords] +convert_2to3_doctests = setuptools.dist:assert_string_list +dependency_links = setuptools.dist:assert_string_list +eager_resources = setuptools.dist:assert_string_list +entry_points = setuptools.dist:check_entry_points +exclude_package_data = setuptools.dist:check_package_data +extras_require = setuptools.dist:check_extras +include_package_data = setuptools.dist:assert_bool +install_requires = setuptools.dist:check_requirements +namespace_packages = setuptools.dist:check_nsp +package_data = setuptools.dist:check_package_data +packages = setuptools.dist:check_packages +python_requires = setuptools.dist:check_specifier +setup_requires = setuptools.dist:check_requirements +test_loader = setuptools.dist:check_importable +test_runner = setuptools.dist:check_importable +test_suite = setuptools.dist:check_test_suite +tests_require = setuptools.dist:check_requirements +use_2to3 = setuptools.dist:assert_bool +use_2to3_exclude_fixers = setuptools.dist:assert_string_list +use_2to3_fixers = setuptools.dist:assert_string_list +zip_safe = setuptools.dist:assert_bool + +[egg_info.writers] +PKG-INFO = setuptools.command.egg_info:write_pkg_info +dependency_links.txt = setuptools.command.egg_info:overwrite_arg +depends.txt = setuptools.command.egg_info:warn_depends_obsolete +eager_resources.txt = setuptools.command.egg_info:overwrite_arg +entry_points.txt = setuptools.command.egg_info:write_entries +namespace_packages.txt = setuptools.command.egg_info:overwrite_arg +requires.txt = setuptools.command.egg_info:write_requirements +top_level.txt = setuptools.command.egg_info:write_toplevel_names + +[setuptools.installation] +eggsecutable = setuptools.command.easy_install:bootstrap + diff --git a/setuptools.egg-info/requires.txt b/setuptools.egg-info/requires.txt new file mode 100644 index 0000000..c1529e4 --- /dev/null +++ b/setuptools.egg-info/requires.txt @@ -0,0 +1,6 @@ + +[certs] +certifi==2016.9.26 + +[ssl:sys_platform=='win32'] +wincertstore==0.2 diff --git a/setuptools.egg-info/top_level.txt b/setuptools.egg-info/top_level.txt new file mode 100644 index 0000000..4577c6a --- /dev/null +++ b/setuptools.egg-info/top_level.txt @@ -0,0 +1,3 @@ +easy_install +pkg_resources +setuptools diff --git a/setuptools.egg-info/zip-safe b/setuptools.egg-info/zip-safe new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/setuptools.egg-info/zip-safe @@ -0,0 +1 @@ +