-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (23 loc) · 850 Bytes
/
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
from setuptools import setup
setup(
name='tox-run-command',
description='tox plugin to run arbitrary commands in a virtualenv',
long_description=open('README.rst').read(),
version='0.4',
py_modules=['tox_run_command'],
entry_points={'tox': ['run_command = tox_run_command']},
install_requires=['tox>=2.0'],
author='David Stanek',
author_email='[email protected]',
url='https://github.com/dstanek/tox-run-command',
license='Apache Software License',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
]
)