| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- [project]
- name = "claudia"
- version = "0.1.0"
- description = "Claudia - Python project scaffold"
- readme = "README.md"
- requires-python = ">=3.9"
- keywords = ["scaffold", "template"]
- license = { file = "LICENSE" }
- dependencies = [
- "requests>=2.31",
- "pymongo>=4.6",
- ]
- [project.optional-dependencies]
- dev = [
- "pytest>=7",
- "ruff>=0.5",
- "black>=24.3",
- "pylint>=3.2",
- ]
- [build-system]
- requires = ["setuptools>=61.0"]
- build-backend = "setuptools.build_meta"
- [project.scripts]
- claudia = "claudia.__main__:main"
- [tool.pytest.ini_options]
- addopts = "-q"
- pythonpath = ["src"]
- [tool.ruff]
- line-length = 100
- target-version = "py39"
- [tool.ruff.lint]
- select = ["E", "F", "I", "UP"]
- ignore = []
- [tool.ruff.format]
- quote-style = "double"
- indent-style = "space"
- skip-magic-trailing-comma = false
- line-ending = "lf"
- [tool.black]
- line-length = 100
- target-version = ["py39"]
- include = "\\.(py|pyi)$"
- exclude = '''
- /(
- \.git
- | \.venv
- | build
- | dist
- | __pycache__
- | \.mypy_cache
- | \.ruff_cache
- )
- '''
|