[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
pylint = "==2.6.0"
pytest = "==6.1.1"
pyinstaller = "==4.0"
coverage = "*"
pytest-cov = "*"

[packages]
sqlalchemy = "==1.3.18"
pandas = "==1.3.1"
atomicwrites = "*"
pattern-singleton = "==1.2.0"

[scripts]
lint = "pylint --rcfile=.pylintrc chpass"
unit-test = "pytest tests/unit"
unit-test-cov = "pytest --cov=chpass tests/unit"
integ-test = "pytest tests/integration"
integ-test-cov = "pytest --cov=chpass tests/integration"
compile = "pyinstaller -n chpass --onefile chpass/__main__.py"

[requires]
python_version = "3"
