forked from winhamwr/django-attachments
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.09 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
from distutils.core import setup
import glob
data = [ "locale/" + l.rsplit('/')[-1]+"/LC_MESSAGES/*.*"
for l in glob.glob("attachments/locale/*.?o")]
data.append('templates/attachments/*.html')
setup(
name='django-attachments',
version=__import__('attachments').__version__,
description='A generic attachment framework for Django',
author='Chicago Django user group and Antti Kaihola',
author_email='[email protected]',
url='http://github.com/akaihola/django-attachments',
packages=[
'attachments',
'attachments.templatetags',
],
package_data={'attachments': data},
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',
'Programming Language :: Python :: 2.3',
'Programming Language :: JavaScript',
'Topic :: Internet :: WWW/HTTP :: Site Management',
]
)