Skip to content

Commit

Permalink
Merge pull request #1430 from barbax7/wrong_setup
Browse files Browse the repository at this point in the history
Installing storage and asyncio_storage
  • Loading branch information
Badiboy authored Feb 1, 2022
2 parents 80cf5d8 + 7ba0218 commit 723075d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ $ git clone https://github.com/eternnoir/pyTelegramBotAPI.git
$ cd pyTelegramBotAPI
$ python setup.py install
```
or:
```
$ pip install git+https://github.com/eternnoir/pyTelegramBotAPI.git
```

It is generally recommended to use the first option.

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
from setuptools import setup
from setuptools import setup, find_packages
from io import open
import re

Expand All @@ -19,7 +19,7 @@ def read(filename):
author='eternnoir',
author_email='[email protected]',
url='https://github.com/eternnoir/pyTelegramBotAPI',
packages=['telebot'],
packages = find_packages(exclude = ['tests', 'examples']),
license='GPL2',
keywords='telegram bot api tools',
install_requires=['requests'],
Expand All @@ -33,5 +33,6 @@ def read(filename):
'Programming Language :: Python :: 3',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
]
],

)

0 comments on commit 723075d

Please sign in to comment.