diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..33e405b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +discord.py>=2.0.0 +aiohttp>=3.7.4,<4 +orjson diff --git a/setup.py b/setup.py index 5e843c4..ba8ca15 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,6 @@ import setuptools import re version = '' -requirements = ['discord.py>=2.0.0', 'aiohttp>=3.7.4,<4', 'orjson'] with open('pomice/__init__.py') as f: version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1) @@ -26,7 +25,8 @@ if version.endswith(('a', 'b', 'rc')): except Exception: pass - +with open("requirements.txt") as f: + requirements = f.read().splitlines() with open("README.md") as f: readme = f.read()