Skip to content

Commit

Permalink
undoing py3.5 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lockefox committed Sep 24, 2018
1 parent c6297c1 commit 372f844
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
sys.path.insert(0, os.path.abspath('..'))
from summary._version import __version__


import alabaster
# -- Project information -----------------------------------------------------

project = 'text-summary'
Expand Down
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def initialize_options(self):
self.pytest_args = [
'tests',
'-rx',
'--cov={}'.format(__library_name__),
f'--cov={__library_name__}',
'--cov-report=term-missing',
'--cov-config=.coveragerc',
]
Expand All @@ -64,9 +64,8 @@ def run_tests(self):
name=__package_name__,
author='John Purcell',
author_email='jpurcell.ee@gmail.com',
url='https://github.com/lockefox/{}'.format(__package_name__),
download_url='https://github.com/lockefox/{}/tarball/v{}'\
.format(__package_name__, get_version(__library_name__)),
url=f'https://github.com/lockefox/{__package_name__}',
download_url=f'https://github.com/lockefox/{__package_name__}/tarball/v{get_version(__library_name__)}',
version=get_version(__library_name__),
license='MIT',
classifiers=[
Expand All @@ -81,10 +80,10 @@ def run_tests(self):
},
entry_points={
'console_scripts': [
'summarize={}.summarize:run_main'.format(__library_name__),
f'summarize={__library_name__}.summarize:run_main',
]
},
python_requires='>=3.5',
python_requires='>=3.6',
install_requires=[
'ProsperCommon',
'plumbum',
Expand Down

0 comments on commit 372f844

Please sign in to comment.