Skip to content

Commit 83a034c

Browse files
committed
changed pypi namespace to include dash, updated docs
1 parent 569ffb4 commit 83a034c

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

docs/index.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
----
1515

16-
:Home: http://testutils.org/multimechanize
16+
:Home: http://multimechanize.com
1717
:Dev: http://github.com/cgoldberg/multi-mechanize
18-
:PyPI: http://pypi.python.org/pypi/multimechanize
18+
:PyPI: http://pypi.python.org/pypi/multi-mechanize
1919
:License: GNU LGPLv3
2020
:Author: Copyright (c) 2010-2012 Corey Goldberg
2121

@@ -36,11 +36,11 @@ for compatibility with CI systems.
3636
Install / Setup
3737
-------------------
3838

39-
Multi-Mechanize can be installed from `PyPI <http://pypi.python.org/pypi/multimechanize>`_ using `pip <http://www.pip-installer.org>`_::
39+
Multi-Mechanize can be installed from `PyPI <http://pypi.python.org/pypi/multi-mechanize>`_ using `pip <http://www.pip-installer.org>`_::
4040
41-
pip install -U multimechanize
41+
pip install -U multi-mechanize
4242

43-
... or download the `source distribution from PyPI <http://pypi.python.org/pypi/multimechanize#downloads>`_, unarchive, and run::
43+
... or download the `source distribution from PyPI <http://pypi.python.org/pypi/multi-mechanize#downloads>`_, unarchive, and run::
4444

4545
python setup.py install
4646

setup.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,19 @@
2121
this_dir = os.path.abspath(os.path.dirname(__file__))
2222

2323

24-
NAME = 'multimechanize'
24+
NAME = 'multi-mechanize'
2525
VERSION = __version__
2626
PACKAGES = find_packages(exclude=['ez_setup'])
2727
DESCRIPTION = 'Multi-Mechanize - Performance Test Framework'
28-
URL = 'http://testutils.org/multimechanize'
28+
URL = 'http://multimechanize.com'
2929
LICENSE = 'GNU LGPLv3'
3030
LONG_DESCRIPTION = open(os.path.join(this_dir, 'README.rst')).read()
3131
REQUIREMENTS = filter(None, open(os.path.join(this_dir, 'requirements.txt')).read().splitlines())
3232
AUTHOR = 'Corey Goldberg'
3333
AUTHOR_EMAIL = 'corey@goldb.org'
34-
KEYWORDS = ('performance scalability load test testing benchmark').split(' ')
34+
KEYWORDS = ('performance', 'scalability', 'load', 'test', 'testing', 'benchmark')
3535
CLASSIFIERS = [
3636
'Development Status :: 4 - Beta',
37-
'Environment :: Console',
3837
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
3938
'Operating System :: OS Independent',
4039
'Programming Language :: Python',

0 commit comments

Comments
 (0)