-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (57 loc) · 1.75 KB
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
61
62
[project]
name = "py-tree-sitter-epics"
version = "0.3.1.dev1"
description = "Facilitate tree-sitter-epics parsing in python"
readme = "README.md"
authors = [
{ name = "Alexis Gaget", email = "alexis.gaget@cea.fr" },
{ name = "Rémi Nicole", email = "remi.nicole@cea.fr" },
]
maintainers = [
{ name = "Alexis Gaget", email = "alexis.gaget@cea.fr" },
{ name = "Rémi Nicole", email = "remi.nicole@cea.fr" },
]
license = "Apache-2.0"
license-files = ["LICENSE"]
keywords = ["epics", "tree-sitter"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Framework :: Sphinx",
"Framework :: Sphinx :: Domain",
"Framework :: Sphinx :: Extension",
]
requires-python = ">= 3.10"
dependencies = [
"tree-sitter>=0.25.2",
"tree-sitter-epics-db>=0.2.0",
"pytest>=8.4",
]
[project.optional-dependencies]
docs = ["sphinx", "furo", "myst-parser"]
[project.urls]
Documentation = "https://py-tree-sitter-epics.readthedocs.io/en/stable/"
Changelog = "https://py-tree-sitter-epics.readthedocs.io/en/stable/changelog.html"
Issues = "https://github.com/epics-extensions/py-tree-sitter-epics/issues"
Source = "https://github.com/epics-extensions/py-tree-sitter-epics"
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [{ include = "py_tree_sitter_epics" }]
[tool.ruff]
select = ["ALL"]
ignore = [
# one-blank-line-before-class
"D203",
# multi-line-summary-second-line
"D213",
]