-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 962 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(name='nosecomplete',
version='0.1.1',
description='nosecomplete is a nose plugin used for completing test names from the command line, it supports both python 2 and 3.',
author='Alon Horev',
author_email='alon@horev.net',
url='https://github.com/alonho/nosecomplete',
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7"],
license='BSD',
py_modules=['nosecomplete'],
install_requires=['nose'],
entry_points={'console_scripts': ['nosecomplete=nosecomplete:main']})