-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
52 lines (47 loc) · 1.07 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
49
50
51
52
[project]
name = "vyper-lsp"
version = "0.1.0"
requires-python = ">=3.12"
description = "Language server for Vyper, a pythonic smart contract language"
dependencies = [
"loguru>=0.6.0,<0.7.0",
"tree-sitter>=0.20.1,<0.21.0",
"pydantic>=1.10.0,<2.0.0",
"lark>=1.1.7,<2.0.0",
"lsprotocol>=2023.0.1,<2024.0.0",
"vyper>=0.4.0,<0.5.0",
"vvm>=0.2.0,<0.3.0",
"packaging>=23.1.0,<24.0.0",
"pygls>=1.3.1,<2.0.0",
]
license = "MIT"
readme = "README.md"
keywords = [
"vyper",
"lsp",
"vyper-lsp"
]
authors = [
{name = "z80 z80", email = "z80@ophy.xyz"},
]
[project.scripts]
vyper-lsp = 'vyper_lsp.main:main'
[tool.poetry.scripts]
vyper-lsp = 'vyper_lsp.main:main'
[tool.coverage.run]
source = ["vyper_lsp"]
omit = ["vyper_lsp/analyzer/SourceAnalyzer.py",
"vyper_lsp/__init__.py",
"vyper_lsp/__main__.py",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"coverage>=7.6.9",
"flake8>=5.0.4,<5.1",
"pre-commit>=3.5.0,<4.0",
"pytest>=7.4.3,<7.5",
"ruff>=0.8.3",
]