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.
- mise_uv_template-2.4.4/PKG-INFO +77 -0
- mise_uv_template-2.4.4/README.md +66 -0
- mise_uv_template-2.4.4/pyproject.toml +36 -0
- mise_uv_template-2.4.4/setup.cfg +4 -0
- mise_uv_template-2.4.4/src/mise_uv_template/__init__.py +3 -0
- mise_uv_template-2.4.4/src/mise_uv_template/__main__.py +9 -0
- mise_uv_template-2.4.4/src/mise_uv_template/sample.py +6 -0
- mise_uv_template-2.4.4/src/mise_uv_template.egg-info/PKG-INFO +77 -0
- mise_uv_template-2.4.4/src/mise_uv_template.egg-info/SOURCES.txt +12 -0
- mise_uv_template-2.4.4/src/mise_uv_template.egg-info/dependency_links.txt +1 -0
- mise_uv_template-2.4.4/src/mise_uv_template.egg-info/entry_points.txt +2 -0
- mise_uv_template-2.4.4/src/mise_uv_template.egg-info/requires.txt +4 -0
- mise_uv_template-2.4.4/src/mise_uv_template.egg-info/top_level.txt +1 -0
- mise_uv_template-2.4.4/tests/test_sample.py +9 -0
|
@@ -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,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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mise_uv_template
|