Skip to content

Commit c912dbc

Browse files
committed
Use uv
1 parent a29f649 commit c912dbc

File tree

4 files changed

+235
-0
lines changed

4 files changed

+235
-0
lines changed

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.11

main.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def main():
2+
print("Hello from addon-datastore-validation!")
3+
4+
5+
if __name__ == "__main__":
6+
main()

pyproject.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[project]
2+
name = "addon-datastore-validation"
3+
version = "0.1.0"
4+
description = "Add-on datastore validation"
5+
readme = "readme.md"
6+
requires-python = ">=3.11"
7+
dependencies = [
8+
"configobj",
9+
"flake8==3.9.2",
10+
"flake8-tabs==2.2.2",
11+
"jsonschema==4.23.0",
12+
]
13+
14+
[tool.uv.sources]
15+
configobj = { git = "https://github.com/DiffSK/configobj", rev = "8be54629ee7c26acb5c865b74c76284e80f3aa31" }

0 commit comments

Comments
 (0)