forked from robert-kisteleki/django-email-throttler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (31 loc) · 1.27 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
36
37
38
import os
from os.path import abspath, dirname, join
from setuptools import setup
# Allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
# Get the long description from README.md
setup(
name="django-email-throttler",
version="0.3.2",
packages=["django_email_throttler"],
include_package_data=True,
license="GPLv3",
description="An email throttler for Django",
long_description="A Django email backend and more to limit the amount of mails sent out",
url="https://github.com/robert-kisteleki/django-email-throttler",
download_url="https://github.com/robert-kisteleki/django-email-throttler",
author="Robert Kisteleki",
author_email="[email protected]",
keywords=['Django', 'email'],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)