forked from nathanborror/django-basic-apps
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
27 lines (26 loc) · 893 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='django-vellum',
packages=find_packages(),
version='1.4.2',
description='A web log for Django.',
author='Peter Hogg',
author_email='[email protected]',
url='https://github.com/pigmonkey/django-vellum',
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
],
long_description=open('README.md').read(),
include_package_data=True,
zip_safe=False,
install_requires=['django-inlineobjects',
'django-simplesearch',
'django-taggit',
'django-taggit-templatetags',
'django-markup',
'Markdown'],
)