velme 0.0.0__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.
- velme-0.0.0/PKG-INFO +15 -0
- velme-0.0.0/README.md +4 -0
- velme-0.0.0/pyproject.toml +16 -0
- velme-0.0.0/src/velme/__init__.py +0 -0
velme-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: velme
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Reserved for the Velme programming language. Not yet released.
|
|
5
|
+
Project-URL: Homepage, https://github.com/velme-lang/velme
|
|
6
|
+
Project-URL: Repository, https://github.com/velme-lang/velme
|
|
7
|
+
License-Expression: MIT OR Apache-2.0
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# velme
|
|
13
|
+
|
|
14
|
+
This name is reserved for the [Velme programming language](https://github.com/velme-lang/velme).
|
|
15
|
+
Nothing is published here yet.
|
velme-0.0.0/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "velme"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Reserved for the Velme programming language. Not yet released."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT OR Apache-2.0"
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
classifiers = ["Development Status :: 1 - Planning"]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://github.com/velme-lang/velme"
|
|
16
|
+
Repository = "https://github.com/velme-lang/velme"
|
|
File without changes
|