[tool.poetry] name = "inlinehashes" version = "0.0.1" description = "Hash generator for HTML inline styles and scripts" authors = ["Gonçalo Valério "] homepage = "https://github.com/dethos/inlinehashes" repository = "https://github.com/dethos/inlinehashes" license = "MIT" classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Security", "Topic :: Text Processing :: Markup :: HTML", "Typing :: Typed" ] [tool.poetry.dependencies] python = "^3.9" beautifulsoup4 = "^4.10.0" requests = "^2.27.1" [tool.poetry.dev-dependencies] pytest = "^5.2" black = "^22.1.0" mypy = "^0.940" [tool.poetry.scripts] inlinehashes = "inlinehashes.app:run_cli" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"