forked from zerok/django-flatblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 1.11 KB
/
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
28
29
30
from distutils.core import setup
from setuptools import find_packages
setup(
name='django-flatblocks',
version='0.7.0',
description='django-flatblocks acts like django.contrib.flatpages but '
'for parts of a page; like an editable help box you want '
'show alongside the main content.',
long_description=open('README.rst').read(),
keywords='django apps',
license='New BSD License',
author='Horst Gutmann',
author_email='[email protected]',
url='http://github.com/zerok/django-flatblocks/',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
# packages=['flatblocks', 'flatblocks.management',
# 'flatblocks.management.commands', 'flatblocks.migrations',
# 'flatblocks.templatetags'],
packages=find_packages(),
include_package_data=True,
)