2.1.2
by Jannis Leidel
Added fraking setup.py |
1 |
from setuptools import setup, find_packages |
2 |
||
3 |
setup( |
|
4 |
name='django-attachments', |
|
23
by Martin Mahner
Removed nasty print debug statement from the templatetag. Mentioned that you need to syncdb your database after installation. Bumped up to v0.2.6. |
5 |
version='0.2.6', |
2.1.2
by Jannis Leidel
Added fraking setup.py |
6 |
description='A generic Django application to attach Files (Attachments) to any model', |
14
by Martin Mahner
Added a long description to the package info. Bumped up to v0.2.1. |
7 |
long_description=open('README.rst').read(), |
2.1.2
by Jannis Leidel
Added fraking setup.py |
8 |
author='Martin Mahner', |
9 |
author_email='martin@mahner.org', |
|
10 |
url='http://github.com/bartTC/django-attachments/tree/master', |
|
11 |
packages=find_packages(), |
|
12 |
classifiers=[ |
|
13 |
'Development Status :: 3 - Alpha', |
|
14 |
'Environment :: Web Environment', |
|
15 |
'Intended Audience :: Developers', |
|
16 |
'License :: OSI Approved :: BSD License', |
|
17 |
'Operating System :: OS Independent', |
|
18 |
'Programming Language :: Python', |
|
19 |
'Framework :: Django', |
|
20 |
],
|
|
21 |
package_data = { |
|
22 |
'attachments': [ |
|
23 |
'templates/attachments/*.html', |
|
24 |
]
|
|
25 |
},
|
|
26 |
zip_safe=False, |
|
27 |
)
|