mirror of
https://github.com/titanscouting/tra-superscript.git
synced 2024-11-09 22:44:44 +00:00
added pandas to requirements,
readded dev docker files Former-commit-id: 3fa4ef57e5e9542ce245ab0ef9b8320e21c9507c
This commit is contained in:
parent
8c28c24d60
commit
3c6e3ac58e
22
.devcontainer/.devcontainer
Normal file
22
.devcontainer/.devcontainer
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "TRA Analysis Development Environment",
|
||||
"build": {
|
||||
"dockerfile": "Dockerfile"
|
||||
},
|
||||
"settings": {
|
||||
"terminal.integrated.shell.linux": "/bin/bash",
|
||||
"python.pythonPath": "/usr/local/bin/python",
|
||||
"python.linting.enabled": true,
|
||||
"python.linting.pylintEnabled": true,
|
||||
"python.linting.pylintPath": "/usr/local/bin/pylint",
|
||||
"python.testing.pytestPath": "/usr/local/bin/pytest",
|
||||
"editor.tabSize": 4,
|
||||
"editor.insertSpaces": false
|
||||
},
|
||||
"extensions": [
|
||||
"mhutchie.git-graph",
|
||||
"ms-python.python",
|
||||
"waderyan.gitblame"
|
||||
],
|
||||
"postCreateCommand": ""
|
||||
}
|
6
.devcontainer/Dockerfile
Normal file
6
.devcontainer/Dockerfile
Normal file
@ -0,0 +1,6 @@
|
||||
FROM python:slim
|
||||
WORKDIR /
|
||||
RUN apt-get -y update; apt-get -y upgrade
|
||||
RUN apt-get -y install git binutils
|
||||
COPY requirements.txt .
|
||||
RUN pip install -r requirements.txt
|
16
.devcontainer/requirements.txt
Normal file
16
.devcontainer/requirements.txt
Normal file
@ -0,0 +1,16 @@
|
||||
cerberus
|
||||
dnspython
|
||||
numpy
|
||||
pandas
|
||||
pyinstaller
|
||||
pylint
|
||||
pymongo
|
||||
pyparsing
|
||||
pytest
|
||||
python-daemon
|
||||
pyzmq
|
||||
requests
|
||||
scikit-learn
|
||||
scipy
|
||||
six
|
||||
tra-analysis
|
@ -1,6 +1,7 @@
|
||||
cerberus
|
||||
dnspython
|
||||
numpy
|
||||
pandas
|
||||
pyinstaller
|
||||
pylint
|
||||
pymongo
|
||||
|
Loading…
Reference in New Issue
Block a user