rubiko 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.
rubiko-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: rubiko
3
+ Version: 1.0.0
4
+ Summary: کتابخونه‌ی قدرتمند و کامل برای ساخت ربات‌های روبیکا
5
+ Author: رادین کریمی
6
+ Author-email: رادین کریمی <radinkarimi11228@gmail.com>
7
+ License: MIT
8
+ Project-URL: Homepage, https://github.com/rubiko-radinkarimi
9
+ Project-URL: Issues, https://github.com/rubiko-radinkarimi/issues
10
+ Project-URL: Channel, https://rubika.ir/@rubiko_official
11
+ Project-URL: Telegram, https://t.me/TheFrank_b2
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Requires-Python: >=3.8
16
+ Description-Content-Type: text/markdown
17
+ Requires-Dist: requests>=2.28.0
18
+ Dynamic: author
19
+ Dynamic: requires-python
20
+
21
+ # 🤖 روبیکو - Rubiko
22
+
23
+ کتابخونه‌ی قدرتمند و کامل برای ساخت ربات‌های روبیکا
24
+
25
+ ## نصب
26
+
27
+ ```bash
28
+ pip install rubiko
rubiko-1.0.0/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # 🤖 روبیکو - Rubiko
2
+
3
+ کتابخونه‌ی قدرتمند و کامل برای ساخت ربات‌های روبیکا
4
+
5
+ ## نصب
6
+
7
+ ```bash
8
+ pip install rubiko
@@ -0,0 +1,28 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "rubiko"
7
+ version = "1.0.0"
8
+ authors = [
9
+ { name="رادین کریمی", email="radinkarimi11228@gmail.com" },
10
+ ]
11
+ description = "کتابخونه‌ی قدرتمند و کامل برای ساخت ربات‌های روبیکا"
12
+ readme = "README.md"
13
+ requires-python = ">=3.8"
14
+ license = { text = "MIT" }
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Operating System :: OS Independent",
19
+ ]
20
+ dependencies = [
21
+ "requests>=2.28.0",
22
+ ]
23
+
24
+ [project.urls]
25
+ Homepage = "https://github.com/rubiko-radinkarimi"
26
+ Issues = "https://github.com/rubiko-radinkarimi/issues"
27
+ Channel = "https://rubika.ir/@rubiko_official"
28
+ Telegram = "https://t.me/TheFrank_b2"
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: rubiko
3
+ Version: 1.0.0
4
+ Summary: کتابخونه‌ی قدرتمند و کامل برای ساخت ربات‌های روبیکا
5
+ Author: رادین کریمی
6
+ Author-email: رادین کریمی <radinkarimi11228@gmail.com>
7
+ License: MIT
8
+ Project-URL: Homepage, https://github.com/rubiko-radinkarimi
9
+ Project-URL: Issues, https://github.com/rubiko-radinkarimi/issues
10
+ Project-URL: Channel, https://rubika.ir/@rubiko_official
11
+ Project-URL: Telegram, https://t.me/TheFrank_b2
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Requires-Python: >=3.8
16
+ Description-Content-Type: text/markdown
17
+ Requires-Dist: requests>=2.28.0
18
+ Dynamic: author
19
+ Dynamic: requires-python
20
+
21
+ # 🤖 روبیکو - Rubiko
22
+
23
+ کتابخونه‌ی قدرتمند و کامل برای ساخت ربات‌های روبیکا
24
+
25
+ ## نصب
26
+
27
+ ```bash
28
+ pip install rubiko
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ rubiko.egg-info/PKG-INFO
5
+ rubiko.egg-info/SOURCES.txt
6
+ rubiko.egg-info/dependency_links.txt
7
+ rubiko.egg-info/requires.txt
8
+ rubiko.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ requests>=2.28.0
@@ -0,0 +1 @@
1
+
rubiko-1.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
rubiko-1.0.0/setup.py ADDED
@@ -0,0 +1,11 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="rubiko",
5
+ version="1.0.0",
6
+ author="رادین کریمی",
7
+ description="کتابخونه‌ی روبیکو برای ربات‌های روبیکا",
8
+ packages=find_packages(),
9
+ install_requires=["requests>=2.28.0"],
10
+ python_requires=">=3.8",
11
+ )