deb-python-django-discover-.../setup.py

46 lines
1.5 KiB
Python

import codecs
import re
from os import path
from setuptools import setup, find_packages
def read(*parts):
file_path = path.join(path.dirname(__file__), *parts)
return codecs.open(file_path, encoding='utf-8').read()
def find_version(*file_paths):
version_file = read(*file_paths)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
setup(
name='django-discover-runner',
description="A Django test runner based on unittest2's test discovery.",
long_description=read('README.rst'),
version=find_version("discover_runner", "__init__.py"),
url='http://github.com/jezdez/django-discover-runner',
author='Carl Meyer, Jannis Leidel',
author_email='carl@dirtcircle.com, jannis@leidel.info',
license='BSD',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
],
)