pointcloud 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.
@@ -0,0 +1,4 @@
1
+ /**/__pycache__
2
+ /dist
3
+
4
+ /**/*.csv
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: pointcloud
3
+ Version: 0.0.1
4
+ Summary: Simple Pointcloud Viewer
5
+ Author-email: Jonas Eschmann <jonas.eschmann@gmail.com>
6
+ License: MIT
7
+ Description-Content-Type: text/markdown
8
+
9
+ # Pointcloud Viewer
@@ -0,0 +1 @@
1
+ # Pointcloud Viewer
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+
4
+ # Auth: set UV_PUBLISH_TOKEN or UV_PUBLISH_USERNAME/UV_PUBLISH_PASSWORD.
5
+ rm -rf dist
6
+ uv build --sdist
7
+ uv publish
File without changes
@@ -0,0 +1,16 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "pointcloud"
7
+ version = "0.0.1"
8
+ description = "Simple Pointcloud Viewer"
9
+ readme = "README.md"
10
+ authors = [{name = "Jonas Eschmann", email = "jonas.eschmann@gmail.com"}]
11
+ license = {text = "MIT"}
12
+ dependencies = []
13
+
14
+ [tool.hatch.build.targets.wheel]
15
+ packages = ["pointcloud"]
16
+