Skip to content

Commit

Permalink
Update Spyder proper name, basic description and URLs in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CAM-Gerlach committed Aug 3, 2018
1 parent 5bd2554 commit c88d56f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 19 deletions.
4 changes: 2 additions & 2 deletions spyder_mod/Spyder 2.3.8/scripts/spyder_win_post_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def install():
lib_dir = distutils.sysconfig.get_python_lib(plat_specific=1)
ico_dir = osp.join(lib_dir, 'spyderlib', 'windows')

desc = 'Scientific Python Development EnvironmEnt, an alternative to IDLE'
desc = 'The Scientific Python Development Environment'
fname = osp.join(start_menu, 'Tellurium Spyder.lnk')
create_shortcut(pythonw, desc, fname, '"%s"' % script, workdir,
osp.join(ico_dir, 'Tellurium.ico'))
Expand Down Expand Up @@ -71,7 +71,7 @@ def install():
# Create desktop shortcut file
desktop_folder = get_special_folder_path("CSIDL_DESKTOPDIRECTORY")
fname = osp.join(desktop_folder, 'Spyder.lnk')
desc = 'Scientific Python Development EnvironmEnt, an alternative to IDLE'
desc = 'The Scientific Python Development Environment'
create_shortcut(pythonw, desc, fname, '"%s"' % script, workdir,
osp.join(ico_dir, 'spyder.ico'))
file_created(fname)
Expand Down
23 changes: 12 additions & 11 deletions spyder_mod/Spyder 2.3.8/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Spyder
======
The Scientific PYthon Development EnviRonment
The Scientific Python Development Environment
"""

from __future__ import print_function
Expand Down Expand Up @@ -227,17 +227,18 @@ def get_packages():

setup(name=NAME,
version=__version__,
description='Scientific PYthon Development EnviRonment',
description='The Scientific Python Development Environment',
long_description=WININST_MSG + \
"""Spyder is an interactive Python development environment providing
MATLAB-like features in a simple and light-weighted software.
It also provides ready-to-use pure-Python widgets to your PyQt4 or
PySide application: source code editor with syntax highlighting and
code introspection/analysis features, NumPy array editor, dictionary
editor, Python console, etc.""",
download_url='%s/files/%s-%s.zip' % (__project_url__, NAME, __version__),
author="Pierre Raybaut",
url=__project_url__,
"""Spyder is a powerful scientific environment written in Python, for Python,
and designed by and for scientists, engineers and data analysts.
It features a unique combination of the advanced editing, analysis, debugging
and profiling functionality of a comprehensive development tool with the data
exploration, interactive execution, deep inspection and beautiful visualization
capabilities of a scientific package.""",
download_url="https://www.spyder-ide.org/#fh5co-download",
author="The Spyder Project Contributors",
author_email="[email protected]",
url="https://www.spyder-ide.org/",
license='MIT',
keywords='PyQt4 PySide editor shell console widgets IDE',
platforms=['any'],
Expand Down
4 changes: 2 additions & 2 deletions spyder_mod/Spyder 2.3.8/spyderlib/spyder.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# (see spyderlib/__init__.py for details)

"""
Spyder, the Scientific PYthon Development EnviRonment
Spyder, the Scientific Python Development Environment
=====================================================
Developped and maintained by the Spyder Development
Expand Down Expand Up @@ -1699,7 +1699,7 @@ def about(self):
QMessageBox.about(self,
_("About %s") % "Spyder",
"""<b>Spyder %s</b> %s
<br>The Scientific PYthon Development EnviRonment
<br>The Scientific Python Development Environment
<p>Copyright &copy; 2009 - 2015 Pierre Raybaut
<br>Copyright &copy; 2010 - 2015 The Spyder Development Team
<br>Licensed under the terms of the MIT License
Expand Down
4 changes: 2 additions & 2 deletions spyder_mod/Spyder 3.1.3/spyder/app/mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# (see spyder/__init__.py for details)

"""
Spyder, the Scientific PYthon Development EnviRonment
Spyder, the Scientific Python Development Environment
=====================================================
Developped and maintained by the Spyder Project
Expand Down Expand Up @@ -2276,7 +2276,7 @@ def about(self):
QMessageBox.about(self,
_("About %s") % "Spyder",
"""<b>Spyder %s</b> %s
<br>The Scientific PYthon Development EnviRonment
<br>The Scientific Python Development Environment
<br>Copyright &copy; The Spyder Project Contributors
<br>Licensed under the terms of the MIT License
<p>Created by Pierre Raybaut.
Expand Down
4 changes: 2 additions & 2 deletions spyder_mod/Spyder 3.2.2/spyder/app/mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# (see spyder/__init__.py for details)

"""
Spyder, the Scientific PYthon Development EnviRonment
Spyder, the Scientific Python Development Environment
=====================================================
Developped and maintained by the Spyder Project
Expand Down Expand Up @@ -2313,7 +2313,7 @@ def about(self):
QMessageBox.about(self,
_("About %s") % "Spyder",
"""<b>Spyder %s</b> %s
<br>The Scientific PYthon Development EnviRonment
<br>The Scientific Python Development Environment
<br>Copyright &copy; The Spyder Project Contributors
<br>Licensed under the terms of the MIT License
<p>Created by Pierre Raybaut.
Expand Down

0 comments on commit c88d56f

Please sign in to comment.