mise-uv-template 2.4.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,77 @@
1
+ Metadata-Version: 2.4
2
+ Name: mise-uv-template
3
+ Version: 2.4.4
4
+ Summary: Add your description here
5
+ License: MIT
6
+ Requires-Python: >=3.12
7
+ Description-Content-Type: text/markdown
8
+ Provides-Extra: dev
9
+ Requires-Dist: ruff>=0.4; extra == "dev"
10
+ Requires-Dist: pytest>=8; extra == "dev"
11
+
12
+ # mise-uv-template
13
+
14
+ mise-uv-template is [add your project description here].
15
+
16
+ ## Features
17
+
18
+ - [List key features of your project]
19
+
20
+ ## Requirements
21
+
22
+ - bash 3.2+
23
+ - [mise](https://mise.jdx.dev/getting-started.html)
24
+
25
+ Run `mise install` to install all tools, then `mise run install` for any additional dependencies.
26
+
27
+ ## Quick Start
28
+
29
+ ```bash
30
+ git clone <your-repo>
31
+ cd mise-uv-template
32
+ mise install
33
+ ```
34
+
35
+ Type `mise tasks` to see all available tasks:
36
+
37
+ ```bash
38
+ ❯ mise tasks
39
+ build Build the project
40
+ clean Clean build artifacts
41
+ install Install dependencies
42
+ publish Publish package to registry
43
+ run Run project locally
44
+ test Run tests
45
+ ...
46
+ ```
47
+
48
+ Build, run, and test with `mise run`:
49
+
50
+ ```bash
51
+ mise run run
52
+ mise run test
53
+ ```
54
+
55
+ Task dependencies run automatically — `mise run test` runs `build` first!
56
+
57
+ Commit using conventional commits (`feat:`, `fix:`, `docs:`). Merge/push to main and CI/CD will run automatically bumping your project version and publishing a package.
58
+
59
+ ## Documentation
60
+
61
+ - [User Guide](docs/user-guide.md) - Complete setup and usage guide
62
+ - [Architecture](docs/architecture.md) - Design and implementation details
63
+ - [Infrastructure](docs/infrastructure.md) - Infrastructure and CI/CD details
64
+
65
+ ## References
66
+
67
+ - [mise - dev tool manager](https://mise.jdx.dev/)
68
+ - [semantic-release](https://semantic-release.gitbook.io/)
69
+ - [bats-core bash testing](https://bats-core.readthedocs.io/)
70
+ - [Google Shell Style Guide](https://google.github.io/styleguide/shellguide.html)
71
+ - [Conventional Commits](https://www.conventionalcommits.org/)
72
+ - [GitHub Actions](https://docs.github.com/en/actions)
73
+ - [GCP Artifact Registry](https://cloud.google.com/artifact-registry/docs)
74
+
75
+ ---
76
+
77
+ **Template**: mise-lib-template v2.4.4
@@ -0,0 +1,66 @@
1
+ # mise-uv-template
2
+
3
+ mise-uv-template is [add your project description here].
4
+
5
+ ## Features
6
+
7
+ - [List key features of your project]
8
+
9
+ ## Requirements
10
+
11
+ - bash 3.2+
12
+ - [mise](https://mise.jdx.dev/getting-started.html)
13
+
14
+ Run `mise install` to install all tools, then `mise run install` for any additional dependencies.
15
+
16
+ ## Quick Start
17
+
18
+ ```bash
19
+ git clone <your-repo>
20
+ cd mise-uv-template
21
+ mise install
22
+ ```
23
+
24
+ Type `mise tasks` to see all available tasks:
25
+
26
+ ```bash
27
+ ❯ mise tasks
28
+ build Build the project
29
+ clean Clean build artifacts
30
+ install Install dependencies
31
+ publish Publish package to registry
32
+ run Run project locally
33
+ test Run tests
34
+ ...
35
+ ```
36
+
37
+ Build, run, and test with `mise run`:
38
+
39
+ ```bash
40
+ mise run run
41
+ mise run test
42
+ ```
43
+
44
+ Task dependencies run automatically — `mise run test` runs `build` first!
45
+
46
+ Commit using conventional commits (`feat:`, `fix:`, `docs:`). Merge/push to main and CI/CD will run automatically bumping your project version and publishing a package.
47
+
48
+ ## Documentation
49
+
50
+ - [User Guide](docs/user-guide.md) - Complete setup and usage guide
51
+ - [Architecture](docs/architecture.md) - Design and implementation details
52
+ - [Infrastructure](docs/infrastructure.md) - Infrastructure and CI/CD details
53
+
54
+ ## References
55
+
56
+ - [mise - dev tool manager](https://mise.jdx.dev/)
57
+ - [semantic-release](https://semantic-release.gitbook.io/)
58
+ - [bats-core bash testing](https://bats-core.readthedocs.io/)
59
+ - [Google Shell Style Guide](https://google.github.io/styleguide/shellguide.html)
60
+ - [Conventional Commits](https://www.conventionalcommits.org/)
61
+ - [GitHub Actions](https://docs.github.com/en/actions)
62
+ - [GCP Artifact Registry](https://cloud.google.com/artifact-registry/docs)
63
+
64
+ ---
65
+
66
+ **Template**: mise-lib-template v2.4.4
@@ -0,0 +1,36 @@
1
+ [project]
2
+ name = "mise-uv-template"
3
+ version = "2.4.4"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ license = { text = "MIT" }
7
+ requires-python = ">=3.12"
8
+ dependencies = []
9
+
10
+ [project.scripts]
11
+ mise-uv-template = "mise_uv_template.__main__:main"
12
+
13
+ [build-system]
14
+ requires = ["setuptools>=68"]
15
+ build-backend = "setuptools.build_meta"
16
+
17
+ [project.optional-dependencies]
18
+ dev = ["ruff>=0.4", "pytest>=8"]
19
+
20
+ [tool.setuptools.packages.find]
21
+ where = ["src"]
22
+
23
+ [tool.ruff]
24
+ line-length = 120
25
+ target-version = "py312"
26
+
27
+ [tool.ruff.lint]
28
+ select = ["E", "F", "I", "UP", "B", "SIM"]
29
+ ignore = []
30
+
31
+ [tool.ruff.format]
32
+ quote-style = "double"
33
+
34
+ [tool.pytest.ini_options]
35
+ testpaths = ["tests"]
36
+ addopts = "-v"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ """mise_uv_template — generated from mise-uv-template."""
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,9 @@
1
+ """Entry point: python -m mise_uv_template"""
2
+
3
+
4
+ def main() -> None:
5
+ print("Hello from mise_uv_template!")
6
+
7
+
8
+ if __name__ == "__main__":
9
+ main()
@@ -0,0 +1,6 @@
1
+ """Sample module demonstrating library structure."""
2
+
3
+
4
+ def add(a: int, b: int) -> int:
5
+ """Return the sum of two integers."""
6
+ return a + b
@@ -0,0 +1,77 @@
1
+ Metadata-Version: 2.4
2
+ Name: mise-uv-template
3
+ Version: 2.4.4
4
+ Summary: Add your description here
5
+ License: MIT
6
+ Requires-Python: >=3.12
7
+ Description-Content-Type: text/markdown
8
+ Provides-Extra: dev
9
+ Requires-Dist: ruff>=0.4; extra == "dev"
10
+ Requires-Dist: pytest>=8; extra == "dev"
11
+
12
+ # mise-uv-template
13
+
14
+ mise-uv-template is [add your project description here].
15
+
16
+ ## Features
17
+
18
+ - [List key features of your project]
19
+
20
+ ## Requirements
21
+
22
+ - bash 3.2+
23
+ - [mise](https://mise.jdx.dev/getting-started.html)
24
+
25
+ Run `mise install` to install all tools, then `mise run install` for any additional dependencies.
26
+
27
+ ## Quick Start
28
+
29
+ ```bash
30
+ git clone <your-repo>
31
+ cd mise-uv-template
32
+ mise install
33
+ ```
34
+
35
+ Type `mise tasks` to see all available tasks:
36
+
37
+ ```bash
38
+ ❯ mise tasks
39
+ build Build the project
40
+ clean Clean build artifacts
41
+ install Install dependencies
42
+ publish Publish package to registry
43
+ run Run project locally
44
+ test Run tests
45
+ ...
46
+ ```
47
+
48
+ Build, run, and test with `mise run`:
49
+
50
+ ```bash
51
+ mise run run
52
+ mise run test
53
+ ```
54
+
55
+ Task dependencies run automatically — `mise run test` runs `build` first!
56
+
57
+ Commit using conventional commits (`feat:`, `fix:`, `docs:`). Merge/push to main and CI/CD will run automatically bumping your project version and publishing a package.
58
+
59
+ ## Documentation
60
+
61
+ - [User Guide](docs/user-guide.md) - Complete setup and usage guide
62
+ - [Architecture](docs/architecture.md) - Design and implementation details
63
+ - [Infrastructure](docs/infrastructure.md) - Infrastructure and CI/CD details
64
+
65
+ ## References
66
+
67
+ - [mise - dev tool manager](https://mise.jdx.dev/)
68
+ - [semantic-release](https://semantic-release.gitbook.io/)
69
+ - [bats-core bash testing](https://bats-core.readthedocs.io/)
70
+ - [Google Shell Style Guide](https://google.github.io/styleguide/shellguide.html)
71
+ - [Conventional Commits](https://www.conventionalcommits.org/)
72
+ - [GitHub Actions](https://docs.github.com/en/actions)
73
+ - [GCP Artifact Registry](https://cloud.google.com/artifact-registry/docs)
74
+
75
+ ---
76
+
77
+ **Template**: mise-lib-template v2.4.4
@@ -0,0 +1,12 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/mise_uv_template/__init__.py
4
+ src/mise_uv_template/__main__.py
5
+ src/mise_uv_template/sample.py
6
+ src/mise_uv_template.egg-info/PKG-INFO
7
+ src/mise_uv_template.egg-info/SOURCES.txt
8
+ src/mise_uv_template.egg-info/dependency_links.txt
9
+ src/mise_uv_template.egg-info/entry_points.txt
10
+ src/mise_uv_template.egg-info/requires.txt
11
+ src/mise_uv_template.egg-info/top_level.txt
12
+ tests/test_sample.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mise-uv-template = mise_uv_template.__main__:main
@@ -0,0 +1,4 @@
1
+
2
+ [dev]
3
+ ruff>=0.4
4
+ pytest>=8
@@ -0,0 +1 @@
1
+ mise_uv_template
@@ -0,0 +1,9 @@
1
+ from mise_uv_template.sample import add
2
+
3
+
4
+ def test_add() -> None:
5
+ assert add(1, 2) == 3
6
+
7
+
8
+ def test_add_negative() -> None:
9
+ assert add(-1, 1) == 0