binfootprint/pyproject.toml

21 lines
490 B
TOML
Raw Normal View History

2021-12-08 14:36:06 +01:00
[tool.poetry]
name = "binfootprint"
version = "0.1.0"
description = "binary representation for simple data structures"
authors = ["Richard Hartmann <richard.hartmann@tu-dresden.de>"]
license = "BSD (3 clause)"
2021-12-08 15:27:02 +01:00
classifiers = [
"Operating System :: OS Independent",
"Intended Audience :: Developers"
]
2021-12-08 14:36:06 +01:00
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
numpy = "^1.5.1"
[tool.poetry.dev-dependencies]
2021-12-08 15:27:02 +01:00
[build-system]
2021-12-08 23:02:16 +01:00
requires = ["poetry>=0.12"]
2021-12-08 15:27:02 +01:00
build-backend = "poetry.core.masonry.api"