ibrapip 0.1.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.
- ibrapip-0.1.0/PKG-INFO +9 -0
- ibrapip-0.1.0/pyproject.toml +17 -0
- ibrapip-0.1.0/setup.cfg +4 -0
- ibrapip-0.1.0/src/ibrapip/__init__.py +1 -0
- ibrapip-0.1.0/src/ibrapip/geo.py +0 -0
- ibrapip-0.1.0/src/ibrapip.egg-info/PKG-INFO +9 -0
- ibrapip-0.1.0/src/ibrapip.egg-info/SOURCES.txt +7 -0
- ibrapip-0.1.0/src/ibrapip.egg-info/dependency_links.txt +1 -0
- ibrapip-0.1.0/src/ibrapip.egg-info/top_level.txt +1 -0
ibrapip-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ibrapip
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Пакет для геометрических вычислений
|
|
5
|
+
Author-email: salam <salam@gmail.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ibrapip"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="salam", email="salam@gmail.com" },
|
|
10
|
+
]
|
|
11
|
+
description = "Пакет для геометрических вычислений"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
]
|
ibrapip-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .geo import vector_length
|
|
File without changes
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ibrapip
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Пакет для геометрических вычислений
|
|
5
|
+
Author-email: salam <salam@gmail.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ibrapip
|