summaryrefslogtreecommitdiff
path: root/setup.py
blob: 78f8621a2cb2f96d3fcf28549f3a6dad3dd8b105 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
# Generated by jaraco.develop (https://bitbucket.org/jaraco/jaraco.develop)
import setuptools

setup_params = dict(
	name='pytest-runner',
	use_hg_version=True,
	author="Jason R. Coombs",
	author_email="jaraco@jaraco.com",
	url="https://bitbucket.org/jaraco/pytest-runner",
	packages=setuptools.find_packages(),
	zip_safe=True,
	entry_points = {
		'distutils.commands':
			['test = pytest_runner.command:PyTest'],
	},
	setup_requires=[
		'hgtools',
	],
)
if __name__ == '__main__':
	setuptools.setup(**setup_params)