lostplaces-backend/django_lostplaces/setup.py

37 lines
1000 B
Python
Raw Normal View History

2020-10-04 23:23:02 +02:00
#!/usr/bin/env python3
2020-09-19 22:50:07 +02:00
# -*- coding: utf-8 -*-
2020-09-09 22:53:40 +02:00
from setuptools import setup, find_packages
2020-10-04 23:23:02 +02:00
with open('../Readme.md') as f:
2020-09-10 23:07:51 +02:00
readme = f.read()
2020-09-09 22:53:40 +02:00
setup(
name='django-lostplaces',
2020-12-19 15:31:29 +01:00
version='0.1.3',
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',
2020-10-01 22:06:12 +02:00
packages=find_packages(exclude=['django_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'
],
2020-10-04 23:23:02 +02:00
include_package_data=True,
license='MIT'
2020-09-09 22:53:40 +02:00
)