mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-11 17:14:41 +00:00
Users who install this package from PyPi don't need all of the dev dependencies.
32 lines
926 B
TOML
32 lines
926 B
TOML
[tool.poetry]
|
|
name = "pybricks"
|
|
version = "3.0.0a3"
|
|
description = "Documentation and user-API stubs for Pybricks MicroPython"
|
|
authors = ["The Pybricks Authors <dev@pybricks.com>"]
|
|
maintainers = ["Laurens Valk <laurens@pybricks.com>", "David Lechner <david@pybricks.com>" ]
|
|
license = "MIT"
|
|
readme = "README.rst"
|
|
homepage = "https://pybricks.com"
|
|
repository = "https://github.com/pybricks/pybricks-api"
|
|
documentation = "https://docs.pybricks.com"
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Programming Language :: Python :: Implementation :: MicroPython",
|
|
]
|
|
include = ["pybricks/py.typed"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
black = {version = "^20.8b1", allow-prereleases = true}
|
|
doc8 = "^0.8.1"
|
|
flake8 = "^3.8.4"
|
|
Sphinx = "^3.4.3"
|
|
sphinx-rtd-theme = "^0.5.1"
|
|
toml = "^0.10.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|