2011-05-06 03:48:39 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# django-pyvows extensions
|
|
|
|
# https://github.com/rafaelcaricio/django-pyvows
|
|
|
|
|
|
|
|
# Licensed under the MIT license:
|
|
|
|
# http://www.opensource.org/licenses/mit-license
|
|
|
|
# Copyright (c) 2011 Rafael Caricio rafael@caricio.com
|
|
|
|
|
|
|
|
from setuptools import setup
|
2011-05-06 03:55:52 +00:00
|
|
|
from django_pyvows import __version__
|
2011-05-06 03:48:39 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name = 'django-pyvows',
|
|
|
|
version = '.'.join([str(item) for item in __version__]),
|
|
|
|
description = "django-pyvows are pyvows extensions to django web framework.",
|
|
|
|
long_description = """
|
|
|
|
django-pyvows are pyvows extensions to django web framework.
|
|
|
|
""",
|
|
|
|
keywords = 'testing vows test tdd django web',
|
|
|
|
author = u'Rafael Caricio',
|
|
|
|
author_email = 'rafael@caricio.com',
|
|
|
|
#Contributors
|
|
|
|
#contributor = 'Bernardo Heynemann',
|
|
|
|
#contributor_email = 'heynemann@gmail.com',
|
|
|
|
url = 'https://github.com/rafaelcaricio/django-pyvows',
|
|
|
|
license = 'MIT',
|
|
|
|
classifiers = ['Development Status :: 3 - Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Operating System :: MacOS',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
'Topic :: Software Development :: Testing'
|
|
|
|
],
|
|
|
|
packages = ['django_pyvows'],
|
|
|
|
package_dir = {"django_pyvows": "django_pyvows"},
|
|
|
|
|
|
|
|
install_requires=[
|
|
|
|
"pyvows",
|
|
|
|
"django"
|
|
|
|
],
|
|
|
|
|
|
|
|
)
|