lyrex 1.0.0__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.
lyrex-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: lyrex
3
+ Version: 1.0.0
4
+ Summary: کتابخانه قدرتمند برای ساخت ربات در پیام‌رسان بله
5
+ Home-page: https://github.com/yourusername/lyrex
6
+ Author: Your Name
7
+ Author-email: your.email@example.com
8
+ Project-URL: Bug Reports, https://github.com/yourusername/lyrex/issues
9
+ Project-URL: Source, https://github.com/yourusername/lyrex
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.7
12
+ Classifier: Programming Language :: Python :: 3.8
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Topic :: Communications :: Chat
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Requires-Python: >=3.7
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: aiohttp>=3.8.0
23
+ Dynamic: author
24
+ Dynamic: author-email
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: description-content-type
28
+ Dynamic: home-page
29
+ Dynamic: project-url
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
33
+
34
+ # Lyrex - کتابخانه ربات بله
35
+
36
+ کتابخانه قدرتمند پایتون برای ساخت ربات در پیام‌رسان بله
37
+
38
+ ## نصب سریع
39
+
40
+ ```bash
41
+ pip install lyrex
lyrex-1.0.0/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # Lyrex - کتابخانه ربات بله
2
+
3
+ کتابخانه قدرتمند پایتون برای ساخت ربات در پیام‌رسان بله
4
+
5
+ ## نصب سریع
6
+
7
+ ```bash
8
+ pip install lyrex
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: lyrex
3
+ Version: 1.0.0
4
+ Summary: کتابخانه قدرتمند برای ساخت ربات در پیام‌رسان بله
5
+ Home-page: https://github.com/yourusername/lyrex
6
+ Author: Your Name
7
+ Author-email: your.email@example.com
8
+ Project-URL: Bug Reports, https://github.com/yourusername/lyrex/issues
9
+ Project-URL: Source, https://github.com/yourusername/lyrex
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.7
12
+ Classifier: Programming Language :: Python :: 3.8
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Topic :: Communications :: Chat
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Requires-Python: >=3.7
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: aiohttp>=3.8.0
23
+ Dynamic: author
24
+ Dynamic: author-email
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: description-content-type
28
+ Dynamic: home-page
29
+ Dynamic: project-url
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
33
+
34
+ # Lyrex - کتابخانه ربات بله
35
+
36
+ کتابخانه قدرتمند پایتون برای ساخت ربات در پیام‌رسان بله
37
+
38
+ ## نصب سریع
39
+
40
+ ```bash
41
+ pip install lyrex
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ lyrex.egg-info/PKG-INFO
4
+ lyrex.egg-info/SOURCES.txt
5
+ lyrex.egg-info/dependency_links.txt
6
+ lyrex.egg-info/requires.txt
7
+ lyrex.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ aiohttp>=3.8.0
@@ -0,0 +1 @@
1
+
lyrex-1.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
lyrex-1.0.0/setup.py ADDED
@@ -0,0 +1,36 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
+
6
+ setup(
7
+ name="lyrex",
8
+ version="1.0.0",
9
+ author="Your Name",
10
+ author_email="your.email@example.com",
11
+ description="کتابخانه قدرتمند برای ساخت ربات در پیام‌رسان بله",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
+ url="https://github.com/yourusername/lyrex",
15
+ packages=find_packages(),
16
+ classifiers=[
17
+ "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3.7",
19
+ "Programming Language :: Python :: 3.8",
20
+ "Programming Language :: Python :: 3.9",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "License :: OSI Approved :: MIT License",
24
+ "Operating System :: OS Independent",
25
+ "Topic :: Communications :: Chat",
26
+ "Topic :: Software Development :: Libraries :: Python Modules",
27
+ ],
28
+ python_requires=">=3.7",
29
+ install_requires=[
30
+ "aiohttp>=3.8.0",
31
+ ],
32
+ project_urls={
33
+ "Bug Reports": "https://github.com/yourusername/lyrex/issues",
34
+ "Source": "https://github.com/yourusername/lyrex",
35
+ },
36
+ )