Skip to content

Commit

Permalink
[dependency-groups] is not uv-specific; move it up
Browse files Browse the repository at this point in the history
  • Loading branch information
wsanchez committed Jan 27, 2025
1 parent d043244 commit b494a7a
Showing 1 changed file with 23 additions and 18 deletions.
41 changes: 23 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business",
]
keywords = []

Expand All @@ -56,6 +55,28 @@ Repository = "https://github.com/burningmantech/ranger-transmissions.git"
Issues = "https://github.com/burningmantech/ranger-transmissions/issues"
Changelog = "https://github.com/burningmantech/ranger-transmissions/blob/master/CHANGELOG.md"


# Development and testing requirements

[dependency-groups]
lint = [
"pre-commit==4.0.1",
]
unit = [
"coverage==7.6.10",
"hypothesis==6.112.4",
]
mypy = [
"mypy-zope==1.0.5",
"mypy==1.7.1",
"pydub-stubs==0.25.1.1",
]
packaging = [
"pip",
"twine==5.1.1",
]


[build-system]

requires = ["setuptools", "wheel"]
Expand Down Expand Up @@ -146,6 +167,7 @@ lines-after-imports = 2
[tool.setuptools.dynamic]
version = {attr = "transmissions.__version__"}


[tool.setuptools.packages.find]
where = ["src"]

Expand All @@ -157,20 +179,3 @@ where = ["src"]
[tool.uv]

default-groups = []
[dependency-groups]
lint = [
"pre-commit==4.0.1",
]
unit = [
"coverage==7.6.10",
"hypothesis==6.112.4",
]
mypy = [
"mypy-zope==1.0.5",
"mypy==1.7.1",
"pydub-stubs==0.25.1.1",
]
packaging = [
"pip",
"twine==5.1.1",
]

0 comments on commit b494a7a

Please sign in to comment.