{ "info": { "author": "Tsuyoshi Hombashi", "author_email": "tsuyoshi.hombashi@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "License :: OSI Approved :: MIT License", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Build Tools" ], "description": ".. contents:: **cmakew**\n :backlinks: top\n :local:\n\n\nSummary\n==========\ncmakew is a CMake wrapper CLI tool.\n\n\n.. image:: https://badge.fury.io/py/cmakew.svg\n :target: https://badge.fury.io/py/cmakew\n :alt: PyPI package version\n\n.. image:: https://img.shields.io/pypi/pyversions/cmakew.svg\n :target: https://pypi.org/project/cmakew\n :alt: Supported Python versions\n\n\nExamples\n==========\nBuild googletest at Linux\n--------------------------\n\n.. code:: console\n\n $ wget -O - https://github.com/google/googletest/archive/release-1.8.1.tar.gz | tar zxf -\n $ cmakew googletest-release-1.8.1/\n [INFO] cmakew: -- The C compiler identification is GNU 7.3.0\n -- The CXX compiler identification is GNU 7.3.0\n -- Check for working C compiler: /usr/bin/cc\n -- Check for working C compiler: /usr/bin/cc -- works\n -- Detecting C compiler ABI info\n -- Detecting C compiler ABI info - done\n -- Detecting C compile features\n -- Detecting C compile features - done\n -- Check for working CXX compiler: /usr/bin/c++\n -- Check for working CXX compiler: /usr/bin/c++ -- works\n -- Detecting CXX compiler ABI info\n -- Detecting CXX compiler ABI info - done\n -- Detecting CXX compile features\n -- Detecting CXX compile features - done\n -- Found PythonInterp: /home/toor/.pyenv/versions/3.7.0/bin/python (found version \"3.7\")\n -- Looking for pthread.h\n -- Looking for pthread.h - found\n -- Looking for pthread_create\n -- Looking for pthread_create - not found\n -- Check if compiler accepts -pthread\n -- Check if compiler accepts -pthread - yes\n -- Found Threads: TRUE\n -- Configuring done\n -- Generating done\n -- Build files have been written to: /home/github/build\n\n [INFO] cmakew: Scanning dependencies of target gtest\n [ 12%] Building CXX object googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o\n [ 25%] Linking CXX static library libgtestd.a\n [ 25%] Built target gtest\n Scanning dependencies of target gtest_main\n [ 37%] Building CXX object googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o\n Scanning dependencies of target gmock\n [ 50%] Building CXX object googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o\n [ 62%] Linking CXX static library libgtest_maind.a\n [ 62%] Built target gtest_main\n [ 75%] Linking CXX static library libgmockd.a\n [ 75%] Built target gmock\n Scanning dependencies of target gmock_main\n [ 87%] Building CXX object googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o\n [100%] Linking CXX static library libgmock_maind.a\n [100%] Built target gmock_main\n\n\nOutput\n~~~~~~~~~~~~\n.. code:: console\n\n $ tree build/googlemock/ -L 2\n build/googlemock/\n \u251c\u2500\u2500 CMakeFiles\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 CMakeDirectoryInformation.cmake\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 gmock.dir\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 gmock_main.dir\n \u2502\u00a0\u00a0 \u2514\u2500\u2500 progress.marks\n \u251c\u2500\u2500 cmake_install.cmake\n \u251c\u2500\u2500 CTestTestfile.cmake\n \u251c\u2500\u2500 gtest\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 CMakeFiles\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 cmake_install.cmake\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 CTestTestfile.cmake\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 generated\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 libgtestd.a\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 libgtest_maind.a\n \u2502\u00a0\u00a0 \u2514\u2500\u2500 Makefile\n \u251c\u2500\u2500 libgmockd.a\n \u251c\u2500\u2500 libgmock_maind.a\n \u2514\u2500\u2500 Makefile\n\n 6 directories, 12 files\n\n\nInstallation\n============\nInstall from PyPI\n------------------------------\n::\n\n pip install cmakew\n\nInstall from PPA (for Ubuntu)\n------------------------------\n::\n\n sudo add-apt-repository ppa:thombashi/ppa\n sudo apt update\n sudo apt install cmakew\n\n\ncmakew help\n========================\n.. code:: console\n\n usage: cmakew [-h] [-V] [--build-dir BUILD_DIR]\n [--action {cmake,recmake,clean,build,rebuild}]\n [--cmake-options CMAKE_OPTIONS] [--build-type {Debug,Release}]\n [--generator GENERATOR] [--debug | --quiet]\n SOURCE_DIR_PATH\n\n A CLI tool for CMake and compiler wrapper.\n\n positional arguments:\n SOURCE_DIR_PATH relative path to the source directory.\n\n optional arguments:\n -h, --help show this help message and exit\n -V, --version show program's version number and exit\n --debug for debug print.\n --quiet suppress execution log messages.\n\n Directory Options:\n --build-dir BUILD_DIR\n relative path to the build output directory (defaults\n to 'build').\n\n Build Options:\n --action {cmake,recmake,clean,build,rebuild}\n cmake: execute CMake and exit. clean: delete existing\n build directory and exit. recmake: delete existing\n CMakeCache and execute CMake after that. build:\n execute MSBuild to Visual Studio solution files that\n created by cmake. rebuild: delete existing build\n directory and execute CMake and MSBuild after that.\n defaults to 'build'.\n\n CMake Options:\n --cmake-options CMAKE_OPTIONS\n path to the CMake options file. use \"{key :value,\n ...}\" to set specific parameters. defaults to\n cmake_options.json.\n --build-type {Debug,Release}\n defaults to Debug.\n --generator GENERATOR\n generator that passes to cmake. the default value\n decided by execution platform: (a) if executed at\n Windows and Visual Studio is installed in C: or D:\n drive, cmakew pass 'Visual Studio NN' as a generator\n to cmake. (b) \"Unix Makefiles\" otherwise\n\n Issue tracker: https://github.com/thombashi/cmakew/issues\n\n\nDependencies\n============\nPython 2.7+ or 3.5+\n\n- `logbook `__\n- `six `__\n- `subprocrunner `__\n- `typepy `__\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/thombashi/cmakew", "keywords": "cmake,build,Visual Studio", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "cmakew", "package_url": "https://pypi.org/project/cmakew/", "platform": "", "project_url": "https://pypi.org/project/cmakew/", "project_urls": { "Homepage": "https://github.com/thombashi/cmakew", "Source": "https://github.com/thombashi/cmakew", "Tracker": "https://github.com/thombashi/cmakew/issues" }, "release_url": "https://pypi.org/project/cmakew/0.2.0/", "requires_dist": [ "Logbook (<2.0.0,>=0.12.3)", "six (<2.0.0,>=1.10.0)", "subprocrunner (<1.0.0,>=0.17.0)", "typepy (<1.0.0,>=0.5.0)", "twine ; extra == 'build'", "wheel ; extra == 'build'", "releasecmd (<0.1.0,>=0.0.18) ; extra == 'release'" ], "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "summary": "cmakew is a CMake wrapper CLI tool.", "version": "0.2.0" }, "last_serial": 5227575, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "ec07fc21b025c93ff55960acbaa715fb", "sha256": "321d51cb1c018d62fd1beedf25134f906200e92117d18bb96d8148eb61eb105f" }, "downloads": -1, "filename": "cmakew-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ec07fc21b025c93ff55960acbaa715fb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12590, "upload_time": "2017-04-09T15:40:56", "url": "https://files.pythonhosted.org/packages/8d/2c/7c0ace98be23ee9e4dc7ca290d5c485a51512375fd5fbef663f23c978c04/cmakew-0.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d1df4388b1b51abc0dd33a90d601510a", "sha256": "c9b1ba79c5f1a9a90e5a5f83df72b69add0ffbd2a32ff137c1588347b4a74077" }, "downloads": -1, "filename": "cmakew-0.0.1.tar.gz", "has_sig": false, "md5_digest": "d1df4388b1b51abc0dd33a90d601510a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9473, "upload_time": "2017-04-09T15:40:52", "url": "https://files.pythonhosted.org/packages/16/3f/7b491a04074529dfc95e9f864b222e3f872c0f4fe5c179b074ca0ab4db09/cmakew-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "c3f7102c31aa8ff520771cf554409a5a", "sha256": "572c5cae0d46a652ce049a40984e2f20b59c8ef5f6322368782ab0c975b38d70" }, "downloads": -1, "filename": "cmakew-0.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c3f7102c31aa8ff520771cf554409a5a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12635, "upload_time": "2017-04-18T08:08:41", "url": "https://files.pythonhosted.org/packages/76/7c/fdf29235504f193e48dbff23138053346f507935ddf2ddfd9ed741230d49/cmakew-0.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7c4c923d618588a81388c5a4ab83822f", "sha256": "0ade8ed978d61e135183f80e0e8342fdd56387ae520edf02cc49610b182f7cfb" }, "downloads": -1, "filename": "cmakew-0.0.2.tar.gz", "has_sig": false, "md5_digest": "7c4c923d618588a81388c5a4ab83822f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9483, "upload_time": "2017-04-18T08:08:37", "url": "https://files.pythonhosted.org/packages/44/cc/24bf76eaa27a208bc0ed8f2d81b4ee32b1ad378e89daf1f57ae6b0db11dc/cmakew-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "2f91ac2f666ebd7272427e5104e1aef7", "sha256": "8de1f5e06e56dc78753f654c70879aca74197df179cbdd651db5fd218a6dc625" }, "downloads": -1, "filename": "cmakew-0.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2f91ac2f666ebd7272427e5104e1aef7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12724, "upload_time": "2017-05-14T01:08:47", "url": "https://files.pythonhosted.org/packages/2f/24/33228b2ee97ba66acecb7456906734c7c2040940cad264f2b4063a42c228/cmakew-0.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c00e21ad5a5882414e2e650aaab62b32", "sha256": "68a9c93d756be2fdb608d4089fe7f4fa4d8aedc56bd4d0b1db9780a71040d269" }, "downloads": -1, "filename": "cmakew-0.0.3.tar.gz", "has_sig": false, "md5_digest": "c00e21ad5a5882414e2e650aaab62b32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9574, "upload_time": "2017-05-14T01:08:44", "url": "https://files.pythonhosted.org/packages/6e/8d/abd30252f14e157564e748a48a8942906111c1e7ab3e810381068305b677/cmakew-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "7926124798bf8b29b08297d8a5231497", "sha256": "d577e310ca6b8c31d4328e7ffc829a69255b860a86a519a7c3f34b3e9b175661" }, "downloads": -1, "filename": "cmakew-0.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7926124798bf8b29b08297d8a5231497", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12712, "upload_time": "2017-07-08T08:21:12", "url": "https://files.pythonhosted.org/packages/ad/9e/290ba3cc0e0298b6845f97b2ff7d8d1034aff35a836e4ab5e9090b39502f/cmakew-0.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "babe6443b21135dbc911700323d6424a", "sha256": "2cf63dcb36b02325c12d5529a75662ceaa9751909e311ebdf13372ae398bb7e9" }, "downloads": -1, "filename": "cmakew-0.0.4.tar.gz", "has_sig": false, "md5_digest": "babe6443b21135dbc911700323d6424a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9544, "upload_time": "2017-07-08T08:21:09", "url": "https://files.pythonhosted.org/packages/07/82/8efe7706fffc88c91b229bd7a8f18180c59aa74e17bb3a7b03884c9f9268/cmakew-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "4fd6a65fbf8c5774ee71e59123a438e0", "sha256": "182550ea8002d624975547c5234a78e7f12d4b55cb76b6fb26aeeff2d34e1387" }, "downloads": -1, "filename": "cmakew-0.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4fd6a65fbf8c5774ee71e59123a438e0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12774, "upload_time": "2017-07-31T03:48:47", "url": "https://files.pythonhosted.org/packages/f9/12/92cba299968383a6c79473b741ee1777e2db92475ea63f3b045c1f80285f/cmakew-0.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac18ec463bcad7e705b76e25965c63a6", "sha256": "967aa5e3b5e07c9c859de26a8c15c12127d26b79e2a371bbf7ce02e3152de8ad" }, "downloads": -1, "filename": "cmakew-0.0.5.tar.gz", "has_sig": false, "md5_digest": "ac18ec463bcad7e705b76e25965c63a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9644, "upload_time": "2017-07-31T03:48:44", "url": "https://files.pythonhosted.org/packages/f7/1d/3b755eec2f8cd5d4d779567a68d44dc7f2d64b9d5233db2cbe8677270bef/cmakew-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "d2a5b9b20e303a07799911dc801951c4", "sha256": "ab23caeb2f7d4141648f3b0d6f0909eda1b52406a902f4f00444f66d70c3dbd1" }, "downloads": -1, "filename": "cmakew-0.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d2a5b9b20e303a07799911dc801951c4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12886, "upload_time": "2017-10-29T03:38:50", "url": "https://files.pythonhosted.org/packages/ca/a4/1d56ad7f0e0d39423caaaad7288498fdf47f6ff1264162ba50ff929d53b4/cmakew-0.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a26d547fa3b15234a878aea2aa9a45de", "sha256": "731faace1efe2a01a8a7f780b3efa22191363695114dee83e840c3b6125e7886" }, "downloads": -1, "filename": "cmakew-0.0.6.tar.gz", "has_sig": false, "md5_digest": "a26d547fa3b15234a878aea2aa9a45de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9783, "upload_time": "2017-10-29T03:38:47", "url": "https://files.pythonhosted.org/packages/b9/3d/1a86465fa8b94196293bf185f417f3f3139d52a87519c4b8eb0cc73b202a/cmakew-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "843648fba5d4f08ca952f20a59bff02f", "sha256": "fe579fb0fa25d5824f0b92d6c3a814a14b97be9abf34ca99c89ebe4bb7b1bb8a" }, "downloads": -1, "filename": "cmakew-0.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "843648fba5d4f08ca952f20a59bff02f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 10666, "upload_time": "2018-09-08T09:18:15", "url": "https://files.pythonhosted.org/packages/71/2a/a9374afef65ad9aa6b18bf5133ec0769f9da3bfba57143a1070f9f8f9af6/cmakew-0.0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8dc0f81ce33231e994661c514a615787", "sha256": "f8795b3021f9fd2a41182ce214190eade7cb6ed11d9b734d956221b9aa975fe5" }, "downloads": -1, "filename": "cmakew-0.0.7.tar.gz", "has_sig": false, "md5_digest": "8dc0f81ce33231e994661c514a615787", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 9512, "upload_time": "2018-09-08T09:18:16", "url": "https://files.pythonhosted.org/packages/b2/a8/d7457c8e106fa7cad9e56c79811750716a7b2a091118daa7c6f2814b0fac/cmakew-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "4e1df5e642f45347f7eae89361be4241", "sha256": "f5fd165b22769207553da308f4edc1e4a476955f0afc38a6d0bb2b0b62915844" }, "downloads": -1, "filename": "cmakew-0.0.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4e1df5e642f45347f7eae89361be4241", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 11481, "upload_time": "2018-10-08T09:00:20", "url": "https://files.pythonhosted.org/packages/57/e9/556c9f443c01018eca839910f75b00440c8eae55da277d8f25cb1ee93a4b/cmakew-0.0.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d96ef7ec9a8816218370ca94dc66fd9", "sha256": "9edbd12d633b41fdfcc10a93cbb1fc18b09d921691d1d061ba6d2e443e409cf4" }, "downloads": -1, "filename": "cmakew-0.0.8.tar.gz", "has_sig": false, "md5_digest": "2d96ef7ec9a8816218370ca94dc66fd9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 9524, "upload_time": "2018-10-08T09:00:21", "url": "https://files.pythonhosted.org/packages/86/18/6f947e2f24062a211d41ba98ebb0088cf38776540e2fa7f0adf3289c7107/cmakew-0.0.8.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "3b030403d0e85c3cc1921d1bae24244b", "sha256": "7413a73bd1f2e761beefdf1486b9421f35fb3d5a56110e731845e5940d312466" }, "downloads": -1, "filename": "cmakew-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3b030403d0e85c3cc1921d1bae24244b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 11510, "upload_time": "2019-01-03T05:57:03", "url": "https://files.pythonhosted.org/packages/bd/03/b4137e45f27db9f7accaffe96be999b4f51de3259faf327bb7dd812acdf6/cmakew-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c8995868845059b87b5991d7ddc1ae16", "sha256": "5c1104f835b5de86d30da6549b75ccdd03ec40c03679e6c26c15a695549ec2ba" }, "downloads": -1, "filename": "cmakew-0.1.0.tar.gz", "has_sig": false, "md5_digest": "c8995868845059b87b5991d7ddc1ae16", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", "size": 10905, "upload_time": "2019-01-03T05:57:05", "url": "https://files.pythonhosted.org/packages/a1/83/1f46b55959efd8163190ba296b83a5de9d429279f91d0a9df349c0c2bfd6/cmakew-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "e160a4dc7870fff57bc77d39b986e945", "sha256": "0b2707a3035795916a7eaf0352a932cc19ddbf53b2f81aa9bde70f5d2f11f1af" }, "downloads": -1, "filename": "cmakew-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e160a4dc7870fff57bc77d39b986e945", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11588, "upload_time": "2019-02-11T08:21:21", "url": "https://files.pythonhosted.org/packages/da/17/f42a39b384dfd9f88501116aa8356369510e3644b7aa0150a92ac75da573/cmakew-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2f9317953484e8c087c4d5460b330f33", "sha256": "01a66a348fd13dbe4e66c05e068af11658cec30dc1d8e75ea5060b12f3711a46" }, "downloads": -1, "filename": "cmakew-0.1.1.tar.gz", "has_sig": false, "md5_digest": "2f9317953484e8c087c4d5460b330f33", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11111, "upload_time": "2019-02-11T08:21:22", "url": "https://files.pythonhosted.org/packages/3f/85/57d7648b535f3c093140f9fbfdc16e08f4fe140030a07248642f9292c3f9/cmakew-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "8f9469eed6686095065227ad150c774a", "sha256": "de5ef18c096a8305b0868700408723294d1cdaa31f364980ce3a0f66a5726603" }, "downloads": -1, "filename": "cmakew-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8f9469eed6686095065227ad150c774a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11676, "upload_time": "2019-05-01T01:56:06", "url": "https://files.pythonhosted.org/packages/03/69/86d07aba768e1e5370e7aaf6d96e61a41f93e0d79386f73602330606d875/cmakew-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "84ada2e64a7fa7356342b75125ad0801", "sha256": "f4db52a83fc43e99cca506a8f215ed9254ace8e6a3fb4e4d8534b280d720066b" }, "downloads": -1, "filename": "cmakew-0.1.2.tar.gz", "has_sig": false, "md5_digest": "84ada2e64a7fa7356342b75125ad0801", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11243, "upload_time": "2019-05-01T01:56:08", "url": "https://files.pythonhosted.org/packages/f8/1d/ba79c2699b1f2a543ee0af2a037a800aeabd101eb82eba28e3b1c5f17d3a/cmakew-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "4f7588fcc8c552a42685f1cff4b24c67", "sha256": "d12da53b43b6fca00d6658c52180d048e6b32bc2ed10771baee9e690f666273d" }, "downloads": -1, "filename": "cmakew-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4f7588fcc8c552a42685f1cff4b24c67", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11744, "upload_time": "2019-05-05T05:40:44", "url": "https://files.pythonhosted.org/packages/6b/7c/976622662f0f3ec43c07da71b081462de577e38452b3b0a10ecedb4fc8f5/cmakew-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c86c1deb546d06b7a0857050e0e0a23f", "sha256": "e18a968f7f254a13ae47911538c874e2d9877c0bf7507aa0cdcf1a66d907d376" }, "downloads": -1, "filename": "cmakew-0.2.0.tar.gz", "has_sig": false, "md5_digest": "c86c1deb546d06b7a0857050e0e0a23f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11494, "upload_time": "2019-05-05T05:40:46", "url": "https://files.pythonhosted.org/packages/0f/5a/5de65e6183f1d4958848b21dc1fda7a229dc6b315383d55923f24fb3acdd/cmakew-0.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4f7588fcc8c552a42685f1cff4b24c67", "sha256": "d12da53b43b6fca00d6658c52180d048e6b32bc2ed10771baee9e690f666273d" }, "downloads": -1, "filename": "cmakew-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4f7588fcc8c552a42685f1cff4b24c67", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11744, "upload_time": "2019-05-05T05:40:44", "url": "https://files.pythonhosted.org/packages/6b/7c/976622662f0f3ec43c07da71b081462de577e38452b3b0a10ecedb4fc8f5/cmakew-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c86c1deb546d06b7a0857050e0e0a23f", "sha256": "e18a968f7f254a13ae47911538c874e2d9877c0bf7507aa0cdcf1a66d907d376" }, "downloads": -1, "filename": "cmakew-0.2.0.tar.gz", "has_sig": false, "md5_digest": "c86c1deb546d06b7a0857050e0e0a23f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11494, "upload_time": "2019-05-05T05:40:46", "url": "https://files.pythonhosted.org/packages/0f/5a/5de65e6183f1d4958848b21dc1fda7a229dc6b315383d55923f24fb3acdd/cmakew-0.2.0.tar.gz" } ] }