├── .github └── FUNDING.yml ├── .gitignore ├── InstallerTests ├── InstallerTests.csproj └── UnitTest1.cs ├── LICENSE ├── Python.Deployment ├── DownloadInstallationSource.cs ├── Downloader.cs ├── EmbeddedResourceInstallationSource.cs ├── InstallationSource.cs ├── Installer.cs └── Python.Deployment.csproj ├── Python.Included.sln ├── Python.Included ├── Installer.cs ├── Python.Included.csproj ├── PythonEnv.cs └── Resources │ ├── python-3.13.0-embed-amd64.zip │ └── python_included_nuget.png ├── Python.Installer.Tests ├── DownloaderTests.cs ├── InstallationSourceTests.cs ├── Python.Installer.Tests.csproj ├── PythonIncludedTests.cs ├── Resources │ └── python-3.7.3-embed-amd64.zip ├── TemporaryFile.cs └── TestResources.cs ├── README.md ├── ReleaseBot ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ReleaseBot.csproj ├── nuget.exe └── packages.config ├── art ├── Csharp_and_Python.png ├── Csharp_and_Python.svg ├── Csharp_and_Python_.png ├── python_included.png ├── python_included.svg ├── python_included_nuget.png └── python_included_nuget.svg └── examples ├── Python.Deployment.Download ├── Program.cs └── Python.Deployment.Download.csproj ├── Python.Deployment.EmbeddedResource ├── Program.cs ├── Python.Deployment.EmbeddedResource.csproj └── python-3.8.5-embed-amd64.zip ├── Python.Deployment.InstallWheel ├── Program.cs ├── Python.Deployment.InstallWheel.csproj ├── numpy-1.16.3-cp37-cp37m-win_amd64.whl ├── python-3.7.3-embed-amd64.zip ├── python_dateutil-2.8.1-py2.py3-none-any.whl ├── pytz-2020.1-py2.py3-none-any.whl └── six-1.15.0-py2.py3-none-any.whl ├── Python.Included.Example.NetCore ├── Program.cs └── Python.Included.Example.NetCore.csproj └── Python.Included.Example.NetFramework ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── Python.Included.Example.NetFramework.csproj └── packages.config /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/.gitignore -------------------------------------------------------------------------------- /InstallerTests/InstallerTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/InstallerTests/InstallerTests.csproj -------------------------------------------------------------------------------- /InstallerTests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/InstallerTests/UnitTest1.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/LICENSE -------------------------------------------------------------------------------- /Python.Deployment/DownloadInstallationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Deployment/DownloadInstallationSource.cs -------------------------------------------------------------------------------- /Python.Deployment/Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Deployment/Downloader.cs -------------------------------------------------------------------------------- /Python.Deployment/EmbeddedResourceInstallationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Deployment/EmbeddedResourceInstallationSource.cs -------------------------------------------------------------------------------- /Python.Deployment/InstallationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Deployment/InstallationSource.cs -------------------------------------------------------------------------------- /Python.Deployment/Installer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Deployment/Installer.cs -------------------------------------------------------------------------------- /Python.Deployment/Python.Deployment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Deployment/Python.Deployment.csproj -------------------------------------------------------------------------------- /Python.Included.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Included.sln -------------------------------------------------------------------------------- /Python.Included/Installer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Included/Installer.cs -------------------------------------------------------------------------------- /Python.Included/Python.Included.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Included/Python.Included.csproj -------------------------------------------------------------------------------- /Python.Included/PythonEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Included/PythonEnv.cs -------------------------------------------------------------------------------- /Python.Included/Resources/python-3.13.0-embed-amd64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Included/Resources/python-3.13.0-embed-amd64.zip -------------------------------------------------------------------------------- /Python.Included/Resources/python_included_nuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Included/Resources/python_included_nuget.png -------------------------------------------------------------------------------- /Python.Installer.Tests/DownloaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Installer.Tests/DownloaderTests.cs -------------------------------------------------------------------------------- /Python.Installer.Tests/InstallationSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Installer.Tests/InstallationSourceTests.cs -------------------------------------------------------------------------------- /Python.Installer.Tests/Python.Installer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Installer.Tests/Python.Installer.Tests.csproj -------------------------------------------------------------------------------- /Python.Installer.Tests/PythonIncludedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Installer.Tests/PythonIncludedTests.cs -------------------------------------------------------------------------------- /Python.Installer.Tests/Resources/python-3.7.3-embed-amd64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Installer.Tests/Resources/python-3.7.3-embed-amd64.zip -------------------------------------------------------------------------------- /Python.Installer.Tests/TemporaryFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Installer.Tests/TemporaryFile.cs -------------------------------------------------------------------------------- /Python.Installer.Tests/TestResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/Python.Installer.Tests/TestResources.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseBot/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/ReleaseBot/App.config -------------------------------------------------------------------------------- /ReleaseBot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/ReleaseBot/Program.cs -------------------------------------------------------------------------------- /ReleaseBot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/ReleaseBot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ReleaseBot/ReleaseBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/ReleaseBot/ReleaseBot.csproj -------------------------------------------------------------------------------- /ReleaseBot/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/ReleaseBot/nuget.exe -------------------------------------------------------------------------------- /ReleaseBot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/ReleaseBot/packages.config -------------------------------------------------------------------------------- /art/Csharp_and_Python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/art/Csharp_and_Python.png -------------------------------------------------------------------------------- /art/Csharp_and_Python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/art/Csharp_and_Python.svg -------------------------------------------------------------------------------- /art/Csharp_and_Python_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/art/Csharp_and_Python_.png -------------------------------------------------------------------------------- /art/python_included.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/art/python_included.png -------------------------------------------------------------------------------- /art/python_included.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/art/python_included.svg -------------------------------------------------------------------------------- /art/python_included_nuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/art/python_included_nuget.png -------------------------------------------------------------------------------- /art/python_included_nuget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/art/python_included_nuget.svg -------------------------------------------------------------------------------- /examples/Python.Deployment.Download/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Deployment.Download/Program.cs -------------------------------------------------------------------------------- /examples/Python.Deployment.Download/Python.Deployment.Download.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Deployment.Download/Python.Deployment.Download.csproj -------------------------------------------------------------------------------- /examples/Python.Deployment.EmbeddedResource/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Deployment.EmbeddedResource/Program.cs -------------------------------------------------------------------------------- /examples/Python.Deployment.EmbeddedResource/Python.Deployment.EmbeddedResource.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Deployment.EmbeddedResource/Python.Deployment.EmbeddedResource.csproj -------------------------------------------------------------------------------- /examples/Python.Deployment.EmbeddedResource/python-3.8.5-embed-amd64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Deployment.EmbeddedResource/python-3.8.5-embed-amd64.zip -------------------------------------------------------------------------------- /examples/Python.Deployment.InstallWheel/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Deployment.InstallWheel/Program.cs -------------------------------------------------------------------------------- /examples/Python.Deployment.InstallWheel/Python.Deployment.InstallWheel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Deployment.InstallWheel/Python.Deployment.InstallWheel.csproj -------------------------------------------------------------------------------- /examples/Python.Deployment.InstallWheel/numpy-1.16.3-cp37-cp37m-win_amd64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Deployment.InstallWheel/numpy-1.16.3-cp37-cp37m-win_amd64.whl -------------------------------------------------------------------------------- /examples/Python.Deployment.InstallWheel/python-3.7.3-embed-amd64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Deployment.InstallWheel/python-3.7.3-embed-amd64.zip -------------------------------------------------------------------------------- /examples/Python.Deployment.InstallWheel/python_dateutil-2.8.1-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Deployment.InstallWheel/python_dateutil-2.8.1-py2.py3-none-any.whl -------------------------------------------------------------------------------- /examples/Python.Deployment.InstallWheel/pytz-2020.1-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Deployment.InstallWheel/pytz-2020.1-py2.py3-none-any.whl -------------------------------------------------------------------------------- /examples/Python.Deployment.InstallWheel/six-1.15.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Deployment.InstallWheel/six-1.15.0-py2.py3-none-any.whl -------------------------------------------------------------------------------- /examples/Python.Included.Example.NetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Included.Example.NetCore/Program.cs -------------------------------------------------------------------------------- /examples/Python.Included.Example.NetCore/Python.Included.Example.NetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Included.Example.NetCore/Python.Included.Example.NetCore.csproj -------------------------------------------------------------------------------- /examples/Python.Included.Example.NetFramework/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Included.Example.NetFramework/App.config -------------------------------------------------------------------------------- /examples/Python.Included.Example.NetFramework/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Included.Example.NetFramework/Program.cs -------------------------------------------------------------------------------- /examples/Python.Included.Example.NetFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Included.Example.NetFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /examples/Python.Included.Example.NetFramework/Python.Included.Example.NetFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Included.Example.NetFramework/Python.Included.Example.NetFramework.csproj -------------------------------------------------------------------------------- /examples/Python.Included.Example.NetFramework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henon/Python.Included/HEAD/examples/Python.Included.Example.NetFramework/packages.config --------------------------------------------------------------------------------