Fix requirements for project.
Fix gitignore to reflect a more Python specific project.
This commit is contained in:
parent
11f7bf2789
commit
8ec38e5020
|
@ -1,8 +1,7 @@
|
||||||
bin
|
bin
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea
|
.idea
|
||||||
.gradle
|
|
||||||
.eclipse
|
*.pyc
|
||||||
.settings
|
docs/_build
|
||||||
*.iml
|
|
||||||
classes
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
# Task management
|
# Requirements for basic operation of the game.
|
||||||
invoke
|
|
||||||
|
|
||||||
# User interface
|
# User interface
|
||||||
PySide==1.2.2
|
PySide==1.2.2
|
||||||
|
|
|
@ -1,4 +1,15 @@
|
||||||
# Requirements for developing the justCheckers app
|
# Requirements for developing the justCheckers app
|
||||||
|
|
||||||
|
# Task management
|
||||||
|
invoke>=0.7.0
|
||||||
|
|
||||||
|
# Sphinx and Pygments
|
||||||
Sphinx>=1.2.2
|
Sphinx>=1.2.2
|
||||||
|
# TODO Remove after the next release of releases.
|
||||||
|
-e git+https://github.com/bitprophet/releases@master#egg=releases
|
||||||
|
|
||||||
|
# Testing
|
||||||
|
mock>=1.0.1
|
||||||
nose>=1.3.0
|
nose>=1.3.0
|
||||||
flake8
|
coverage>=3.6,<3.7
|
||||||
|
flake8>=2.1.0
|
||||||
|
|
Loading…
Reference in New Issue