init
This commit is contained in:
commit
079dc00345
21 changed files with 1729 additions and 0 deletions
160
pyproject.toml
Normal file
160
pyproject.toml
Normal file
|
|
@ -0,0 +1,160 @@
|
|||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "pygame-animation"
|
||||
description = 'an animation created in pygame'
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.7"
|
||||
license = "MIT"
|
||||
keywords = []
|
||||
authors = [
|
||||
{ name = "Waylon S. Walker", email = "waylon@waylonwalker.com" },
|
||||
]
|
||||
classifiers = [
|
||||
"Development Status :: 4 - Beta",
|
||||
"Programming Language :: Python",
|
||||
"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 :: Implementation :: CPython",
|
||||
"Programming Language :: Python :: Implementation :: PyPy",
|
||||
]
|
||||
dependencies = [
|
||||
"pygame",
|
||||
"rich",
|
||||
"textual",
|
||||
"typer",
|
||||
"anyconfig"
|
||||
]
|
||||
dynamic = ["version"]
|
||||
|
||||
[project.urls]
|
||||
Documentation = "https://github.com/waylonwalker/pygame-animation#readme"
|
||||
Issues = "https://github.com/waylonwalker/pygame-animation/issues"
|
||||
Source = "https://github.com/waylonwalker/pygame-animation"
|
||||
Changelog = "https://github.com/waylonwalker/pygame-animation"
|
||||
|
||||
[project.scripts]
|
||||
pygame-animation = "pygame_animation.cli.app:app"
|
||||
|
||||
[tool.hatch.version]
|
||||
path = "pygame_animation/__about__.py"
|
||||
|
||||
[tool.hatch.envs.default]
|
||||
dependencies = [
|
||||
"ipython",
|
||||
"mypy",
|
||||
"pyflyby",
|
||||
"pytest",
|
||||
"pytest-cov",
|
||||
"pytest-mock",
|
||||
"pytest-rich",
|
||||
"ruff",
|
||||
"black",
|
||||
]
|
||||
[tool.hatch.envs.default.scripts]
|
||||
test = "coverage run -m pytest"
|
||||
cov = "coverage-rich"
|
||||
lint = "ruff pygame_animation"
|
||||
format = "black pygame_animation"
|
||||
format-check = "black --check pygame_animation"
|
||||
build-docs = "markata build"
|
||||
lint-test = [
|
||||
"lint",
|
||||
"format-check",
|
||||
"test",
|
||||
"cov",
|
||||
]
|
||||
test-lint = "lint-test"
|
||||
|
||||
[[tool.hatch.envs.test.matrix]]
|
||||
python = ["37", "38", "39", "310", "311"]
|
||||
|
||||
[tool.coverage.run]
|
||||
branch = true
|
||||
parallel = true
|
||||
omit = [
|
||||
"pygame_animation/__about__.py",
|
||||
]
|
||||
|
||||
[tool.coverage.report]
|
||||
exclude_lines = [
|
||||
"no cov",
|
||||
"if __name__ == .__main__.:",
|
||||
"if TYPE_CHECKING:",
|
||||
]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
addopts = "-ra -q --rich"
|
||||
asyncio_mode = "auto"
|
||||
testpaths = ["tests"]
|
||||
|
||||
[tool.coverage_rich]
|
||||
fail-under=80
|
||||
|
||||
[tool.ruff]
|
||||
|
||||
ignore = ["E501"]
|
||||
target-version = "py37"
|
||||
|
||||
[tool.ruff.per-file-ignores]
|
||||
'tests/**/*.py' = ['S101']
|
||||
|
||||
|
||||
select = [
|
||||
"F", # Pyflakes
|
||||
"E", # Error
|
||||
"W", # Warning
|
||||
"C90", # mccabe
|
||||
"I", # isort
|
||||
"N", # pep8-naming
|
||||
# "D", # pydocstyle
|
||||
"UP", # pyupgrade
|
||||
"YTT", # flake8-2020
|
||||
"ANN", # flake8-annotations
|
||||
"S", # flake8-bandit
|
||||
"BLE", # flake8-blind-except
|
||||
"FBT", # flake8-boolean-trap
|
||||
"B", # flake8-bugbear
|
||||
"A", # flake8-builtins
|
||||
"COM", # flake8-commas
|
||||
"C4", # flake8-comprehensions
|
||||
"DTZ", # flake8-datetimez
|
||||
"T10", # flake8-debugger
|
||||
"DJ", # flake8-django
|
||||
"EM", # flake8-errmsg
|
||||
"EXE", # flake8-executable
|
||||
"ISC", # flake8-implicit-str-concat
|
||||
"ICN", # flake8-import-conventions
|
||||
"G", # flake8-logging-format
|
||||
"INP", # flake8-no-pep420
|
||||
"PIE", # flake8-pie
|
||||
"T20", # flake8-print
|
||||
"PYI", # flake8-pyi
|
||||
"PT", # flake8-pytest-style
|
||||
"Q", # flake8-quotes
|
||||
"RSE", # flake8-raise
|
||||
"RET", # flake8-return
|
||||
"SLF", # flake8-self
|
||||
"SIM", # flake8-simplify
|
||||
"TID", # flake8-tidy-imports
|
||||
"TCH", # flake8-type-checking
|
||||
# "INT", # flake8-gettext
|
||||
"ARG", # flake8-unused-arguments
|
||||
"PTH", # flake8-use-pathlib
|
||||
"ERA", # eradicate
|
||||
"PD", # pandas-vet
|
||||
"PGH", # pygrep-hooks
|
||||
"PL", # Pylint
|
||||
"PLC", # Convention
|
||||
"PLE", # Error
|
||||
"PLR", # Refactor
|
||||
"PLW", # Warning
|
||||
"TRY", # tryceratops
|
||||
"NPY", # NumPy-specific rules
|
||||
"RUF", # Ruff-specific rules
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue