lostplaces-backend/setup.py

28 lines
895 B
Python
Raw Normal View History

2020-09-09 22:53:40 +02:00
from setuptools import setup, find_packages
setup(
name='django-lostplaces',
2020-09-10 21:39:15 +02:00
version='0.1.a2',
2020-09-09 22:53:40 +02:00
description='A django app to manage lost places',
author='Reverend :: Commander1024',
author_email='reverend@reverend2048.de :: commander@commander1024.de',
url='https://git.mowoe.com/reverend/lostplaces-backend',
packages=find_packages(exclude=['lostplaces']),
classifiers=[
2020-09-10 21:42:25 +02:00
'Development Status :: 3 - Alpha',
2020-09-09 22:53:40 +02:00
'Environment :: Web Environment',
2020-09-10 21:42:25 +02:00
'Intended Audience :: Explorer :: Photographers :: Proper People',
2020-09-09 22:53:40 +02:00
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7'
],
install_requires=[
'django',
'easy_thumbnails',
'image',
'django-widget-tweaks',
'django-taggit'
],
include_package_data=True
)