23 lines
508 B
TOML
23 lines
508 B
TOML
[tool.poetry]
|
|
name = "easybits"
|
|
version = "0.1.5"
|
|
description = "A friendly interface for exploring bits."
|
|
authors = ["Chris Proctor <chris@chrisproctor.net>"]
|
|
readme = "README.md"
|
|
documentation = "https://docs.makingwithcode.org/easybits"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
bitarray = "^3.0.0"
|
|
|
|
[tool.poetry.group.docs]
|
|
optional = true
|
|
|
|
[tool.poetry.group.docs.dependencies]
|
|
sphinx = "^7.0.1"
|
|
furo = "^2023.5.20"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|