forked from mintchaos/django_inlines
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (30 loc) · 1.14 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
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
CHANGES = read('CHANGES.rst')
setup(
name = "django_inlines",
version = "0.7.4",
url = 'http://github.com/mintchaos/django_inlines',
license = 'BSD',
description = "For embedding anything you'd like into text in your django apps.",
long_description='\n\n\n'.join([README, CHANGES]),
author = 'Christian Metts',
author_email = '[email protected]',
packages = [
'django_inlines',
'django_inlines.templatetags',
],
package_data={'django_inlines': ['templates/inlines/*.html', 'templates/admin/django_inlines/*.html', 'templates/admin/django_inlines/*.js', 'static/django_inlines/*.css', 'static/django_inlines/*.js']},
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)