-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (70 loc) · 2.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cedarscript-editor"
dynamic = ["version"]
description = "A library for executing CEDARScript, a SQL-like language for code analysis and transformations"
readme = "README.md"
authors = [{ name = "Elifarley", email = "elifarley@example.com" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"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 = ["cedarscript", "code-editing", "refactoring", "code-analysis", "sql-like", "ai-assisted-development"]
dependencies = [
"cedarscript-ast-parser>=0.2.2",
"rope>=1.13.0"
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/CEDARScript/cedarscript-editor-python"
Documentation = "https://github.com/CEDARScript/cedarscript-editor-python#readme"
Repository = "https://github.com/CEDARScript/cedarscript-editor-python.git"
"Bug Tracker" = "https://github.com/CEDARScript/cedarscript-editor-python/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black>=22.0",
"isort>=5.0",
"flake8>=4.0",
"mypy>=0.900",
"coverage>=6.0",
"tox>=3.24",
]
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = ["cedarscript_editor", "text_manipulaiton"]
[tool.setuptools.dynamic]
version = {attr = "cedarscript_editor.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["cedarscript_editor*", "text_editor*", "identifier_selector*", "*identifier_finder*",
"indentation_*", "range_*"]
namespaces = false
[tool.setuptools.package-data]
"*" = ["*.txt", "*.rst"]
[tool.black]
line-length = 100
target-version = ['py312']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
ignore_missing_imports = true
strict = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]