-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
PACKAGE = "django_filtered_email_backend"
NAME = "django-filtered-email-backend"
DESCRIPTION = "Django app for managing email filtering"
AUTHOR = "Pavel Císař - COEX s.r.o (http://www.coex.cz)"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/COEXCZ/django-filtered-email-backend"
VERSION = '0.0.1'
LICENSE = "Mozilla Public License 2.0 (MPL 2.0)"
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
packages=["django_filtered_email_backend"],
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Email"
],
install_requires=[
"django>=2.0.2",
],
)