-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
39 lines (28 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
from setuptools import setup
setup(
name="rudolf",
version="0.3",
download_url = "http://pypi.python.org/pypi/rudolf/",
description = "Colour output plugin for the nose testing framework",
author = "John J. Lee",
author_email = "[email protected]",
license = "ZPL 2.1",
platforms = ["POSIX"],
install_requires = ["nose>=0.1.0"],
url = "http://pypi.python.org/pypi/rudolf/",
long_description = """Colour output plugin for the nose testing framework.
Only works on Unix-like systems (uses ANSI colour codes).
Use ``nosetests --with-color`` (no "u"!) to turn it on.
http://en.wikipedia.org/wiki/Rudolph_the_Red-Nosed_Reindeer
"Rudolph the Red-Nosed Reindeer" is a popular Christmas story about Santa
Claus' ninth and lead reindeer who possesses an unusually red colored nose that
gives off its own light that is powerful enough to illuminate the team's path
through inclement weather.
""",
py_modules = ["rudolf"],
entry_points = {
"nose.plugins.0.10": ["color = rudolf:ColorOutputPlugin"]
},
zip_safe = True,
)