rogallo 0.0.1__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.
- rogallo-0.0.1/PKG-INFO +14 -0
- rogallo-0.0.1/README.md +5 -0
- rogallo-0.0.1/pyproject.toml +56 -0
- rogallo-0.0.1/src/rogallo/__init__.py +1 -0
- rogallo-0.0.1/src/rogallo/__main__.py +12 -0
rogallo-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: rogallo
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Coming soon
|
|
5
|
+
Author: Dave Pearson
|
|
6
|
+
Author-email: Dave Pearson <davep@davep.org>
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# Rogallo
|
|
11
|
+
|
|
12
|
+
Coming soon.
|
|
13
|
+
|
|
14
|
+
[//]: # (README.md ends here)
|
rogallo-0.0.1/README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "rogallo"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Coming soon"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [
|
|
7
|
+
{ name = "Dave Pearson", email = "davep@davep.org" }
|
|
8
|
+
]
|
|
9
|
+
requires-python = ">=3.12"
|
|
10
|
+
dependencies = []
|
|
11
|
+
|
|
12
|
+
[project.scripts]
|
|
13
|
+
rogallo = "rogallo.__main__:main"
|
|
14
|
+
|
|
15
|
+
[build-system]
|
|
16
|
+
requires = ["uv_build>=0.11.21,<0.12.0"]
|
|
17
|
+
build-backend = "uv_build"
|
|
18
|
+
|
|
19
|
+
[[tool.uv.index]]
|
|
20
|
+
name = "testpypi"
|
|
21
|
+
url = "https://test.pypi.org/simple/"
|
|
22
|
+
publish-url = "https://test.pypi.org/legacy/"
|
|
23
|
+
explicit = true
|
|
24
|
+
|
|
25
|
+
[tool.pyright]
|
|
26
|
+
venvPath="."
|
|
27
|
+
venv=".venv"
|
|
28
|
+
exclude=[".venv"]
|
|
29
|
+
|
|
30
|
+
[tool.ruff.lint]
|
|
31
|
+
select = [
|
|
32
|
+
# pycodestyle
|
|
33
|
+
"E",
|
|
34
|
+
# Pyflakes
|
|
35
|
+
"F",
|
|
36
|
+
# pyupgrade
|
|
37
|
+
"UP",
|
|
38
|
+
# flake8-bugbear
|
|
39
|
+
"B",
|
|
40
|
+
# flake8-simplify
|
|
41
|
+
"SIM",
|
|
42
|
+
# isort
|
|
43
|
+
"I",
|
|
44
|
+
]
|
|
45
|
+
ignore = [
|
|
46
|
+
# I think try...except...pass reads far better.
|
|
47
|
+
"SIM105",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[tool.ruff.lint.pycodestyle]
|
|
51
|
+
max-line-length = 120
|
|
52
|
+
|
|
53
|
+
[dependency-groups]
|
|
54
|
+
dev = [
|
|
55
|
+
"pre-commit>=4.6.0",
|
|
56
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
### __init__.py ends here
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""Provides the main entry point for the application."""
|
|
2
|
+
|
|
3
|
+
##############################################################################
|
|
4
|
+
def main() -> None:
|
|
5
|
+
"""Main entry point for the rogallo application."""
|
|
6
|
+
print("Hello from rogallo!")
|
|
7
|
+
|
|
8
|
+
##############################################################################
|
|
9
|
+
if __name__ == "__main__":
|
|
10
|
+
main()
|
|
11
|
+
|
|
12
|
+
### __main__.py ends here
|