Moved files so only the app is packed

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

View File

@@ -0,0 +1,6 @@
exclude
include LICENSE
include Readme.rst
include Pipfile
recursive-include lostplaces/static *
recursive-include lostplaces/templates *

36
django_lostplaces/setup.py Executable file
View File

@@ -0,0 +1,36 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('../Readme.md') as f:
readme = f.read()
setup(
name='django-lostplaces',
version='0.1.2 HotFix',
description='A django app to manage lost places',
author='Reverend',
author_email='reverend@reverend2048.de',
url='https://git.mowoe.com/reverend/lostplaces-backend',
packages=find_packages(exclude=['django_lostplaces']),
long_description=readme,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Framework :: Django'
],
install_requires=[
'django',
'easy_thumbnails',
'image',
'django-widget-tweaks',
'django-taggit'
],
include_package_data=True,
license='MIT'
)