forked from zerok/django-flatblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.15 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
31
32
33
try:
from setuptools import setup, find_packages
except:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = 'django-flatblocks',
version = '0.5.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/',
dependency_links = [],
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 = find_packages(exclude=['ez_setup', 'test_project']),
include_package_data = True,
zip_safe = False,
)