Skip to content

Commit 13500cb

Browse files
committed
Improve setup.py
1 parent 485e596 commit 13500cb

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

setup.py

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,26 @@
22

33
setup(
44
name = 'django-vellum',
5+
packages = find_packages(),
56
version = '0.1',
67
description = 'A web log for Django.',
7-
long_description = open('README.md').read(),
8+
author = 'Peter Hogg',
9+
author_email = 'peter@havenaut.net',
810
url = 'https://github.com/pigmonkey/django-vellum',
9-
author = 'Pig Monkey',
10-
author_email = 'pm@pig-monkey.com',
11-
12-
packages = find_packages(),
11+
classifiers = [
12+
"Programming Language :: Python",
13+
"License :: OSI Approved :: BSD License",
14+
"Operating System :: OS Independent",
15+
"Development Status :: 5 - Production/Stable",
16+
"Framework :: Django",
17+
],
18+
long_description = open('README.md').read(),
19+
include_package_data = True,
1320
zip_safe=False,
21+
install_requires = ['django-inlineobjects',
22+
'django-simplesearch',
23+
'django-taggit',
24+
'django-taggit-templatetags',
25+
'django-markup',
26+
'Markdown',],
1427
)

0 commit comments

Comments
 (0)