Skip to content

Commit

Permalink
una as subdir
Browse files Browse the repository at this point in the history
  • Loading branch information
carderne committed Aug 27, 2024
1 parent 2cdad0b commit 1380e02
Show file tree
Hide file tree
Showing 16 changed files with 61 additions and 48 deletions.
49 changes: 1 addition & 48 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,40 +1,3 @@
[project]
name = "una"
dynamic = ["version"]
description = "Python monorepo tooling"
authors = [
{ name = "Chris Arderne", email = "[email protected]" }
]
readme = "README.md"
license = {text = "MIT License"}
requires-python = ">= 3.11"
keywords = ["uv", "monorepo", "build", "python"]

classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

dependencies = [
"dataclasses-json ~= 0.6",
"rich ~= 13.1",
"tomlkit ~= 0.10",
"typer ~= 0.8",
]

[project.urls]
homepage = "https://github.com/carderne/una"
repository = "https://github.com/carderne/una"

[project.scripts]
una = "una.cli:app"

[tool.uv]
dev-dependencies = [
"pytest >= 8.3.1",
Expand All @@ -44,17 +7,7 @@ dev-dependencies = [
]

[tool.uv.workspace]
members = ["plugins/*"]

[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["una"]

[tool.hatch.version]
source = "vcs"
members = ["una", "plugins/*"]

[tool.ruff]
target-version = "py311"
Expand Down
60 changes: 60 additions & 0 deletions una/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
[project]
name = "una"
dynamic = ["version"]
description = "Python monorepo tooling"
authors = [
{ name = "Chris Arderne", email = "[email protected]" }
]
readme = "README.md"
license = {text = "MIT License"}
requires-python = ">= 3.11"
keywords = ["uv", "monorepo", "build", "python"]

classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

dependencies = [
"dataclasses-json ~= 0.6",
"rich ~= 13.1",
"tomlkit ~= 0.10",
"typer ~= 0.8",
]

[project.urls]
homepage = "https://github.com/carderne/una"
repository = "https://github.com/carderne/una"

[project.scripts]
una = "una.cli:app"

[tool.uv]
dev-dependencies = []

[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["una"]

[tool.hatch.version]
source = "vcs"

[tool.basedpyright]
venvPath = ".."
venv = ".venv"
pythonVersion = "3.11"
strict = ["**/*.py"]
extraPaths = ["plugins/hatch"]
reportUnnecessaryTypeIgnoreComment = true
reportImplicitOverride = false
reportUnusedCallResult = false
enableTypeIgnoreComments = true
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 1380e02

Please sign in to comment.