jezdez / django-attachments forked from bartTC/django-attachments

A generic Django application to attach Files (Attachments) to any model.

This URL has Read+Write access

django-attachments / setup.py
100644 27 lines (25 sloc) 0.807 kb
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.1',
    description='A generic Django application to attach Files (Attachments) to any model',
    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,
)