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
|
[tool.poetry]
name = "construct-classes"
version = "0.1.2"
authors = ["matejcik <ja@matejcik.cz>"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"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",
]
description = "Parse your binary structs into dataclasses"
homepage = "https://github.com/matejcik/construct-classes"
license = "MIT"
repository = "https://github.com/matejcik/construct-classes"
readme = "README.rst"
include = ["CHANGELOG.rst", "LICENSE", "README.rst"]
[tool.poetry.dependencies]
python = ">=3.6.2,<4.0"
construct = "^2.10"
[tool.poetry.dev-dependencies]
pytest = ">5"
black = "^22.8.0"
isort = "^5.10.1"
flake8 = "^5.0.4"
construct-typing = { version = "^0.5.2", python = ">=3.7" }
typing-extensions = { version = ">4.2", python = ">=3.7" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
|