12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- [project]
- name = "cocorev-app"
- version = "0.1.0"
- description = "Add your description here"
- readme = "README.md"
- requires-python = ">=3.11"
- dependencies = []
- [tool.poetry]
- name = "cocorev-app"
- version = "0.1.0"
- description = ""
- authors = ["Colin Powell <colin@unbl.ink>"]
- readme = "README.md"
- [tool.poetry.dependencies]
- python = "^3.11"
- uvicorn = "^0.34.0"
- fastapi = "^0.115.8"
- httpx = "^0.28.1"
- python-dotenv = "^1.0.1"
- aiosqlite = "^0.21.0"
- sqlalchemy = "^2.0.38"
- [tool.poetry.group.dev.dependencies]
- black = "^22.3"
- coverage = "^7.0.5"
- mypy = "^0.961"
- pytest = "^7.1"
- pytest-black = "^0.3.12"
- pytest-cov = "^3.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"
- [build-system]
- requires = ["poetry-core"]
- build-backend = "poetry.core.masonry.api"
- [tool.pytest.ini_options]
- minversion = "6.0"
- addopts = "-ra -q --reuse-db"
- testpaths = ["tests"]
- DJANGO_SETTINGS_MODULE='cocorev.settings-testing'
- [tool.black]
- line-length = 79
- target-version = ["py310", "py311"]
- 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]
- cocorev = "cocorev.main:main"
|