rigid 0.2.0

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.
Files changed (364) hide show
  1. checksums.yaml +7 -0
  2. data/bin/rigid +4 -0
  3. data/rigid +16 -0
  4. data/vendor/PyYAML-3.12.dist-info/DESCRIPTION.rst +12 -0
  5. data/vendor/PyYAML-3.12.dist-info/INSTALLER +1 -0
  6. data/vendor/PyYAML-3.12.dist-info/METADATA +35 -0
  7. data/vendor/PyYAML-3.12.dist-info/RECORD +42 -0
  8. data/vendor/PyYAML-3.12.dist-info/WHEEL +5 -0
  9. data/vendor/PyYAML-3.12.dist-info/metadata.json +1 -0
  10. data/vendor/PyYAML-3.12.dist-info/top_level.txt +2 -0
  11. data/vendor/_yaml.so +0 -0
  12. data/vendor/click/__init__.py +98 -0
  13. data/vendor/click/__init__.pyc +0 -0
  14. data/vendor/click/_bashcomplete.py +83 -0
  15. data/vendor/click/_bashcomplete.pyc +0 -0
  16. data/vendor/click/_compat.py +642 -0
  17. data/vendor/click/_compat.pyc +0 -0
  18. data/vendor/click/_termui_impl.py +547 -0
  19. data/vendor/click/_termui_impl.pyc +0 -0
  20. data/vendor/click/_textwrap.py +38 -0
  21. data/vendor/click/_textwrap.pyc +0 -0
  22. data/vendor/click/_unicodefun.py +119 -0
  23. data/vendor/click/_unicodefun.pyc +0 -0
  24. data/vendor/click/_winconsole.py +273 -0
  25. data/vendor/click/_winconsole.pyc +0 -0
  26. data/vendor/click/core.py +1738 -0
  27. data/vendor/click/core.pyc +0 -0
  28. data/vendor/click/decorators.py +304 -0
  29. data/vendor/click/decorators.pyc +0 -0
  30. data/vendor/click/exceptions.py +201 -0
  31. data/vendor/click/exceptions.pyc +0 -0
  32. data/vendor/click/formatting.py +256 -0
  33. data/vendor/click/formatting.pyc +0 -0
  34. data/vendor/click/globals.py +48 -0
  35. data/vendor/click/globals.pyc +0 -0
  36. data/vendor/click/parser.py +426 -0
  37. data/vendor/click/parser.pyc +0 -0
  38. data/vendor/click/termui.py +539 -0
  39. data/vendor/click/termui.pyc +0 -0
  40. data/vendor/click/testing.py +322 -0
  41. data/vendor/click/testing.pyc +0 -0
  42. data/vendor/click/types.py +550 -0
  43. data/vendor/click/types.pyc +0 -0
  44. data/vendor/click/utils.py +415 -0
  45. data/vendor/click/utils.pyc +0 -0
  46. data/vendor/click-6.6.dist-info/DESCRIPTION.rst +3 -0
  47. data/vendor/click-6.6.dist-info/INSTALLER +1 -0
  48. data/vendor/click-6.6.dist-info/METADATA +16 -0
  49. data/vendor/click-6.6.dist-info/RECORD +41 -0
  50. data/vendor/click-6.6.dist-info/WHEEL +6 -0
  51. data/vendor/click-6.6.dist-info/metadata.json +1 -0
  52. data/vendor/click-6.6.dist-info/top_level.txt +1 -0
  53. data/vendor/easy_install.py +5 -0
  54. data/vendor/easy_install.pyc +0 -0
  55. data/vendor/pip-9.0.1.dist-info/DESCRIPTION.rst +39 -0
  56. data/vendor/pip-9.0.1.dist-info/INSTALLER +1 -0
  57. data/vendor/pip-9.0.1.dist-info/METADATA +69 -0
  58. data/vendor/pip-9.0.1.dist-info/RECORD +501 -0
  59. data/vendor/pip-9.0.1.dist-info/WHEEL +6 -0
  60. data/vendor/pip-9.0.1.dist-info/entry_points.txt +5 -0
  61. data/vendor/pip-9.0.1.dist-info/metadata.json +1 -0
  62. data/vendor/pip-9.0.1.dist-info/top_level.txt +1 -0
  63. data/vendor/pkg_resources/__init__.py +3051 -0
  64. data/vendor/pkg_resources/__init__.pyc +0 -0
  65. data/vendor/pkg_resources/_vendor/__init__.py +0 -0
  66. data/vendor/pkg_resources/_vendor/__init__.pyc +0 -0
  67. data/vendor/pkg_resources/_vendor/appdirs.py +552 -0
  68. data/vendor/pkg_resources/_vendor/appdirs.pyc +0 -0
  69. data/vendor/pkg_resources/_vendor/packaging/__about__.py +21 -0
  70. data/vendor/pkg_resources/_vendor/packaging/__about__.pyc +0 -0
  71. data/vendor/pkg_resources/_vendor/packaging/__init__.py +14 -0
  72. data/vendor/pkg_resources/_vendor/packaging/__init__.pyc +0 -0
  73. data/vendor/pkg_resources/_vendor/packaging/_compat.py +30 -0
  74. data/vendor/pkg_resources/_vendor/packaging/_compat.pyc +0 -0
  75. data/vendor/pkg_resources/_vendor/packaging/_structures.py +68 -0
  76. data/vendor/pkg_resources/_vendor/packaging/_structures.pyc +0 -0
  77. data/vendor/pkg_resources/_vendor/packaging/markers.py +287 -0
  78. data/vendor/pkg_resources/_vendor/packaging/markers.pyc +0 -0
  79. data/vendor/pkg_resources/_vendor/packaging/requirements.py +127 -0
  80. data/vendor/pkg_resources/_vendor/packaging/requirements.pyc +0 -0
  81. data/vendor/pkg_resources/_vendor/packaging/specifiers.py +774 -0
  82. data/vendor/pkg_resources/_vendor/packaging/specifiers.pyc +0 -0
  83. data/vendor/pkg_resources/_vendor/packaging/utils.py +14 -0
  84. data/vendor/pkg_resources/_vendor/packaging/utils.pyc +0 -0
  85. data/vendor/pkg_resources/_vendor/packaging/version.py +393 -0
  86. data/vendor/pkg_resources/_vendor/packaging/version.pyc +0 -0
  87. data/vendor/pkg_resources/_vendor/pyparsing.py +5696 -0
  88. data/vendor/pkg_resources/_vendor/pyparsing.pyc +0 -0
  89. data/vendor/pkg_resources/_vendor/six.py +868 -0
  90. data/vendor/pkg_resources/_vendor/six.pyc +0 -0
  91. data/vendor/pkg_resources/extern/__init__.py +73 -0
  92. data/vendor/pkg_resources/extern/__init__.pyc +0 -0
  93. data/vendor/requests/__init__.py +86 -0
  94. data/vendor/requests/__init__.pyc +0 -0
  95. data/vendor/requests/adapters.py +503 -0
  96. data/vendor/requests/adapters.pyc +0 -0
  97. data/vendor/requests/api.py +148 -0
  98. data/vendor/requests/api.pyc +0 -0
  99. data/vendor/requests/auth.py +252 -0
  100. data/vendor/requests/auth.pyc +0 -0
  101. data/vendor/requests/cacert.pem +5616 -0
  102. data/vendor/requests/certs.py +25 -0
  103. data/vendor/requests/certs.pyc +0 -0
  104. data/vendor/requests/compat.py +66 -0
  105. data/vendor/requests/compat.pyc +0 -0
  106. data/vendor/requests/cookies.py +540 -0
  107. data/vendor/requests/cookies.pyc +0 -0
  108. data/vendor/requests/exceptions.py +114 -0
  109. data/vendor/requests/exceptions.pyc +0 -0
  110. data/vendor/requests/hooks.py +34 -0
  111. data/vendor/requests/hooks.pyc +0 -0
  112. data/vendor/requests/models.py +873 -0
  113. data/vendor/requests/models.pyc +0 -0
  114. data/vendor/requests/packages/__init__.py +36 -0
  115. data/vendor/requests/packages/__init__.pyc +0 -0
  116. data/vendor/requests/packages/chardet/__init__.py +32 -0
  117. data/vendor/requests/packages/chardet/__init__.pyc +0 -0
  118. data/vendor/requests/packages/chardet/big5freq.py +925 -0
  119. data/vendor/requests/packages/chardet/big5freq.pyc +0 -0
  120. data/vendor/requests/packages/chardet/big5prober.py +42 -0
  121. data/vendor/requests/packages/chardet/big5prober.pyc +0 -0
  122. data/vendor/requests/packages/chardet/chardetect.py +80 -0
  123. data/vendor/requests/packages/chardet/chardetect.pyc +0 -0
  124. data/vendor/requests/packages/chardet/chardistribution.py +231 -0
  125. data/vendor/requests/packages/chardet/chardistribution.pyc +0 -0
  126. data/vendor/requests/packages/chardet/charsetgroupprober.py +106 -0
  127. data/vendor/requests/packages/chardet/charsetgroupprober.pyc +0 -0
  128. data/vendor/requests/packages/chardet/charsetprober.py +62 -0
  129. data/vendor/requests/packages/chardet/charsetprober.pyc +0 -0
  130. data/vendor/requests/packages/chardet/codingstatemachine.py +61 -0
  131. data/vendor/requests/packages/chardet/codingstatemachine.pyc +0 -0
  132. data/vendor/requests/packages/chardet/compat.py +34 -0
  133. data/vendor/requests/packages/chardet/compat.pyc +0 -0
  134. data/vendor/requests/packages/chardet/constants.py +39 -0
  135. data/vendor/requests/packages/chardet/constants.pyc +0 -0
  136. data/vendor/requests/packages/chardet/cp949prober.py +44 -0
  137. data/vendor/requests/packages/chardet/cp949prober.pyc +0 -0
  138. data/vendor/requests/packages/chardet/escprober.py +86 -0
  139. data/vendor/requests/packages/chardet/escprober.pyc +0 -0
  140. data/vendor/requests/packages/chardet/escsm.py +242 -0
  141. data/vendor/requests/packages/chardet/escsm.pyc +0 -0
  142. data/vendor/requests/packages/chardet/eucjpprober.py +90 -0
  143. data/vendor/requests/packages/chardet/eucjpprober.pyc +0 -0
  144. data/vendor/requests/packages/chardet/euckrfreq.py +596 -0
  145. data/vendor/requests/packages/chardet/euckrfreq.pyc +0 -0
  146. data/vendor/requests/packages/chardet/euckrprober.py +42 -0
  147. data/vendor/requests/packages/chardet/euckrprober.pyc +0 -0
  148. data/vendor/requests/packages/chardet/euctwfreq.py +428 -0
  149. data/vendor/requests/packages/chardet/euctwfreq.pyc +0 -0
  150. data/vendor/requests/packages/chardet/euctwprober.py +41 -0
  151. data/vendor/requests/packages/chardet/euctwprober.pyc +0 -0
  152. data/vendor/requests/packages/chardet/gb2312freq.py +472 -0
  153. data/vendor/requests/packages/chardet/gb2312freq.pyc +0 -0
  154. data/vendor/requests/packages/chardet/gb2312prober.py +41 -0
  155. data/vendor/requests/packages/chardet/gb2312prober.pyc +0 -0
  156. data/vendor/requests/packages/chardet/hebrewprober.py +283 -0
  157. data/vendor/requests/packages/chardet/hebrewprober.pyc +0 -0
  158. data/vendor/requests/packages/chardet/jisfreq.py +569 -0
  159. data/vendor/requests/packages/chardet/jisfreq.pyc +0 -0
  160. data/vendor/requests/packages/chardet/jpcntx.py +227 -0
  161. data/vendor/requests/packages/chardet/jpcntx.pyc +0 -0
  162. data/vendor/requests/packages/chardet/langbulgarianmodel.py +229 -0
  163. data/vendor/requests/packages/chardet/langbulgarianmodel.pyc +0 -0
  164. data/vendor/requests/packages/chardet/langcyrillicmodel.py +329 -0
  165. data/vendor/requests/packages/chardet/langcyrillicmodel.pyc +0 -0
  166. data/vendor/requests/packages/chardet/langgreekmodel.py +225 -0
  167. data/vendor/requests/packages/chardet/langgreekmodel.pyc +0 -0
  168. data/vendor/requests/packages/chardet/langhebrewmodel.py +201 -0
  169. data/vendor/requests/packages/chardet/langhebrewmodel.pyc +0 -0
  170. data/vendor/requests/packages/chardet/langhungarianmodel.py +225 -0
  171. data/vendor/requests/packages/chardet/langhungarianmodel.pyc +0 -0
  172. data/vendor/requests/packages/chardet/langthaimodel.py +200 -0
  173. data/vendor/requests/packages/chardet/langthaimodel.pyc +0 -0
  174. data/vendor/requests/packages/chardet/latin1prober.py +139 -0
  175. data/vendor/requests/packages/chardet/latin1prober.pyc +0 -0
  176. data/vendor/requests/packages/chardet/mbcharsetprober.py +86 -0
  177. data/vendor/requests/packages/chardet/mbcharsetprober.pyc +0 -0
  178. data/vendor/requests/packages/chardet/mbcsgroupprober.py +54 -0
  179. data/vendor/requests/packages/chardet/mbcsgroupprober.pyc +0 -0
  180. data/vendor/requests/packages/chardet/mbcssm.py +572 -0
  181. data/vendor/requests/packages/chardet/mbcssm.pyc +0 -0
  182. data/vendor/requests/packages/chardet/sbcharsetprober.py +120 -0
  183. data/vendor/requests/packages/chardet/sbcharsetprober.pyc +0 -0
  184. data/vendor/requests/packages/chardet/sbcsgroupprober.py +69 -0
  185. data/vendor/requests/packages/chardet/sbcsgroupprober.pyc +0 -0
  186. data/vendor/requests/packages/chardet/sjisprober.py +91 -0
  187. data/vendor/requests/packages/chardet/sjisprober.pyc +0 -0
  188. data/vendor/requests/packages/chardet/universaldetector.py +170 -0
  189. data/vendor/requests/packages/chardet/universaldetector.pyc +0 -0
  190. data/vendor/requests/packages/chardet/utf8prober.py +76 -0
  191. data/vendor/requests/packages/chardet/utf8prober.pyc +0 -0
  192. data/vendor/requests/packages/urllib3/__init__.py +96 -0
  193. data/vendor/requests/packages/urllib3/__init__.pyc +0 -0
  194. data/vendor/requests/packages/urllib3/_collections.py +324 -0
  195. data/vendor/requests/packages/urllib3/_collections.pyc +0 -0
  196. data/vendor/requests/packages/urllib3/connection.py +330 -0
  197. data/vendor/requests/packages/urllib3/connection.pyc +0 -0
  198. data/vendor/requests/packages/urllib3/connectionpool.py +866 -0
  199. data/vendor/requests/packages/urllib3/connectionpool.pyc +0 -0
  200. data/vendor/requests/packages/urllib3/contrib/__init__.py +0 -0
  201. data/vendor/requests/packages/urllib3/contrib/__init__.pyc +0 -0
  202. data/vendor/requests/packages/urllib3/contrib/appengine.py +231 -0
  203. data/vendor/requests/packages/urllib3/contrib/appengine.pyc +0 -0
  204. data/vendor/requests/packages/urllib3/contrib/ntlmpool.py +115 -0
  205. data/vendor/requests/packages/urllib3/contrib/ntlmpool.pyc +0 -0
  206. data/vendor/requests/packages/urllib3/contrib/pyopenssl.py +358 -0
  207. data/vendor/requests/packages/urllib3/contrib/pyopenssl.pyc +0 -0
  208. data/vendor/requests/packages/urllib3/contrib/socks.py +172 -0
  209. data/vendor/requests/packages/urllib3/contrib/socks.pyc +0 -0
  210. data/vendor/requests/packages/urllib3/exceptions.py +209 -0
  211. data/vendor/requests/packages/urllib3/exceptions.pyc +0 -0
  212. data/vendor/requests/packages/urllib3/fields.py +178 -0
  213. data/vendor/requests/packages/urllib3/fields.pyc +0 -0
  214. data/vendor/requests/packages/urllib3/filepost.py +94 -0
  215. data/vendor/requests/packages/urllib3/filepost.pyc +0 -0
  216. data/vendor/requests/packages/urllib3/packages/__init__.py +5 -0
  217. data/vendor/requests/packages/urllib3/packages/__init__.pyc +0 -0
  218. data/vendor/requests/packages/urllib3/packages/ordered_dict.py +259 -0
  219. data/vendor/requests/packages/urllib3/packages/ordered_dict.pyc +0 -0
  220. data/vendor/requests/packages/urllib3/packages/six.py +868 -0
  221. data/vendor/requests/packages/urllib3/packages/six.pyc +0 -0
  222. data/vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py +13 -0
  223. data/vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyc +0 -0
  224. data/vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py +105 -0
  225. data/vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyc +0 -0
  226. data/vendor/requests/packages/urllib3/poolmanager.py +367 -0
  227. data/vendor/requests/packages/urllib3/poolmanager.pyc +0 -0
  228. data/vendor/requests/packages/urllib3/request.py +151 -0
  229. data/vendor/requests/packages/urllib3/request.pyc +0 -0
  230. data/vendor/requests/packages/urllib3/response.py +530 -0
  231. data/vendor/requests/packages/urllib3/response.pyc +0 -0
  232. data/vendor/requests/packages/urllib3/util/__init__.py +46 -0
  233. data/vendor/requests/packages/urllib3/util/__init__.pyc +0 -0
  234. data/vendor/requests/packages/urllib3/util/connection.py +144 -0
  235. data/vendor/requests/packages/urllib3/util/connection.pyc +0 -0
  236. data/vendor/requests/packages/urllib3/util/request.py +72 -0
  237. data/vendor/requests/packages/urllib3/util/request.pyc +0 -0
  238. data/vendor/requests/packages/urllib3/util/response.py +74 -0
  239. data/vendor/requests/packages/urllib3/util/response.pyc +0 -0
  240. data/vendor/requests/packages/urllib3/util/retry.py +300 -0
  241. data/vendor/requests/packages/urllib3/util/retry.pyc +0 -0
  242. data/vendor/requests/packages/urllib3/util/ssl_.py +320 -0
  243. data/vendor/requests/packages/urllib3/util/ssl_.pyc +0 -0
  244. data/vendor/requests/packages/urllib3/util/timeout.py +242 -0
  245. data/vendor/requests/packages/urllib3/util/timeout.pyc +0 -0
  246. data/vendor/requests/packages/urllib3/util/url.py +217 -0
  247. data/vendor/requests/packages/urllib3/util/url.pyc +0 -0
  248. data/vendor/requests/sessions.py +712 -0
  249. data/vendor/requests/sessions.pyc +0 -0
  250. data/vendor/requests/status_codes.py +91 -0
  251. data/vendor/requests/status_codes.pyc +0 -0
  252. data/vendor/requests/structures.py +105 -0
  253. data/vendor/requests/structures.pyc +0 -0
  254. data/vendor/requests/utils.py +817 -0
  255. data/vendor/requests/utils.pyc +0 -0
  256. data/vendor/requests-2.11.1.dist-info/DESCRIPTION.rst +1294 -0
  257. data/vendor/requests-2.11.1.dist-info/INSTALLER +1 -0
  258. data/vendor/requests-2.11.1.dist-info/METADATA +1323 -0
  259. data/vendor/requests-2.11.1.dist-info/RECORD +170 -0
  260. data/vendor/requests-2.11.1.dist-info/WHEEL +6 -0
  261. data/vendor/requests-2.11.1.dist-info/metadata.json +1 -0
  262. data/vendor/requests-2.11.1.dist-info/top_level.txt +1 -0
  263. data/vendor/rigid/__init__.py +1 -0
  264. data/vendor/rigid/__init__.pyc +0 -0
  265. data/vendor/rigid/api.py +129 -0
  266. data/vendor/rigid/api.pyc +0 -0
  267. data/vendor/rigid/commands/__init__.py +260 -0
  268. data/vendor/rigid/commands/__init__.pyc +0 -0
  269. data/vendor/rigid/commands/deploy.py +0 -0
  270. data/vendor/rigid/commands/deploy.pyc +0 -0
  271. data/vendor/rigid/deploy.py +70 -0
  272. data/vendor/rigid/deploy.pyc +0 -0
  273. data/vendor/rigid/file_scanner.py +63 -0
  274. data/vendor/rigid/file_scanner.pyc +0 -0
  275. data/vendor/rigid/utils.py +17 -0
  276. data/vendor/rigid/utils.pyc +0 -0
  277. data/vendor/rigid-0.2.0.dist-info/DESCRIPTION.rst +3 -0
  278. data/vendor/rigid-0.2.0.dist-info/INSTALLER +1 -0
  279. data/vendor/rigid-0.2.0.dist-info/METADATA +23 -0
  280. data/vendor/rigid-0.2.0.dist-info/RECORD +49 -0
  281. data/vendor/rigid-0.2.0.dist-info/WHEEL +5 -0
  282. data/vendor/rigid-0.2.0.dist-info/entry_points.txt +3 -0
  283. data/vendor/rigid-0.2.0.dist-info/metadata.json +1 -0
  284. data/vendor/rigid-0.2.0.dist-info/top_level.txt +2 -0
  285. data/vendor/setuptools-28.8.0.dist-info/DESCRIPTION.rst +243 -0
  286. data/vendor/setuptools-28.8.0.dist-info/INSTALLER +1 -0
  287. data/vendor/setuptools-28.8.0.dist-info/METADATA +272 -0
  288. data/vendor/setuptools-28.8.0.dist-info/RECORD +143 -0
  289. data/vendor/setuptools-28.8.0.dist-info/WHEEL +6 -0
  290. data/vendor/setuptools-28.8.0.dist-info/dependency_links.txt +2 -0
  291. data/vendor/setuptools-28.8.0.dist-info/entry_points.txt +63 -0
  292. data/vendor/setuptools-28.8.0.dist-info/metadata.json +1 -0
  293. data/vendor/setuptools-28.8.0.dist-info/top_level.txt +3 -0
  294. data/vendor/setuptools-28.8.0.dist-info/zip-safe +1 -0
  295. data/vendor/tests/__init__.py +0 -0
  296. data/vendor/tests/__init__.pyc +0 -0
  297. data/vendor/tests/integration/__init__.py +0 -0
  298. data/vendor/tests/integration/__init__.pyc +0 -0
  299. data/vendor/tests/integration/test_app.py +63 -0
  300. data/vendor/tests/integration/test_app.pyc +0 -0
  301. data/vendor/tests/integration/test_apps.py +27 -0
  302. data/vendor/tests/integration/test_apps.pyc +0 -0
  303. data/vendor/tests/integration/test_deploy.py +128 -0
  304. data/vendor/tests/integration/test_deploy.pyc +0 -0
  305. data/vendor/tests/integration/test_domains.py +35 -0
  306. data/vendor/tests/integration/test_domains.pyc +0 -0
  307. data/vendor/tests/integration/test_login.py +37 -0
  308. data/vendor/tests/integration/test_login.pyc +0 -0
  309. data/vendor/tests/integration/test_promote.py +24 -0
  310. data/vendor/tests/integration/test_promote.pyc +0 -0
  311. data/vendor/tests/integration/test_token.py +33 -0
  312. data/vendor/tests/integration/test_token.pyc +0 -0
  313. data/vendor/tests/integration/test_whoami.py +24 -0
  314. data/vendor/tests/integration/test_whoami.pyc +0 -0
  315. data/vendor/tests/test_deploy.py +33 -0
  316. data/vendor/tests/test_deploy.pyc +0 -0
  317. data/vendor/tests/test_file_scanner.py +89 -0
  318. data/vendor/tests/test_file_scanner.pyc +0 -0
  319. data/vendor/tests/utils.py +78 -0
  320. data/vendor/tests/utils.pyc +0 -0
  321. data/vendor/wheel-0.30.0a0.dist-info/DESCRIPTION.rst +325 -0
  322. data/vendor/wheel-0.30.0a0.dist-info/INSTALLER +1 -0
  323. data/vendor/wheel-0.30.0a0.dist-info/LICENSE.txt +22 -0
  324. data/vendor/wheel-0.30.0a0.dist-info/METADATA +357 -0
  325. data/vendor/wheel-0.30.0a0.dist-info/RECORD +86 -0
  326. data/vendor/wheel-0.30.0a0.dist-info/WHEEL +6 -0
  327. data/vendor/wheel-0.30.0a0.dist-info/entry_points.txt +6 -0
  328. data/vendor/wheel-0.30.0a0.dist-info/metadata.json +1 -0
  329. data/vendor/wheel-0.30.0a0.dist-info/top_level.txt +1 -0
  330. data/vendor/yaml/__init__.py +315 -0
  331. data/vendor/yaml/__init__.pyc +0 -0
  332. data/vendor/yaml/composer.py +139 -0
  333. data/vendor/yaml/composer.pyc +0 -0
  334. data/vendor/yaml/constructor.py +675 -0
  335. data/vendor/yaml/constructor.pyc +0 -0
  336. data/vendor/yaml/cyaml.py +85 -0
  337. data/vendor/yaml/cyaml.pyc +0 -0
  338. data/vendor/yaml/dumper.py +62 -0
  339. data/vendor/yaml/dumper.pyc +0 -0
  340. data/vendor/yaml/emitter.py +1140 -0
  341. data/vendor/yaml/emitter.pyc +0 -0
  342. data/vendor/yaml/error.py +75 -0
  343. data/vendor/yaml/error.pyc +0 -0
  344. data/vendor/yaml/events.py +86 -0
  345. data/vendor/yaml/events.pyc +0 -0
  346. data/vendor/yaml/loader.py +40 -0
  347. data/vendor/yaml/loader.pyc +0 -0
  348. data/vendor/yaml/nodes.py +49 -0
  349. data/vendor/yaml/nodes.pyc +0 -0
  350. data/vendor/yaml/parser.py +589 -0
  351. data/vendor/yaml/parser.pyc +0 -0
  352. data/vendor/yaml/reader.py +190 -0
  353. data/vendor/yaml/reader.pyc +0 -0
  354. data/vendor/yaml/representer.py +486 -0
  355. data/vendor/yaml/representer.pyc +0 -0
  356. data/vendor/yaml/resolver.py +227 -0
  357. data/vendor/yaml/resolver.pyc +0 -0
  358. data/vendor/yaml/scanner.py +1453 -0
  359. data/vendor/yaml/scanner.pyc +0 -0
  360. data/vendor/yaml/serializer.py +111 -0
  361. data/vendor/yaml/serializer.pyc +0 -0
  362. data/vendor/yaml/tokens.py +104 -0
  363. data/vendor/yaml/tokens.pyc +0 -0
  364. metadata +407 -0
