summaryrefslogtreecommitdiff
path: root/setup.py
blob: d94fb81be945041a9e3aac4f81c2d1bc842774d7 (plain)
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
#!/usr/bin/env python
# Generated by jaraco.develop (https://bitbucket.org/jaraco/jaraco.develop)
import setuptools

setup_params = dict(
	name='pytest-runner',
	get_version_from_scm=True,
	author="Jason R. Coombs",
	author_email="jaraco@jaraco.com",
	url="https://bitbucket.org/jaraco/pytest-runner",
	description="Invoke py.test as distutils command with dependency "
		"resolution.",
	py_modules = ['ptr'],
	zip_safe=True,
	entry_points = {
		'distutils.commands': [
			'ptr = ptr:PyTest',
			'pytest = ptr:PyTest',
		],
	},
	license = 'MIT',
	classifiers = [
		"Development Status :: 5 - Production/Stable",
		"Intended Audience :: Developers",
		"Programming Language :: Python :: 2.6",
		"Programming Language :: Python :: 2.7",
		"Programming Language :: Python :: 3",
	],
	setup_requires=[
		'hgdistver',
	],
)
if __name__ == '__main__':
	setuptools.setup(**setup_params)