inlinehashes/pyproject.toml

41 lines
1014 B
TOML
Raw Normal View History

2022-03-11 20:04:51 +01:00
[tool.poetry]
name = "inlinehashes"
version = "0.0.4"
description = "Hash generator for HTML inline styles and scripts"
2022-03-11 20:04:51 +01:00
authors = ["Gonçalo Valério <gon@ovalerio.net>"]
homepage = "https://github.com/dethos/inlinehashes"
repository = "https://github.com/dethos/inlinehashes"
2022-03-13 18:47:03 +01:00
readme = "README.rst"
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Topic :: Security",
"Topic :: Text Processing :: Markup :: HTML",
"Typing :: Typed"
]
2022-03-11 20:04:51 +01:00
[tool.poetry.dependencies]
2023-01-22 18:38:25 +01:00
python = "^3.11"
beautifulsoup4 = "^4.10.0"
2022-03-11 20:04:51 +01:00
[tool.poetry.dev-dependencies]
pytest = "^7.2.1"
black = "^22.1.0"
mypy = "^0.991"
2023-01-22 18:55:53 +01:00
ruff = "^0.0.229"
[tool.poetry.scripts]
inlinehashes = "inlinehashes.app:run_cli"
2022-03-11 20:04:51 +01:00
2023-01-22 18:55:53 +01:00
[tool.ruff]
select = ["E", "F", "I"]
line-length=88
2022-03-11 20:04:51 +01:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"