-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.44 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
[build-system]
requires = ["setuptools>=45", "wheel", "tree-sitter>=0.20.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tree-sitter-ggsql"
version = "0.1.9"
description = "Tree-sitter grammar for ggsql visualization language"
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "ggsql Team", email = "team@ggsql.org"}]
keywords = ["tree-sitter", "parser", "sql", "visualization", "grammar-of-graphics"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
]
dependencies = [
"tree-sitter>=0.20.0",
]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/georgestagg/ggsql"
Repository = "https://github.com/georgestagg/ggsql.git"
Issues = "https://github.com/georgestagg/ggsql/issues"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov",
"black",
"isort",
"mypy",
]
[tool.setuptools.packages.find]
where = ["bindings/python"]
[tool.setuptools.package-data]
tree_sitter_ggsql = ["*.so", "*.dll", "*.dylib", "py.typed"]