tuxgo/pyproject.toml

49 lines
801 B
TOML

[build-system]
requires = ['flit_core >=3.4,<4']
build-backend = 'flit_core.buildapi'
[project]
name = 'tuxgo'
maintainers = [
{ name = 'Wojtek Porczyk', email = 'woju@hackerspace.pl' },
]
authors = [
{ name = 'Wojtek Porczyk', email = 'woju@hackerspace.pl' },
]
readme = 'README.rst'
dynamic = [
'version',
'description',
]
license.file = 'COPYING'
dependencies = [
'Flask',
'Werkzeug',
'click',
'click-default-group',
'funcparserlib',
'matplotlib',
'opencv-python',
'pygame',
'bleak',
'loguru',
# 'tomli',
]
[project.urls]
Home = "https://code.hackerspace.pl/woju/tuxgo"
[tool.mypy]
[tool.pytest.ini_options]
testpaths = [
'tests',
]
[tool.black]
line-length = 80
skip-string-normalization = true
# vim: tw=80 ts=4 sts=4 sw=4 et