forked from sveetch/crispy-forms-foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 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
from setuptools import setup, find_packages
setup(
name='crispy-forms-foundation',
version=__import__('crispy_forms_foundation').__version__,
description=__import__('crispy_forms_foundation').__doc__,
long_description=open('README.rst').read(),
author='David Thenon',
author_email='[email protected]',
url='http://pypi.python.org/pypi/crispy-forms-foundation',
license='MIT',
packages=find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
'django-crispy-forms >= 1.4'
],
include_package_data=True,
zip_safe=False
)