Fixes to settings so that templates get installed properly.

2019-08-17
Marnanel Thurman 2019-08-08 19:55:32 +01:00
rodzic 9d8c60b9c5
commit 16cd517589
3 zmienionych plików z 3 dodań i 6 usunięć

Wyświetl plik

@ -2,4 +2,4 @@ include LICENSE
include README.md
recursive-include django_kepi *.py
recursive-include django_kepi/migrations *.py
recursive-include django_kepi/templates *.xml

Wyświetl plik

@ -113,8 +113,6 @@ LOGGING = {
TEST_RUNNER = 'djcelery.contrib.test_runner.CeleryTestSuiteRunner'
ALLOWED_HOSTS = []
# Internationalization
# https://docs.djangoproject.com/en/2.2/topics/i18n/
@ -134,4 +132,3 @@ USE_TZ = True
STATIC_URL = '/static/'
from .local_config import *

Wyświetl plik

@ -18,7 +18,7 @@ def get_version(package):
version = get_version('django_kepi')
setup(
name='django_kepi',
name='kepi',
version=version,
url='https://gitlab.com/marnanel/django-kepi/',
license='GPL-2',
@ -27,7 +27,7 @@ setup(
long_description_content_type='text/markdown',
author='Marnanel Thurman',
author_email='marnanel@thurman.org.uk',
packages=['django_kepi'],
packages=['kepi', 'django_kepi'],
include_package_data=True,
install_requires=[],
python_requires=">=3.0",