pyeggp 1.0.3__tar.gz → 1.0.5__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.
- pyeggp-1.0.5/PKG-INFO +18 -0
- pyeggp-1.0.5/README.md +5 -0
- pyeggp-1.0.5/pyeggp.egg-info/PKG-INFO +18 -0
- pyeggp-1.0.5/pyeggp.egg-info/SOURCES.txt +7 -0
- pyeggp-1.0.5/pyeggp.egg-info/requires.txt +1 -0
- pyeggp-1.0.5/pyeggp.egg-info/top_level.txt +1 -0
- pyeggp-1.0.5/setup.py +23 -0
- pyeggp-1.0.3/LICENSE +0 -674
- pyeggp-1.0.3/PKG-INFO +0 -710
- pyeggp-1.0.3/README.md +0 -13
- pyeggp-1.0.3/pyproject.toml +0 -154
- pyeggp-1.0.3/setup.py +0 -148
- pyeggp-1.0.3/src/pyeggp/__init__.py +0 -176
- pyeggp-1.0.3/src/pyeggp/__main__.py +0 -11
- pyeggp-1.0.3/src/pyeggp/_binding.pyi +0 -7
- pyeggp-1.0.3/src/pyeggp/binding.i +0 -64
- pyeggp-1.0.3/src/pyeggp/typing.py +0 -14
- pyeggp-1.0.3/src/pyeggp.egg-info/PKG-INFO +0 -710
- pyeggp-1.0.3/src/pyeggp.egg-info/SOURCES.txt +0 -16
- pyeggp-1.0.3/src/pyeggp.egg-info/entry_points.txt +0 -2
- pyeggp-1.0.3/src/pyeggp.egg-info/requires.txt +0 -6
- pyeggp-1.0.3/src/pyeggp.egg-info/top_level.txt +0 -1
- pyeggp-1.0.3/test/test_pyeggp.py +0 -25
- {pyeggp-1.0.3/src → pyeggp-1.0.5}/pyeggp.egg-info/dependency_links.txt +0 -0
- {pyeggp-1.0.3 → pyeggp-1.0.5}/setup.cfg +0 -0
pyeggp-1.0.5/PKG-INFO
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: pyeggp
|
3
|
+
Version: 1.0.5
|
4
|
+
Summary: pyeggp is now eggp
|
5
|
+
Classifier: Development Status :: 7 - Inactive
|
6
|
+
Description-Content-Type: text/markdown
|
7
|
+
Requires-Dist: eggp
|
8
|
+
Dynamic: classifier
|
9
|
+
Dynamic: description
|
10
|
+
Dynamic: description-content-type
|
11
|
+
Dynamic: requires-dist
|
12
|
+
Dynamic: summary
|
13
|
+
|
14
|
+
# pyeggp is now eggp
|
15
|
+
|
16
|
+
This package has been renamed. Use `pip install eggp` instead.
|
17
|
+
|
18
|
+
New package: https://pypi.org/project/eggp/
|
pyeggp-1.0.5/README.md
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: pyeggp
|
3
|
+
Version: 1.0.5
|
4
|
+
Summary: pyeggp is now eggp
|
5
|
+
Classifier: Development Status :: 7 - Inactive
|
6
|
+
Description-Content-Type: text/markdown
|
7
|
+
Requires-Dist: eggp
|
8
|
+
Dynamic: classifier
|
9
|
+
Dynamic: description
|
10
|
+
Dynamic: description-content-type
|
11
|
+
Dynamic: requires-dist
|
12
|
+
Dynamic: summary
|
13
|
+
|
14
|
+
# pyeggp is now eggp
|
15
|
+
|
16
|
+
This package has been renamed. Use `pip install eggp` instead.
|
17
|
+
|
18
|
+
New package: https://pypi.org/project/eggp/
|
@@ -0,0 +1 @@
|
|
1
|
+
eggp
|
@@ -0,0 +1 @@
|
|
1
|
+
|
pyeggp-1.0.5/setup.py
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
from setuptools import setup
|
2
|
+
import os
|
3
|
+
|
4
|
+
VERSION = "1.0.5"
|
5
|
+
|
6
|
+
|
7
|
+
def get_long_description():
|
8
|
+
with open(
|
9
|
+
os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md"),
|
10
|
+
encoding="utf8",
|
11
|
+
) as fp:
|
12
|
+
return fp.read()
|
13
|
+
|
14
|
+
|
15
|
+
setup(
|
16
|
+
name="pyeggp",
|
17
|
+
description="pyeggp is now eggp",
|
18
|
+
long_description=get_long_description(),
|
19
|
+
long_description_content_type="text/markdown",
|
20
|
+
version=VERSION,
|
21
|
+
install_requires=["eggp"],
|
22
|
+
classifiers=["Development Status :: 7 - Inactive"],
|
23
|
+
)
|