-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (50 loc) · 1.76 KB
/
Copy pathsetup.py
File metadata and controls
52 lines (50 loc) · 1.76 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
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
# -*- coding: utf-8 -*-
import os
import codecs
from setuptools import setup, find_packages
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-richtext-blog',
version='0.8.7',
author=u'Tim Godfrey',
author_email='http://www.wholebaked.com.au/contact',
include_package_data=True,
packages=find_packages(),
install_requires=[
'django==1.3',
'django-filebrowser==3.4.2',
'FeedParser',
'PIL',
'django-tinymce==1.5.1b2',
'MySQL-python',
'django-autoslug',
'django-simple-captcha',
'pygments',
'BeautifulSoup'
],
url='https://github.com/timmygee/django-richtext-blog',
license='BSD licence, see LICENCE.txt',
keywords='django blog richtext tinymce',
description='A django app that implements a blog with the features we\'ve '
'grown accustomed to. Features: Rich text editing with TinyMCE; Full '
'image upload support; Tags; Comments; Spam prevention; Atom/RSS '
'feeds; Example templates; Code syntax highlighting; SEO optimised '
'urls and more.',
long_description=read('README.rst'),
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary'
]
)