WebTrader 1.0.3__tar.gz → 1.0.5__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.3 → webtrader-1.0.5}/PKG-INFO +14 -1
- {webtrader-1.0.3 → webtrader-1.0.5}/WebTrader.egg-info/PKG-INFO +14 -1
- webtrader-1.0.5/setup.py +29 -0
- webtrader-1.0.3/setup.py +0 -17
- {webtrader-1.0.3 → webtrader-1.0.5}/WebTrader.egg-info/SOURCES.txt +0 -0
- {webtrader-1.0.3 → webtrader-1.0.5}/WebTrader.egg-info/dependency_links.txt +0 -0
- {webtrader-1.0.3 → webtrader-1.0.5}/WebTrader.egg-info/entry_points.txt +0 -0
- {webtrader-1.0.3 → webtrader-1.0.5}/WebTrader.egg-info/top_level.txt +0 -0
- {webtrader-1.0.3 → webtrader-1.0.5}/setup.cfg +0 -0
@@ -1,9 +1,22 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: WebTrader
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.5
|
4
|
+
Author: NecmeddinHD
|
5
|
+
Keywords: telegram bot share link device transfer
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
7
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
8
|
+
Classifier: Operating System :: OS Independent
|
9
|
+
Classifier: Topic :: Communications :: Chat
|
10
|
+
Classifier: Intended Audience :: Developers
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
12
|
+
Classifier: Framework :: AsyncIO
|
13
|
+
Classifier: Environment :: Console
|
4
14
|
Description-Content-Type: text/markdown
|
15
|
+
Dynamic: author
|
16
|
+
Dynamic: classifier
|
5
17
|
Dynamic: description
|
6
18
|
Dynamic: description-content-type
|
19
|
+
Dynamic: keywords
|
7
20
|
|
8
21
|
# WebTrader
|
9
22
|
You can quickly open websites from your computer on your phone or tablet.
|
@@ -1,9 +1,22 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: WebTrader
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.5
|
4
|
+
Author: NecmeddinHD
|
5
|
+
Keywords: telegram bot share link device transfer
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
7
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
8
|
+
Classifier: Operating System :: OS Independent
|
9
|
+
Classifier: Topic :: Communications :: Chat
|
10
|
+
Classifier: Intended Audience :: Developers
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
12
|
+
Classifier: Framework :: AsyncIO
|
13
|
+
Classifier: Environment :: Console
|
4
14
|
Description-Content-Type: text/markdown
|
15
|
+
Dynamic: author
|
16
|
+
Dynamic: classifier
|
5
17
|
Dynamic: description
|
6
18
|
Dynamic: description-content-type
|
19
|
+
Dynamic: keywords
|
7
20
|
|
8
21
|
# WebTrader
|
9
22
|
You can quickly open websites from your computer on your phone or tablet.
|
webtrader-1.0.5/setup.py
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
from setuptools import setup, find_packages
|
2
|
+
|
3
|
+
with open("readme.md", "r") as f:
|
4
|
+
description=f.read()
|
5
|
+
setup(
|
6
|
+
name="WebTrader",
|
7
|
+
version="1.0.5",
|
8
|
+
packages=find_packages(),
|
9
|
+
install_requiress=["pyperclip", "requests"],
|
10
|
+
entry_points={
|
11
|
+
"console_scripts": [
|
12
|
+
"webtrader = WebTrader:webtrader"
|
13
|
+
]
|
14
|
+
},
|
15
|
+
long_description=description,
|
16
|
+
long_description_content_type="text/markdown",
|
17
|
+
author="NecmeddinHD",
|
18
|
+
classifiers=[
|
19
|
+
"Programming Language :: Python :: 3",
|
20
|
+
"License :: OSI Approved :: Apache Software License",
|
21
|
+
"Operating System :: OS Independent",
|
22
|
+
"Topic :: Communications :: Chat",
|
23
|
+
"Intended Audience :: Developers",
|
24
|
+
"Development Status :: 4 - Beta",
|
25
|
+
"Framework :: AsyncIO",
|
26
|
+
"Environment :: Console",
|
27
|
+
],
|
28
|
+
keywords="telegram bot share link device transfer",
|
29
|
+
)
|
webtrader-1.0.3/setup.py
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
from setuptools import setup, find_packages
|
2
|
-
|
3
|
-
with open("readme.md", "r") as f:
|
4
|
-
description=f.read()
|
5
|
-
setup(
|
6
|
-
name="WebTrader",
|
7
|
-
version="1.0.3",
|
8
|
-
packages=find_packages(),
|
9
|
-
install_requiress=["pyperclip", "requests"],
|
10
|
-
entry_points={
|
11
|
-
"console_scripts": [
|
12
|
-
"webtrader = WebTrader:webtrader"
|
13
|
-
]
|
14
|
-
},
|
15
|
-
long_description=description,
|
16
|
-
long_description_content_type="text/markdown"
|
17
|
-
)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|