Merge pull request #7 from titanscout2022/master

merge
This commit is contained in:
ltcptgeneral 2020-04-05 14:57:56 -05:00 committed by GitHub
commit 120774c000
6 changed files with 31 additions and 4 deletions

2
.devcontainer/Dockerfile Normal file
View File

@ -0,0 +1,2 @@
FROM python
WORKDIR ~/

View 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.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8",
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf",
"python.linting.banditPath": "/usr/local/py-utils/bin/bandit",
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8",
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy",
"python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle",
"python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle",
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint",
"python.testing.pytestPath": "/usr/local/py-utils/bin/pytest"
},
}

View File

@ -1 +1 @@
python3 setup.py sdist bdist_wheel
python setup.py sdist bdist_wheel || python3 setup.py sdist bdist_wheel

View File

@ -1,4 +1,4 @@
FROM python
WORKDIR ~/
COPY . .
RUN cd
COPY ./ ./
CMD ["bash"]

View File

@ -0,0 +1,3 @@
cd ..
docker build -t tra-analysis-amd64-dev -f docker/Dockerfile .
docker run -it tra-analysis-amd64-dev

View File

@ -1,7 +1,7 @@
import setuptools
setuptools.setup(
name="analysis"
name="analysis",
version="1.0.0.009",
author="The Titan Scouting Team",
author_email="titanscout2022@gmail.com",