22 lines
403 B
TOML
22 lines
403 B
TOML
|
[tool.poetry]
|
||
|
name = "rtstubs"
|
||
|
version = "0.1.0"
|
||
|
description = ""
|
||
|
authors = ["Patrick Moessler <pub@asaril.de>"]
|
||
|
readme = "README.md"
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = ">=3.10,<3.12"
|
||
|
pythonnet = "^3.0.1"
|
||
|
|
||
|
|
||
|
[tool.poetry.group.dev.dependencies]
|
||
|
ipython = "^8.13.2"
|
||
|
black = "^23.3.0"
|
||
|
mypy = "^1.3.0"
|
||
|
flake8 = "^6.0.0"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core"]
|
||
|
build-backend = "poetry.core.masonry.api"
|