mirror of
https://github.com/cmur2/python-veml6070.git
synced 2024-12-09 23:04:19 +01:00
25 lines
516 B
TOML
25 lines
516 B
TOML
[build-system]
|
|
requires = ["poetry>=1.0"]
|
|
build-backend = "poetry.masonry.api"
|
|
|
|
[tool.poetry]
|
|
name = "veml6070"
|
|
version = "1.0.0"
|
|
description = "A python library for accessing the VEML6070 digital UV light sensor from Vishay."
|
|
authors = ["Christian Nicolai"]
|
|
license = "MIT"
|
|
homepage = "https://dev.mycrobase.de/gitea/cn/python-veml6070"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
smbus2 = "*"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
mock = "*"
|
|
pylint = "*"
|
|
pytest = "*"
|
|
snapshottest = "*"
|
|
rope = "*"
|
|
toml = "*"
|
|
yapf = "*"
|