Skip to content

Commit

Permalink
Merge branch 'issue46' into 'master'
Browse files Browse the repository at this point in the history
Update pyproject.toml and setup.py

Closes python#46

See merge request python-devs/importlib_resources!47
  • Loading branch information
warsaw committed Dec 12, 2017
2 parents 041b1f7 + 496f4aa commit a4ad4ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.4"
requires-python = "==2.7,>=3.4"
requires = [
"pathlib2; python_version < '3'",
"typing; python_version < '3.5'",
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
{":python_version < '3'": ['pathlib2'], ":python_version < '3.5'": ['typing']}

setup(name='importlib_resources',
version='0.1.0',
version='0.2',
description='Read resources contained within a package.',
author='Brett Cannon\nBarry Warsaw',
author_email='[email protected]\n[email protected]',
url='http://importlib-resources.readthedocs.io/en/latest/',
url='http://importlib-resources.readthedocs.io/',
packages=packages,
package_data=package_data,
extras_require=extras_require,
python_requires='>=3.4',
python_requires='==2.7,>=3.4',
)

0 comments on commit a4ad4ce

Please sign in to comment.