basthon-turtle 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- basthon_turtle-0.0.1/PKG-INFO +23 -0
- basthon_turtle-0.0.1/README +0 -0
- basthon_turtle-0.0.1/basthon_turtle.egg-info/PKG-INFO +23 -0
- basthon_turtle-0.0.1/basthon_turtle.egg-info/SOURCES.txt +10 -0
- basthon_turtle-0.0.1/basthon_turtle.egg-info/dependency_links.txt +1 -0
- basthon_turtle-0.0.1/basthon_turtle.egg-info/top_level.txt +1 -0
- basthon_turtle-0.0.1/setup.cfg +4 -0
- basthon_turtle-0.0.1/setup.py +22 -0
- basthon_turtle-0.0.1/turtle/__init__.py +1800 -0
- basthon_turtle-0.0.1/turtle/svg-ntoll.py +164 -0
- basthon_turtle-0.0.1/turtle/svg.py +128 -0
- basthon_turtle-0.0.1/turtle/turtle-ntoll.py +2290 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: basthon-turtle
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Brython's Turtle module port to Basthon project.
|
|
5
|
+
Home-page: https://forge.apps.education.fr/basthon/basthon-kernel/
|
|
6
|
+
Author: Romain Casati
|
|
7
|
+
Author-email: Romain.Casati@basthon.fr
|
|
8
|
+
License: GPL-3.0-or-later
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Topic :: Software Development :: Interpreters
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.4
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: author-email
|
|
16
|
+
Dynamic: classifier
|
|
17
|
+
Dynamic: description
|
|
18
|
+
Dynamic: home-page
|
|
19
|
+
Dynamic: license
|
|
20
|
+
Dynamic: requires-python
|
|
21
|
+
Dynamic: summary
|
|
22
|
+
|
|
23
|
+
Brython's Turtle module port to Basthon project.
|
|
File without changes
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: basthon-turtle
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Brython's Turtle module port to Basthon project.
|
|
5
|
+
Home-page: https://forge.apps.education.fr/basthon/basthon-kernel/
|
|
6
|
+
Author: Romain Casati
|
|
7
|
+
Author-email: Romain.Casati@basthon.fr
|
|
8
|
+
License: GPL-3.0-or-later
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Topic :: Software Development :: Interpreters
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.4
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: author-email
|
|
16
|
+
Dynamic: classifier
|
|
17
|
+
Dynamic: description
|
|
18
|
+
Dynamic: home-page
|
|
19
|
+
Dynamic: license
|
|
20
|
+
Dynamic: requires-python
|
|
21
|
+
Dynamic: summary
|
|
22
|
+
|
|
23
|
+
Brython's Turtle module port to Basthon project.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
README
|
|
2
|
+
setup.py
|
|
3
|
+
basthon_turtle.egg-info/PKG-INFO
|
|
4
|
+
basthon_turtle.egg-info/SOURCES.txt
|
|
5
|
+
basthon_turtle.egg-info/dependency_links.txt
|
|
6
|
+
basthon_turtle.egg-info/top_level.txt
|
|
7
|
+
turtle/__init__.py
|
|
8
|
+
turtle/svg-ntoll.py
|
|
9
|
+
turtle/svg.py
|
|
10
|
+
turtle/turtle-ntoll.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
turtle
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import setuptools
|
|
2
|
+
|
|
3
|
+
long_description = """Brython's Turtle module port to Basthon project."""
|
|
4
|
+
|
|
5
|
+
setuptools.setup(
|
|
6
|
+
name="basthon-turtle",
|
|
7
|
+
version="0.0.1",
|
|
8
|
+
author="Romain Casati",
|
|
9
|
+
author_email="Romain.Casati@basthon.fr",
|
|
10
|
+
description=long_description,
|
|
11
|
+
long_description=long_description,
|
|
12
|
+
url="https://forge.apps.education.fr/basthon/basthon-kernel/",
|
|
13
|
+
packages=setuptools.find_packages(),
|
|
14
|
+
license="GPL-3.0-or-later",
|
|
15
|
+
classifiers=[
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Topic :: Software Development :: Interpreters",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
],
|
|
21
|
+
python_requires=">=3.4",
|
|
22
|
+
)
|