1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
[tool.poetry]
name = "crc"
version = "7.1.0"
description = "Pure Python CRC library"
packages = [
{ include = "crc", from = "src" },
]
authors = ["Nicola Coretti <nico.coretti@gmail.com>"]
maintainers = ["Nicola Coretti <nico.coretti@gmail.com>"]
license = "BSD-2-Clause"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: BSD 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",
]
keywords = ['CRC', 'CRC8', 'CRC16', 'CRC32', 'CRC64']
repository = "https://github.com/Nicoretti/crc"
[tool.poetry.urls]
"Homepage" = "https://nicoretti.github.io/crc/"
"Documentation" = "https://nicoretti.github.io/crc/"
"Source" = "https://github.com/Nicoretti/crc"
"Issues" = "https://github.com/Nicoretti/crc/issues"
"Changelog" = "https://nicoretti.github.io/crc/changelog/unreleased/"
[tool.poetry.scripts]
crc = "crc._crc:main"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
[tool.poetry.dev-dependencies]
pytest = ">=7.2.0"
pylint = ">=2.12.2"
black = ">=22.1.0"
isort = ">=5.10.1"
coveralls = ">=3.3.1"
mkdocs = ">=1.4.2"
mkdocs-material = ">=9.0.6"
pyupgrade = ">=3.2.2"
shed = ">=0.10.7"
mypy = ">=0.991"
invoke = ">=2"
mkdocs-autorefs = ">=0.4.1"
mkdocstrings = ">=0.20.0"
mkdocstrings-python = ">=0.8.2"
pytkdocs = ">=0.16.1"
pre-commit = "^3.1.1"
mkdocs-gen-files = "^0.5.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
source = [
"crc",
]
[tool.pylint.master]
fail-under = 9.0
[tool.pylint.format]
max-line-length = 88
max-module-lines = 800
[tool.black]
line-length = 88
verbose = true
include = "\\.pyi?$"
[tool.isort]
profile = "black"
force_grid_wrap = 2
skip = [".gitignore", "venv", ".nox"]
[tool.mypy]
strict = true
show_column_numbers = true
show_error_context = true
|