diff --git a/Pipfile b/Pipfile index eb30c7c..f3f3bee 100644 --- a/Pipfile +++ b/Pipfile @@ -12,6 +12,7 @@ wheel = "*" twine = "*" pandoc = "*" pylint-django = "*" +setuptools = "*" [packages] django = "*" @@ -26,3 +27,4 @@ server = "django_lostplaces/manage.py runserver --ipv6" dbshell = "django_lostplaces/manage.py dbshell" showmigrations = "django_lostplaces/manage.py showmigrations" makemigrations = "django_lostplaces/manage.py makemigrations --no-input" +build = "django_lostplaces/setup.py bdist_wheel --universal" diff --git a/django_lostplaces/setup.py b/django_lostplaces/setup.py index b2a25da..f51134e 100755 --- a/django_lostplaces/setup.py +++ b/django_lostplaces/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages -with open('../Readme.md') as f: +with open('Readme.md') as f: readme = f.read() setup(