Skip to content

Commit 18f79a8

Browse files
committed
uv init
0 parents  commit 18f79a8

File tree

6 files changed

+27
-0
lines changed

6 files changed

+27
-0
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Python-generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# Virtual environments
10+
.venv

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.10

README.md

Whitespace-only changes.

pyproject.toml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[project]
2+
name = "example-custom-netmiko-cli-test"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
authors = [
7+
{ name = "Urs Baumann", email = "github@m.ubaumann.ch" }
8+
]
9+
requires-python = ">=3.10"
10+
dependencies = []
11+
12+
[build-system]
13+
requires = ["hatchling"]
14+
build-backend = "hatchling.build"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def hello() -> str:
2+
return "Hello from example-custom-netmiko-cli-test!"

src/example_custom_netmiko_cli_test/py.typed

Whitespace-only changes.

0 commit comments

Comments
 (0)