botcreatemessenger 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,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: botcreatemessenger
3
+ Version: 0.0.1
4
+ Summary: Библиотека для создания ботов в мессенджере
5
+ Home-page: http://78.40.188.120:3000
6
+ Author: messenger
7
+ Author-email: your.email@example.com
8
+ Keywords: messenger bot chat telegram-like
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.7
11
+ Classifier: Programming Language :: Python :: 3.8
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Development Status :: 3 - Alpha
18
+ Classifier: Intended Audience :: Developers
19
+ Classifier: Topic :: Communications :: Chat
20
+ Requires-Python: >=3.7
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: requests>=2.25.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: keywords
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
33
+
34
+ # BotCreateMessenger
35
+
36
+ Библиотека для создания ботов в мессенджере. Позволяет легко создавать и управлять ботами с простым и понятным синтаксисом.
37
+
38
+ ## Установка
39
+
40
+ ```bash
41
+ pip install botcreatemessenger
@@ -0,0 +1,8 @@
1
+ # BotCreateMessenger
2
+
3
+ Библиотека для создания ботов в мессенджере. Позволяет легко создавать и управлять ботами с простым и понятным синтаксисом.
4
+
5
+ ## Установка
6
+
7
+ ```bash
8
+ pip install botcreatemessenger
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: botcreatemessenger
3
+ Version: 0.0.1
4
+ Summary: Библиотека для создания ботов в мессенджере
5
+ Home-page: http://78.40.188.120:3000
6
+ Author: messenger
7
+ Author-email: your.email@example.com
8
+ Keywords: messenger bot chat telegram-like
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.7
11
+ Classifier: Programming Language :: Python :: 3.8
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Development Status :: 3 - Alpha
18
+ Classifier: Intended Audience :: Developers
19
+ Classifier: Topic :: Communications :: Chat
20
+ Requires-Python: >=3.7
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: requests>=2.25.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: keywords
30
+ Dynamic: requires-dist
31
+ Dynamic: requires-python
32
+ Dynamic: summary
33
+
34
+ # BotCreateMessenger
35
+
36
+ Библиотека для создания ботов в мессенджере. Позволяет легко создавать и управлять ботами с простым и понятным синтаксисом.
37
+
38
+ ## Установка
39
+
40
+ ```bash
41
+ pip install botcreatemessenger
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ botcreatemessenger.egg-info/PKG-INFO
4
+ botcreatemessenger.egg-info/SOURCES.txt
5
+ botcreatemessenger.egg-info/dependency_links.txt
6
+ botcreatemessenger.egg-info/requires.txt
7
+ botcreatemessenger.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ requests>=2.25.0
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,35 @@
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
+ with open("requirements.txt", "r", encoding="utf-8") as fh:
7
+ requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")]
8
+
9
+ setup(
10
+ name="botcreatemessenger",
11
+ version="0.0.1",
12
+ author="messenger",
13
+ author_email="your.email@example.com",
14
+ description="Библиотека для создания ботов в мессенджере",
15
+ long_description=long_description,
16
+ long_description_content_type="text/markdown",
17
+ url="http://78.40.188.120:3000",
18
+ packages=find_packages(),
19
+ classifiers=[
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.7",
22
+ "Programming Language :: Python :: 3.8",
23
+ "Programming Language :: Python :: 3.9",
24
+ "Programming Language :: Python :: 3.10",
25
+ "Programming Language :: Python :: 3.11",
26
+ "License :: OSI Approved :: MIT License",
27
+ "Operating System :: OS Independent",
28
+ "Development Status :: 3 - Alpha",
29
+ "Intended Audience :: Developers",
30
+ "Topic :: Communications :: Chat",
31
+ ],
32
+ python_requires=">=3.7",
33
+ install_requires=requirements,
34
+ keywords="messenger bot chat telegram-like"
35
+ )