mirror of
https://github.com/boticord/boticordpy.git
synced 2024-11-11 19:07:29 +03:00
don’t use requirements, because only one
This commit is contained in:
parent
7e2748cb2a
commit
18f644c6d4
1 changed files with 1 additions and 4 deletions
5
setup.py
5
setup.py
|
@ -5,9 +5,6 @@ import re
|
||||||
|
|
||||||
HERE = pathlib.Path(__file__).parent
|
HERE = pathlib.Path(__file__).parent
|
||||||
|
|
||||||
with open('requirements.txt') as f:
|
|
||||||
requirements = f.read().splitlines()
|
|
||||||
|
|
||||||
with open('boticordpy/__init__.py') as f:
|
with open('boticordpy/__init__.py') as f:
|
||||||
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)
|
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)
|
||||||
|
|
||||||
|
@ -52,5 +49,5 @@ setup(
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
],
|
],
|
||||||
install_requires=requirements,
|
install_requires=["aiohttp"],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue