-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (30 loc) · 992 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
28
29
30
31
32
33
34
35
[tool.poetry]
name = "pyright-alright"
# The version is bump automatically when releasing pyright-alright
# based on the corresponding pyright version.
# Pyright-alright version can have a potential suffix (like alpha1, post0, etc...)
# used to either test a release or fix an existing release.
version = "0.1.0"
description = "Pyright type checker, packaged for Python 🍞 + 🐍 + 🪨 = 🚀"
authors = ["ducdetronquito <guillaume.paulet@giome.fr>"]
license = "The Unlicense"
readme = "README.md"
include = [
"pyright_alright/**/*",
]
exclude = [
"pyright_alright/pyright/.gitkeep",
]
[tool.poetry.scripts]
pyright = 'pyright_alright.__main__:pyright'
pyright_alright = 'pyright_alright.__main__:pyright'
pyright-alright = 'pyright_alright.__main__:pyright'
[tool.poetry.dependencies]
python = "^3.9"
pybun = "^1.1"
[tool.poetry.group.dev.dependencies]
ruff = "~0.6.2"
pre-commit = "~3.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"