Moved files so only the app is packed

This commit is contained in:
reverend 2020-10-04 23:23:02 +02:00
parent ac0121d96e
commit 773390b09f
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,4 @@
exclude
include LICENSE
include Readme.rst
include Pipfile

7
setup.py → django_lostplaces/setup.py Normal file → Executable file
View File

@ -1,9 +1,9 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('Readme.md') as f:
with open('../Readme.md') as f:
readme = f.read()
setup(
@ -31,5 +31,6 @@ setup(
'django-widget-tweaks',
'django-taggit'
],
include_package_data=True
include_package_data=True,
license='MIT'
)