lostplaces-backend/django_lostplaces/setup.py

38 lines
1.1 KiB
Python
Raw Permalink 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
with open('Readme.md') as f:
2020-09-10 23:07:51 +02:00
readme = f.read()
2021-12-31 23:34:42 +01:00
# Keep PEP 440 for version identification in mind
# https://www.python.org/dev/peps/pep-0440/#post-releases
2020-09-09 22:53:40 +02:00
setup(
name='django-lostplaces',
2021-12-31 23:34:42 +01:00
version='0.1.4.post1',
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'
2021-12-31 23:27:35 +01:00
)