-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
87 lines (76 loc) · 2.43 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
82
83
84
85
86
87
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "cedarscript-integration-aider"
dynamic = ["version"]
description = "Allows `Aider` to use CEDARScript as an edit format"
authors = [{ name = "Elifarley", email = "[email protected]" }]
readme = "README.md"
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software 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 = [
]
requires-python = ">=3.11"
[project.urls]
Homepage = "https://github.com/CEDARScript/cedarscript-integration-aider"
Documentation = "https://github.com/CEDARScript/cedarscript-integration-aider#readme"
Repository = "https://github.com/CEDARScript/cedarscript-integration-aider.git"
"Bug Tracker" = "https://github.com/CEDARScript/cedarscript-integration-aider/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"}
[tool.setuptools_scm]
# To override version:
# >>> SETUPTOOLS_SCM_PRETEND_VERSION=0.0.2 python -m build
# To dry-run and see version:
# >>> python -m setuptools_scm
write_to = "src/cedarscript_integration_aider/_version.py"
# Append .post{number of commits} to your version if there are commits after the last tag.
version_scheme = "post-release"
[tool.setuptools.packages.find]
where = ["src"]
include = ["cedarscript_integration_aider*"]
namespaces = false
[tool.setuptools.package-data]
"cedarscript_integration_aider" = [
"cedarscript-raw/*.txt",
"cedarscript-raw/*.xml",
"cedarscript-raw/*.md",
]
[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",
]