-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (57 loc) · 1.72 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "async_pyserial"
version = "0.2.3"
description = "Python bindings for a C++ serial port library"
authors = ["Neil Lei <[email protected]>"]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.10"
[project]
name = "async_pyserial"
version = "0.2.3"
description = "Python bindings for a C++ serial port library"
authors = [
{name = "Neil Lei", email = "[email protected]"}
]
dependencies = []
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: BSD",
]
[project.urls]
Homepage = "https://github.com/Lei-k/async-pyserial/tree/main"
Issues = "https://github.com/Lei-k/async-pyserial/issues"
[tool.poetry.group.dev.dependencies]
pybind11 = "^2.13.1"
mypy = "^1.10.1"
pybind11-stubgen = "^2.5.1"
setuptools = "^71.0.1"
wheel = "^0.43.0"
build = "^1.2.1"
twine = "^5.1.1"
pytest = "^8.3.1"
pytest-cov = "^5.0.0"
sphinx = "^7.4.7"
sphinx-rtd-theme = "^2.0.0"
gevent = "^24.2.1"
eventlet = "^0.36.1"
asyncio = "^3.4.3"
pytest-asyncio = "^0.23.8"
[build-system]
requires = ["setuptools>=71.0.1", "pybind11>=2.13.1", "wheel>=0.43.0"]
build-backend = "setuptools.build_meta"
[virtualenvs]
in-project = true