-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (35 loc) · 976 Bytes
/
pyproject.toml
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
34
35
36
37
38
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=2,<4"]
[tool.flit.scripts]
flit = "flit:main"
[tool.flit.metadata]
author = "Alexander Knemeyer"
author-email = "[email protected]"
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
description-file = "README.md"
home-page = "https://github.com/alknemeyer/optoforce"
keywords = "sensor,optoforce"
module = "optoforce"
requires = [
"pyserial ~= 3.0",
"typing-extensions ~= 3.0; python_version<'3.8'",
]
requires-python = ">=3.6"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]