forked from billthefighter/MTConnect-Python-Agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 681 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (28 loc) · 681 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
34
[tool.poetry]
name = "MTConnect"
version = "0.3.3"
description = "A python agent for MTConnect"
authors = ["Michael Honaker <mchonaker@gmail.com>"]
license = "\"Apache License 2.0\""
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
black = "^22.12.0"
pylint = "^2.15.10"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "8.3.3 "
black = "^22.12.0"
pylint = "^2.15.10"
# ==== pytest ====
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--import-mode=importlib"
python_files = [
"tests.py",
"test_*.py",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"