Skip to content
This repository was archived by the owner on Dec 10, 2019. It is now read-only.

Commit 43e56cf

Browse files
committed
added setup.py
1 parent bb6814b commit 43e56cf

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

setup.py

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='django-database-email',
5+
version='1.0',
6+
description='Save email templates in the database',
7+
author='Fabio Anderegg',
8+
author_email='fabio.anderegg@liip.ch',
9+
url='https://github.com/fanderegg/django-database-email',
10+
keywords=['django', 'email'],
11+
packages=find_packages(exclude=('tests*',)),
12+
include_package_data=True,
13+
zip_safe=False,
14+
classifiers=[
15+
'Environment :: Web Environment',
16+
'Framework :: Django',
17+
'License :: OSI Approved :: MIT License',
18+
'Operating System :: OS Independent',
19+
'Programming Language :: Python',
20+
'Programming Language :: Python :: 2.7',
21+
'Programming Language :: Python :: 3.3',
22+
'Programming Language :: Python :: 3.4',
23+
'Programming Language :: Python :: 3.5',
24+
'Programming Language :: Python :: Implementation :: PyPy',
25+
],
26+
requires=[
27+
'Django (>=1.7)',
28+
],
29+
install_requires=[
30+
'Django>=1.7',
31+
],
32+
)

0 commit comments

Comments
 (0)