fix setup.py and use setuptools_scm dep for tox

This commit is contained in:
Ronny Pfannschmidt
2015-09-01 21:22:11 +02:00
parent 836ebd4b86
commit 0495fe517d
3 changed files with 3 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ language: python
python: python:
- '3.5.0b3' - '3.5.0b3'
# command to install dependencies # command to install dependencies
install: "pip install -U tox" install: "pip install -U tox setuptools_scm"
# # command to run tests # # command to run tests
env: env:
matrix: matrix:

View File

@@ -4,7 +4,7 @@ setup(
name="pytest-xdist", name="pytest-xdist",
use_scm_version={'write_to': 'xdist/_version.py'}, use_scm_version={'write_to': 'xdist/_version.py'},
description='py.test xdist plugin for distributed testing and loop-on-failing modes', description='py.test xdist plugin for distributed testing and loop-on-failing modes',
long_description=open('README.txt').read(), long_description=open('README.rst').read(),
license='MIT', license='MIT',
author='holger krekel and contributors', author='holger krekel and contributors',
author_email='pytest-dev@python.org,holger@merlinux.eu', author_email='pytest-dev@python.org,holger@merlinux.eu',

View File

@@ -7,6 +7,7 @@ envlist=
changedir=testing changedir=testing
deps = deps =
pycmd pycmd
setuptools_scm # to avoid .eggs
pytest24: pytest~=2.4.0 pytest24: pytest~=2.4.0
pytest25: pytest~=2.5.0 pytest25: pytest~=2.5.0