diff --git a/.gitignore b/.gitignore index 1dbc687..1913a54 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,6 @@ target/ #Ipython Notebook .ipynb_checkpoints + + +.settings.yaml \ No newline at end of file diff --git a/.settings.dist.yaml b/.settings.dist.yaml new file mode 100644 index 0000000..ea64e0d --- /dev/null +++ b/.settings.dist.yaml @@ -0,0 +1,8 @@ + +# Copy this to .settings.yaml and fill it out. + +# Screeps account info +screeps_username: +screeps_password: +screeps_ptr: false + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..940ef64 --- /dev/null +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..0fc659f --- /dev/null +++ b/setup.py @@ -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': 'tedivm@tedivm.com', + 'version': '0.1', + 'install_requires': ['nose'], + 'packages': ['screeps_console'], + 'scripts': [], + 'name': 'screeps_console' +} + +setup(**config)