Files
trygo-py-cliclient/pyproject.toml
Deepak Mallubhotla 2dbd4a80a1
All checks were successful
Nix Tests / nix-test (nix-runner) (push) Successful in 7m39s
Python Tests / python-test (push) Successful in 8m12s
adding upload testing, etc.
2025-10-31 17:58:01 -05:00

82 lines
1.6 KiB
TOML

[project]
name = "hello-world"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"requests>=2.31.0",
"dacite>=1.9.2",
"tomli>=2.2.1",
"types-requests>=2.32.4.20250913",
]
[project.scripts]
hello = "hello_world:main"
taiga = "taiga_pycli.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"flake8>=7.1.2",
"mypy>=1.15.0",
"pytest>=8.3.5",
"pytest-cov>=6.0.0",
"ruff>=0.6.7",
"syrupy>=4.9.0",
]
[tool.ruff.format]
indent-style = "tab"
[tool.hatch.build.targets.wheel]
sources = ["src"]
# [tool.poetry.group.dev.dependencies]
# mypy = "*"
# python-semantic-release = "*"
[tool.pytest.ini_options]
testpaths = ["tests"]
# Uncomment to care about coverage
addopts = "--junitxml pytest.xml --cov src --cov-report=xml:coverage.xml --cov-fail-under=1 --cov-report=html"
junit_family = "xunit1"
log_format = "%(asctime)s | %(levelname)s | %(pathname)s:%(lineno)d | %(message)s"
log_level = "WARNING"
[tool.pyright]
executionEnvironments = [
{ root = "src" }
]
exclude = [
".venv"
]
venvPath = "."
venv = ".venv"
# [tool.mypy]
# If you need this
# plugins = "numpy.typing.mypy_plugin"
# [[tool.mypy.overrides]]
# module = [
# "scipy",
# "scipy.optimize",
# "scipy.stats",
# "scipy.fft",
# ]
# ignore_missing_imports = true
# [tool.semantic_release]
# branch = "master"
# version_variable = [
# "src/__init__.py:__version__",
# "pyproject.toml:version"
# ]
# upload_to_pypi = false
# upload_to_release = false
# build_command = "pip install poetry && poetry build"j