Nik Nyby 6933e45dc9 enable automated testing on python 3.5
Drops support for python 3.3, since django no longer supports
it. See the failure here:
  https://travis-ci.org/tzangms/django-bootstrap-form/jobs/94785903

If python 3.3 support is still needed, we can configure it to
run only on versions of django < 1.9.
2015-12-03 21:11:59 -05:00

32 lines
990 B
Python

from setuptools import setup, find_packages
from bootstrapform.meta import VERSION
setup(
name='django-bootstrap-form',
version=str(VERSION),
description="django-bootstrap-form",
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
keywords='bootstrap,django',
author='tzangms',
author_email='tzangms@gmail.com',
url='http://github.com/tzangms/django-bootstrap-form',
license='BSD',
test_suite='runtests.runtests',
install_requires = [
"django>=1.3",
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)