-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
uv
for dependency management (#56)
* Update pyproject.toml to new standard. * Use uv for dependency management * Remove now unnecessary version number in init file. * Update CI/CD * Add dependabot file
- Loading branch information
1 parent
ff752b2
commit 2013a81
Showing
8 changed files
with
611 additions
and
520 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
reviewers: | ||
- "endlesstrax" | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
reviewers: | ||
- "endlesstrax" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
"""Check you site for broken links!""" | ||
|
||
__version__ = "0.7.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
[build-system] | ||
requires = ["flit_core >=2,<4"] | ||
build-backend = "flit_core.buildapi" | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.flit.metadata] | ||
module = "pyanchor" | ||
author = "Ricky White" | ||
author-email = "[email protected]" | ||
home-page = "https://github.com/EndlessTrax/pyanchor/" | ||
[project] | ||
name = "pyanchor" | ||
version = "0.7.3" | ||
authors = [ | ||
{name="Ricky White", email="[email protected]"}, | ||
] | ||
description = "Find your broken links, so users don't." | ||
readme = "README.md" | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.8", | ||
|
@@ -15,19 +18,29 @@ classifiers = [ | |
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12" | ||
] | ||
description-file="README.md" | ||
requires = [ | ||
"beautifulsoup4==4.11.1", | ||
"requests==2.31.0", | ||
"typer==0.5.0", | ||
"lxml==4.9.2", | ||
"colorama==0.4.5" | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"beautifulsoup4>=4.12.3", | ||
"colorama>=0.4.6", | ||
"lxml>=5.3.0", | ||
"requests>=2.32.3", | ||
"typer>=0.12.5", | ||
] | ||
requires-python=">=3.8" | ||
|
||
[tool.flit.metadata.urls] | ||
[project.scripts] | ||
pyanchor = "pyanchor.cli:app" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/EndlessTrax/pyanchor/" | ||
Documentation = "https://github.com/EndlessTrax/pyanchor/blob/master/README.md" | ||
Repository = "https://github.com/EndlessTrax/pyanchor.git" | ||
Issues = "https://github.com/EndlessTrax/pyanchor/issues" | ||
|
||
[tool.flit.scripts] | ||
pyanchor = "pyanchor.cli:app" | ||
[tool.uv] | ||
dev-dependencies = [ | ||
"flask>=3.0.3", | ||
"pytest>=8.3.3", | ||
"pytest-cov>=5.0.0", | ||
"python-dotenv>=1.0.1", | ||
"ruff>=0.6.8", | ||
] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.