ConsoleFramework 1.2.1__tar.gz → 1.2.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ConsoleFramework
3
- Version: 1.2.1
3
+ Version: 1.2.2
4
4
  Summary: The best Console Library of the Python.
5
5
  Author: Suleiman
6
6
  Author-email: steal.apet@mail.ru
@@ -15,4 +15,4 @@ Dynamic: license
15
15
  Dynamic: requires-python
16
16
  Dynamic: summary
17
17
 
18
- ConsoleFramework - C++ library for Python console rendering.
18
+ ConsoleFramework - C++ library for Console.
@@ -1,9 +1,10 @@
1
+ MANIFEST.in
1
2
  setup.py
2
3
  ConsoleFramework.egg-info/PKG-INFO
3
4
  ConsoleFramework.egg-info/SOURCES.txt
4
5
  ConsoleFramework.egg-info/dependency_links.txt
5
6
  ConsoleFramework.egg-info/not-zip-safe
6
7
  ConsoleFramework.egg-info/top_level.txt
7
- ConsoleTools/core.cpp
8
8
  consoletools/__init__.py
9
- consoletools/core.cpp
9
+ consoletools/core.cpp
10
+ consoletools/core.cpython-313-aarch64-linux-android.so
@@ -0,0 +1,4 @@
1
+ include consoletools/*
2
+ include consoletools/core.cpp
3
+ include consoletools/__init__.py
4
+ recursive-include consoletools *.py *.cpp
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ConsoleFramework
3
- Version: 1.2.1
3
+ Version: 1.2.2
4
4
  Summary: The best Console Library of the Python.
5
5
  Author: Suleiman
6
6
  Author-email: steal.apet@mail.ru
@@ -15,4 +15,4 @@ Dynamic: license
15
15
  Dynamic: requires-python
16
16
  Dynamic: summary
17
17
 
18
- ConsoleFramework - C++ library for Python console rendering.
18
+ ConsoleFramework - C++ library for Console.
@@ -11,14 +11,15 @@ ext_modules = [
11
11
 
12
12
  setup(
13
13
  name="ConsoleFramework",
14
- version="1.2.1",
14
+ version="1.2.2",
15
15
  description="The best Console Library of the Python.",
16
- long_description="ConsoleFramework - C++ library for Python console rendering.",
16
+ long_description="ConsoleFramework - C++ library for Console.",
17
17
  long_description_content_type="text/plain",
18
18
  author="Suleiman",
19
19
  author_email="steal.apet@mail.ru",
20
20
  license="MIT",
21
21
  packages=["consoletools"],
22
+ include_package_data=True,
22
23
  ext_modules=ext_modules,
23
24
  python_requires=">=3.6",
24
25
  zip_safe=False,