75 lines
1.7 KiB
TOML
75 lines
1.7 KiB
TOML
[project]
|
|
name = "checker"
|
|
version = "0.2.0"
|
|
description = "Credit card checker tool with Stripe gateway support"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
authors = [
|
|
{name = "Your Name", email = "your.email@example.com"}
|
|
]
|
|
license = {text = "MIT"}
|
|
keywords = ["checker", "stripe", "card", "validation"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
|
|
dependencies = [
|
|
"requests>=2.31.0",
|
|
"faker>=20.0.0",
|
|
"colorama>=0.4.6",
|
|
"pyfiglet>=1.0.2",
|
|
"urllib3>=2.0.0",
|
|
"pycryptodome>=3.23.0",
|
|
"v-jstools>=0.0.8",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4.0",
|
|
"pytest-cov>=4.1.0",
|
|
"black>=23.0.0",
|
|
"ruff>=0.1.0",
|
|
"mypy>=1.7.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
checker = "checker.cli:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/yourusername/checker"
|
|
Repository = "https://github.com/yourusername/checker"
|
|
Issues = "https://github.com/yourusername/checker/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/checker"]
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
target-version = ['py310']
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py310"
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = true
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py"]
|
|
python_classes = ["Test*"]
|
|
python_functions = ["test_*"]
|