Files
tarot/pyproject.toml
nose 79d4f1a09e k
2025-11-25 22:19:36 -08:00

75 lines
1.7 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "py-tarot"
version = "0.1.0"
description = "A Python library for Tarot card reading and interpretation"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
keywords = ["tarot", "divination", "cards", "spirituality"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"tomli>=1.2.0;python_version<'3.11'",
"tomli_w>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=3.0",
"black>=22.0",
"isort>=5.10",
"flake8>=4.0",
"mypy>=0.950",
]
docs = [
"sphinx>=4.5",
"sphinx-rtd-theme>=1.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/py-tarot"
Documentation = "https://py-tarot.readthedocs.io"
Repository = "https://github.com/yourusername/py-tarot.git"
Issues = "https://github.com/yourusername/py-tarot/issues"
[tool.setuptools]
packages = ["tarot"]
[tool.setuptools.package-dir]
"" = "src"
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
[tool.pytest.ini_options]
testpaths = ["tests"]