forked from bartTC/django-generic-flatblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 843 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
from setuptools import setup, find_packages
setup(
name='django-generic-flatblocks',
version='0.9.1',
description='A flatpages/flatblock application using generic relations to content models.',
long_description=open('README').read(),
author='Martin Mahner',
url='http://github.com/bartTC/django-generic-flatblocks/tree/master',
packages=find_packages(exclude=['example_project', 'example_project.*']),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
)