WebTrader 1.0.8__tar.gz → 1.0.9__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.
- {webtrader-1.0.8 → webtrader-1.0.9}/PKG-INFO +4 -1
- {webtrader-1.0.8 → webtrader-1.0.9}/WebTrader.egg-info/PKG-INFO +4 -1
- {webtrader-1.0.8 → webtrader-1.0.9}/WebTrader.egg-info/SOURCES.txt +1 -0
- webtrader-1.0.9/WebTrader.egg-info/entry_points.txt +2 -0
- webtrader-1.0.9/WebTrader.egg-info/requires.txt +2 -0
- {webtrader-1.0.8 → webtrader-1.0.9}/setup.py +3 -3
- webtrader-1.0.8/WebTrader.egg-info/entry_points.txt +0 -2
- {webtrader-1.0.8 → webtrader-1.0.9}/WebTrader.egg-info/dependency_links.txt +0 -0
- {webtrader-1.0.8 → webtrader-1.0.9}/WebTrader.egg-info/top_level.txt +0 -0
- {webtrader-1.0.8 → webtrader-1.0.9}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: WebTrader
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.9
|
4
4
|
Summary: You can quickly open websites from your computer on your phone or tablet.
|
5
5
|
Author: NecmeddinHD
|
6
6
|
Keywords: telegram bot share link device transfer
|
@@ -13,11 +13,14 @@ Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Framework :: AsyncIO
|
14
14
|
Classifier: Environment :: Console
|
15
15
|
Description-Content-Type: text/markdown
|
16
|
+
Requires-Dist: pyperclip
|
17
|
+
Requires-Dist: requests
|
16
18
|
Dynamic: author
|
17
19
|
Dynamic: classifier
|
18
20
|
Dynamic: description
|
19
21
|
Dynamic: description-content-type
|
20
22
|
Dynamic: keywords
|
23
|
+
Dynamic: requires-dist
|
21
24
|
Dynamic: summary
|
22
25
|
|
23
26
|
# WebTrader
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: WebTrader
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.9
|
4
4
|
Summary: You can quickly open websites from your computer on your phone or tablet.
|
5
5
|
Author: NecmeddinHD
|
6
6
|
Keywords: telegram bot share link device transfer
|
@@ -13,11 +13,14 @@ Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Framework :: AsyncIO
|
14
14
|
Classifier: Environment :: Console
|
15
15
|
Description-Content-Type: text/markdown
|
16
|
+
Requires-Dist: pyperclip
|
17
|
+
Requires-Dist: requests
|
16
18
|
Dynamic: author
|
17
19
|
Dynamic: classifier
|
18
20
|
Dynamic: description
|
19
21
|
Dynamic: description-content-type
|
20
22
|
Dynamic: keywords
|
23
|
+
Dynamic: requires-dist
|
21
24
|
Dynamic: summary
|
22
25
|
|
23
26
|
# WebTrader
|
@@ -4,13 +4,13 @@ with open("readme.md", "r", encoding="utf-8") as f:
|
|
4
4
|
descript=f.read()
|
5
5
|
setup(
|
6
6
|
name="WebTrader",
|
7
|
-
version="1.0.
|
7
|
+
version="1.0.9",
|
8
8
|
packages=find_packages(),
|
9
|
-
|
9
|
+
install_requires=["pyperclip", "requests"],
|
10
10
|
description="You can quickly open websites from your computer on your phone or tablet.",
|
11
11
|
entry_points={
|
12
12
|
"console_scripts": [
|
13
|
-
"webtrader = WebTrader
|
13
|
+
"webtrader = WebTrader"
|
14
14
|
]
|
15
15
|
},
|
16
16
|
long_description=descript,
|
File without changes
|
File without changes
|
File without changes
|