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,272 @@
1
+ Metadata-Version: 2.0
2
+ Name: setuptools
3
+ Version: 28.8.0
4
+ Summary: Easily download, build, install, upgrade, and uninstall Python packages
5
+ Home-page: https://github.com/pypa/setuptools
6
+ Author: Python Packaging Authority
7
+ Author-email: distutils-sig@python.org
8
+ License: UNKNOWN
9
+ Keywords: CPAN PyPI distutils eggs package management
10
+ Platform: UNKNOWN
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 2.6
16
+ Classifier: Programming Language :: Python :: 2.7
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.3
19
+ Classifier: Programming Language :: Python :: 3.4
20
+ Classifier: Programming Language :: Python :: 3.5
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Classifier: Topic :: System :: Archiving :: Packaging
23
+ Classifier: Topic :: System :: Systems Administration
24
+ Classifier: Topic :: Utilities
25
+ Provides-Extra: certs
26
+ Requires-Dist: certifi (==2016.9.26); extra == 'certs'
27
+ Provides-Extra: ssl
28
+ Requires-Dist: wincertstore (==0.2); sys_platform=='win32' and extra == 'ssl'
29
+
30
+ ===============================
31
+ Installing and Using Setuptools
32
+ ===============================
33
+
34
+ .. contents:: **Table of Contents**
35
+
36
+
37
+ .. image:: https://setuptools.readthedocs.io/en/latest/?badge=latest
38
+ :target: https://setuptools.readthedocs.io
39
+
40
+ -------------------------
41
+ Installation Instructions
42
+ -------------------------
43
+
44
+ The recommended way to bootstrap setuptools on any system is to download
45
+ `ez_setup.py`_ and run it using the target Python environment. Different
46
+ operating systems have different recommended techniques to accomplish this
47
+ basic routine, so below are some examples to get you started.
48
+
49
+ Setuptools requires Python 2.6 or later. To install setuptools
50
+ on Python 2.4 or Python 2.5, use the `bootstrap script for Setuptools 1.x
51
+ <https://raw.githubusercontent.com/pypa/setuptools/bootstrap-py24/ez_setup.py>`_.
52
+
53
+ The link provided to ez_setup.py is a bookmark to bootstrap script for the
54
+ latest known stable release.
55
+
56
+ .. _ez_setup.py: https://bootstrap.pypa.io/ez_setup.py
57
+
58
+ Windows (Powershell 3 or later)
59
+ ===============================
60
+
61
+ For best results, uninstall previous versions FIRST (see `Uninstalling`_).
62
+
63
+ Using Windows 8 (which includes PowerShell 3) or earlier versions of Windows
64
+ with PowerShell 3 installed, it's possible to install with one simple
65
+ Powershell command. Start up Powershell and paste this command::
66
+
67
+ > (Invoke-WebRequest https://bootstrap.pypa.io/ez_setup.py).Content | python -
68
+
69
+ .. image:: https://badges.gitter.im/pypa/setuptools.svg
70
+ :alt: Join the chat at https://gitter.im/pypa/setuptools
71
+ :target: https://gitter.im/pypa/setuptools?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
72
+
73
+ You must start the Powershell with Administrative privileges or you may choose
74
+ to install a user-local installation::
75
+
76
+ > (Invoke-WebRequest https://bootstrap.pypa.io/ez_setup.py).Content | python - --user
77
+
78
+ If you have Python 3.3 or later, you can use the ``py`` command to install to
79
+ different Python versions. For example, to install to Python 3.3 if you have
80
+ Python 2.7 installed::
81
+
82
+ > (Invoke-WebRequest https://bootstrap.pypa.io/ez_setup.py).Content | py -3 -
83
+
84
+ The recommended way to install setuptools on Windows is to download
85
+ `ez_setup.py`_ and run it. The script will download the appropriate
86
+ distribution file and install it for you.
87
+
88
+ Once installation is complete, you will find an ``easy_install`` program in
89
+ your Python ``Scripts`` subdirectory. For simple invocation and best results,
90
+ add this directory to your ``PATH`` environment variable, if it is not already
91
+ present. If you did a user-local install, the ``Scripts`` subdirectory is
92
+ ``$env:APPDATA\Python\Scripts``.
93
+
94
+
95
+ Windows (simplified)
96
+ ====================
97
+
98
+ For Windows without PowerShell 3 or for installation without a command-line,
99
+ download `ez_setup.py`_ using your preferred web browser or other technique
100
+ and "run" that file.
101
+
102
+
103
+ Unix (wget)
104
+ ===========
105
+
106
+ Most Linux distributions come with wget.
107
+
108
+ Download `ez_setup.py`_ and run it using the target Python version. The script
109
+ will download the appropriate version and install it for you::
110
+
111
+ > wget https://bootstrap.pypa.io/ez_setup.py -O - | python
112
+
113
+ Note that you will may need to invoke the command with superuser privileges to
114
+ install to the system Python::
115
+
116
+ > wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python
117
+
118
+ Alternatively, Setuptools may be installed to a user-local path::
119
+
120
+ > wget https://bootstrap.pypa.io/ez_setup.py -O - | python - --user
121
+
122
+ Note that on some older systems (noted on Debian 6 and CentOS 5 installations),
123
+ `wget` may refuse to download `ez_setup.py`, complaining that the certificate common name `*.c.ssl.fastly.net`
124
+ does not match the host name `bootstrap.pypa.io`. In addition, the `ez_setup.py` script may then encounter similar problems using
125
+ `wget` internally to download `setuptools-x.y.zip`, complaining that the certificate common name of `www.python.org` does not match the
126
+ host name `pypi.python.org`. Those are known issues, related to a bug in the older versions of `wget`
127
+ (see `Issue 59 <https://bitbucket.org/pypa/pypi/issue/59#comment-5881915>`_). If you happen to encounter them,
128
+ install Setuptools as follows::
129
+
130
+ > wget --no-check-certificate https://bootstrap.pypa.io/ez_setup.py
131
+ > python ez_setup.py --insecure
132
+
133
+
134
+ Unix including Mac OS X (curl)
135
+ ==============================
136
+
137
+ If your system has curl installed, follow the ``wget`` instructions but
138
+ replace ``wget`` with ``curl`` and ``-O`` with ``-o``. For example::
139
+
140
+ > curl https://bootstrap.pypa.io/ez_setup.py -o - | python
141
+
142
+
143
+ Advanced Installation
144
+ =====================
145
+
146
+ For more advanced installation options, such as installing to custom
147
+ locations or prefixes, download and extract the source
148
+ tarball from `Setuptools on PyPI <https://pypi.python.org/pypi/setuptools>`_
149
+ and run setup.py with any supported distutils and Setuptools options.
150
+ For example::
151
+
152
+ setuptools-x.x$ python setup.py install --prefix=/opt/setuptools
153
+
154
+ Use ``--help`` to get a full options list, but we recommend consulting
155
+ the `EasyInstall manual`_ for detailed instructions, especially `the section
156
+ on custom installation locations`_.
157
+
158
+ .. _EasyInstall manual: https://pythonhosted.org/setuptools/EasyInstall
159
+ .. _the section on custom installation locations: https://pythonhosted.org/setuptools/EasyInstall#custom-installation-locations
160
+
161
+
162
+ Downloads
163
+ =========
164
+
165
+ All setuptools downloads can be found at `the project's home page in the Python
166
+ Package Index`_. Scroll to the very bottom of the page to find the links.
167
+
168
+ .. _the project's home page in the Python Package Index: https://pypi.python.org/pypi/setuptools
169
+
170
+ In addition to the PyPI downloads, the development version of ``setuptools``
171
+ is available from the `Bitbucket repo`_, and in-development versions of the
172
+ `0.6 branch`_ are available as well.
173
+
174
+ .. _Bitbucket repo: https://bitbucket.org/pypa/setuptools/get/default.tar.gz#egg=setuptools-dev
175
+ .. _0.6 branch: http://svn.python.org/projects/sandbox/branches/setuptools-0.6/#egg=setuptools-dev06
176
+
177
+ Uninstalling
178
+ ============
179
+
180
+ On Windows, if Setuptools was installed using an ``.exe`` or ``.msi``
181
+ installer, simply use the uninstall feature of "Add/Remove Programs" in the
182
+ Control Panel.
183
+
184
+ Otherwise, to uninstall Setuptools or Distribute, regardless of the Python
185
+ version, delete all ``setuptools*`` and ``distribute*`` files and
186
+ directories from your system's ``site-packages`` directory
187
+ (and any other ``sys.path`` directories) FIRST.
188
+
189
+ If you are upgrading or otherwise plan to re-install Setuptools or Distribute,
190
+ nothing further needs to be done. If you want to completely remove Setuptools,
191
+ you may also want to remove the 'easy_install' and 'easy_install-x.x' scripts
192
+ and associated executables installed to the Python scripts directory.
193
+
194
+ --------------------------------
195
+ Using Setuptools and EasyInstall
196
+ --------------------------------
197
+
198
+ Here are some of the available manuals, tutorials, and other resources for
199
+ learning about Setuptools, Python Eggs, and EasyInstall:
200
+
201
+ * `The EasyInstall user's guide and reference manual`_
202
+ * `The setuptools Developer's Guide`_
203
+ * `The pkg_resources API reference`_
204
+ * `The Internal Structure of Python Eggs`_
205
+
206
+ Questions, comments, and bug reports should be directed to the `distutils-sig
207
+ mailing list`_. If you have written (or know of) any tutorials, documentation,
208
+ plug-ins, or other resources for setuptools users, please let us know about
209
+ them there, so this reference list can be updated. If you have working,
210
+ *tested* patches to correct problems or add features, you may submit them to
211
+ the `setuptools bug tracker`_.
212
+
213
+ .. _setuptools bug tracker: https://github.com/pypa/setuptools/issues
214
+ .. _The Internal Structure of Python Eggs: https://setuptools.readthedocs.io/en/latest/formats.html
215
+ .. _The setuptools Developer's Guide: https://setuptools.readthedocs.io/en/latest/developer-guide.html
216
+ .. _The pkg_resources API reference: https://setuptools.readthedocs.io/en/latest/pkg_resources.html
217
+ .. _The EasyInstall user's guide and reference manual: https://setuptools.readthedocs.io/en/latest/easy_install.html
218
+ .. _distutils-sig mailing list: http://mail.python.org/pipermail/distutils-sig/
219
+
220
+
221
+ -------
222
+ Credits
223
+ -------
224
+
225
+ * The original design for the ``.egg`` format and the ``pkg_resources`` API was
226
+ co-created by Phillip Eby and Bob Ippolito. Bob also implemented the first
227
+ version of ``pkg_resources``, and supplied the OS X operating system version
228
+ compatibility algorithm.
229
+
230
+ * Ian Bicking implemented many early "creature comfort" features of
231
+ easy_install, including support for downloading via Sourceforge and
232
+ Subversion repositories. Ian's comments on the Web-SIG about WSGI
233
+ application deployment also inspired the concept of "entry points" in eggs,
234
+ and he has given talks at PyCon and elsewhere to inform and educate the
235
+ community about eggs and setuptools.
236
+
237
+ * Jim Fulton contributed time and effort to build automated tests of various
238
+ aspects of ``easy_install``, and supplied the doctests for the command-line
239
+ ``.exe`` wrappers on Windows.
240
+
241
+ * Phillip J. Eby is the seminal author of setuptools, and
242
+ first proposed the idea of an importable binary distribution format for
243
+ Python application plug-ins.
244
+
245
+ * Significant parts of the implementation of setuptools were funded by the Open
246
+ Source Applications Foundation, to provide a plug-in infrastructure for the
247
+ Chandler PIM application. In addition, many OSAF staffers (such as Mike
248
+ "Code Bear" Taylor) contributed their time and stress as guinea pigs for the
249
+ use of eggs and setuptools, even before eggs were "cool". (Thanks, guys!)
250
+
251
+ * Tarek Ziadé is the principal author of the Distribute fork, which
252
+ re-invigorated the community on the project, encouraged renewed innovation,
253
+ and addressed many defects.
254
+
255
+ * Since the merge with Distribute, Jason R. Coombs is the
256
+ maintainer of setuptools. The project is maintained in coordination with
257
+ the Python Packaging Authority (PyPA) and the larger Python community.
258
+
259
+ .. _files:
260
+
261
+
262
+ ---------------
263
+ Code of Conduct
264
+ ---------------
265
+
266
+ Everyone interacting in the setuptools project's codebases, issue trackers,
267
+ chat rooms, and mailing lists is expected to follow the
268
+ `PyPA Code of Conduct`_.
269
+
270
+ .. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/
271
+
272
+
@@ -0,0 +1,143 @@
1
+ easy_install.py,sha256=MDC9vt5AxDsXX5qcKlBz2TnW6Tpuv_AobnfhCJ9X3PM,126
2
+ pkg_resources/__init__.py,sha256=Z_i79ylo01fXF7p2lnMG7Ov4fLu0O-HLX-3JHMk0FCI,103301
3
+ pkg_resources/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ pkg_resources/_vendor/appdirs.py,sha256=tgGaL0m4Jo2VeuGfoOOifLv7a7oUEJu2n1vRkqoPw-0,22374
5
+ pkg_resources/_vendor/pyparsing.py,sha256=PifeLY3-WhIcBVzLtv0U4T_pwDtPruBhBCkg5vLqa28,229867
6
+ pkg_resources/_vendor/six.py,sha256=A6hdJZVjI3t_geebZ9BzUvwRrIXo0lfwzQlM2LcKyas,30098
7
+ pkg_resources/_vendor/packaging/__about__.py,sha256=E9KR5UJ_8U9K-R1mScu6FmkXtbnlFEEFjEXJp-7LxNU,720
8
+ pkg_resources/_vendor/packaging/__init__.py,sha256=_vNac5TrzwsrzbOFIbF-5cHqc_Y2aPT2D7zrIR06BOo,513
9
+ pkg_resources/_vendor/packaging/_compat.py,sha256=Vi_A0rAQeHbU-a9X0tt1yQm9RqkgQbDSxzRw8WlU9kA,860
10
+ pkg_resources/_vendor/packaging/_structures.py,sha256=RImECJ4c_wTlaTYYwZYLHEiebDMaAJmK1oPARhw1T5o,1416
11
+ pkg_resources/_vendor/packaging/markers.py,sha256=ndShKOQb_OgpQkFju6LR-2msB1La5u5iAfD5MIqXE4c,7939
12
+ pkg_resources/_vendor/packaging/requirements.py,sha256=SikL2UynbsT0qtY9ltqngndha_sfo0w6XGFhAhoSoaQ,4355
13
+ pkg_resources/_vendor/packaging/specifiers.py,sha256=SAMRerzO3fK2IkFZCaZkuwZaL_EGqHNOz4pni4vhnN0,28025
14
+ pkg_resources/_vendor/packaging/utils.py,sha256=3m6WvPm6NNxE8rkTGmn0r75B_GZSGg7ikafxHsBN1WA,421
15
+ pkg_resources/_vendor/packaging/version.py,sha256=OwGnxYfr2ghNzYx59qWIBkrK3SnB6n-Zfd1XaLpnnM0,11556
16
+ pkg_resources/extern/__init__.py,sha256=JUtlHHvlxHSNuB4pWqNjcx7n6kG-fwXg7qmJ2zNJlIY,2487
17
+ setuptools/__init__.py,sha256=hW5vya8Yp46AiWmYcALuQbGI7148nQSYVLsEIJLet54,5050
18
+ setuptools/archive_util.py,sha256=Z58-gbZQ0j92UJy7X7uZevwI28JTVEXd__AjKy4aw78,6613
19
+ setuptools/cli-32.exe,sha256=dfEuovMNnA2HLa3jRfMPVi5tk4R7alCbpTvuxtCyw0Y,65536
20
+ setuptools/cli-64.exe,sha256=KLABu5pyrnokJCv6skjXZ6GsXeyYHGcqOUT3oHI3Xpo,74752
21
+ setuptools/cli.exe,sha256=dfEuovMNnA2HLa3jRfMPVi5tk4R7alCbpTvuxtCyw0Y,65536
22
+ setuptools/depends.py,sha256=h5tbRzianODRkECVsK4sLBbsOfpY1TGEnp9Zm0wg2To,6473
23
+ setuptools/dist.py,sha256=5WUqgcvehkRw97T8NpV66vwneVp77LI9zOmWkPvgHoE,37129
24
+ setuptools/extension.py,sha256=uc6nHI-MxwmNCNPbUiBnybSyqhpJqjbhvOQ-emdvt_E,1729
25
+ setuptools/glob.py,sha256=Y-fpv8wdHZzv9DPCaGACpMSBWJ6amq_1e0R_i8_el4w,5207
26
+ setuptools/gui-32.exe,sha256=XBr0bHMA6Hpz2s9s9Bzjl-PwXfa9nH4ie0rFn4V2kWA,65536
27
+ setuptools/gui-64.exe,sha256=aYKMhX1IJLn4ULHgWX0sE0yREUt6B3TEHf_jOw6yNyE,75264
28
+ setuptools/gui.exe,sha256=XBr0bHMA6Hpz2s9s9Bzjl-PwXfa9nH4ie0rFn4V2kWA,65536
29
+ setuptools/launch.py,sha256=sd7ejwhBocCDx_wG9rIs0OaZ8HtmmFU8ZC6IR_S0Lvg,787
30
+ setuptools/lib2to3_ex.py,sha256=t5e12hbR2pi9V4ezWDTB4JM-AISUnGOkmcnYHek3xjg,2013
31
+ setuptools/monkey.py,sha256=qHoZT9IgmFM-_yF7BjCoPtXg4DYF1H49t_1nLq7dPRo,5337
32
+ setuptools/msvc.py,sha256=6cKqwOxTH8pJNMrNyRLBGB6Efz2rxTTdQQJABUW-6WU,37091
33
+ setuptools/namespaces.py,sha256=I2YrskOZU2ctBS8jdFwAc9q4M8SxbOr0DsFLxxO7gfA,2648
34
+ setuptools/package_index.py,sha256=eYtVpQiaP_4RRFp8zsNbsvNGPAzyOUDM2Lf_q4hePcs,39947
35
+ setuptools/py26compat.py,sha256=VRGHC7z2gliR4_uICJsQNodUcNUzybpus3BrJkWbnK4,679
36
+ setuptools/py27compat.py,sha256=Yu8hW3y8Djps_IenCuz5xZ9OD9qQ-kmBIoVGVpWeQ5Y,330
37
+ setuptools/py31compat.py,sha256=qGRk3tefux8HbhNzhM0laR3mD8vhAZtffZgzLkBMXJs,1645
38
+ setuptools/sandbox.py,sha256=0aNeoJ2tCLhHmQZlx8DQPhuuhGt2690Q7PoGLz6KJ30,14324
39
+ setuptools/script (dev).tmpl,sha256=f7MR17dTkzaqkCMSVseyOCMVrPVSMdmTQsaB8cZzfuI,201
40
+ setuptools/script.tmpl,sha256=WGTt5piezO27c-Dbx6l5Q4T3Ff20A5z7872hv3aAhYY,138
41
+ setuptools/site-patch.py,sha256=BVt6yIrDMXJoflA5J6DJIcsJUfW_XEeVhOzelTTFDP4,2307
42
+ setuptools/ssl_support.py,sha256=qUzJ_2WeFWBVkGoN638qC42Uzs-Wvmb8cZub9gT1xuI,8131
43
+ setuptools/unicode_utils.py,sha256=NOiZ_5hD72A6w-4wVj8awHFM3n51Kmw1Ic_vx15XFqw,996
44
+ setuptools/version.py,sha256=fvr31nm9BOi4wvMhGVoU0VwmyGeeEAeF3fh33z84wx4,138
45
+ setuptools/windows_support.py,sha256=5GrfqSP2-dLGJoZTq2g6dCKkyQxxa2n5IQiXlJCoYEE,714
46
+ setuptools/command/__init__.py,sha256=FCLDWoQEGsNexQviqbeJ4MEYGYpYVbbwc7i-9gjzBkM,563
47
+ setuptools/command/alias.py,sha256=KjpE0sz_SDIHv3fpZcIQK-sCkJz-SrC6Gmug6b9Nkc8,2426
48
+ setuptools/command/bdist_egg.py,sha256=XDamu6-cfyYrqd67YGQ5gWo-0c8kuWqkPy1vYpfsAxw,17178
49
+ setuptools/command/bdist_rpm.py,sha256=B7l0TnzCGb-0nLlm6rS00jWLkojASwVmdhW2w5Qz_Ak,1508
50
+ setuptools/command/bdist_wininst.py,sha256=_6dz3lpB1tY200LxKPLM7qgwTCceOMgaWFF-jW2-pm0,637
51
+ setuptools/command/build_ext.py,sha256=dO89j-IC0dAjSty1sSZxvi0LSdkPGR_ZPXFuAAFDZj4,13049
52
+ setuptools/command/build_py.py,sha256=FwU7GNUnd2dT3yEtsTPsJBcl9a7loOcN6GB4uQ0W_IM,9596
53
+ setuptools/command/develop.py,sha256=cHScw5hhILsZM3pk-ddORnd51aLFIbi-4gRm3yTnS_k,7384
54
+ setuptools/command/easy_install.py,sha256=AlmasFuULxUXXgTcUhARle87a74rwStU5nSQn9Oakjw,85720
55
+ setuptools/command/egg_info.py,sha256=f89c5gu9hWS89XheFLD0h0yONVmB4Z3FJR5hkAjn0SY,25110
56
+ setuptools/command/install.py,sha256=a0EZpL_A866KEdhicTGbuyD_TYl1sykfzdrri-zazT4,4683
57
+ setuptools/command/install_egg_info.py,sha256=bMgeIeRiXzQ4DAGPV1328kcjwQjHjOWU4FngAWLV78Q,2203
58
+ setuptools/command/install_lib.py,sha256=11mxf0Ch12NsuYwS8PHwXBRvyh671QAM4cTRh7epzG0,3840
59
+ setuptools/command/install_scripts.py,sha256=UD0rEZ6861mTYhIdzcsqKnUl8PozocXWl9VBQ1VTWnc,2439
60
+ setuptools/command/launcher manifest.xml,sha256=xlLbjWrB01tKC0-hlVkOKkiSPbzMml2eOPtJ_ucCnbE,628
61
+ setuptools/command/py36compat.py,sha256=SzjZcOxF7zdFUT47Zv2n7AM3H8koDys_0OpS-n9gIfc,4986
62
+ setuptools/command/register.py,sha256=bHlMm1qmBbSdahTOT8w6UhA-EgeQIz7p6cD-qOauaiI,270
63
+ setuptools/command/rotate.py,sha256=co5C1EkI7P0GGT6Tqz-T2SIj2LBJTZXYELpmao6d4KQ,2164
64
+ setuptools/command/saveopts.py,sha256=za7QCBcQimKKriWcoCcbhxPjUz30gSB74zuTL47xpP4,658
65
+ setuptools/command/sdist.py,sha256=cu745bayFZMEEGqzMg6kUbIYY9ZKXAbJjPBDXznNUyc,6650
66
+ setuptools/command/setopt.py,sha256=NTWDyx-gjDF-txf4dO577s7LOzHVoKR0Mq33rFxaRr8,5085
67
+ setuptools/command/test.py,sha256=IqkQ6rKdQsPh2BiLEXIx5FpzfGMpZttGl8dMa9utxVY,8535
68
+ setuptools/command/upload.py,sha256=6LbdC9NWFe19tb8u-6L3Hriei-nVgtqfO7tn0Si7yLo,1077
69
+ setuptools/command/upload_docs.py,sha256=0Ft5uo7Unnk4lJdZtIm6Nzq7hlyux-9zIYcXC8k_Czs,7275
70
+ setuptools/extern/__init__.py,sha256=ZtCLYQ8JTtOtm7SYoxekZw-UzY3TR50SRIUaeqr2ROk,131
71
+ setuptools-28.8.0.dist-info/DESCRIPTION.rst,sha256=UnjDOK_xBlHg-QN2JbfTbA55nmD_kStv89yxF9aOkqU,10257
72
+ setuptools-28.8.0.dist-info/METADATA,sha256=Xf6UtJ6jxpg-nF5OHBErvUwMGLz-4nizC7iwdYmOcGc,11486
73
+ setuptools-28.8.0.dist-info/RECORD,,
74
+ setuptools-28.8.0.dist-info/WHEEL,sha256=o2k-Qa-RMNIJmUdIc7KU6VWR_ErNRbWNlxDIpl7lm34,110
75
+ setuptools-28.8.0.dist-info/dependency_links.txt,sha256=HlkCFkoK5TbZ5EMLbLKYhLcY_E31kBWD8TqW2EgmatQ,239
76
+ setuptools-28.8.0.dist-info/entry_points.txt,sha256=zPeIHv66mpCraHdiLlHQjxKDe-6gFIepEbEIjCvu8x4,2885
77
+ setuptools-28.8.0.dist-info/metadata.json,sha256=EIv4nnlOffwLVnetEwhIkFs74vm5jfPJHsxZrjQyXFE,4614
78
+ setuptools-28.8.0.dist-info/top_level.txt,sha256=2HUXVVwA4Pff1xgTFr3GsTXXKaPaO6vlG6oNJ_4u4Tg,38
79
+ setuptools-28.8.0.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
80
+ /Users/kyle/Projects/cocode/static/cli/packages/venv/bin/easy_install,sha256=JBJmOIamtYaldv1ku8Kivq-hADaAudV9sVampGjPvA4,283
81
+ /Users/kyle/Projects/cocode/static/cli/packages/venv/bin/easy_install-2.7,sha256=JBJmOIamtYaldv1ku8Kivq-hADaAudV9sVampGjPvA4,283
82
+ /Users/kyle/Projects/cocode/static/cli/packages/venv/lib/python2.7/site-packages/setuptools-28.8.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
83
+ setuptools/ssl_support.pyc,,
84
+ setuptools/extern/__init__.pyc,,
85
+ setuptools/command/install_scripts.pyc,,
86
+ setuptools/unicode_utils.pyc,,
87
+ pkg_resources/_vendor/packaging/_compat.pyc,,
88
+ setuptools/msvc.pyc,,
89
+ setuptools/command/bdist_wininst.pyc,,
90
+ setuptools/command/upload.pyc,,
91
+ pkg_resources/_vendor/appdirs.pyc,,
92
+ pkg_resources/_vendor/packaging/_structures.pyc,,
93
+ setuptools/namespaces.pyc,,
94
+ pkg_resources/_vendor/six.pyc,,
95
+ setuptools/depends.pyc,,
96
+ setuptools/py26compat.pyc,,
97
+ setuptools/command/install_egg_info.pyc,,
98
+ setuptools/site-patch.pyc,,
99
+ setuptools/command/develop.pyc,,
100
+ setuptools/windows_support.pyc,,
101
+ setuptools/command/setopt.pyc,,
102
+ setuptools/extension.pyc,,
103
+ setuptools/command/bdist_egg.pyc,,
104
+ setuptools/py31compat.pyc,,
105
+ setuptools/command/sdist.pyc,,
106
+ setuptools/command/saveopts.pyc,,
107
+ pkg_resources/_vendor/packaging/version.pyc,,
108
+ setuptools/command/egg_info.pyc,,
109
+ pkg_resources/_vendor/packaging/__init__.pyc,,
110
+ setuptools/command/install.pyc,,
111
+ setuptools/command/alias.pyc,,
112
+ setuptools/__init__.pyc,,
113
+ setuptools/command/easy_install.pyc,,
114
+ setuptools/py27compat.pyc,,
115
+ pkg_resources/extern/__init__.pyc,,
116
+ setuptools/command/build_py.pyc,,
117
+ setuptools/command/test.pyc,,
118
+ setuptools/command/build_ext.pyc,,
119
+ setuptools/version.pyc,,
120
+ setuptools/command/py36compat.pyc,,
121
+ setuptools/dist.pyc,,
122
+ setuptools/command/bdist_rpm.pyc,,
123
+ pkg_resources/__init__.pyc,,
124
+ setuptools/command/__init__.pyc,,
125
+ setuptools/archive_util.pyc,,
126
+ pkg_resources/_vendor/packaging/__about__.pyc,,
127
+ setuptools/command/upload_docs.pyc,,
128
+ pkg_resources/_vendor/packaging/markers.pyc,,
129
+ setuptools/command/install_lib.pyc,,
130
+ setuptools/lib2to3_ex.pyc,,
131
+ setuptools/sandbox.pyc,,
132
+ pkg_resources/_vendor/packaging/specifiers.pyc,,
133
+ pkg_resources/_vendor/pyparsing.pyc,,
134
+ setuptools/glob.pyc,,
135
+ setuptools/command/rotate.pyc,,
136
+ easy_install.pyc,,
137
+ setuptools/package_index.pyc,,
138
+ pkg_resources/_vendor/packaging/utils.pyc,,
139
+ pkg_resources/_vendor/__init__.pyc,,
140
+ setuptools/monkey.pyc,,
141
+ setuptools/launch.pyc,,
142
+ pkg_resources/_vendor/packaging/requirements.pyc,,
143
+ setuptools/command/register.pyc,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.29.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py2-none-any
5
+ Tag: py3-none-any
6
+
@@ -0,0 +1,2 @@
1
+ https://files.pythonhosted.org/packages/source/c/certifi/certifi-2016.9.26.tar.gz#md5=baa81e951a29958563689d868ef1064d
2
+ https://files.pythonhosted.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2
@@ -0,0 +1,63 @@
1
+ [console_scripts]
2
+ easy_install = setuptools.command.easy_install:main
3
+ easy_install-3.5 = setuptools.command.easy_install:main
4
+
5
+ [distutils.commands]
6
+ alias = setuptools.command.alias:alias
7
+ bdist_egg = setuptools.command.bdist_egg:bdist_egg
8
+ bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm
9
+ bdist_wininst = setuptools.command.bdist_wininst:bdist_wininst
10
+ build_ext = setuptools.command.build_ext:build_ext
11
+ build_py = setuptools.command.build_py:build_py
12
+ develop = setuptools.command.develop:develop
13
+ easy_install = setuptools.command.easy_install:easy_install
14
+ egg_info = setuptools.command.egg_info:egg_info
15
+ install = setuptools.command.install:install
16
+ install_egg_info = setuptools.command.install_egg_info:install_egg_info
17
+ install_lib = setuptools.command.install_lib:install_lib
18
+ install_scripts = setuptools.command.install_scripts:install_scripts
19
+ register = setuptools.command.register:register
20
+ rotate = setuptools.command.rotate:rotate
21
+ saveopts = setuptools.command.saveopts:saveopts
22
+ sdist = setuptools.command.sdist:sdist
23
+ setopt = setuptools.command.setopt:setopt
24
+ test = setuptools.command.test:test
25
+ upload = setuptools.command.upload:upload
26
+ upload_docs = setuptools.command.upload_docs:upload_docs
27
+
28
+ [distutils.setup_keywords]
29
+ convert_2to3_doctests = setuptools.dist:assert_string_list
30
+ dependency_links = setuptools.dist:assert_string_list
31
+ eager_resources = setuptools.dist:assert_string_list
32
+ entry_points = setuptools.dist:check_entry_points
33
+ exclude_package_data = setuptools.dist:check_package_data
34
+ extras_require = setuptools.dist:check_extras
35
+ include_package_data = setuptools.dist:assert_bool
36
+ install_requires = setuptools.dist:check_requirements
37
+ namespace_packages = setuptools.dist:check_nsp
38
+ package_data = setuptools.dist:check_package_data
39
+ packages = setuptools.dist:check_packages
40
+ python_requires = setuptools.dist:check_specifier
41
+ setup_requires = setuptools.dist:check_requirements
42
+ test_loader = setuptools.dist:check_importable
43
+ test_runner = setuptools.dist:check_importable
44
+ test_suite = setuptools.dist:check_test_suite
45
+ tests_require = setuptools.dist:check_requirements
46
+ use_2to3 = setuptools.dist:assert_bool
47
+ use_2to3_exclude_fixers = setuptools.dist:assert_string_list
48
+ use_2to3_fixers = setuptools.dist:assert_string_list
49
+ zip_safe = setuptools.dist:assert_bool
50
+
51
+ [egg_info.writers]
52
+ PKG-INFO = setuptools.command.egg_info:write_pkg_info
53
+ dependency_links.txt = setuptools.command.egg_info:overwrite_arg
54
+ depends.txt = setuptools.command.egg_info:warn_depends_obsolete
55
+ eager_resources.txt = setuptools.command.egg_info:overwrite_arg
56
+ entry_points.txt = setuptools.command.egg_info:write_entries
57
+ namespace_packages.txt = setuptools.command.egg_info:overwrite_arg
58
+ requires.txt = setuptools.command.egg_info:write_requirements
59
+ top_level.txt = setuptools.command.egg_info:write_toplevel_names
60
+
61
+ [setuptools.installation]
62
+ eggsecutable = setuptools.command.easy_install:bootstrap
63
+
@@ -0,0 +1 @@
1
+ {"classifiers": ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Archiving :: Packaging", "Topic :: System :: Systems Administration", "Topic :: Utilities"], "extensions": {"python.commands": {"wrap_console": {"easy_install": "setuptools.command.easy_install:main", "easy_install-3.5": "setuptools.command.easy_install:main"}}, "python.details": {"contacts": [{"email": "distutils-sig@python.org", "name": "Python Packaging Authority", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://github.com/pypa/setuptools"}}, "python.exports": {"console_scripts": {"easy_install": "setuptools.command.easy_install:main", "easy_install-3.5": "setuptools.command.easy_install:main"}, "distutils.commands": {"alias": "setuptools.command.alias:alias", "bdist_egg": "setuptools.command.bdist_egg:bdist_egg", "bdist_rpm": "setuptools.command.bdist_rpm:bdist_rpm", "bdist_wininst": "setuptools.command.bdist_wininst:bdist_wininst", "build_ext": "setuptools.command.build_ext:build_ext", "build_py": "setuptools.command.build_py:build_py", "develop": "setuptools.command.develop:develop", "easy_install": "setuptools.command.easy_install:easy_install", "egg_info": "setuptools.command.egg_info:egg_info", "install": "setuptools.command.install:install", "install_egg_info": "setuptools.command.install_egg_info:install_egg_info", "install_lib": "setuptools.command.install_lib:install_lib", "install_scripts": "setuptools.command.install_scripts:install_scripts", "register": "setuptools.command.register:register", "rotate": "setuptools.command.rotate:rotate", "saveopts": "setuptools.command.saveopts:saveopts", "sdist": "setuptools.command.sdist:sdist", "setopt": "setuptools.command.setopt:setopt", "test": "setuptools.command.test:test", "upload": "setuptools.command.upload:upload", "upload_docs": "setuptools.command.upload_docs:upload_docs"}, "distutils.setup_keywords": {"convert_2to3_doctests": "setuptools.dist:assert_string_list", "dependency_links": "setuptools.dist:assert_string_list", "eager_resources": "setuptools.dist:assert_string_list", "entry_points": "setuptools.dist:check_entry_points", "exclude_package_data": "setuptools.dist:check_package_data", "extras_require": "setuptools.dist:check_extras", "include_package_data": "setuptools.dist:assert_bool", "install_requires": "setuptools.dist:check_requirements", "namespace_packages": "setuptools.dist:check_nsp", "package_data": "setuptools.dist:check_package_data", "packages": "setuptools.dist:check_packages", "python_requires": "setuptools.dist:check_specifier", "setup_requires": "setuptools.dist:check_requirements", "test_loader": "setuptools.dist:check_importable", "test_runner": "setuptools.dist:check_importable", "test_suite": "setuptools.dist:check_test_suite", "tests_require": "setuptools.dist:check_requirements", "use_2to3": "setuptools.dist:assert_bool", "use_2to3_exclude_fixers": "setuptools.dist:assert_string_list", "use_2to3_fixers": "setuptools.dist:assert_string_list", "zip_safe": "setuptools.dist:assert_bool"}, "egg_info.writers": {"PKG-INFO": "setuptools.command.egg_info:write_pkg_info", "dependency_links.txt": "setuptools.command.egg_info:overwrite_arg", "depends.txt": "setuptools.command.egg_info:warn_depends_obsolete", "eager_resources.txt": "setuptools.command.egg_info:overwrite_arg", "entry_points.txt": "setuptools.command.egg_info:write_entries", "namespace_packages.txt": "setuptools.command.egg_info:overwrite_arg", "requires.txt": "setuptools.command.egg_info:write_requirements", "top_level.txt": "setuptools.command.egg_info:write_toplevel_names"}, "setuptools.installation": {"eggsecutable": "setuptools.command.easy_install:bootstrap"}}}, "extras": ["certs", "ssl"], "generator": "bdist_wheel (0.29.0)", "keywords": ["CPAN", "PyPI", "distutils", "eggs", "package", "management"], "metadata_version": "2.0", "name": "setuptools", "run_requires": [{"extra": "certs", "requires": ["certifi (==2016.9.26)"]}, {"environment": "sys_platform=='win32'", "extra": "ssl", "requires": ["wincertstore (==0.2)"]}], "summary": "Easily download, build, install, upgrade, and uninstall Python packages", "version": "28.8.0"}
@@ -0,0 +1,3 @@
1
+ easy_install
2
+ pkg_resources
3
+ setuptools
File without changes
Binary file
File without changes
@@ -0,0 +1,63 @@
1
+
2
+ import unittest
3
+ from click.testing import CliRunner
4
+
5
+ from rigid.commands import cli
6
+
7
+ from ..utils import FakeServer
8
+
9
+
10
+ class AppsTests(unittest.TestCase):
11
+ def setUp(self):
12
+ super(AppsTests, self).setUp()
13
+ self.server = FakeServer()
14
+
15
+ def test_app_success(self):
16
+ self.server.status = 200
17
+ self.server.body = {
18
+ 'name': 'test',
19
+ 'web_url': 'http://test.rigidapp.com',
20
+ }
21
+
22
+ runner = CliRunner()
23
+ result = runner.invoke(cli, ['app', 'test'], env={'RIGID_API': self.server.url})
24
+ self.assertEqual(result.exit_code, 0)
25
+ self.assertEqual(result.output, 'test - http://test.rigidapp.com\n')
26
+
27
+ self.assertEqual(self.server.request['method'], 'GET')
28
+ self.assertEqual(self.server.request['path'], '/apps/test')
29
+
30
+ def test_app_create(self):
31
+ self.server.status = 201
32
+ self.server.body = {
33
+ 'name': 'test',
34
+ 'web_url': 'http://test.rigidapp.com',
35
+ }
36
+
37
+ runner = CliRunner()
38
+ result = runner.invoke(cli, ['app', 'test', '--create'], input='y\n', env={'RIGID_API': self.server.url})
39
+ self.assertEqual(result.exit_code, 0)
40
+ self.assertEqual(result.output, 'test (http://test.rigidapp.com) has been created.\n')
41
+
42
+ self.assertEqual(self.server.request['method'], 'POST')
43
+ self.assertEqual(self.server.request['path'], '/apps')
44
+
45
+ def test_app_delete_confirm(self):
46
+ self.server.status = 204
47
+
48
+ runner = CliRunner()
49
+ result = runner.invoke(cli, ['app', 'test', '--delete'], input='y\n', env={'RIGID_API': self.server.url})
50
+ self.assertEqual(result.exit_code, 0)
51
+ self.assertEqual(result.output, 'Are you sure you want to delete test? [y/N]: y\ntest has been deleted.\n')
52
+
53
+ self.assertEqual(self.server.request['method'], 'DELETE')
54
+ self.assertEqual(self.server.request['path'], '/apps/test')
55
+
56
+ def test_app_delete_no(self):
57
+ self.server.status = 204
58
+
59
+ runner = CliRunner()
60
+ result = runner.invoke(cli, ['app', 'test', '--delete'], input='n\n', env={'RIGID_API': self.server.url})
61
+ self.assertEqual(result.exit_code, 1)
62
+
63
+ self.assertEqual(len(self.server.requests), 0)
@@ -0,0 +1,27 @@
1
+ import unittest
2
+ from click.testing import CliRunner
3
+
4
+ from rigid.commands import cli
5
+
6
+ from ..utils import FakeServer
7
+
8
+
9
+ class AppsTests(unittest.TestCase):
10
+ def setUp(self):
11
+ super(AppsTests, self).setUp()
12
+ self.server = FakeServer()
13
+
14
+ def test_apps_success(self):
15
+ self.server.status = 200
16
+ self.server.body = [
17
+ {'name': 'test'},
18
+ {'name': 'palaver'},
19
+ ]
20
+
21
+ runner = CliRunner()
22
+ result = runner.invoke(cli, ['apps'], env={'RIGID_API': self.server.url})
23
+ self.assertEqual(result.exit_code, 0)
24
+ self.assertEqual(result.output, 'test\npalaver\n')
25
+
26
+ self.assertEqual(self.server.request['method'], 'GET')
27
+ self.assertEqual(self.server.request['path'], '/apps')