This repository was archived by the owner on Oct 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (40 loc) · 1.44 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
41
42
43
44
import os
from setuptools import setup
from setuptools import find_packages
import maja_newsletter
setup(name='django-maja-newsletter',
version=maja_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=maja_newsletter.__author__,
author_email=maja_newsletter.__email__,
url=maja_newsletter.__url__,
license=maja_newsletter.__license__,
packages=find_packages(exclude=['demo']),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'html2text',
'python-dateutil',
'BeautifulSoup',
'django-tagging',
'vobject',
'xlwt',
'xlrd',
'django-filebrowser-no-grappelli-nph',
'premailer',
'pytz',
'celery>=3.1,<3.2'
])