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

52 lines
1.6 KiB
Python
Raw Permalink Normal View History

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
2011-08-18 14:41:02 +00:00
import os
2011-05-06 03:48:39 +00:00
from setuptools import setup
2011-08-18 14:41:02 +00:00
from imp import load_source
version = load_source('version', os.path.join("django_pyvows", "version.py"))
2011-05-06 03:48:39 +00:00
setup(
name = 'django-pyvows',
2011-08-18 14:41:02 +00:00
version = '.'.join([str(item) for item in version.__version__]),
2011-05-06 03:48:39 +00:00
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'
],
2011-08-26 14:10:47 +00:00
packages = ['django_pyvows', 'django_pyvows.assertions'],
2011-05-06 03:48:39 +00:00
package_dir = {"django_pyvows": "django_pyvows"},
install_requires=[
"pyvows",
2012-03-08 18:57:32 +00:00
"django",
2012-03-09 17:02:27 +00:00
"cherrypy",
2012-03-08 18:57:32 +00:00
"httplib2"
2011-05-06 03:48:39 +00:00
],
)