1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- [tool.poetry]
- name = "coffee_wars"
- version = "0"
- description = ""
- authors = ["Colin Powell <colin@unbl.ink>"]
- [tool.poetry.dependencies]
- python = ">=3.9,<3.14"
- Django = "^4.0.3"
- django-allauth = "^65.11.2"
- [tool.poetry.group.test]
- optional = true
- [tool.poetry.group.test.dependencies]
- Werkzeug = "2.0.3"
- black = "^22.3"
- coverage = "^7.0.5"
- mypy = "^0.961"
- pytest = "^7.1"
- pytest-black = "^0.3.12"
- pytest-cov = "^3.0"
- pytest-django = "^4.5.2"
- pytest-xdist= "^1.0.0"
- pytest-flake8 = "^1.1"
- pytest-isort = "^3.0"
- pytest-runner = "^6.0"
- time-machine = "^2.9.0"
- types-pytz = "^2022.1"
- types-requests = "^2.27"
- bandit = "^1.7.4"
- [tool.pytest.ini_options]
- minversion = "6.0"
- addopts = "-ra -q --reuse-db"
- testpaths = ["tests"]
- DJANGO_SETTINGS_MODULE='coffee_wars.settings'
- [tool.black]
- line-length = 79
- target-version = ["py39", "py310"]
- include = ".py$"
- exclude = "migrations"
- [tool.isort]
- multi_line_output = 3
- include_trailing_comma = true
- force_grid_wrap = 0
- combine_as_imports = true
- [tool.bandit]
- exclude_dirs = ["*/tests/*", "*/migrations/*"]
- [tool.poetry.scripts]
- cw = "coffee_wars.cli:main"
- [build-system]
- requires = ["poetry-core>=1.0.0"]
- build-backend = "poetry.core.masonry.api"
|