some fixes to packaging and urls

--HG--
branch : trunk
This commit is contained in:
holger krekel 2010-10-15 00:54:25 +02:00
parent 8853c5bdef
commit 1b7d2b07ab
3 changed files with 9 additions and 21 deletions

View File

@ -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

View File

@ -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',

View File

@ -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