@@ -0,0 +1,415 @@
1
+ import os
2
+ import sys
3
+
4
+ from .globals import resolve_color_default
5
+
6
+ from ._compat import text_type, open_stream, get_filesystem_encoding, \
7
+ get_streerror, string_types, PY2, binary_streams, text_streams, \
8
+ filename_to_ui, auto_wrap_for_ansi, strip_ansi, should_strip_ansi, \
9
+ _default_text_stdout, _default_text_stderr, is_bytes, WIN
10
+
11
+ if not PY2:
12
+ from ._compat import _find_binary_writer
13
+ elif WIN:
14
+ from ._winconsole import _get_windows_argv, \
15
+ _hash_py_argv, _initial_argv_hash
16
+
17
+
18
+ echo_native_types = string_types + (bytes, bytearray)
19
+
20
+
21
+ def _posixify(name):
22
+ return '-'.join(name.split()).lower()
23
+
24
+
25
+ def safecall(func):
26
+ """Wraps a function so that it swallows exceptions."""
27
+ def wrapper(*args, **kwargs):
28
+ try:
29
+ return func(*args, **kwargs)
30
+ except Exception:
31
+ pass
32
+ return wrapper
33
+
34
+
35
+ def make_str(value):
36
+ """Converts a value into a valid string."""
37
+ if isinstance(value, bytes):
38
+ try:
39
+ return value.decode(get_filesystem_encoding())
40
+ except UnicodeError:
41
+ return value.decode('utf-8', 'replace')
42
+ return text_type(value)
43
+
44
+
45
+ def make_default_short_help(help, max_length=45):
46
+ words = help.split()
47
+ total_length = 0
48
+ result = []
49
+ done = False
50
+
51
+ for word in words:
52
+ if word[-1:] == '.':
53
+ done = True
54
+ new_length = result and 1 + len(word) or len(word)
55
+ if total_length + new_length > max_length:
56
+ result.append('...')
57
+ done = True
58
+ else:
59
+ if result:
60
+ result.append(' ')
61
+ result.append(word)
62
+ if done:
63
+ break
64
+ total_length += new_length
65
+
66
+ return ''.join(result)
67
+
68
+
69
+ class LazyFile(object):
70
+ """A lazy file works like a regular file but it does not fully open
71
+ the file but it does perform some basic checks early to see if the
72
+ filename parameter does make sense. This is useful for safely opening
73
+ files for writing.
74
+ """
75
+
76
+ def __init__(self, filename, mode='r', encoding=None, errors='strict',
77
+ atomic=False):
78
+ self.name = filename
79
+ self.mode = mode
80
+ self.encoding = encoding
81
+ self.errors = errors
82
+ self.atomic = atomic
83
+
84
+ if filename == '-':
85
+ self._f, self.should_close = open_stream(filename, mode,
86
+ encoding, errors)
87
+ else:
88
+ if 'r' in mode:
89
+ # Open and close the file in case we're opening it for
90
+ # reading so that we can catch at least some errors in
91
+ # some cases early.
92
+ open(filename, mode).close()
93
+ self._f = None
94
+ self.should_close = True
95
+
96
+ def __getattr__(self, name):
97
+ return getattr(self.open(), name)
98
+
99
+ def __repr__(self):
100
+ if self._f is not None:
101
+ return repr(self._f)
102
+ return '<unopened file %r %s>' % (self.name, self.mode)
103
+
104
+ def open(self):
105
+ """Opens the file if it's not yet open. This call might fail with
106
+ a :exc:`FileError`. Not handling this error will produce an error
107
+ that Click shows.
108
+ """
109
+ if self._f is not None:
110
+ return self._f
111
+ try:
112
+ rv, self.should_close = open_stream(self.name, self.mode,
113
+ self.encoding,
114
+ self.errors,
115
+ atomic=self.atomic)
116
+ except (IOError, OSError) as e:
117
+ from .exceptions import FileError
118
+ raise FileError(self.name, hint=get_streerror(e))
119
+ self._f = rv
120
+ return rv
121
+
122
+ def close(self):
123
+ """Closes the underlying file, no matter what."""
124
+ if self._f is not None:
125
+ self._f.close()
126
+
127
+ def close_intelligently(self):
128
+ """This function only closes the file if it was opened by the lazy
129
+ file wrapper. For instance this will never close stdin.
130
+ """
131
+ if self.should_close:
132
+ self.close()
133
+
134
+ def __enter__(self):
135
+ return self
136
+
137
+ def __exit__(self, exc_type, exc_value, tb):
138
+ self.close_intelligently()
139
+
140
+ def __iter__(self):
141
+ self.open()
142
+ return iter(self._f)
143
+
144
+
145
+ class KeepOpenFile(object):
146
+
147
+ def __init__(self, file):
148
+ self._file = file
149
+
150
+ def __getattr__(self, name):
151
+ return getattr(self._file, name)
152
+
153
+ def __enter__(self):
154
+ return self
155
+
156
+ def __exit__(self, exc_type, exc_value, tb):
157
+ pass
158
+
159
+ def __repr__(self):
160
+ return repr(self._file)
161
+
162
+ def __iter__(self):
163
+ return iter(self._file)
164
+
165
+
166
+ def echo(message=None, file=None, nl=True, err=False, color=None):
167
+ """Prints a message plus a newline to the given file or stdout. On
168
+ first sight, this looks like the print function, but it has improved
169
+ support for handling Unicode and binary data that does not fail no
170
+ matter how badly configured the system is.
171
+
172
+ Primarily it means that you can print binary data as well as Unicode
173
+ data on both 2.x and 3.x to the given file in the most appropriate way
174
+ possible. This is a very carefree function as in that it will try its
175
+ best to not fail. As of Click 6.0 this includes support for unicode
176
+ output on the Windows console.
177
+
178
+ In addition to that, if `colorama`_ is installed, the echo function will
179
+ also support clever handling of ANSI codes. Essentially it will then
180
+ do the following:
181
+
182
+ - add transparent handling of ANSI color codes on Windows.
183
+ - hide ANSI codes automatically if the destination file is not a
184
+ terminal.
185
+
186
+ .. _colorama: http://pypi.python.org/pypi/colorama
187
+
188
+ .. versionchanged:: 6.0
189
+ As of Click 6.0 the echo function will properly support unicode
190
+ output on the windows console. Not that click does not modify
191
+ the interpreter in any way which means that `sys.stdout` or the
192
+ print statement or function will still not provide unicode support.
193
+
194
+ .. versionchanged:: 2.0
195
+ Starting with version 2.0 of Click, the echo function will work
196
+ with colorama if it's installed.
197
+
198
+ .. versionadded:: 3.0
199
+ The `err` parameter was added.
200
+
201
+ .. versionchanged:: 4.0
202
+ Added the `color` flag.
203
+
204
+ :param message: the message to print
205
+ :param file: the file to write to (defaults to ``stdout``)
206
+ :param err: if set to true the file defaults to ``stderr`` instead of
207
+ ``stdout``. This is faster and easier than calling
208
+ :func:`get_text_stderr` yourself.
209
+ :param nl: if set to `True` (the default) a newline is printed afterwards.
210
+ :param color: controls if the terminal supports ANSI colors or not. The
211
+ default is autodetection.
212
+ """
213
+ if file is None:
214
+ if err:
215
+ file = _default_text_stderr()
216
+ else:
217
+ file = _default_text_stdout()
218
+
219
+ # Convert non bytes/text into the native string type.
220
+ if message is not None and not isinstance(message, echo_native_types):
221
+ message = text_type(message)
222
+
223
+ if nl:
224
+ message = message or u''
225
+ if isinstance(message, text_type):
226
+ message += u'\n'
227
+ else:
228
+ message += b'\n'
229
+
230
+ # If there is a message, and we're in Python 3, and the value looks
231
+ # like bytes, we manually need to find the binary stream and write the
232
+ # message in there. This is done separately so that most stream
233
+ # types will work as you would expect. Eg: you can write to StringIO
234
+ # for other cases.
235
+ if message and not PY2 and is_bytes(message):
236
+ binary_file = _find_binary_writer(file)
237
+ if binary_file is not None:
238
+ file.flush()
239
+ binary_file.write(message)
240
+ binary_file.flush()
241
+ return
242
+
243
+ # ANSI-style support. If there is no message or we are dealing with
244
+ # bytes nothing is happening. If we are connected to a file we want
245
+ # to strip colors. If we are on windows we either wrap the stream
246
+ # to strip the color or we use the colorama support to translate the
247
+ # ansi codes to API calls.
248
+ if message and not is_bytes(message):
249
+ color = resolve_color_default(color)
250
+ if should_strip_ansi(file, color):
251
+ message = strip_ansi(message)
252
+ elif WIN:
253
+ if auto_wrap_for_ansi is not None:
254
+ file = auto_wrap_for_ansi(file)
255
+ elif not color:
256
+ message = strip_ansi(message)
257
+
258
+ if message:
259
+ file.write(message)
260
+ file.flush()
261
+
262
+
263
+ def get_binary_stream(name):
264
+ """Returns a system stream for byte processing. This essentially
265
+ returns the stream from the sys module with the given name but it
266
+ solves some compatibility issues between different Python versions.
267
+ Primarily this function is necessary for getting binary streams on
268
+ Python 3.
269
+
270
+ :param name: the name of the stream to open. Valid names are ``'stdin'``,
271
+ ``'stdout'`` and ``'stderr'``
272
+ """
273
+ opener = binary_streams.get(name)
274
+ if opener is None:
275
+ raise TypeError('Unknown standard stream %r' % name)
276
+ return opener()
277
+
278
+
279
+ def get_text_stream(name, encoding=None, errors='strict'):
280
+ """Returns a system stream for text processing. This usually returns
281
+ a wrapped stream around a binary stream returned from
282
+ :func:`get_binary_stream` but it also can take shortcuts on Python 3
283
+ for already correctly configured streams.
284
+
285
+ :param name: the name of the stream to open. Valid names are ``'stdin'``,
286
+ ``'stdout'`` and ``'stderr'``
287
+ :param encoding: overrides the detected default encoding.
288
+ :param errors: overrides the default error mode.
289
+ """
290
+ opener = text_streams.get(name)
291
+ if opener is None:
292
+ raise TypeError('Unknown standard stream %r' % name)
293
+ return opener(encoding, errors)
294
+
295
+
296
+ def open_file(filename, mode='r', encoding=None, errors='strict',
297
+ lazy=False, atomic=False):
298
+ """This is similar to how the :class:`File` works but for manual
299
+ usage. Files are opened non lazy by default. This can open regular
300
+ files as well as stdin/stdout if ``'-'`` is passed.
301
+
302
+ If stdin/stdout is returned the stream is wrapped so that the context
303
+ manager will not close the stream accidentally. This makes it possible
304
+ to always use the function like this without having to worry to
305
+ accidentally close a standard stream::
306
+
307
+ with open_file(filename) as f:
308
+ ...
309
+
310
+ .. versionadded:: 3.0
311
+
312
+ :param filename: the name of the file to open (or ``'-'`` for stdin/stdout).
313
+ :param mode: the mode in which to open the file.
314
+ :param encoding: the encoding to use.
315
+ :param errors: the error handling for this file.
316
+ :param lazy: can be flipped to true to open the file lazily.
317
+ :param atomic: in atomic mode writes go into a temporary file and it's
318
+ moved on close.
319
+ """
320
+ if lazy:
321
+ return LazyFile(filename, mode, encoding, errors, atomic=atomic)
322
+ f, should_close = open_stream(filename, mode, encoding, errors,
323
+ atomic=atomic)
324
+ if not should_close:
325
+ f = KeepOpenFile(f)
326
+ return f
327
+
328
+
329
+ def get_os_args():
330
+ """This returns the argument part of sys.argv in the most appropriate
331
+ form for processing. What this means is that this return value is in
332
+ a format that works for Click to process but does not necessarily
333
+ correspond well to what's actually standard for the interpreter.
334
+
335
+ On most environments the return value is ``sys.argv[:1]`` unchanged.
336
+ However if you are on Windows and running Python 2 the return value
337
+ will actually be a list of unicode strings instead because the
338
+ default behavior on that platform otherwise will not be able to
339
+ carry all possible values that sys.argv can have.
340
+
341
+ .. versionadded:: 6.0
342
+ """
343
+ # We can only extract the unicode argv if sys.argv has not been
344
+ # changed since the startup of the application.
345
+ if PY2 and WIN and _initial_argv_hash == _hash_py_argv():
346
+ return _get_windows_argv()
347
+ return sys.argv[1:]
348
+
349
+
350
+ def format_filename(filename, shorten=False):
351
+ """Formats a filename for user display. The main purpose of this
352
+ function is to ensure that the filename can be displayed at all. This
353
+ will decode the filename to unicode if necessary in a way that it will
354
+ not fail. Optionally, it can shorten the filename to not include the
355
+ full path to the filename.
356
+
357
+ :param filename: formats a filename for UI display. This will also convert
358
+ the filename into unicode without failing.
359
+ :param shorten: this optionally shortens the filename to strip of the
360
+ path that leads up to it.
361
+ """
362
+ if shorten:
363
+ filename = os.path.basename(filename)
364
+ return filename_to_ui(filename)
365
+
366
+
367
+ def get_app_dir(app_name, roaming=True, force_posix=False):
368
+ r"""Returns the config folder for the application. The default behavior
369
+ is to return whatever is most appropriate for the operating system.
370
+
371
+ To give you an idea, for an app called ``"Foo Bar"``, something like
372
+ the following folders could be returned:
373
+
374
+ Mac OS X:
375
+ ``~/Library/Application Support/Foo Bar``
376
+ Mac OS X (POSIX):
377
+ ``~/.foo-bar``
378
+ Unix:
379
+ ``~/.config/foo-bar``
380
+ Unix (POSIX):
381
+ ``~/.foo-bar``
382
+ Win XP (roaming):
383
+ ``C:\Documents and Settings\<user>\Local Settings\Application Data\Foo Bar``
384
+ Win XP (not roaming):
385
+ ``C:\Documents and Settings\<user>\Application Data\Foo Bar``
386
+ Win 7 (roaming):
387
+ ``C:\Users\<user>\AppData\Roaming\Foo Bar``
388
+ Win 7 (not roaming):
389
+ ``C:\Users\<user>\AppData\Local\Foo Bar``
390
+
391
+ .. versionadded:: 2.0
392
+
393
+ :param app_name: the application name. This should be properly capitalized
394
+ and can contain whitespace.
395
+ :param roaming: controls if the folder should be roaming or not on Windows.
396
+ Has no affect otherwise.
397
+ :param force_posix: if this is set to `True` then on any POSIX system the
398
+ folder will be stored in the home folder with a leading
399
+ dot instead of the XDG config home or darwin's
400
+ application support folder.
401
+ """
402
+ if WIN:
403
+ key = roaming and 'APPDATA' or 'LOCALAPPDATA'
404
+ folder = os.environ.get(key)
405
+ if folder is None:
406
+ folder = os.path.expanduser('~')
407
+ return os.path.join(folder, app_name)
408
+ if force_posix:
409
+ return os.path.join(os.path.expanduser('~/.' + _posixify(app_name)))
410
+ if sys.platform == 'darwin':
411
+ return os.path.join(os.path.expanduser(
412
+ '~/Library/Application Support'), app_name)
413
+ return os.path.join(
414
+ os.environ.get('XDG_CONFIG_HOME', os.path.expanduser('~/.config')),
415
+ _posixify(app_name))
Binary file
@@ -0,0 +1,3 @@
1
+ UNKNOWN
2
+
3
+
@@ -0,0 +1 @@
1
+ pip
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.0
2
+ Name: click
3
+ Version: 6.6
4
+ Summary: A simple wrapper around optparse for powerful command line utilities.
5
+ Home-page: http://github.com/mitsuhiko/click
6
+ Author: Armin Ronacher
7
+ Author-email: armin.ronacher@active-4.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+ Classifier: License :: OSI Approved :: BSD License
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3
13
+
14
+ UNKNOWN
15
+
16
+
@@ -0,0 +1,41 @@
1
+ click/__init__.py,sha256=-BDiJ4G3FXy1nn7Lt9UTIYdKb7SZTHnTm9yv2WQbHm0,2858
2
+ click/_bashcomplete.py,sha256=J8L3TvE23YVicEf5LQdiN5pCS3aAquP8D8897Jp_PvE,2423
3
+ click/_compat.py,sha256=xP-n7Tkuof1I6aEzcR6A88vusa-Lu6gpkPxnO-KY0pA,20706
4
+ click/_termui_impl.py,sha256=BbBPaw2nDEmNYgjBl_JlxUOSAzFexO0jL3z0OY-Z6BM,16377
5
+ click/_textwrap.py,sha256=gwS4m7bdQiJnzaDG8osFcRb-5vn4t4l2qSCy-5csCEc,1198
6
+ click/_unicodefun.py,sha256=vK1_Y_d29nxYhE7_QF8y8-DLjG_fYDhiT-LlcmiHVeE,4265
7
+ click/_winconsole.py,sha256=MzG46DEYPoRyx4SO7EIhFuFZHESgooAfJLIukbB6p5c,7790
8
+ click/core.py,sha256=PFAK6hjAiM8fcXxdHNwaDKINSoHYCYfLV8n9TdodYS4,70085
9
+ click/decorators.py,sha256=y7CX2needh8iRWafj-QS_hGQFsN24eyXAhx5Y2ATwas,10941
10
+ click/exceptions.py,sha256=rOa0pP3PbSy0_AAPOW9irBEM8AJ3BySN-4z2VUwFVo4,6788
11
+ click/formatting.py,sha256=eh-cypTUAhpI3HD-K4ZpR3vCiURIO62xXvKkR3tNUTM,8889
12
+ click/globals.py,sha256=PAgnKvGxq4YuEIldw3lgYOGBLYwsyxnm1IByBX3BFXo,1515
13
+ click/parser.py,sha256=i01xgYuIA6AwQWEXjshwHSwnTR3gUep4FxJIfyW4ta4,15510
14
+ click/termui.py,sha256=Bp99MSWQtyoWe1_7HggDmA77n--3KLxu7NsZMFMaCUo,21008
15
+ click/testing.py,sha256=LjWcVtxA5vMdWx5ev7KSjU4vcTlxZiSDrP7tOV1nCxk,11004
16
+ click/types.py,sha256=ZGb2lmFs5Vwd9loTRIMbGcqhPVOql8mGoBhWBRT6V4E,18864
17
+ click/utils.py,sha256=1jalPlkUU28JReTEQeeSFtbJd-SirYWBNfjtELBKzT4,14916
18
+ click-6.6.dist-info/DESCRIPTION.rst,sha256=OCTuuN6LcWulhHS3d5rfjdsQtW22n7HENFRh6jC6ego,10
19
+ click-6.6.dist-info/METADATA,sha256=gYQxaGWBuXfQy0NGVARhka10cSm9b_6XF6WeD7k3_Rg,424
20
+ click-6.6.dist-info/RECORD,,
21
+ click-6.6.dist-info/WHEEL,sha256=5wvfB7GvgZAbKBSE9uX9Zbi6LCL-_KgezgHblXhCRnM,113
22
+ click-6.6.dist-info/metadata.json,sha256=PPuEJ9F8PnqBu09_puW2CXDhF0bQ76T8QARolfexOKg,571
23
+ click-6.6.dist-info/top_level.txt,sha256=J1ZQogalYS4pphY_lPECoNMfw0HzTSrZglC4Yfwo4xA,6
24
+ click-6.6.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
25
+ click/exceptions.pyc,,
26
+ click/_unicodefun.pyc,,
27
+ click/_termui_impl.pyc,,
28
+ click/_compat.pyc,,
29
+ click/_textwrap.pyc,,
30
+ click/_winconsole.pyc,,
31
+ click/decorators.pyc,,
32
+ click/parser.pyc,,
33
+ click/testing.pyc,,
34
+ click/utils.pyc,,
35
+ click/_bashcomplete.pyc,,
36
+ click/types.pyc,,
37
+ click/termui.pyc,,
38
+ click/core.pyc,,
39
+ click/formatting.pyc,,
40
+ click/__init__.pyc,,
41
+ click/globals.pyc,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.30.0.a0)
3
+ Root-Is-Purelib: true
4
+ Tag: py2-none-any
5
+ Tag: py3-none-any
6
+
@@ -0,0 +1 @@
1
+ {"classifiers": ["License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 3"], "extensions": {"python.details": {"contacts": [{"email": "armin.ronacher@active-4.com", "name": "Armin Ronacher", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "http://github.com/mitsuhiko/click"}}}, "generator": "bdist_wheel (0.30.0.a0)", "metadata_version": "2.0", "name": "click", "summary": "A simple wrapper around optparse for powerful command line utilities.", "version": "6.6"}
@@ -0,0 +1 @@
1
+ click
@@ -0,0 +1,5 @@
1
+ """Run the EasyInstall command"""
2
+
3
+ if __name__ == '__main__':
4
+ from setuptools.command.easy_install import main
5
+ main()
Binary file
@@ -0,0 +1,39 @@
1
+ pip
2
+ ===
3
+
4
+ The `PyPA recommended
5
+ <https://packaging.python.org/en/latest/current/>`_
6
+ tool for installing Python packages.
7
+
8
+ * `Installation <https://pip.pypa.io/en/stable/installing.html>`_
9
+ * `Documentation <https://pip.pypa.io/>`_
10
+ * `Changelog <https://pip.pypa.io/en/stable/news.html>`_
11
+ * `Github Page <https://github.com/pypa/pip>`_
12
+ * `Issue Tracking <https://github.com/pypa/pip/issues>`_
13
+ * `User mailing list <http://groups.google.com/group/python-virtualenv>`_
14
+ * `Dev mailing list <http://groups.google.com/group/pypa-dev>`_
15
+ * User IRC: #pypa on Freenode.
16
+ * Dev IRC: #pypa-dev on Freenode.
17
+
18
+
19
+ .. image:: https://img.shields.io/pypi/v/pip.svg
20
+ :target: https://pypi.python.org/pypi/pip
21
+
22
+ .. image:: https://img.shields.io/travis/pypa/pip/master.svg
23
+ :target: http://travis-ci.org/pypa/pip
24
+
25
+ .. image:: https://img.shields.io/appveyor/ci/pypa/pip.svg
26
+ :target: https://ci.appveyor.com/project/pypa/pip/history
27
+
28
+ .. image:: https://readthedocs.org/projects/pip/badge/?version=stable
29
+ :target: https://pip.pypa.io/en/stable
30
+
31
+ Code of Conduct
32
+ ---------------
33
+
34
+ Everyone interacting in the pip project's codebases, issue trackers, chat
35
+ rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_.
36
+
37
+ .. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/
38
+
39
+
@@ -0,0 +1 @@
1
+ pip
@@ -0,0 +1,69 @@
1
+ Metadata-Version: 2.0
2
+ Name: pip
3
+ Version: 9.0.1
4
+ Summary: The PyPA recommended tool for installing Python packages.
5
+ Home-page: https://pip.pypa.io/
6
+ Author: The pip developers
7
+ Author-email: python-virtualenv@groups.google.com
8
+ License: MIT
9
+ Keywords: easy_install distutils setuptools egg virtualenv
10
+ Platform: UNKNOWN
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Topic :: Software Development :: Build Tools
15
+ Classifier: Programming Language :: Python :: 2
16
+ Classifier: Programming Language :: Python :: 2.6
17
+ Classifier: Programming Language :: Python :: 2.7
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.3
20
+ Classifier: Programming Language :: Python :: 3.4
21
+ Classifier: Programming Language :: Python :: 3.5
22
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
23
+ Requires-Python: >=2.6,!=3.0.*,!=3.1.*,!=3.2.*
24
+ Provides-Extra: testing
25
+ Requires-Dist: mock; extra == 'testing'
26
+ Requires-Dist: pretend; extra == 'testing'
27
+ Requires-Dist: pytest; extra == 'testing'
28
+ Requires-Dist: scripttest (>=1.3); extra == 'testing'
29
+ Requires-Dist: virtualenv (>=1.10); extra == 'testing'
30
+
31
+ pip
32
+ ===
33
+
34
+ The `PyPA recommended
35
+ <https://packaging.python.org/en/latest/current/>`_
36
+ tool for installing Python packages.
37
+
38
+ * `Installation <https://pip.pypa.io/en/stable/installing.html>`_
39
+ * `Documentation <https://pip.pypa.io/>`_
40
+ * `Changelog <https://pip.pypa.io/en/stable/news.html>`_
41
+ * `Github Page <https://github.com/pypa/pip>`_
42
+ * `Issue Tracking <https://github.com/pypa/pip/issues>`_
43
+ * `User mailing list <http://groups.google.com/group/python-virtualenv>`_
44
+ * `Dev mailing list <http://groups.google.com/group/pypa-dev>`_
45
+ * User IRC: #pypa on Freenode.
46
+ * Dev IRC: #pypa-dev on Freenode.
47
+
48
+
49
+ .. image:: https://img.shields.io/pypi/v/pip.svg
50
+ :target: https://pypi.python.org/pypi/pip
51
+
52
+ .. image:: https://img.shields.io/travis/pypa/pip/master.svg
53
+ :target: http://travis-ci.org/pypa/pip
54
+
55
+ .. image:: https://img.shields.io/appveyor/ci/pypa/pip.svg
56
+ :target: https://ci.appveyor.com/project/pypa/pip/history
57
+
58
+ .. image:: https://readthedocs.org/projects/pip/badge/?version=stable
59
+ :target: https://pip.pypa.io/en/stable
60
+
61
+ Code of Conduct
62
+ ---------------
63
+
64
+ Everyone interacting in the pip project's codebases, issue trackers, chat
65
+ rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_.
66
+
67
+ .. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/
68
+
69
+