ConsoleFramework 1.2.0__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,13 +1,18 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ConsoleFramework
3
- Version: 1.2.0
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
7
7
  License: MIT
8
8
  Requires-Python: >=3.6
9
+ Description-Content-Type: text/plain
9
10
  Dynamic: author
10
11
  Dynamic: author-email
12
+ Dynamic: description
13
+ Dynamic: description-content-type
11
14
  Dynamic: license
12
15
  Dynamic: requires-python
13
16
  Dynamic: summary
17
+
18
+ ConsoleFramework - C++ library for Console.
@@ -1,8 +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
- consoletools/__init__.py
8
+ consoletools/__init__.py
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,13 +1,18 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ConsoleFramework
3
- Version: 1.2.0
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
7
7
  License: MIT
8
8
  Requires-Python: >=3.6
9
+ Description-Content-Type: text/plain
9
10
  Dynamic: author
10
11
  Dynamic: author-email
12
+ Dynamic: description
13
+ Dynamic: description-content-type
11
14
  Dynamic: license
12
15
  Dynamic: requires-python
13
16
  Dynamic: summary
17
+
18
+ ConsoleFramework - C++ library for Console.
@@ -2,8 +2,8 @@ from setuptools import setup, Extension
2
2
 
3
3
  ext_modules = [
4
4
  Extension(
5
- "ConsoleTools.core",
6
- sources=["ConsoleTools/core.cpp"],
5
+ "consoletools.core",
6
+ sources=["consoletools/core.cpp"],
7
7
  language="c++",
8
8
  extra_compile_args=["-std=c++11", "-O3"],
9
9
  ),
@@ -11,12 +11,15 @@ ext_modules = [
11
11
 
12
12
  setup(
13
13
  name="ConsoleFramework",
14
- version="1.2.0",
14
+ version="1.2.2",
15
15
  description="The best Console Library of the Python.",
16
+ long_description="ConsoleFramework - C++ library for Console.",
17
+ long_description_content_type="text/plain",
16
18
  author="Suleiman",
17
19
  author_email="steal.apet@mail.ru",
18
20
  license="MIT",
19
21
  packages=["consoletools"],
22
+ include_package_data=True,
20
23
  ext_modules=ext_modules,
21
24
  python_requires=">=3.6",
22
25
  zip_safe=False,