-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.14 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
40
from setuptools import setup, find_packages
import os
here = os.path.dirname(__file__)
readme = open(os.path.join(here, 'README.txt')).read()
changes = open(os.path.join(here, 'CHANGES.txt')).read()
setup(
name="nosecolor",
version="0.0",
author="Atsushi Odagiri",
author_email="[email protected]",
description="nose plugin to display colored results.",
keywords='nose test',
url="https://github.com/aodag/nosecolor",
long_description=readme + "\n" + changes,
license="MIT",
install_requires=[
"termcolor",
"nose",
],
test_suite="nosecolor",
packages=find_packages(exclude=['tests', 'examples']),
entry_points={
"nose.plugins.0.10":[
"nosecolor=nosecolor:NoseColorPlugin",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Operating System :: POSIX",
"Topic :: Software Development :: Testing",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
],
)