-
Notifications
You must be signed in to change notification settings - Fork 72
/
setup.py
40 lines (35 loc) · 1.45 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
39
40
import os
from setuptools import setup
from setuptools import find_packages
from emencia.django import newsletter
setup(name='emencia.django.newsletter',
version=newsletter.__version__,
description='A Django app for sending newsletter by email to a contact list.',
long_description=open('README.rst').read() + '\n' +
open(os.path.join('docs', 'HISTORY.txt')).read(),
keywords='django, newsletter, mailing',
classifiers=[
'Framework :: Django',
'Programming Language :: Python',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries :: Python Modules',],
author=newsletter.__author__,
author_email=newsletter.__email__,
url=newsletter.__url__,
license=newsletter.__license__,
packages=find_packages(exclude=['demo']),
namespace_packages=['emencia', 'emencia.django'],
include_package_data=True,
zip_safe=False,
install_requires=['setuptools',
'html2text',
'python-dateutil==1.5',
'BeautifulSoup',
'django-tagging',
'vobject',
'xlwt',
'xlrd'])