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
|
from setuptools import setup, find_packages
setup(
name='django-attachments',
version='0.3.1',
description='A generic Django application to attach Files (Attachments) to any model',
long_description=open('README.rst').read(),
author='Martin Mahner',
author_email='martin@mahner.org',
url='http://github.com/bartTC/django-attachments/tree/master',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
package_data = {
'attachments': [
'templates/attachments/*.html',
]
},
zip_safe=False,
)
|