fixprove 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.
- fixprove-0.0.1/PKG-INFO +16 -0
- fixprove-0.0.1/README.md +3 -0
- fixprove-0.0.1/pyproject.toml +18 -0
- fixprove-0.0.1/src/fixprove/__init__.py +1 -0
fixprove-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fixprove
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name reservation. Real package coming soon.
|
|
5
|
+
Project-URL: Homepage, https://fixprove.dev
|
|
6
|
+
Project-URL: Repository, https://github.com/FixProve/fixprove
|
|
7
|
+
Author-email: Yehor Kaliberda <egorka30001@gmail.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: fixprove
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# fixprove
|
|
15
|
+
|
|
16
|
+
Name reservation. Real package coming soon at https://fixprove.dev
|
fixprove-0.0.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "fixprove"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Name reservation. Real package coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [{ name = "Yehor Kaliberda", email = "egorka30001@gmail.com" }]
|
|
12
|
+
keywords = ["fixprove"]
|
|
13
|
+
classifiers = ["Development Status :: 1 - Planning"]
|
|
14
|
+
requires-python = ">=3.8"
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://fixprove.dev"
|
|
18
|
+
Repository = "https://github.com/FixProve/fixprove"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# fixprove — name reservation placeholder
|