1. 22 5月, 2017 1 次提交
    • J
      Consolidate all environments in one section · 252058ed
      jwg4 提交于
      Some of these names relate to specific tools, others could be used by multiple tools. In particular, virtualenv, the most popular tool for creating Python environments, does not mandate any of these and venv/ or .venv are simply conventional. It is more readable to group all of these together.
      252058ed
  2. 12 5月, 2017 1 次提交
  3. 07 5月, 2017 1 次提交
  4. 01 4月, 2017 1 次提交
  5. 31 3月, 2017 1 次提交
  6. 21 3月, 2017 1 次提交
  7. 20 2月, 2017 2 次提交
  8. 02 2月, 2017 1 次提交
  9. 24 1月, 2017 1 次提交
  10. 27 11月, 2016 1 次提交
  11. 27 10月, 2016 1 次提交
  12. 14 8月, 2016 1 次提交
  13. 25 4月, 2016 1 次提交
  14. 01 4月, 2016 1 次提交
  15. 10 3月, 2016 1 次提交
  16. 06 3月, 2016 1 次提交
  17. 29 2月, 2016 1 次提交
  18. 25 2月, 2016 1 次提交
  19. 12 2月, 2016 2 次提交
  20. 08 2月, 2016 1 次提交
  21. 13 12月, 2015 1 次提交
  22. 02 10月, 2015 1 次提交
  23. 29 7月, 2015 1 次提交
  24. 05 6月, 2015 1 次提交
  25. 11 5月, 2015 1 次提交
  26. 29 4月, 2015 1 次提交
  27. 16 3月, 2015 1 次提交
  28. 06 3月, 2015 1 次提交
  29. 12 2月, 2015 1 次提交
  30. 03 2月, 2015 1 次提交
  31. 15 8月, 2014 1 次提交
  32. 15 6月, 2014 1 次提交
  33. 06 3月, 2014 1 次提交
  34. 23 2月, 2014 1 次提交
  35. 22 2月, 2014 2 次提交
    • M
      .spec files also · 8b4090be
      Metallicow 提交于
      8b4090be
    • M
      PyInstaller .manifest · 2a36f443
      Metallicow 提交于
      # PyInstaller
      #  Usually these files are written by a python script from a template
      #  before PyInstaller builds the exe, so as to inject date/other infos
      into it.
      *.exe.manifest
      *.manifest
      
      Example template
      ```
      <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
      <assembly xmlns="urn:schemas-microsoft-com:asm.v1"
      manifestVersion="1.0">
      <assemblyIdentity
      type="win32"
      name="SourceCoder"
      version="14.2.22.0"
      processorArchitecture="x86"
      />
      <description>Description</description>
      <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
      <security>
      <requestedPrivileges>
      <requestedExecutionLevel level="asInvoker" uiAccess="false" />
      </requestedPrivileges>
      </security>
      </trustInfo>
      <dependency>
      <dependentAssembly>
      <assemblyIdentity
      type="win32"
      name="Microsoft.Windows.Common-Controls"
      version="6.0.0.0"
      processorArchitecture="x86"
      publicKeyToken="6595b64144ccf1df"
      language="*"
      />
      </dependentAssembly>
      </dependency>
      <dependency>
      <dependentAssembly>
      <assemblyIdentity
      type="win32"
      name="Microsoft.VC90.CRT"
      version="9.0.21022.8"
      processorArchitecture="x86"
      publicKeyToken="1fc8b3b9a1e18e3b"
      />
      </dependentAssembly>
      </dependency>
      </assembly>
      ```
      2a36f443
  36. 21 2月, 2014 2 次提交