receiptlib-upload-v1 1.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.
- receiptlib_upload_v1-1.0.1/PKG-INFO +28 -0
- receiptlib_upload_v1-1.0.1/README.md +8 -0
- receiptlib_upload_v1-1.0.1/receiptlib_upload_v1.egg-info/PKG-INFO +28 -0
- receiptlib_upload_v1-1.0.1/receiptlib_upload_v1.egg-info/SOURCES.txt +8 -0
- receiptlib_upload_v1-1.0.1/receiptlib_upload_v1.egg-info/dependency_links.txt +1 -0
- receiptlib_upload_v1-1.0.1/receiptlib_upload_v1.egg-info/entry_points.txt +3 -0
- receiptlib_upload_v1-1.0.1/receiptlib_upload_v1.egg-info/requires.txt +2 -0
- receiptlib_upload_v1-1.0.1/receiptlib_upload_v1.egg-info/top_level.txt +1 -0
- receiptlib_upload_v1-1.0.1/setup.cfg +4 -0
- receiptlib_upload_v1-1.0.1/setup.py +30 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: receiptlib-upload-v1
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Библиотека для печати демонстрационного кассового чека
|
|
5
|
+
Author: Полубояринов Максим Владимирович
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.6
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: PyQt5>=5.15.0
|
|
12
|
+
Requires-Dist: reportlab>=4.0.0
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: description
|
|
16
|
+
Dynamic: description-content-type
|
|
17
|
+
Dynamic: requires-dist
|
|
18
|
+
Dynamic: requires-python
|
|
19
|
+
Dynamic: summary
|
|
20
|
+
|
|
21
|
+
# receiptlib-upload
|
|
22
|
+
|
|
23
|
+
Библиотека для печати демонстрационного кассового чека.
|
|
24
|
+
|
|
25
|
+
## Установка
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install receiptlib-upload
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: receiptlib-upload-v1
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Библиотека для печати демонстрационного кассового чека
|
|
5
|
+
Author: Полубояринов Максим Владимирович
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.6
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: PyQt5>=5.15.0
|
|
12
|
+
Requires-Dist: reportlab>=4.0.0
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: description
|
|
16
|
+
Dynamic: description-content-type
|
|
17
|
+
Dynamic: requires-dist
|
|
18
|
+
Dynamic: requires-python
|
|
19
|
+
Dynamic: summary
|
|
20
|
+
|
|
21
|
+
# receiptlib-upload
|
|
22
|
+
|
|
23
|
+
Библиотека для печати демонстрационного кассового чека.
|
|
24
|
+
|
|
25
|
+
## Установка
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install receiptlib-upload
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
setup.py
|
|
3
|
+
receiptlib_upload_v1.egg-info/PKG-INFO
|
|
4
|
+
receiptlib_upload_v1.egg-info/SOURCES.txt
|
|
5
|
+
receiptlib_upload_v1.egg-info/dependency_links.txt
|
|
6
|
+
receiptlib_upload_v1.egg-info/entry_points.txt
|
|
7
|
+
receiptlib_upload_v1.egg-info/requires.txt
|
|
8
|
+
receiptlib_upload_v1.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
with open("README.md", "r", encoding="utf-8") as f:
|
|
4
|
+
long_description = f.read()
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
name="receiptlib-upload-v1",
|
|
8
|
+
version="1.0.1",
|
|
9
|
+
author="Полубояринов Максим Владимирович",
|
|
10
|
+
description="Библиотека для печати демонстрационного кассового чека",
|
|
11
|
+
long_description=long_description,
|
|
12
|
+
long_description_content_type="text/markdown",
|
|
13
|
+
packages=find_packages(),
|
|
14
|
+
python_requires=">=3.6",
|
|
15
|
+
install_requires=[
|
|
16
|
+
"PyQt5>=5.15.0",
|
|
17
|
+
"reportlab>=4.0.0",
|
|
18
|
+
],
|
|
19
|
+
entry_points={
|
|
20
|
+
"console_scripts": [
|
|
21
|
+
"receipt-gui = receiptlib.gui:main", # запуск GUI
|
|
22
|
+
"receipt-show-code = receiptlib.show_code:main", # показать код
|
|
23
|
+
],
|
|
24
|
+
},
|
|
25
|
+
classifiers=[
|
|
26
|
+
"Programming Language :: Python :: 3",
|
|
27
|
+
"License :: OSI Approved :: MIT License",
|
|
28
|
+
"Operating System :: OS Independent",
|
|
29
|
+
],
|
|
30
|
+
)
|