-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* rel : migrate to version 1.1 * fix : autopep8 scripts updated * doc : CHANGELOG updated
- Loading branch information
1 parent
e3ef90b
commit 5f9eb40
Showing
7 changed files
with
16 additions
and
14 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
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,3 +1,3 @@ | ||
python -m autopep8 mytimer --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --verbose | ||
python -m autopep8 otherfiles --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --verbose | ||
python -m autopep8 setup.py --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --verbose | ||
python -m autopep8 mytimer --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose | ||
python -m autopep8 otherfiles --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose | ||
python -m autopep8 setup.py --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose |
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,4 +1,4 @@ | ||
#!/bin/sh | ||
python -m autopep8 mytimer --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --verbose | ||
python -m autopep8 otherfiles --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --verbose | ||
python -m autopep8 setup.py --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --verbose | ||
python -m autopep8 mytimer --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose | ||
python -m autopep8 otherfiles --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose | ||
python -m autopep8 setup.py --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose |
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 |
---|---|---|
|
@@ -29,23 +29,23 @@ def read_description(): | |
setup( | ||
name='mytimer', | ||
packages=['mytimer'], | ||
version='1.0', | ||
version='1.1', | ||
description='A Geeky Timer for Terminal Enthusiasts', | ||
long_description=read_description(), | ||
long_description_content_type='text/markdown', | ||
include_package_data=True, | ||
author='Sepand Haghighi', | ||
author_email='[email protected]', | ||
url='https://github.com/sepandhaghighi/mytimer', | ||
download_url='https://github.com/sepandhaghighi/mytimer/tarball/v1.0', | ||
download_url='https://github.com/sepandhaghighi/mytimer/tarball/v1.1', | ||
keywords="python3 python timer terminal stopwatch cli", | ||
project_urls={ | ||
'Source': 'https://github.com/sepandhaghighi/mytimer' | ||
}, | ||
install_requires=get_requires(), | ||
python_requires='>=3.5', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Development Status :: 5 - Production/Stable', | ||
'Natural Language :: English', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
|