-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·35 lines (29 loc) · 1.06 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
import django_sendmail_backend
PROJECT_DIR = os.path.dirname(__file__)
setup(
name='django_sendmail_backend',
version=django_sendmail_backend.__version__,
url='https://github.com/perenecabuto/django-sendmail-backend.git',
author="Felipe Ramos",
author_email="[email protected]",
description="Its a simple command line sendmail backend for Django",
long_description=open(os.path.join(PROJECT_DIR, 'README.md')).read(),
keywords="Django, Python, sendmail, EMAIL_BACKEND, command line, mta",
license='BSD',
packages=find_packages(exclude=["tests/"]),
include_package_data=True,
install_requires=['Django>=1.4'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)