This commit is contained in:
2019-10-08 18:35:48 +02:00
parent 2f57dcc64c
commit e223525f97
4 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
python setup.py sdist --dist-dir . --formats gztar
if test -n "$DIST_FILE" ; then
dist_name=`python setup.py --name`
dist_version=`python setup.py --version`
dist_file="${dist_name}-${dist_version}.tar.gz"
mv "$dist_file" "$DIST_FILE"
fi

View File

@@ -0,0 +1 @@
pip install -r requirements.txt

View File

@@ -0,0 +1 @@
python setup.py django

View File

@@ -113,7 +113,7 @@ class SetupDjangoProject(MyCommand):
setup(
name='django-test',
version='1.0',
version='2.0.dev0',
description='An example django based web application.',
url='https://heinzelwelt.de',
maintainer='Jens Kleineheismann',