-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathsetup.py
53 lines (51 loc) · 2.32 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from distutils.core import setup
setup(
name="django-blogango",
version="0.6.2",
packages=['blogango',
'blogango/conf',
'blogango/management',
'blogango/management/commands',
'blogango/templatetags'
],
package_dir={'blogango': 'blogango'},
package_data={'blogango': ['templates/*.html',
'templates/blogango/*.html',
'templates/blogango/admin/*.html',
'templates/blogango/admin/*.js',
'static/blogango/admin/*.css',
'static/blogango/admin/img/*.png',
'static/blogango/css/*.css',
'static/blogango/images/*.png',
'static/blogango/images/*.jpg',
'static/blogango/images/*.gif',
'static/blogango/js/*.js',
]
},
author="Agiliq Solutions",
author_email="[email protected]",
description="A django based blog",
long_description=
"""
Blogango is a simple but robust blogging application written with django
Some of the features include comments using contrib.comments framework,
backtype and pingback support, rich text using django-markupfield,
month based archiving, tagging using django-taggit and categorization
""",
classifiers = ['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
url="http://www.agiliq.com/",
license="Dual Licenced under GPL and BSD",
platforms=["all"],
)