d4rktg 0.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.
@@ -0,0 +1 @@
1
+ include requirements.txt
d4rktg-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: d4rktg
3
+ Version: 0.0.1
4
+ Summary: A module for create with easy and fast
5
+ Author: D4rkShell
6
+ Author-email: premiumqtrst@gmail.com
7
+ Keywords: python,telegram bot,D4rkShell
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Operating System :: OS Independent
12
+ Description-Content-Type: text/x-rst
13
+ Requires-Dist: pytz==2025.2
14
+ Requires-Dist: PySocks==1.7.1
15
+ Requires-Dist: schedule==1.2.2
16
+ Requires-Dist: TgCrypto==1.2.5
17
+ Requires-Dist: pyrofork==2.3.64
18
+ Requires-Dist: requests==2.32.3
19
+ Requires-Dist: RapidFuzz==3.13.0
20
+ Requires-Dist: cryptography==45.0.4
21
+ Requires-Dist: parse-torrent-title==2.8.1
22
+ Dynamic: author
23
+ Dynamic: author-email
24
+ Dynamic: classifier
25
+ Dynamic: description
26
+ Dynamic: description-content-type
27
+ Dynamic: keywords
28
+ Dynamic: requires-dist
29
+ Dynamic: summary
30
+
31
+ # D4rkTG
@@ -0,0 +1 @@
1
+ # D4rkTG
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: d4rktg
3
+ Version: 0.0.1
4
+ Summary: A module for create with easy and fast
5
+ Author: D4rkShell
6
+ Author-email: premiumqtrst@gmail.com
7
+ Keywords: python,telegram bot,D4rkShell
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Operating System :: OS Independent
12
+ Description-Content-Type: text/x-rst
13
+ Requires-Dist: pytz==2025.2
14
+ Requires-Dist: PySocks==1.7.1
15
+ Requires-Dist: schedule==1.2.2
16
+ Requires-Dist: TgCrypto==1.2.5
17
+ Requires-Dist: pyrofork==2.3.64
18
+ Requires-Dist: requests==2.32.3
19
+ Requires-Dist: RapidFuzz==3.13.0
20
+ Requires-Dist: cryptography==45.0.4
21
+ Requires-Dist: parse-torrent-title==2.8.1
22
+ Dynamic: author
23
+ Dynamic: author-email
24
+ Dynamic: classifier
25
+ Dynamic: description
26
+ Dynamic: description-content-type
27
+ Dynamic: keywords
28
+ Dynamic: requires-dist
29
+ Dynamic: summary
30
+
31
+ # D4rkTG
@@ -0,0 +1,9 @@
1
+ MANIFEST.in
2
+ README.rst
3
+ requirements.txt
4
+ setup.py
5
+ d4rktg.egg-info/PKG-INFO
6
+ d4rktg.egg-info/SOURCES.txt
7
+ d4rktg.egg-info/dependency_links.txt
8
+ d4rktg.egg-info/requires.txt
9
+ d4rktg.egg-info/top_level.txt
@@ -0,0 +1,9 @@
1
+ pytz==2025.2
2
+ PySocks==1.7.1
3
+ schedule==1.2.2
4
+ TgCrypto==1.2.5
5
+ pyrofork==2.3.64
6
+ requests==2.32.3
7
+ RapidFuzz==3.13.0
8
+ cryptography==45.0.4
9
+ parse-torrent-title==2.8.1
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,9 @@
1
+ pytz==2025.2
2
+ PySocks==1.7.1
3
+ schedule==1.2.2
4
+ TgCrypto==1.2.5
5
+ pyrofork==2.3.64
6
+ requests==2.32.3
7
+ RapidFuzz==3.13.0
8
+ cryptography==45.0.4
9
+ parse-torrent-title==2.8.1
d4rktg-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
d4rktg-0.0.1/setup.py ADDED
@@ -0,0 +1,39 @@
1
+ from setuptools import setup, find_packages
2
+ from pathlib import Path
3
+ import codecs
4
+ import os
5
+
6
+ VERSION = '0.0.1'
7
+ DESCRIPTION = 'A module for create telegram bot easy'
8
+
9
+
10
+
11
+ def get_setup_kwargs(raw: bool = False):
12
+ """Builds a dictionary of kwargs for the setup function"""
13
+
14
+ raw_ext = "-raw" if raw else ""
15
+ with open('README.rst') as r:
16
+ readme = r.read()
17
+ with open('requirements.txt') as f:
18
+ requirements = f.read().splitlines()
19
+ return {
20
+ "name":"d4rktg",
21
+ "version":VERSION,
22
+ "author":"D4rkShell",
23
+ "author_email":"premiumqtrst@gmail.com",
24
+ "packages":find_packages(),
25
+ "install_requires": requirements,
26
+ "keywords":['python', 'telegram bot', 'D4rkShell'],
27
+ "description":"A module for create with easy and fast",
28
+ "long_description":readme,
29
+ "long_description_content_type" : "text/x-rst",
30
+ "classifiers": [
31
+ "Development Status :: 1 - Planning",
32
+ "Intended Audience :: Developers",
33
+ "Programming Language :: Python :: 3",
34
+ "Operating System :: OS Independent",
35
+ ],
36
+ }
37
+
38
+ if __name__ == '__main__':
39
+ setup(**get_setup_kwargs(raw=False))