forked from jazzband/django-floppyforms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 867 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
28
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(
name='django-floppyforms',
version='0.4.7',
author='Bruno Renie',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
url='https://github.com/brutasse/django-floppyforms',
license='BSD licence, see LICENCE file',
description='Full control of form rendering in the templates',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
],
test_suite='runtests.runtests',
zip_safe=False,
)