forked from Aider-AI/aider
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
55 lines (46 loc) · 1.62 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
[project]
name = "cecli-dev"
description = "we also can't pronounce cecli"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
"Topic :: Software Development",
]
requires-python = ">=3.10"
dynamic = ["dependencies", "optional-dependencies", "version"]
[project.urls]
Homepage = "https://github.com/dwash96/cecli"
Documentation = "https://github.com/dwash96/cecli"
Repository = "https://github.com/dwash96/cecli"
[project.scripts]
aider-ce = "cecli.main:main"
"cecli" = "cecli.main:main"
"ce.cli" = "cecli.main:main"
[tool.setuptools.dynamic]
dependencies = { file = "requirements/requirements.in" }
[tool.setuptools.dynamic.optional-dependencies]
dev = { file = "requirements/requirements-dev.in" }
help = { file = "requirements/requirements-help.in" }
playwright = { file = "requirements/requirements-playwright.in" }
tui = { file = "requirements/requirements-tui.in" }
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["cecli*"]
[build-system]
requires = ["setuptools>=68", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "cecli/_version.py"
local_scheme = "no-local-version"
[tool.codespell]
skip = "*.svg,*.scss,Gemfile.lock,tests/fixtures/*,cecli/website/assets/*"
write-changes = true