2 Commits

Author SHA1 Message Date
d5f6a00219 Fixin Metadata 2022-01-01 00:07:43 +01:00
f376951ff9 No migrations in develop branch 2021-12-31 23:42:49 +01:00
4 changed files with 8 additions and 5 deletions

1
.env
View File

@@ -1 +0,0 @@
DJANGO_SUPERUSER_PASSWORD=develop

4
.gitignore vendored
View File

@@ -79,6 +79,7 @@ Pipfile.lock
__pypackages__/ __pypackages__/
# Environments # Environments
.env
.venv .venv
env/ env/
venv/ venv/
@@ -91,3 +92,6 @@ venv.bak/
# twine / pypi # twine / pypi
.pypirc .pypirc
# Django Migrations for Development branches
django_lostplaces/lostplaces/migrations/*

Binary file not shown.

View File

@@ -10,11 +10,11 @@ with open('Readme.md') as f:
# https://www.python.org/dev/peps/pep-0440/#post-releases # https://www.python.org/dev/peps/pep-0440/#post-releases
setup( setup(
name='django-lostplaces', name='django-lostplaces',
version='0.1.4.post1', version='0.1.4.post2',
description='A django app to manage lost places', description='A django app to manage lost places',
author='Reverend', author='Reverend, Commander1024',
author_email='reverend@reverend2048.de', author_email='reverend@reverend2048.de, commander@commander1024.de',
url='https://git.mowoe.com/reverend/lostplaces-backend', url='https://git.commander1024.de/Commander1024/lostplaces-backend',
packages=find_packages(exclude=['django_lostplaces']), packages=find_packages(exclude=['django_lostplaces']),
long_description=readme, long_description=readme,
long_description_content_type='text/markdown', long_description_content_type='text/markdown',