commit 3d98ce547051ae2336b8b1df7ebccdccec9ab2eb Author: Jason Kölker Date: Fri Nov 4 20:15:25 2011 -0500 initial commit diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..3e5e382 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include README.rst +include setup.py +include novanose.py diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..e69de29 diff --git a/novanose.py b/novanose.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..684eb81 --- /dev/null +++ b/setup.py @@ -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 + """, + )