-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
38 lines (37 loc) · 1.2 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
from distutils.core import setup
setup(
name='django-campaign',
version=__import__('campaign').__version__,
description='A basic newsletter app for the Django webframework',
long_description=open('README.rst').read(),
author='Arne Brodowski',
author_email='[email protected]',
license="BSD",
url='https://github.com/arneb/django-campaign/',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
packages = (
'campaign',
'campaign.backends',
'campaign.management',
'campaign.management.commands',
'campaign.migrations',
'campaign.templatetags',
),
package_data = {
'campaign':
[
'templates/admin/campaign/blacklistentry/*.html',
'templates/admin/campaign/campaign/*.html',
'templates/admin/campaign/subscriberlist/*.html',
'templates/campaign/*.html'
],
}
)