-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.54 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
[project]
name = "pyautd3_emulator"
authors = [{ name = "Shun Suzuki", email = "suzuki@hapis.k.u-tokyo.ac.jp" }]
version = "29.0.0"
description = "autd3-emulator library wrapper for python"
readme = "README.md"
requires-python = ">=3.11"
dependencies = ["numpy>=2", "polars>=1.21.0", "pyautd3==29.0.0"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"License :: OSI Approved :: MIT License",
]
[project.urls]
Repository = "https://github.com/shinolab/pyautd3_emulator.git"
[build-system]
requires = ["wheel", "setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
pyautd3_emulator = ["py.typed"]
[tool.ruff]
target-version = "py311"
line-length = 150
exclude = [".venv", "venv"]
[tool.ruff.lint]
ignore = ["D", "SLF001", "C901", "PLR0913"]
select = ["ALL"]
fixable = ["ALL"]
[tool.ruff.lint.extend-per-file-ignores]
"pyautd3_emulator/*.py" = ["TD", "FIX002"]
"tests/*.py" = ["S101", "T201", "ANN201", "PLR0915", "PLR2004"]
"example/*.py" = ["T201", "PLR2004", "PD901"]
"pyautd3_emulator/native_methods/*.py" = ["ANN", "RUF012", "FBT001", "PLR0915"]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = 'session'
[tool.uv]
dev-dependencies = ["matplotlib>=3.9.2", "mypy>=1.14.1", "pytest>=8.3.4", "pytest-xdist>=3.6.1", "ruff>=0.9.4", "pytest-cov>=6.0.0", "build>=1.2.2.post1", "wheel>=0.45.1"]