Skip to content

Commit

Permalink
- pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
svdev committed Apr 13, 2018
1 parent 871137e commit 2a5e2de
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 3 additions & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
The MIT License (MIT)

Copyright (c) 2018 Codaone Oy
Copyright for portions of project DEXBot are held by ChainSquad GmbH 2017
as part of project stakemachine. All other copyright for project DEXBot
are held by Codaone Oy 2018.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 0 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
include *.md
include app.py
include cli.py
include config.yml
include dexbot/resources/img/*
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +

pip:
python3 -m pip install -r requirements.txt

lint:
flake8 dexbot/

build: clean pip
build: pip
python3 setup.py build

install: build
Expand Down
2 changes: 1 addition & 1 deletion dexbot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


config_dir = user_config_dir(APP_NAME, appauthor=AUTHOR)
config_file = config_dir + "/config.yml"
config_file = os.path.join(config_dir, "config.yml")

default_config = """
node: wss://bitshares.openledger.info/ws
Expand Down

0 comments on commit 2a5e2de

Please sign in to comment.