pbernard commited on
Commit
a732b1a
·
1 Parent(s): 0dfe7d1

Fresh uv project

Browse files
Files changed (4) hide show
  1. .python-version +1 -0
  2. README.md +0 -0
  3. main.py +6 -0
  4. pyproject.toml +7 -0
.python-version ADDED
@@ -0,0 +1 @@
 
 
1
+ 3.13
README.md ADDED
File without changes
main.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ def main():
2
+ print("Hello from realfavicon-mcp-server!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
pyproject.toml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "realfavicon-mcp-server"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.13"
7
+ dependencies = []