Skip to content

Commit

Permalink
settings, dependencies, scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
tedivm committed May 23, 2016
1 parent d98d860 commit 091effd
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,6 @@ target/

#Ipython Notebook
.ipynb_checkpoints


.settings.yaml
8 changes: 8 additions & 0 deletions .settings.dist.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

# Copy this to .settings.yaml and fill it out.

# Screeps account info
screeps_username:
screeps_password:
screeps_ptr: false

8 changes: 8 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
colorama==0.3.7
nose==1.3.7
PyYAML==3.11
requests==2.10.0
Requires==0.0.3
-e git+https://github.com/tedivm/python-screeps.git@c300073133dcd08d2d5f100a1a006bda60d9ce05#egg=screeps
six==1.10.0
websocket-client==0.37.0
19 changes: 19 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

config = {
'description': 'Screeps Console',
'author': 'Robert Hafner',
'url': 'https://github.com/tedivm/screeps_console',
'download_url': 'https://github.com/tedivm/screeps_console/releases',
'author_email': '[email protected]',
'version': '0.1',
'install_requires': ['nose'],
'packages': ['screeps_console'],
'scripts': [],
'name': 'screeps_console'
}

setup(**config)

0 comments on commit 091effd

Please sign in to comment.