2 new commits in tox: https://bitbucket.org/hpk42/tox/commits/cc09084ced3f/ Changeset: cc09084ced3f User: hpk42 Date: 2013-06-03 14:50:53 Summary: fix issue94 - add homepage/repo information, also uploaded to pypi.python.org Affected #: 2 files
diff -r f5177c612fbadb8552c58693fa7249388c1c1bd3 -r cc09084ced3f28428fffff98fc528833e21ce104 README.txt --- a/README.txt +++ b/README.txt @@ -2,7 +2,7 @@ What is Tox? -------------------- -Tox as is a generic virtualenv_ management and test command line tool you can use for: +Tox as is a generic virtualenv management and test command line tool you can use for: * checking your package installs correctly with different Python versions and interpreters @@ -12,11 +12,13 @@ * acting as a frontend to Continuous Integration servers, greatly reducing boilerplate and merging CI and shell-based testing. -For more information, docs and many examples please checkout: +For more information and the repository please checkout: - http://tox.testrun.org +- homepage: http://tox.testrun.org + +- repository: https://bitbucket.org/hpk42/tox have fun, -holger krekel, May 2012 +holger krekel, March 2013 diff -r f5177c612fbadb8552c58693fa7249388c1c1bd3 -r cc09084ced3f28428fffff98fc528833e21ce104 setup.py --- a/setup.py +++ b/setup.py @@ -2,30 +2,7 @@ from setuptools import setup from setuptools.command.test import test as TestCommand -long_description = """ -What is Tox? -========================== - -Tox as is a generic virtualenv management and test command line tool you can -use for: - -* checking your package installs correctly with different - Python versions and interpreters - -* running your tests in each of the - environments, configuring your test tool of choice - -* acting as a frontend to Continuous Integration - servers, greatly reducing boilerplate and merging - CI and shell-based testing. - -For more information, docs and many examples please checkout the `home page`_: - - http://tox.testrun.org/ - -.. _`home page`: http://tox.testrun.org/ -""" - +long_description = open("README.txt").read() class Tox(TestCommand): def finalize_options(self): @@ -54,6 +31,7 @@ platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], author='holger krekel', author_email='hol...@merlinux.eu', + homepage_url="http://tox.testun.org", packages=['tox', ], entry_points={'console_scripts': 'tox=tox:cmdline\ntox-quickstart=tox._quickstart:main'}, # we use a public tox version to test, see tox.ini's testenv https://bitbucket.org/hpk42/tox/commits/e841b84a9690/ Changeset: e841b84a9690 User: hpk42 Date: 2013-06-03 15:01:38 Summary: merge in README changes Affected #: 2 files diff -r fc53c4e02616e58ea5ab482409b25746220b1738 -r e841b84a96906fd7f78d119f2490fbdcdecf97bf README.rst --- a/README.rst +++ b/README.rst @@ -12,9 +12,14 @@ * acting as a frontend to Continuous Integration servers, greatly reducing boilerplate and merging CI and shell-based testing. -For more information, docs and many examples please checkout: +For more information and the repository please checkout: - http://tox.testrun.org +- homepage: http://tox.testrun.org + +- repository: https://bitbucket.org/hpk42/tox + +have fun, + have fun, Repository URL: https://bitbucket.org/hpk42/tox/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. _______________________________________________ pytest-commit mailing list pytest-commit@python.org http://mail.python.org/mailman/listinfo/pytest-commit