aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 2bece50..c632b52 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ from setuptools import setup
with open('discord_ban_list/version.py') as fp:
_loc, _glob = {}, {}
exec(fp.read(), _loc, _glob)
- version = {**_loc, **_glob}['version']
+ version = {**_loc, **_glob}['VERSION']
with open('requirements.txt') as fp:
requirements = fp.read().splitlines()