Initial dependencies set.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2021-05-11 13:21:02 -04:00
parent d5efae2c6a
commit 8c0c9f811e
3 changed files with 2608 additions and 0 deletions

158
.gitignore vendored Normal file
View File

@@ -0,0 +1,158 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
.pybuilder/
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/
# Swap
[._]*.s[a-v][a-z]
!*.svg # comment out if you don't need vector files
[._]*.sw[a-p]
[._]s[a-rt-v][a-z]
[._]ss[a-gi-z]
[._]sw[a-p]
# Session
Session.vim
Sessionx.vim
# Temporary
.netrwhist
*~
# Auto-generated tag files
tags
# Persistent undo
[._]*.un~

2405
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -12,6 +12,51 @@ target-version = ["py39"]
python = "^3.9"
[tool.poetry.dev-dependencies]
wheel = "^0.36.2"
jupyter = "^1.0.0"
flake8 = "^3.8.4"
flake8_strict = "^0.2.1"
flake8-absolute-import = "^1.0"
flake8-aaa = "^0.11.1"
flake8-alfred = "^1.1.1"
flake8-annotations-complexity = "^0.0.6"
flake8-annotations = "^2.5.0"
flake8-cognitive-complexity = "^0.1.0"
flake8-commas = "^2.0.0"
flake8-comprehensions = "^3.3.1"
flake8-debugger = "^4.0.0"
flake8-deprecated = "^1.3"
flake8-docstrings = "^1.5.0"
flake8-expression-complexity = "^0.0.9"
flake8-executable = "^2.1.1"
flake8-fixme = "^1.1.1"
flake8-functions = "^0.0.5"
flake8-blind-except = "^0.2.0"
flake8-logging-format = "^0.6.0"
flake8-mock = "^0.3"
flake8-mutable = "^1.2.0"
flake8-mypy = "^17.8.0"
flake8-ownership = "^2.0.1"
flake8-print = "^4.0.0"
flake8-pyi = "^20.10.0"
flake8-pytest = "^1.3"
flake8-pytest-style = "^1.3.0"
flake8-rst = "^0.8.0"
flake8-string-format = "^0.3.0"
flake8-tidy-imports = "^4.2.1"
flake8-use-fstring = "^1.1"
flake8-variables-names = "^0.0.4"
pep8-naming = "^0.11.1"
flake8-bandit = "^2.1.2"
mypy = "^0.812"
bandit = "^1.7.0"
isort = "^5.7.0"
black = "^20.8b1"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
yamllint = "^1.26.0"
rstcheck = "^3.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]