-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (38 loc) · 1.03 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
41
import sys
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(
name="nosepride",
author="Hugo Bastien",
author_email="[email protected]",
url="https://github.com/hugobast/nosepride.git",
version="0.1.7",
packages=find_packages(exclude=["tests"]),
tests_require=["mock", "coverage"],
install_requires=[
"nose",
"setuptools"
],
test_suite='tests',
license="MIT License",
description="Fabulous colors for nosetests",
long_description=open("README.rst").read(),
entry_points={
'nose.plugins.0.10': [
'nosepride = nosepride.nosepride:Nosepride'
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Testing",
"Environment :: Plugins",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
],
**extra
)