26b9da52aa
These are used by services like for example caniusepython3.com and requires.io to check if all dependencies of a project supports Python 3. I've run the test suite manually on Python 3.3 and 3.4, and added 3.3 to the Travis CI build. 3.4 should be added to the Travis CI build when Travis starts supporting 3.4 in the near future.
32 lines
978 B
Python
32 lines
978 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.3",
|
|
"Programming Language :: Python :: 3.4",
|
|
],
|
|
keywords='bootstrap,django',
|
|
author='tzangms',
|
|
author_email='tzangms@gmail.com',
|
|
url='http://github.com/tzangms/django-bootstrap-form',
|
|
license='BSD',
|
|
test_suite='tests',
|
|
install_requires = [
|
|
"django>=1.3",
|
|
],
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
)
|