diff --git a/.gitignore b/.gitignore index 64c2b5f..bb92402 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,16 @@ +### Venv ### venv/ -*.pyc + +### Build File ### .idea/ build/ dist/ huobi_client.egg-info/ + +### Python ### +__pycache__ +*.pyc huobi/privateconfig.py + +### Other ### +.DS_Store \ No newline at end of file diff --git a/huobi/client/.DS_Store b/huobi/client/.DS_Store deleted file mode 100644 index 8980e54..0000000 Binary files a/huobi/client/.DS_Store and /dev/null differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..60eeae1 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +APScheduler==3.6.3 +requests==2.20.1 +aiohttp==3.6.2 +websocket_client==0.57.0