-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 714 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[build-system]
build-backend = 'trampolim'
requires = ['trampolim']
[project]
name = 'openinput'
version = '0.0.0'
description = 'Python library to interact with openinput devices'
readme = 'README.md'
requires-python = '>=3.7'
license = { file = 'LICENSE' }
keywords = ['openinput', 'input', 'HID']
authors = [
{ name = 'Filipe Laíns', email = 'lains@riseup.net' },
]
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python',
]
[project.optional-dependencies]
test = [
'pytest',
'pytest-cov',
]
docs = [
'furo>=2021.04.11b34',
'sphinx~=3.0',
]
[project.urls]
homepage = 'https://openinput.readthedocs.io'
repository = 'https://github.com/openinput-fw/python-openinput'