Open-AutoTools 0.0.2__tar.gz → 0.0.2.post1__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.
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1/Open_AutoTools.egg-info}/PKG-INFO +1 -1
- {open_autotools-0.0.2/Open_AutoTools.egg-info → open_autotools-0.0.2.post1}/PKG-INFO +1 -1
- open_autotools-0.0.2.post1/setup.py +57 -0
- open_autotools-0.0.2/setup.py +0 -27
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/LICENSE +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/Open_AutoTools.egg-info/SOURCES.txt +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/Open_AutoTools.egg-info/dependency_links.txt +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/Open_AutoTools.egg-info/entry_points.txt +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/Open_AutoTools.egg-info/requires.txt +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/Open_AutoTools.egg-info/top_level.txt +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/README.md +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/__init__.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/autocaps/__init__.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/autocaps/core.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/autoip/__init__.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/autoip/core.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/autolower/__init__.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/autolower/core.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/autotranslate/__init__.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/autotranslate/core.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/cli.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/downloader/__init__.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/downloader/core.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/password/__init__.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/autotools/password/core.py +0 -0
- {open_autotools-0.0.2 → open_autotools-0.0.2.post1}/setup.cfg +0 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
import os
|
|
3
|
+
|
|
4
|
+
# READING REQUIREMENTS FROM FILE
|
|
5
|
+
required = [
|
|
6
|
+
"Brotli==1.1.0",
|
|
7
|
+
"certifi==2024.2.2",
|
|
8
|
+
"charset-normalizer==3.3.2",
|
|
9
|
+
"click==8.1.3",
|
|
10
|
+
"cryptography==42.0.2",
|
|
11
|
+
"idna==3.6",
|
|
12
|
+
"importlib-metadata==7.0.1",
|
|
13
|
+
"joblib==1.3.2",
|
|
14
|
+
"Levenshtein==0.25.0",
|
|
15
|
+
"mutagen==1.47.0",
|
|
16
|
+
"platformdirs==4.2.0",
|
|
17
|
+
"pycryptodomex==3.20.0",
|
|
18
|
+
"pyperclip==1.8.2",
|
|
19
|
+
"python-Levenshtein==0.25.0",
|
|
20
|
+
"rapidfuzz==3.6.1",
|
|
21
|
+
"regex==2023.12.25",
|
|
22
|
+
"requests>=2.32.2",
|
|
23
|
+
"textblob==0.18.0.post0",
|
|
24
|
+
"tomli==2.0.1",
|
|
25
|
+
"tqdm==4.66.2",
|
|
26
|
+
"urllib3==2.2.1",
|
|
27
|
+
"websockets==13.0.1",
|
|
28
|
+
"yapf==0.40.2",
|
|
29
|
+
"yt-dlp>=2024.3.10",
|
|
30
|
+
"zipp==3.17.0",
|
|
31
|
+
"translate==3.6.1",
|
|
32
|
+
"langdetect==1.0.9",
|
|
33
|
+
"deep-translator==1.11.4",
|
|
34
|
+
"netifaces>=0.11.0",
|
|
35
|
+
"speedtest-cli>=2.1.3",
|
|
36
|
+
"psutil>=5.9.0",
|
|
37
|
+
"setuptools>=40.8.0",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
# SETUP CONFIGURATION FOR PACKAGE DISTRIBUTION
|
|
41
|
+
setup(
|
|
42
|
+
name='Open-AutoTools',
|
|
43
|
+
version='0.0.2.post1',
|
|
44
|
+
packages=find_packages(),
|
|
45
|
+
include_package_data=True,
|
|
46
|
+
install_requires=required,
|
|
47
|
+
entry_points='''
|
|
48
|
+
[console_scripts]
|
|
49
|
+
autotools=autotools.cli:autotools
|
|
50
|
+
autocaps=autotools.cli:autocaps
|
|
51
|
+
autolower=autotools.cli:autolower
|
|
52
|
+
autodownload=autotools.cli:autodownload
|
|
53
|
+
autopassword=autotools.cli:autopassword
|
|
54
|
+
autotranslate=autotools.cli:autotranslate
|
|
55
|
+
autoip=autotools.cli:autoip
|
|
56
|
+
''',
|
|
57
|
+
)
|
open_autotools-0.0.2/setup.py
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
from setuptools import setup, find_packages
|
|
2
|
-
import os
|
|
3
|
-
|
|
4
|
-
# READING REQUIREMENTS FROM FILE
|
|
5
|
-
required = []
|
|
6
|
-
if os.path.exists('requirements.txt'):
|
|
7
|
-
with open('requirements.txt') as f:
|
|
8
|
-
required = [line for line in f.read().splitlines() if "git+" not in line]
|
|
9
|
-
|
|
10
|
-
# SETUP CONFIGURATION FOR PACKAGE DISTRIBUTION
|
|
11
|
-
setup(
|
|
12
|
-
name='Open-AutoTools',
|
|
13
|
-
version='0.0.2',
|
|
14
|
-
packages=find_packages(),
|
|
15
|
-
include_package_data=True,
|
|
16
|
-
install_requires=required,
|
|
17
|
-
entry_points='''
|
|
18
|
-
[console_scripts]
|
|
19
|
-
autotools=autotools.cli:autotools
|
|
20
|
-
autocaps=autotools.cli:autocaps
|
|
21
|
-
autolower=autotools.cli:autolower
|
|
22
|
-
autodownload=autotools.cli:autodownload
|
|
23
|
-
autopassword=autotools.cli:autopassword
|
|
24
|
-
autotranslate=autotools.cli:autotranslate
|
|
25
|
-
autoip=autotools.cli:autoip
|
|
26
|
-
''',
|
|
27
|
-
)
|
|
File without changes
|
|
File without changes
|
{open_autotools-0.0.2 → open_autotools-0.0.2.post1}/Open_AutoTools.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{open_autotools-0.0.2 → open_autotools-0.0.2.post1}/Open_AutoTools.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|