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 +21 -0
- goop_md-0.0.1/README.md +11 -0
- goop_md-0.0.1/pypirc +3 -0
- goop_md-0.0.1/pyproject.toml +21 -0
- goop_md-0.0.1/src/goop/__init__.py +1 -0
- goop_md-0.0.1/src/goop/cli.py +4 -0
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
|
goop_md-0.0.1/README.md
ADDED
goop_md-0.0.1/pypirc
ADDED
|
@@ -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"
|