-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
30 lines (25 loc) · 938 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
[build-system]
requires = ["poetry-core >= 1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "robotframework-seriallibrary"
version = "0.4.2"
description = "Robot Framework test library for serial connection"
readme = "README.rst"
license = "Apache License 2.0"
authors = ["Yasushi Masuda <[email protected]>"]
homepage = "https://github.com/whosaysni/robotframework-seriallibrary/"
repository = "https://github.com/whosaysni/robotframework-seriallibrary/"
keywords = ["robotframework", "testing", "testautomation", "serial"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Testing",
]
packages = [
{ include="SerialLibrary", from="src" }
]
[tool.poetry.dependencies]
install_requires=["robotframework", "pyserial"]