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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: WebTrader
3
- Version: 1.0.8
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.8
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
@@ -3,4 +3,5 @@ WebTrader.egg-info/PKG-INFO
3
3
  WebTrader.egg-info/SOURCES.txt
4
4
  WebTrader.egg-info/dependency_links.txt
5
5
  WebTrader.egg-info/entry_points.txt
6
+ WebTrader.egg-info/requires.txt
6
7
  WebTrader.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ webtrader = WebTrader
@@ -0,0 +1,2 @@
1
+ pyperclip
2
+ requests
@@ -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.8",
7
+ version="1.0.9",
8
8
  packages=find_packages(),
9
- install_requiress=["pyperclip", "requests"],
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:webtrader"
13
+ "webtrader = WebTrader"
14
14
  ]
15
15
  },
16
16
  long_description=descript,
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- webtrader = WebTrader:webtrader
File without changes