initial commit

This commit is contained in:
Jason Kölker 2011-11-04 20:15:25 -05:00
commit 3d98ce5470
4 changed files with 27 additions and 0 deletions

3
MANIFEST.in Normal file
View File

@ -0,0 +1,3 @@
include README.rst
include setup.py
include novanose.py

0
README.rst Normal file
View File

0
novanose.py Normal file
View File

24
setup.py Normal file
View File

@ -0,0 +1,24 @@
from setuptools import setup
version = "0.1"
setup(name="novanose",
version=version,
description="nova run_tests.py style output for nosetests",
long_description=open("README.rst").read(),
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords="nose",
author="Jason K\xc3\xb6lker",
author_email="jason@koelker.net",
url="https://github.com/jkoelker/novanose",
license="Apache License",
py_modules=["novanose"],
install_requires=[
"nose",
],
entry_points="""
# -*- Entry points: -*-
[nose.plugins.0.10]
novanose = novanose:NovaNose
""",
)