From d5789cef750a92d45f112f429ec7ce178ef6f1cd Mon Sep 17 00:00:00 2001 From: reverend Date: Fri, 16 Jul 2021 13:28:58 +0200 Subject: [PATCH] Screw it, building is not handled by pipenv --- Pipfile | 2 ++ django_lostplaces/setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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(