fastgramm 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.
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: fastgramm
3
+ Version: 1.0.0
4
+ Summary: Максимально простая библиотека для создания Telegram ботов
5
+ Home-page: https://github.com/mawwki/fastgram
6
+ Author: mawwki
7
+ Author-email: igrok.lui@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.7
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: pytelegrambotapi
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: requires-dist
20
+ Dynamic: requires-python
21
+ Dynamic: summary
File without changes
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: fastgramm
3
+ Version: 1.0.0
4
+ Summary: Максимально простая библиотека для создания Telegram ботов
5
+ Home-page: https://github.com/mawwki/fastgram
6
+ Author: mawwki
7
+ Author-email: igrok.lui@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.7
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: pytelegrambotapi
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: requires-dist
20
+ Dynamic: requires-python
21
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ fastgramm.egg-info/PKG-INFO
4
+ fastgramm.egg-info/SOURCES.txt
5
+ fastgramm.egg-info/dependency_links.txt
6
+ fastgramm.egg-info/requires.txt
7
+ fastgramm.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ pytelegrambotapi
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,22 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='fastgramm',
5
+ version='1.0.0',
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ 'pytelegrambotapi',
9
+ ],
10
+ author='mawwki',
11
+ author_email='igrok.lui@gmail.com',
12
+ description='Максимально простая библиотека для создания Telegram ботов',
13
+ long_description=open('README.md', encoding='utf-8').read(),
14
+ long_description_content_type='text/markdown',
15
+ url='https://github.com/mawwki/fastgram',
16
+ classifiers=[
17
+ 'Programming Language :: Python :: 3',
18
+ 'License :: OSI Approved :: MIT License',
19
+ 'Operating System :: OS Independent',
20
+ ],
21
+ python_requires='>=3.7',
22
+ )