Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pythonturtle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
demonstrates how to move the turtle and introduces the student to the
basics of Python programming.
"""
name = 'PythonTurtle'
__version__ = '0.3.0'
__license__ = 'MIT'
__product_name__ = 'PythonTurtle'
__url__ = 'http://pythonturtle.org'
__version__ = '0.3.0'
2 changes: 1 addition & 1 deletion pythonturtle/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def init_about_dialog_info(self):
info.SetDescription(description)
info.SetLicence(license_terms)
info.SetCopyright(license_copyright)
info.SetName(pythonturtle.__product_name__)
info.SetName(pythonturtle.name)
info.SetVersion(pythonturtle.__version__)
info.SetWebSite(pythonturtle.__url__)
info.SetDevelopers(developer_list)
Expand Down
33 changes: 22 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,40 @@ def read_file(filename):


setup(
name=package.__name__,
name=package.name,
version=package.__version__,
description=package.__doc__,
long_description=read_file('README.md'),
license=package.__license__,
author='Ram Rachum',
author_email='ram@rachum.com',
description=package.__doc__.strip().split('\n')[0],
long_description_content_type='text/markdown',
long_description=read_file('README.md'),
url=package.__url__,
project_urls={
'Source': 'https://github.com/cool-RR/PythonTurtle',
},
keywords=['turtle', 'learning', 'children', 'beginners', 'logo '],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Education',
],
keywords=['turtle', 'learning', 'children', 'beginners', 'logo '],
author='Ram Rachum',
author_email='ram@rachum.com',
url=package.__url__,
license=package.__license__,
python_requires='>=3',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=True,
# install_requires=['wxPython'],
tests_require=['tox'],
zip_safe=True,
entry_points={
'console_scripts': [
'PythonTurtle = pythonturtle.__main__:run',
Expand Down