-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.81 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cedarscript-ast-parser"
dynamic = ["version"]
description = "A library for parsing and interpreting CEDARScript, a SQL-like language for code analysis and transformations"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
]
keywords = ["parser", "ast", "cedarscript", "code-editing", "refactoring", "code-analysis", "sql-like", "ai-assisted-development"]
dependencies = [
"cedarscript-grammar>=0.0.9",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/CEDARScript/cedarscript-ast-parser-python"
Documentation = "https://github.com/CEDARScript/cedarscript-ast-parser-python#readme"
Repository = "https://github.com/CEDARScript/cedarscript-ast-parser-python.git"
"Bug Tracker" = "https://github.com/CEDARScript/cedarscript-ast-parser-python/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black>=22.0",
"isort>=5.0",
"flake8>=4.0",
]
[tool.setuptools.dynamic]
version = {attr = "cedarscript_ast_parser.__version__"}
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = ["cedarscript_ast_parser"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["cedarscript_ast_parser*"]
exclude = ["cedarscript_ast_parser.tests*"]
namespaces = false