parent
8853c5bdef
commit
1b7d2b07ab
|
@ -2,16 +2,15 @@ include CHANGELOG
|
||||||
include README.txt
|
include README.txt
|
||||||
include setup.py
|
include setup.py
|
||||||
include distribute_setup.py
|
include distribute_setup.py
|
||||||
include LICENSE
|
include LICENSE
|
||||||
include conftest.py
|
#include conftest.py
|
||||||
graft doc
|
graft doc
|
||||||
graft contrib
|
|
||||||
graft bin
|
|
||||||
graft testing
|
graft testing
|
||||||
|
include testing
|
||||||
#exclude *.orig
|
#exclude *.orig
|
||||||
#exclude *.orig
|
#exclude *.orig
|
||||||
exclude *.rej
|
exclude *.rej
|
||||||
exclude .hginore
|
exclude .hgignore
|
||||||
exclude *.pyc
|
exclude *.pyc
|
||||||
#recursive-exclude testing *.pyc *.orig *.rej *$py.class
|
#recursive-exclude testing *.pyc *.orig *.rej *$py.class
|
||||||
#prune .pyc
|
#prune .pyc
|
||||||
|
|
14
setup.py
14
setup.py
|
@ -5,29 +5,25 @@ if sys.version_info >= (3,0):
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
long_description = """
|
long_description = """
|
||||||
cross-project testing tool with many advanced features
|
cross-project testing tool for Python.
|
||||||
|
|
||||||
Platforms: Linux, Win32, OSX
|
Platforms: Linux, Win32, OSX
|
||||||
|
|
||||||
Interpreters: Python versions 2.4 through to 3.2, Jython 2.5.1 and PyPy
|
Interpreters: Python versions 2.4 through to 3.2, Jython 2.5.1 and PyPy
|
||||||
|
|
||||||
Bugs and issues: http://bitbucket.org/hpk42/py-trunk/issues/
|
Bugs and issues: http://bitbucket.org/hpk42/pytest/issues/
|
||||||
|
|
||||||
Mailing lists and more contact points: http://pylib.org/contact.html
|
Web page: http://pytest.org
|
||||||
|
|
||||||
.. _`py.test`: http://pytest.org
|
|
||||||
.. _`py.path`: http://pylib.org/path.html
|
|
||||||
.. _`py.code`: http://pylib.org/code.html
|
|
||||||
|
|
||||||
(c) Holger Krekel and others, 2004-2010
|
(c) Holger Krekel and others, 2004-2010
|
||||||
"""
|
"""
|
||||||
def main():
|
def main():
|
||||||
setup(
|
setup(
|
||||||
name='pytest',
|
name='pytest',
|
||||||
description='py.test: simple testing with Python',
|
description='py.test: simple powerful testing with Python',
|
||||||
long_description = long_description,
|
long_description = long_description,
|
||||||
version= '2.0.0.dev0',
|
version= '2.0.0.dev0',
|
||||||
url='http://pylib.org',
|
url='http://pytest.org',
|
||||||
license='MIT license',
|
license='MIT license',
|
||||||
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
||||||
author='holger krekel, Guido Wesdorp, Carl Friedrich Bolz, Armin Rigo, Maciej Fijalkowski & others',
|
author='holger krekel, Guido Wesdorp, Carl Friedrich Bolz, Armin Rigo, Maciej Fijalkowski & others',
|
||||||
|
|
7
tox.ini
7
tox.ini
|
@ -24,13 +24,6 @@ commands=
|
||||||
py.test -n3 -rfsxX \
|
py.test -n3 -rfsxX \
|
||||||
--junitxml={envlogdir}/junit-{envname}.xml []
|
--junitxml={envlogdir}/junit-{envname}.xml []
|
||||||
|
|
||||||
[testenv:allplugins]
|
|
||||||
deps=
|
|
||||||
pytest-xdist-*
|
|
||||||
pytest-xdist-*
|
|
||||||
|
|
||||||
[testenv:py26]
|
|
||||||
basepython=python2.6
|
|
||||||
[testenv:doc]
|
[testenv:doc]
|
||||||
basepython=python
|
basepython=python
|
||||||
changedir=doc
|
changedir=doc
|
||||||
|
|
Loading…
Reference in New Issue