lostplaces-backend/setup.py

36 lines
971 B
Python
Raw Normal View History

2020-09-19 22:50:07 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
2020-09-09 22:53:40 +02:00
from setuptools import setup, find_packages
2020-09-10 23:07:51 +02:00
with open('Readme.md') as f:
readme = f.read()
2020-09-09 22:53:40 +02:00
setup(
name='django-lostplaces',
2020-09-10 23:07:51 +02:00
version='0.1.a5',
2020-09-09 22:53:40 +02:00
description='A django app to manage lost places',
2020-09-10 23:07:51 +02:00
author='Reverend',
author_email='reverend@reverend2048.de',
2020-09-09 22:53:40 +02:00
url='https://git.mowoe.com/reverend/lostplaces-backend',
packages=find_packages(exclude=['lostplaces']),
2020-09-10 23:07:51 +02:00
long_description=readme,
long_description_content_type='text/markdown',
2020-09-09 22:53:40 +02:00
classifiers=[
2020-09-10 21:42:25 +02:00
'Development Status :: 3 - Alpha',
2020-09-09 22:53:40 +02:00
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
2020-09-10 23:33:46 +02:00
'Programming Language :: Python :: 3.7',
'Framework :: Django'
2020-09-09 22:53:40 +02:00
],
install_requires=[
'django',
'easy_thumbnails',
'image',
'django-widget-tweaks',
'django-taggit'
],
include_package_data=True
)