-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.55 KB
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
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "quik-python"
version = "1.2.0"
description = "Python interface for QUIK trading terminal"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "LEX"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
requires-python = ">=3.11"
dependencies = [
"asyncio"
]
[project.urls]
"Homepage" = "https://github.com/Alex-Shur/quik_python"
"Source" = "https://github.com/Alex-Shur/quik_python"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
exclude = [
"Examples/",
"tests/",
"Makefile",
".gitignore",
".git/",
"requirements.txt",
"THIRD-PARTY-NOTICES.txt",
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.scripts]
quik-test = "tests.test_basic:main"
[tool.uv.workspace]
members = [".", "Examples/RobotPythonDemo"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
addopts = ["-v", "-s", "--tb=short"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests requiring QUIK connection",
]
[dependency-groups]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]