1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
import os.path
import sys
from setuptools import find_packages, setup
def recursive_files(directory):
paths = []
for (path, _, filenames) in os.walk(directory):
for filename in filenames:
if not filename.endswith(".pyc") and filename != "registered.json":
paths.append(os.path.join('..', path, filename))
return paths
if sys.version_info < (3, 8):
raise RuntimeError("Thonny requires Python 3.8 or later")
setupdir = os.path.dirname(__file__)
with open(os.path.join(setupdir, "thonny", "VERSION"), encoding="ASCII") as f:
version = f.read().strip()
requirements = []
for line in open(os.path.join(setupdir, "requirements.txt"), encoding="ASCII"):
if line.strip() and not line.startswith("#"):
requirements.append(line)
setup(
name="thonny",
version=version,
description="Python IDE for beginners",
long_description="Thonny is a simple Python IDE with features useful for learning programming. See https://thonny.org for more info.",
url="https://thonny.org",
author="Aivar Annamaa and others",
author_email="thonny@googlegroups.com",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: Freeware",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Education",
"Topic :: Software Development",
"Topic :: Software Development :: Debuggers",
"Topic :: Text Editors",
],
keywords="IDE education debugger",
project_urls={
"Source code": "https://github.com/thonny/thonny",
"Bug tracker": "https://github.com/thonny/thonny/issues",
},
platforms=["Windows", "macOS", "Linux"],
install_requires=requirements,
python_requires=">=3.8",
packages=find_packages(),
package_data={
"": ["VERSION", "defaults.ini", "res/*", "dbus/*"]
+ recursive_files("thonny/locale")
+ recursive_files("thonny/vendored_libs"),
"thonny.plugins.help": ["*.rst"],
"thonny.plugins.pi": ["res/**"],
"thonny.plugins.printing": ["*.html"],
"thonny.plugins.micropython": ["*api_stubs/**"],
"thonny.plugins.circuitpython": ["*api_stubs/**"],
"thonny.plugins.microbit": ["*api_stubs/**"],
"thonny.plugins.rp2040": ["*api_stubs/**"],
"thonny.plugins.ev3": ["*api_stubs/**"],
"thonny.plugins.prime_inventor": ["*api_stubs/**"],
"thonny.plugins.esp": ["*api_stubs/**"],
"thonny.plugins.mypy": ["typeshed_extras/*.pyi"],
},
entry_points={"gui_scripts": ["thonny = thonny:launch"]},
)
|