-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 1.67 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
[project]
# The command, the import and the repo are all `automode`. Only the
# distribution is `automode-cli`: PyPI strips -_. before comparing names, so
# plain `automode` collides with the existing `auto-mode` and is refused.
name = "automode-cli"
version = "0.1.1"
description = "A mod menu for Claude Code and Codex: auto continue past usage limits, auto ping to align your limit windows with your workday"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Adriel Mendes", email = "adriel.amendes12@gmail.com" }]
keywords = ["claude", "claude-code", "codex", "cli", "rate-limit", "pty", "wrapper", "mod-menu"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
# No dependencies, on purpose: the standard library covers all of it.
dependencies = []
[project.urls]
Homepage = "https://github.com/adrielmendes28/automode"
Repository = "https://github.com/adrielmendes28/automode"
Issues = "https://github.com/adrielmendes28/automode/issues"
Changelog = "https://github.com/adrielmendes28/automode/blob/main/CHANGELOG.md"
[project.scripts]
automode = "automode.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["automode"]
[tool.hatch.build.targets.sdist]
# The screenshots are 3MB and the README points at them by URL anyway; nobody
# should download them to install a CLI.
exclude = ["/docs", "/.github"]