-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (52 loc) · 1.32 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
53
54
55
56
57
58
59
60
[project]
name = "django-template-lsp"
version = "0.9.5"
description = "Django template LSP"
readme = "README.md"
authors = [{name = "Four Digits", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: GPL3 License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
keywords = ["django", "template", "lsp", "python"]
dependencies = [
"pygls",
"jedi"
]
requires-python = ">=3.9"
[project.scripts]
djlsp = "djlsp.cli:main"
django-template-lsp = "djlsp.cli:main"
[project.optional-dependencies]
dev = [
"tox",
"black",
"isort",
"flake8",
"pytest",
"pytest-check",
"pytest-cov",
]
[project.urls]
Homepage = "https://github.com/fourdigits/django-template-lsp"
[build-system]
requires = ["setuptools", "wheel", "build"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["djlsp*"]
[tool.isort]
profile = "black"
known_first_party = "djlsp"
[tool.flake8]
max-line-length = 88
extend-ignore = "W503"