This repository has been archived on 2023-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
django-pyvows/setup.py
Rafael Carício c7430c6ee6 Import error.
2011-05-06 00:55:52 -03:00

47 lines
1.5 KiB
Python

#!/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
from django_pyvows import __version__
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"
],
)