goop-md 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.
goop_md-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: goop-md
3
+ Version: 0.0.1
4
+ Summary: Geometry-Oriented Object Packing (early preview)
5
+ Project-URL: Homepage, https://github.com/goop-dev/goop
6
+ Author: GOOP developers
7
+ License-Expression: MIT
8
+ Requires-Python: >=3.10
9
+ Description-Content-Type: text/markdown
10
+
11
+ # GOOP
12
+
13
+ Geometry-Oriented Object Packing (GOOP)
14
+
15
+ ⚠️ This is an early preview release published to establish the project.
16
+ The package is under active development and the API is expected to change.
17
+
18
+ ## Installation
19
+
20
+ ```bash
21
+ pip install goop
@@ -0,0 +1,11 @@
1
+ # GOOP
2
+
3
+ Geometry-Oriented Object Packing (GOOP)
4
+
5
+ ⚠️ This is an early preview release published to establish the project.
6
+ The package is under active development and the API is expected to change.
7
+
8
+ ## Installation
9
+
10
+ ```bash
11
+ pip install goop
goop_md-0.0.1/pypirc ADDED
@@ -0,0 +1,3 @@
1
+ [pypi]
2
+ username = __token__
3
+ password = pypi-AgEIcHlwaS5vcmcCJGFlZDg1NTRlLWU4Y2MtNDc4MS04ZWEyLWRjMDQ5MTFiNWVkYwACKlszLCI4NjljM2NkMi1jNWYxLTQ1ODktOWI1My1mMDgzMTgwNjdiNjEiXQAABiA9zw2hZPmDB8TRQLRduTCt1oh2FhI68SUhuzQKEA7ITQ
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "goop-md"
7
+ version = "0.0.1"
8
+ description = "Geometry-Oriented Object Packing (early preview)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ authors = [{ name = "GOOP developers" }]
13
+
14
+ [project.urls]
15
+ Homepage = "https://github.com/goop-dev/goop"
16
+
17
+ [project.scripts]
18
+ goop = "goop.cli:main"
19
+
20
+ [tool.hatch.build.targets.wheel]
21
+ packages = ["src/goop"]
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
@@ -0,0 +1,4 @@
1
+ def main() -> None:
2
+ print("GOOP 0.0.1")
3
+ print("Geometry-Oriented Object Packing")
4
+ print("This is an early preview release. The project is under active development.")