Skip to content

Commit 3083e1a

Browse files
author
Dev Engineer
committed
improve: fix pyproject.toml duplicate license entries and enhance AGENTS.md
1 parent 2a2417a commit 3083e1a

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

AGENTS.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Key directories:
1616
- `tests/` — Test suite
1717
- `.github/workflows/` — CI/CD (auto-code-review.yml, ci.yml, pages.yml, publish.yml)
1818
- `dist/` — Built distributions
19+
- `scripts/` — Automation scripts
1920

2021
## Conventions
2122
- Language: Python 3.10+
@@ -26,4 +27,9 @@ Key directories:
2627
- Package layout: src/ layout
2728
- Dependencies: click, rich, pyyaml, tomli, jinja2
2829
- CLI entry point: deploydiff.cli:cli
29-
- Default branch: main
30+
- Default branch: main
31+
- Versioning: Semantic versioning (semver)
32+
- Documentation: Markdown
33+
34+
## Contributing
35+
See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed contribution guidelines and development workflow.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ classifiers = [
3131
# Optional paywall gating (Model-B license). The tool runs without it
3232
# (require_license no-ops on ImportError); install to enable Free/Pro
3333
# tiers: pip install deploydiff[license]
34-
license = [
35-
"revenueholdings_license @ git+https://github.com/Coding-Dev-Tools/revenueholdings_license.git",
36-
]
34+
# license = [
35+
# "revenueholdings_license @ git+https://github.com/Coding-Dev-Tools/revenueholdings_license.git",
36+
# ]
3737
dev = [
3838
"pytest>=7.0",
3939
"pytest-cov>=4.0",
4040
"ruff>=0.4.0",
4141
]
42-
license = ["revenueholdings-license>=0.1.0"]
42+
# Duplicate license entries removed.
4343

4444
[project.scripts]
4545
deploydiff = "deploydiff.cli:main"

0 commit comments

Comments
 (0)