-
-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove dead code Make flake8 happy Add .python-version to .gitignore
- Loading branch information
1 parent
e0903dc
commit aa09c50
Showing
21 changed files
with
487 additions
and
409 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[flake8] | ||
max-line-length = 79 |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
flake8>=5.0.4 | ||
mccabe>=0.7.0 | ||
mypy>=0.981 | ||
mypy-extensions>=0.4.3 | ||
pycodestyle>=2.9.1 | ||
pyflakes>=2.5.0 | ||
tomli>=2.0.1 | ||
types-setuptools>=65.4.0.0 | ||
typing_extensions>=4.3.0 |
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,6 +1 @@ | ||
colored | ||
mypy>=0.981 | ||
mypy-extensions>=0.4.3 | ||
tomli>=2.0.1 | ||
types-setuptools>=65.4.0.0 | ||
typing_extensions>=4.3.0 |
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 @@ | ||
from setuptools import find_packages, setup | ||
from setuptools import setup | ||
|
||
setup( | ||
name='cl-chess', | ||
|
@@ -8,15 +8,9 @@ | |
author='Marcus Buffett', | ||
author_email='[email protected]', | ||
url='https://github.com/marcusbuffett/command-line-chess', | ||
#download_url='https://github.com/peterldowns/mypackage/tarball/0.1', | ||
entry_points={ | ||
'console_scripts': [ | ||
'chess = src.main:main', | ||
], | ||
}, | ||
install_requires=[ | ||
'colored', | ||
], | ||
# download_url='https://github.com/peterldowns/mypackage/tarball/0.1', | ||
entry_points={'console_scripts': ['chess = src.main:main', ], }, | ||
install_requires=['colored', ], | ||
keywords=['chess', 'game'], | ||
classifiers=["Programming Language :: Python :: 3"], | ||
classifiers=['Programming Language :: Python :: 3'], | ||
) |
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
Oops, something went wrong.