Skip to content

Commit f602f14

Browse files
committed
Updated project URLs
1 parent 32c3fe7 commit f602f14

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ def get_subpackages(name):
4343

4444
setup(name=NAME,
4545
version=__version__,
46-
description='WinPython distribution tools, including WPPM',
46+
description='%s distribution tools, including WPPM' % NAME,
4747
long_description=\
48-
"""WinPython is a portable distribution of the Python programming language
48+
"""%s is a portable distribution of the Python programming language
4949
for Windows. It is a full-featured Python-based scientific environment, :
50-
including a package manager, WPPM.""",
50+
including a package manager, WPPM.""" % NAME,
5151
download_url='%s/files/%s-%s.zip' % (__project_url__, NAME, __version__),
5252
author="Pierre Raybaut",
5353
author_email = 'pierre.raybaut@gmail.com',

winpython/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
OTHER DEALINGS IN THE SOFTWARE.
2828
"""
2929

30-
__version__ = '0.18'
30+
__version__ = '1.0'
3131
__license__ = __doc__
32-
__project_url__ = 'http://code.google.com/p/winpython'
33-
__forum_url__ = 'http://groups.google.com/group/winpython'
32+
__project_url__ = 'http://winpython.sourceforge.net/'

winpython/controlpanel.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
mimedata2url)
3333

3434
# Local imports
35-
from winpython import __version__, __project_url__, __forum_url__
35+
from winpython import __version__, __project_url__
3636
from winpython import wppm, associate, utils
3737
from winpython.py3compat import getcwd, to_text_string
3838

@@ -711,16 +711,12 @@ def about(self):
711711
<p>Copyright &copy; 2012 Pierre Raybaut
712712
<br>Licensed under the terms of the MIT License
713713
<p>Created, developed and maintained by Pierre Raybaut
714-
<p>WinPython's community:
715-
<ul><li>Bug reports and feature requests:
716-
<a href="%s">Google Code</a>
717-
</li><li>Discussions around the project:
718-
<a href="%s">Google Group</a>
719-
</li></ul>
714+
<p><a href="%s">WinPython at SourceForge</a>: downloads, bug reports,
715+
discussions, etc.</p>
720716
<p>This program is executed by:<br>
721717
<b>%s</b><br>
722718
Python %s, Qt %s, %s %s"""
723-
% (self.NAME, __version__, __project_url__, __forum_url__,
719+
% (self.NAME, __version__, __project_url__,
724720
python_distribution_infos(),
725721
platform.python_version(), winpython.qt.QtCore.__version__,
726722
winpython.qt.API_NAME, winpython.qt.__version__,) )

0 commit comments

Comments
 (0)