Skip to content

Commit 7ab7b32

Browse files
author
shaunsephton
committed
beter setup
1 parent d04876b commit 7ab7b32

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

setup.py

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,21 @@
44
name='django-ckeditor',
55
version='0.0.1',
66
description='Django admin CKEditor integration.',
7+
long_description = open('README.rst', 'r').read(),
78
author='Shaun Sephton',
89
author_email='shaunsephton@gmail.com',
910
url='http://github.com/shaunsephton/django-ckeditor',
1011
packages = find_packages(),
11-
dependency_links = [
12-
'http://dist.plone.org/thirdparty/',
13-
],
14-
install_requires = [
15-
'PIL>=1.1.6',
16-
],
12+
dependency_links = ['http://dist.plone.org/thirdparty/',],
13+
install_requires = ['PIL>=1.1.6',],
1714
include_package_data=True,
15+
classifiers = [
16+
"Programming Language :: Python",
17+
"License :: OSI Approved :: BSD License",
18+
"Development Status :: 4 - Beta",
19+
"Operating System :: OS Independent",
20+
"Framework :: Django"
21+
"Intended Audience :: Developers",
22+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
23+
],
1824
)

0 commit comments

Comments
 (0)