All checks were successful
Tests / test (3.10) (push) Successful in 54s
Tests / test (3.11) (push) Successful in 46s
Tests / test (3.8) (push) Successful in 51s
Tests / test (3.9) (push) Successful in 51s
Tests / test (3.10) (pull_request) Successful in 47s
Tests / test (3.11) (pull_request) Successful in 46s
Tests / test (3.8) (pull_request) Successful in 48s
Tests / test (3.9) (pull_request) Successful in 49s
75 lines
2.2 KiB
TOML
75 lines
2.2 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=62.6", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "kluck"
|
|
dynamic = ["version", "dependencies", "optional-dependencies"]
|
|
authors = [{ name = "Profitroll" }]
|
|
description = "Awesome way to get lost in booleans with Kostya's Luck."
|
|
readme = "README.md"
|
|
requires-python = ">=3.0"
|
|
license = { text = "GPLv3" }
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3.0",
|
|
"Programming Language :: Python :: 3.1",
|
|
"Programming Language :: Python :: 3.2",
|
|
"Programming Language :: Python :: 3.3",
|
|
"Programming Language :: Python :: 3.4",
|
|
"Programming Language :: Python :: 3.5",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"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",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Utilities",
|
|
]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = { attr = "kluck.__version__" }
|
|
dependencies = { file = "requirements/_.txt" }
|
|
|
|
[tool.setuptools.dynamic.optional-dependencies]
|
|
dev = { file = "requirements/dev.txt" }
|
|
|
|
[project.urls]
|
|
Source = "https://git.end-play.xyz/profitroll/kluck"
|
|
Documentation = "https://git.end-play.xyz/profitroll/kluck/wiki"
|
|
Tracker = "https://git.end-play.xyz/profitroll/kluck/issues"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.black]
|
|
target-version = ['py36', 'py37', 'py38', 'py39', 'py310', 'py311']
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
|
|
[tool.pytest.ini_options]
|
|
minversion = "6.0"
|
|
python_files = ["test_*.py"]
|
|
pythonpath = "."
|
|
testpaths = ["tests"]
|
|
|
|
[tool.mypy]
|
|
namespace_packages = true
|
|
install_types = true
|
|
strict = true
|
|
show_error_codes = true
|
|
|
|
[tool.pylint.main]
|
|
py-version = 3.6
|
|
|
|
[tool.coverage.run]
|
|
source = ["kluck"]
|