{
"info": {
"author": "Yusuke Tsutsumi",
"author_email": "yusuke@tsutsumi.io",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Topic :: System :: Software Distribution"
],
"description": "============\nvcver Python\n============\n\n--------------\nWhat is vcver?\n--------------\n\nvcver is an approach for versioning that heavily relies on the version control\nsystem of choice for determining version strings.\n\nThere are two categories of version strings:\n\ndevelop versions, of the form:\n\n.. code-block::\n\n {main_version}.dev{commit_count}+{branch}.{scm_change_id}\n\nWith development branches, it is desired to not override versions published from\na blessed subset of \"released\" branches. As such, if the current branch is not a release\nbranch, a version of 0 is used instead of the main_version:\n\n.. code-block::\n\n 0.dev{commit_count}+{branch}.{scm_change_id}\n\nand a release version, of the form:\n\n.. code-block::\n\n {main_version}\n\nEach part is described as follows:\n\n* main_version is retrieved from the last tagged commit with a leading v (e.g. v1.0),\n but is converted to a 0 if the branch is not a release branch.\n* commit_count is the number of commits from main_version\n* branch is the branch that the repository was built against, removing\n characters that are incompatible with PEP440 (anything that is not alphanumeric or a dot)\n* scm_change_id is a unique id in the form of version control, used to identify\n the change that was used to build this version.\n\nFor example, in a git repository, on a master branch with the most recent tag of\nv1.1, the dev version would look something like:\n\n.. code-block::\n\n 1.1.dev10+master.abc123\n\nOn a develop branch:\n\n.. code-block::\n\n 0.dev13+develop.def456\n\nAnd a release version:\n\n.. code-block::\n\n 1.1\n\nThese are compatible with\n`PEP440 `_.\n\n\n-------\nExample\n-------\n\nAdd a MANIFEST.in to your package, if you do not already have one. Then add the following:\n\n.. code-block::\n\n include VERSION\n\nIt's also recommended to ignore this file in your version control.\n\nThen, follow this pattern in your setup.py:\n\n.. code-block:: python\n\n\n # OPTIONAL, but recommended:\n # this block is useful for specifying when a build should\n # use the 'release' version. it allows specifying a release version\n # with an additional argument in the setup.py:\n # $ python setup.py upload --release\n import sys\n is_release = False\n if \"--release\" in sys.argv:\n sys.argv.remove(\"--release\")\n is_release = True\n\n # OPTIONAL, but recommended:\n # vcver writes a version file relative to the\n # current working directory by default.\n # It's recommended to provide it with your\n # setup.py directory instead (in case someone\n # runs your setup.py from a different directory)\n base = os.path.dirname(os.path.abspath(__file__))\n\n setup(name='aiohttp-transmute',\n # add the following two lines,\n # and do not specify a version.\n setup_requires=[\"vcver\"],\n # vcver will only produce a release\n # version if \"is_release\" is True.\n vcver={\n \"is_release\": is_release,\n \"path\": base,\n # OPTIONAL ARGS\n\n # version_format overrides the standard version format\n version_format=\"{main_version}.{commit_count}\",\n\n # release_version_format overrides the release version format\n release_version_format=\"{commit_count}\",\n\n # scm_type: if you do not want autodetection of the SCM, you can\n # specify it.\n scm_type=\"git\",\n\n # release_branch_regex: override the default release branch\n # (default release branch depends on the SCM used.)\n release_branch_regex=\"(master|hotfix|release)\",\n\n # version_file: override the name of the version file.\n version_file=\"GENERATED_VERSION\"\n },\n ...\n )\n\nNow your package will publish with a VC-based version!\n\nIf you followed the full example, you can specify the release version by adding --release:\n\n.. code-block::\n\n python setup.py upload --release\n\n-------------------\nFAQ / Other Details\n-------------------\n\nWhy a dev and release version?\n==============================\n\nThe dev and release versions have different goals:\n\n* dev: to provide as much information as possible to quickly identify\n where the current version originated from in regard to version control.\n* release: to provide a clear version that helps the consumer understand what changed.\n\nFor most consumers, the number of commits since the last release, the\nbranch it was released against, or the build commit itself are\nirrelevant. The consumer wants to know about the size of the change or type of changes,\nand that can be done by the major / minor / patch versions specified\nin the git tag, or the changelog. Adding version control information proves to be confusing with\nthat regard, providing multiple numbers that are not relevant to figuring out\nthe amount of change.\n\nWhy zero out versions from non-release branches?\n================================================\n\nSometimes, a non-release version can be published accidentally, or it may be desired to publish\ndevelopment versions side by side by versions published by release branches. In this situations,\nensuring that the release versions always take precedence over non-release version is valuable, to ensure\nthat development versions are not accidentally picked up by those expecting stable releases.\n\nIf this behavior is not desired, custom version strings can be specified with \"main_version\" instead of \"main_version\". \"main_version\" is preserved regardless of the branch used.\n\nHow to make sure others can consume your package\n================================================\n\nIf you followed the example, you already have this.\n\nOnce vcver is called, a VERSION file is created in the current working\ndirectory, which is typically the same directory as where the setup.py lives\n(you can make it more accurate, see the example)\n\nvcver will attempt to find a VERSION file if the working directory is\nnot a version control repository. Make sure your package includes a\nVERSION file by creating/modifying the\n`MANIFEST.in `_:\n\n.. code-block::\n\n include VERSION\n\n\nCustomizable Version Strings\n============================\n\nBoth the version format and release format is configurable, with the\narguments version_format and release_version_format, respectively.\n\nIn addition to the values above, the following values are provided:\n\n* tag_version: the raw version of main_version, which does not zero\n out for non-release branches.\n\n\n\nPre-PEP440 Version\n==================\n\nSome (much older) versions of setuptools are unable to consume the dev version string,\ndue to the plus in the version string.\n\nIf you need backwards compatibility and you would still like vc versioning, the\nfollowing format is recommended:\n\n.. code-block::\n\n {main_version}.dev{commit_count}.{branch}.{scm_change_id}\n\n This can be changed by an argument into vcver:\n\n.. code-block:: python\n\n # in the setup call of setup.py\n vcver={\"version_format\": \"{main_version}.dev{commit_count}.{branch}.{scm_change_id}\"}\n\nCompatibility with Semantic Versioning\n======================================\n\n`Semantic versioning `_ is a standard to provided a\nmeaning to the major, minor, and patch versions of a version\nstring. Compatibility with semver is possible if new major / minor\nversions are tagged according the semver spec.\n\n--------------\nSpecial Thanks\n--------------\n\n- `Zillow `_, where this particular approach of SCM-based versioning was developed\n- `Taylor McKay `_, who implemented the original Python version at Zillow\n- `Mohammad Sarhan `_, who designed and implemented the original Java version at Zillow, and has a public `gradle variant `_\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/toumorokoshi/vcver-python",
"keywords": "",
"license": "",
"maintainer": "",
"maintainer_email": "",
"name": "vcver",
"package_url": "https://pypi.org/project/vcver/",
"platform": "",
"project_url": "https://pypi.org/project/vcver/",
"project_urls": {
"Homepage": "https://github.com/toumorokoshi/vcver-python"
},
"release_url": "https://pypi.org/project/vcver/0.2.10/",
"requires_dist": [
"packaging"
],
"requires_python": "",
"summary": "provide package versions with version control data.",
"version": "0.2.10"
},
"last_serial": 5629819,
"releases": {
"0.0.1": [
{
"comment_text": "",
"digests": {
"md5": "adb037e37ea437dd477e0deb45055e2a",
"sha256": "3f9b99da06bc3f5a702e126db43b67f36d79abb1f32badd06fa9930c44bf4783"
},
"downloads": -1,
"filename": "vcver-0.0.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "adb037e37ea437dd477e0deb45055e2a",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 8783,
"upload_time": "2016-12-05T01:12:27",
"url": "https://files.pythonhosted.org/packages/cb/7e/515931150a797438cc9a81c9445b1b4ad021be10bd313a9c4da53559b3a3/vcver-0.0.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0c982eb429cb4d19c35a65fe3b2ad4cd",
"sha256": "b3013a24758f9a55133761271a5eda4b9310efdc9abbcf7e83555a98ad2fa2ee"
},
"downloads": -1,
"filename": "vcver-0.0.1.tar.gz",
"has_sig": false,
"md5_digest": "0c982eb429cb4d19c35a65fe3b2ad4cd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4883,
"upload_time": "2016-12-05T01:12:25",
"url": "https://files.pythonhosted.org/packages/01/38/b2c9a68261c8b1fb9b95c37d52b93527085643684f035b588978686ebb08/vcver-0.0.1.tar.gz"
}
],
"0.0.1.dev1": [
{
"comment_text": "",
"digests": {
"md5": "5479c6d1e31687e461972dd1cee63f18",
"sha256": "9258a91b82046759a1de8100a61de1f813d5ac94dcdc645a88a282a381a1178e"
},
"downloads": -1,
"filename": "vcver-0.0.1.dev1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5479c6d1e31687e461972dd1cee63f18",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 9837,
"upload_time": "2016-12-05T01:29:15",
"url": "https://files.pythonhosted.org/packages/4f/95/7175c6fc64e019ee505a3f53b154da6e12c9e4dd63509bde32386efb1e70/vcver-0.0.1.dev1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "35d2dddf7003ee23c14059a6fdf2bdef",
"sha256": "2c85a313a1e029fbc85d7d808a443b72f69a6b01c1a9a05350bde0b631a8a2a0"
},
"downloads": -1,
"filename": "vcver-0.0.1.dev1.tar.gz",
"has_sig": false,
"md5_digest": "35d2dddf7003ee23c14059a6fdf2bdef",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5259,
"upload_time": "2016-12-05T01:29:07",
"url": "https://files.pythonhosted.org/packages/cf/20/b34e3cb0beb30a48043a3176cbac6f736ca52e2d45bca856713f71b15f8b/vcver-0.0.1.dev1.tar.gz"
}
],
"0.0.1.dev2": [
{
"comment_text": "",
"digests": {
"md5": "69586a86a40957cb9a93874995fb2e24",
"sha256": "1f7216adec5f32307edded7ed9a4f07a9ad324ff376214218f959a3dbdd53aa2"
},
"downloads": -1,
"filename": "vcver-0.0.1.dev2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "69586a86a40957cb9a93874995fb2e24",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 9875,
"upload_time": "2016-12-05T01:31:39",
"url": "https://files.pythonhosted.org/packages/f3/4b/3b048e73c5fe7cf564e7e7a4f0b4063b5cebc6d6d38477ab277b4f95d484/vcver-0.0.1.dev2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "119e8674b13f882e4d042be022f1de7f",
"sha256": "4dad588d78e41e7c5de4799985826e48d189f2e4ad0b5803fa4101daca7c80f4"
},
"downloads": -1,
"filename": "vcver-0.0.1.dev2.tar.gz",
"has_sig": false,
"md5_digest": "119e8674b13f882e4d042be022f1de7f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4908,
"upload_time": "2016-12-05T01:31:38",
"url": "https://files.pythonhosted.org/packages/12/78/bad8850806dfe5ba6e697d458d4cf206eaacce0489a6d42a5159bbc14ee1/vcver-0.0.1.dev2.tar.gz"
}
],
"0.0.1.dev3": [
{
"comment_text": "",
"digests": {
"md5": "c9891a106b1aaadb3e0719d93c379eb2",
"sha256": "a96669ab466599957e415f5324264953876caeac8a6ab92e13722899165afdff"
},
"downloads": -1,
"filename": "vcver-0.0.1.dev3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c9891a106b1aaadb3e0719d93c379eb2",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 10623,
"upload_time": "2016-12-05T01:50:27",
"url": "https://files.pythonhosted.org/packages/d7/cb/3a74788f889f719a53078e3b3c2a3c1b4ba2d55155b3a95ca9e8cc5d305b/vcver-0.0.1.dev3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "5a271d661cb6b946da5a0deb15ecb73d",
"sha256": "8b10cc196c92a100a4d6f1e87de0c878b2398ee747f125d98aed2a69be2d55c8"
},
"downloads": -1,
"filename": "vcver-0.0.1.dev3.tar.gz",
"has_sig": false,
"md5_digest": "5a271d661cb6b946da5a0deb15ecb73d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5012,
"upload_time": "2016-12-05T01:50:24",
"url": "https://files.pythonhosted.org/packages/e1/c8/1e8e6d0b1a753dcf192c6af22a293c12d1ca35be50358500245c711ef24d/vcver-0.0.1.dev3.tar.gz"
}
],
"0.0.1.dev4": [
{
"comment_text": "",
"digests": {
"md5": "7dc908612d59bc8e3e7370e6efcc9367",
"sha256": "4fd10d37419eaca42c37f21771c4114a10d3454dfbfffe49b08cc9f59c298be8"
},
"downloads": -1,
"filename": "vcver-0.0.1.dev4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7dc908612d59bc8e3e7370e6efcc9367",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 9969,
"upload_time": "2016-12-05T01:52:13",
"url": "https://files.pythonhosted.org/packages/f7/94/7c4d92d0adbe2c03bf114313544b37b441bfc3888c15f0e1b4d5d2ef358e/vcver-0.0.1.dev4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0e0addd7843223d6d622114b5d13ce8e",
"sha256": "67ec76fd31844f58576024f3589cc4a24e8b97ab8f0b18b9ddd775aaa48a73fe"
},
"downloads": -1,
"filename": "vcver-0.0.1.dev4.tar.gz",
"has_sig": false,
"md5_digest": "0e0addd7843223d6d622114b5d13ce8e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5004,
"upload_time": "2016-12-05T01:52:09",
"url": "https://files.pythonhosted.org/packages/83/fd/d243b9e2164d5dd26a51ec108a702fbd3e2a262a1be9f9a501fa190ef0ab/vcver-0.0.1.dev4.tar.gz"
}
],
"0.0.1.dev5": [
{
"comment_text": "",
"digests": {
"md5": "145363d0db4430eabc5917c3f58bb08c",
"sha256": "1da900d25de6a8066563cde9e92d0f2c7dd964f2d229cbab1039ed4465f694ca"
},
"downloads": -1,
"filename": "vcver-0.0.1.dev5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "145363d0db4430eabc5917c3f58bb08c",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 10076,
"upload_time": "2016-12-05T02:06:52",
"url": "https://files.pythonhosted.org/packages/df/e3/bb07025d03935887aac8c6d572c52f84dfb409295151b841836e333c4b6d/vcver-0.0.1.dev5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e59407c1ee4f67cdf11a0244495488f3",
"sha256": "7a806fda68cba486d455035d2930b34fa84ca64264eced96cfb83baf5ecccc1d"
},
"downloads": -1,
"filename": "vcver-0.0.1.dev5.tar.gz",
"has_sig": false,
"md5_digest": "e59407c1ee4f67cdf11a0244495488f3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4983,
"upload_time": "2016-12-05T02:06:51",
"url": "https://files.pythonhosted.org/packages/79/cf/a7caba4a5414e1dfcc23ee349f021b0b86b5b58a8c5e74077631aab9b9a4/vcver-0.0.1.dev5.tar.gz"
}
],
"0.0.3": [
{
"comment_text": "",
"digests": {
"md5": "139af034d505d911287d4900450f1f5c",
"sha256": "ef11de8b5e6990199cf1bd1af9c524f924de994b0fef43316872f19eea979c24"
},
"downloads": -1,
"filename": "vcver-0.0.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "139af034d505d911287d4900450f1f5c",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 14439,
"upload_time": "2016-12-05T08:25:45",
"url": "https://files.pythonhosted.org/packages/03/6c/4a5d82ff99b38203ef4714c46bfafbacbbbbe0bd00bb9edbd2f0645518a3/vcver-0.0.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "296243086e8fdfca1f23c88e38fde899",
"sha256": "ed9e3a04a07025fd6c79aeb875ccd0abe79e302e876672f05e80337cf0f529cb"
},
"downloads": -1,
"filename": "vcver-0.0.3.tar.gz",
"has_sig": false,
"md5_digest": "296243086e8fdfca1f23c88e38fde899",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9381,
"upload_time": "2016-12-05T08:25:43",
"url": "https://files.pythonhosted.org/packages/23/bc/a29fd5a7275a493ecd2796fcde611d8bec12bed66dfe02952587587e2d97/vcver-0.0.3.tar.gz"
}
],
"0.0.4": [
{
"comment_text": "",
"digests": {
"md5": "48455f9b466e1e9ac851796a0dba16d1",
"sha256": "996941949ec9553ca0f2d862bf03324ca64563c5ee540309fe40588ec03c6cce"
},
"downloads": -1,
"filename": "vcver-0.0.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "48455f9b466e1e9ac851796a0dba16d1",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 16060,
"upload_time": "2016-12-06T18:21:33",
"url": "https://files.pythonhosted.org/packages/10/7a/76baa20f069ac6d563fc34af0a4e36ed70c39123d8bf62c91e26beb08c0a/vcver-0.0.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "66e83400868a6fb712fe035b196ea7a0",
"sha256": "5142e1ec113a2a057b47bc60dae0c0e49c65f2dac4a6ade43a281e18f0a33a06"
},
"downloads": -1,
"filename": "vcver-0.0.4.tar.gz",
"has_sig": false,
"md5_digest": "66e83400868a6fb712fe035b196ea7a0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11085,
"upload_time": "2016-12-06T18:21:30",
"url": "https://files.pythonhosted.org/packages/eb/28/c69cdddf4d46befcde2ff0322583a37b1bf2646c46f8113e7b8a29f3d5f2/vcver-0.0.4.tar.gz"
}
],
"0.0.5": [
{
"comment_text": "",
"digests": {
"md5": "15b61c9524a972b238a8c1a7f1bfa4b6",
"sha256": "34d0dc97740bb779798fc83dc87dc608a8bf115b915125f09d23b4911faf89f5"
},
"downloads": -1,
"filename": "vcver-0.0.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "15b61c9524a972b238a8c1a7f1bfa4b6",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 14505,
"upload_time": "2016-12-06T20:20:29",
"url": "https://files.pythonhosted.org/packages/e8/ab/81b0db7c256ba3a025e666a0d225c3c590bf39bd3a9a94c769d13fd8286f/vcver-0.0.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4d8b20b5245487ed7513223635f3336e",
"sha256": "82c554ed3bfc4ce7ed077733e6515cf2ce12bdeb0244f72ad6730eb1e55c5f33"
},
"downloads": -1,
"filename": "vcver-0.0.5.tar.gz",
"has_sig": false,
"md5_digest": "4d8b20b5245487ed7513223635f3336e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11099,
"upload_time": "2016-12-06T20:20:27",
"url": "https://files.pythonhosted.org/packages/c0/3d/d4b870b410800a23880e18a743cd00b83eda0c105e77c7e5692fce36d716/vcver-0.0.5.tar.gz"
}
],
"0.0.6": [
{
"comment_text": "",
"digests": {
"md5": "a25731c075dde6a23bcefc37f193fd5b",
"sha256": "5cb172833d1c9304461f8b4176a77b7260fcc75418286ab7c554feae5e06946a"
},
"downloads": -1,
"filename": "vcver-0.0.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a25731c075dde6a23bcefc37f193fd5b",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 14948,
"upload_time": "2016-12-14T04:13:17",
"url": "https://files.pythonhosted.org/packages/56/09/78d6cb67a5d9297533e3ec1099d04c78bcfba95055a473dbaaf9c06f737e/vcver-0.0.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "5723c99b79e82271342bc069fc80732c",
"sha256": "d3b60c16be0914dabac6d12337f08db8cd4c57a06ce0705c8bb70a9b32d19ab5"
},
"downloads": -1,
"filename": "vcver-0.0.6.tar.gz",
"has_sig": false,
"md5_digest": "5723c99b79e82271342bc069fc80732c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11369,
"upload_time": "2016-12-14T04:13:15",
"url": "https://files.pythonhosted.org/packages/25/79/c53fa338131cd3d920872e033c0be14a60e3079eb31478147f0625423ad0/vcver-0.0.6.tar.gz"
}
],
"0.0.7": [
{
"comment_text": "",
"digests": {
"md5": "cedf1a59d620b9dad65f25d2acb62e5d",
"sha256": "9a38732a52b7a846bddc5ecc067c3f90c44a1a1e6a2c93a74ec732777fecd8ff"
},
"downloads": -1,
"filename": "vcver-0.0.7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cedf1a59d620b9dad65f25d2acb62e5d",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 14931,
"upload_time": "2016-12-14T06:09:04",
"url": "https://files.pythonhosted.org/packages/07/45/aa57c2f809cfb293a2bbb4a29fbea621ccb85a7b955231e5ec7b1079af5e/vcver-0.0.7-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3e72103225b3d6f5ed2ce9fdf829143f",
"sha256": "5a9f8d9080c07418f384a9901ffc6e3861a23dae4432993cf489b9098986cd21"
},
"downloads": -1,
"filename": "vcver-0.0.7.tar.gz",
"has_sig": false,
"md5_digest": "3e72103225b3d6f5ed2ce9fdf829143f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11347,
"upload_time": "2016-12-14T06:09:01",
"url": "https://files.pythonhosted.org/packages/66/6e/7113f3e92d4f9354e8a6fc01852c1592deb5edcef51c36f731b8b5bc9858/vcver-0.0.7.tar.gz"
}
],
"0.0.8": [
{
"comment_text": "",
"digests": {
"md5": "c46523c99ef528aecb3bc1a644aeea1d",
"sha256": "d70c260fd6f9bd80dfe12e195b5ede28338160377cd72a2b684e07889769f1e3"
},
"downloads": -1,
"filename": "vcver-0.0.8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c46523c99ef528aecb3bc1a644aeea1d",
"packagetype": "bdist_wheel",
"python_version": "3.5",
"requires_python": null,
"size": 14933,
"upload_time": "2016-12-14T06:24:36",
"url": "https://files.pythonhosted.org/packages/8c/83/f2b96a505b93f32e19193ef72e4b2e62c7629d4ed11812560f2b9105df1f/vcver-0.0.8-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c1383c2f9c121dfa22f4cf31353afd48",
"sha256": "233781d1508292f05a5a5890b8cc8688454898f26ab0f0ed851e4e0a4821d66c"
},
"downloads": -1,
"filename": "vcver-0.0.8.tar.gz",
"has_sig": false,
"md5_digest": "c1383c2f9c121dfa22f4cf31353afd48",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11355,
"upload_time": "2016-12-14T06:24:33",
"url": "https://files.pythonhosted.org/packages/71/18/76b8f7a726217743f106b73e1472b20e49dbbaae3dac621d3c8b74b5b334/vcver-0.0.8.tar.gz"
}
],
"0.0.9": [
{
"comment_text": "",
"digests": {
"md5": "ef354ddc7a5d9c2ece4b8c9135d7b018",
"sha256": "5ca20d974d7945873e109df0081802a8c1e51b599cfd1e3c2d178cfb7b863878"
},
"downloads": -1,
"filename": "vcver-0.0.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ef354ddc7a5d9c2ece4b8c9135d7b018",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 10767,
"upload_time": "2018-05-08T02:52:59",
"url": "https://files.pythonhosted.org/packages/27/b9/bbc0f50b1949afb1a7393af4009d68f5cdea319a72ddea212767160dce58/vcver-0.0.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3b48aabc9f9af8f02e395284cccd9b5a",
"sha256": "972aea05557fa94bdb9b49e665cfded0fac5c6d770ca37184ee3597bbd272f67"
},
"downloads": -1,
"filename": "vcver-0.0.9.tar.gz",
"has_sig": false,
"md5_digest": "3b48aabc9f9af8f02e395284cccd9b5a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10967,
"upload_time": "2018-05-08T02:52:57",
"url": "https://files.pythonhosted.org/packages/ab/07/8740195045d63dc4f8806dc01eeab8b5f040ecc77465b9f7fec022cad5f3/vcver-0.0.9.tar.gz"
}
],
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "aee79d4687057fd22e14abde3eac3939",
"sha256": "e28b53eed91f84550f75e9a8ac857e06d4e0d22ee27da5018264e7eebf370291"
},
"downloads": -1,
"filename": "vcver-0.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "aee79d4687057fd22e14abde3eac3939",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 10893,
"upload_time": "2018-07-19T14:53:06",
"url": "https://files.pythonhosted.org/packages/84/5b/2c74f5dba5006f042392a4800ffd52aa06559d983c8efde43f0aac35f34b/vcver-0.1.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1db4718da4322ee8d8b230c53ade7241",
"sha256": "f31100b628471d1774a7cb1ed03dbe383a62aff2f8222a1bfeafd46f31f789ff"
},
"downloads": -1,
"filename": "vcver-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "1db4718da4322ee8d8b230c53ade7241",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11057,
"upload_time": "2018-07-19T14:53:05",
"url": "https://files.pythonhosted.org/packages/86/e9/013c8112ba1935b66aa3fc364db4a075672ec5b6aba0fff3dee5bab28b7c/vcver-0.1.0.tar.gz"
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "ea794fd90476a081eb371baeacc46024",
"sha256": "cdf32eb1946d93e80cbc8087c186fc1a7d49627c27b9ac498221f52c276ec7bf"
},
"downloads": -1,
"filename": "vcver-0.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ea794fd90476a081eb371baeacc46024",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 12036,
"upload_time": "2018-07-30T21:10:34",
"url": "https://files.pythonhosted.org/packages/4c/fb/19333580bbc4984f80ef14d64f74ca09bfe1186065d19d849fdb21ab5426/vcver-0.1.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7305ff03f5c574bce6fd1fcaf2ac3b18",
"sha256": "e4c1eff7af4123cca80597367cb5d41dd57cd9711de0d5804d7b3935cc04f1a0"
},
"downloads": -1,
"filename": "vcver-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "7305ff03f5c574bce6fd1fcaf2ac3b18",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11256,
"upload_time": "2018-07-30T21:10:35",
"url": "https://files.pythonhosted.org/packages/fd/5d/c8c80d1a6c4f0bed4cd52747294ba95219bb79587da27d34d9e428b5849c/vcver-0.1.1.tar.gz"
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "c0f38af1b25ad01b26b2ac6b0f6ad103",
"sha256": "732e391643e540cd9ac6aef4170359cc45928ad8fd8e8ef3122708678a113fb4"
},
"downloads": -1,
"filename": "vcver-0.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c0f38af1b25ad01b26b2ac6b0f6ad103",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 12927,
"upload_time": "2019-06-26T04:32:52",
"url": "https://files.pythonhosted.org/packages/1f/ab/70efc0b67da2f1da1b8cf2065e0980bdb634d8791f8fdff874e8566143cd/vcver-0.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "159428e57be5b47bf6efed9a0962e50b",
"sha256": "15cb512fefa699bc76c1c99e4896c8e35dd8671a3d087d62f32d4b91e241f442"
},
"downloads": -1,
"filename": "vcver-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "159428e57be5b47bf6efed9a0962e50b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12012,
"upload_time": "2019-06-26T04:32:54",
"url": "https://files.pythonhosted.org/packages/41/71/f80dcce8c7fb5c8368c5f750895ab117b7c22d14b93d8dc71faa8ec10d89/vcver-0.2.0.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "39f1be91ac6c9015aa6436839867ad31",
"sha256": "9b16c9952c40ae3ab2aa7701c94e4654e1b18f23341699b403c788374a401773"
},
"downloads": -1,
"filename": "vcver-0.2.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "39f1be91ac6c9015aa6436839867ad31",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13095,
"upload_time": "2019-08-02T16:05:26",
"url": "https://files.pythonhosted.org/packages/2d/65/fa84b30a85e89ef7819db2a7ea44a1c740345196318bf2e572e171dfe06b/vcver-0.2.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "10540a4fe1d244805561c6444428bab9",
"sha256": "5822576ce9d1a9eeb3ed346e595683e0850ee9969837d8b2f7af9218492e83ed"
},
"downloads": -1,
"filename": "vcver-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "10540a4fe1d244805561c6444428bab9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12153,
"upload_time": "2019-08-02T16:05:28",
"url": "https://files.pythonhosted.org/packages/d1/06/a79370d481212b0111f3f989ee6968c378d83d87fa7ca575d2d63bcf8869/vcver-0.2.1.tar.gz"
}
],
"0.2.10": [
{
"comment_text": "",
"digests": {
"md5": "9a52ae9fd4430ecbdf83a162a045eec0",
"sha256": "60acd8e648eea757ff6000d5582f7fb2e9e9dc0309363fd794a467016497d425"
},
"downloads": -1,
"filename": "vcver-0.2.10-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9a52ae9fd4430ecbdf83a162a045eec0",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13241,
"upload_time": "2019-08-04T04:53:19",
"url": "https://files.pythonhosted.org/packages/25/a3/333a564d07931a83a81f79072d535e1172ee470fae421bf4c1a42a77f51b/vcver-0.2.10-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e15facfc0084818c67a5478d67f0259f",
"sha256": "938c12efa7625eab0383441de056860c4e497a270f78f4bc6910bf119890746f"
},
"downloads": -1,
"filename": "vcver-0.2.10.tar.gz",
"has_sig": false,
"md5_digest": "e15facfc0084818c67a5478d67f0259f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12320,
"upload_time": "2019-08-04T04:53:22",
"url": "https://files.pythonhosted.org/packages/e5/01/cfd0072aa272335a0b2a82bc0e8c66444be400f5ce3393b4fac6d353bd4a/vcver-0.2.10.tar.gz"
}
],
"0.2.2": [
{
"comment_text": "",
"digests": {
"md5": "3d58585d638176c2db8bea2d2b397be1",
"sha256": "b18d03bbfb5f597e92a793f4e16d0d39c088c2ef32401bb4f9e7f9da27e7bab7"
},
"downloads": -1,
"filename": "vcver-0.2.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3d58585d638176c2db8bea2d2b397be1",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 12926,
"upload_time": "2019-08-02T16:13:07",
"url": "https://files.pythonhosted.org/packages/13/da/2235a295cacca05f4a709b7db7f96df4928daf6a7231a2d0abfc485312cf/vcver-0.2.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8d319fb6cfb6c6d0d9144728dbedb8c8",
"sha256": "a235aef3d4b4846d9b66b80e339b6755940fbffdfaa0146b2f059daa32f17c76"
},
"downloads": -1,
"filename": "vcver-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "8d319fb6cfb6c6d0d9144728dbedb8c8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11991,
"upload_time": "2019-08-02T16:13:10",
"url": "https://files.pythonhosted.org/packages/8a/a1/f497c924853369e40f3f406d713a5f20bd499a6f543c0c150e51b914345b/vcver-0.2.2.tar.gz"
}
],
"0.2.3": [
{
"comment_text": "",
"digests": {
"md5": "a6810643e8ca0ac098dfe82005fff01f",
"sha256": "7d0a54e04836141d6bc2d236073eb814d10ba0500eb0e1cad8fadaa1f0d39d2c"
},
"downloads": -1,
"filename": "vcver-0.2.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a6810643e8ca0ac098dfe82005fff01f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 4338,
"upload_time": "2019-08-02T16:26:43",
"url": "https://files.pythonhosted.org/packages/fe/98/d52e44f6a7ab2e83583cc81d3b4f533530ea1bf1fb089d29e65449926a02/vcver-0.2.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c080c7ecd473591bc4b36460d6a6b5fb",
"sha256": "97ed53a7fb3bbcc890a0498f8dacd2421180240fab056f6df5cfa2b660349e14"
},
"downloads": -1,
"filename": "vcver-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "c080c7ecd473591bc4b36460d6a6b5fb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3924,
"upload_time": "2019-08-02T16:26:45",
"url": "https://files.pythonhosted.org/packages/6f/e8/78c12242b483cbe1df6c18331e0f4aebe4e536af19b8944942959364305f/vcver-0.2.3.tar.gz"
}
],
"0.2.4": [
{
"comment_text": "",
"digests": {
"md5": "d346c4f65a062ab71ca5b21332c0c04d",
"sha256": "0514be29868ae017f5e86881aa6c0fe9c6ca00450d200193dda5237edf7b1318"
},
"downloads": -1,
"filename": "vcver-0.2.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d346c4f65a062ab71ca5b21332c0c04d",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 12926,
"upload_time": "2019-08-02T16:31:06",
"url": "https://files.pythonhosted.org/packages/34/65/9a41c04287b3c6dcec95aa266822b1262343a377a620e899dbb810b65d42/vcver-0.2.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8a01a75f5a19d843f74369bc726fca83",
"sha256": "f48af30fbaa05530a22a64f87a3017b4668b91508fe8f3ecdfc0087da9450cdd"
},
"downloads": -1,
"filename": "vcver-0.2.4.tar.gz",
"has_sig": false,
"md5_digest": "8a01a75f5a19d843f74369bc726fca83",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11988,
"upload_time": "2019-08-02T16:31:07",
"url": "https://files.pythonhosted.org/packages/1b/4a/f345a2584fd120a74a868ff8c42e41a31d2c90f9b576f91662eaa929458d/vcver-0.2.4.tar.gz"
}
],
"0.2.5": [
{
"comment_text": "",
"digests": {
"md5": "2d6cffa7222bdde0d742432c315448f5",
"sha256": "ce4883b499fbf470718e4887a955be17218879bc6563ffb883bfdfd0b15297e1"
},
"downloads": -1,
"filename": "vcver-0.2.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2d6cffa7222bdde0d742432c315448f5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13083,
"upload_time": "2019-08-02T16:35:42",
"url": "https://files.pythonhosted.org/packages/e8/39/ce7da90ca87508feabdaaae6da74fad01c2b3bf075945efdd37cebbedf32/vcver-0.2.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1737f0d1e539bf9275562945c49d84b2",
"sha256": "77c41e542933e7020dd19716e74a9501d9d3574af5d05c06b4369a7d7d99b3e4"
},
"downloads": -1,
"filename": "vcver-0.2.5.tar.gz",
"has_sig": false,
"md5_digest": "1737f0d1e539bf9275562945c49d84b2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12140,
"upload_time": "2019-08-02T16:35:44",
"url": "https://files.pythonhosted.org/packages/b5/08/9d1310d7986f78b72fdf5eed8069135c52a5c7fd17ef86e7a34935470b4d/vcver-0.2.5.tar.gz"
}
],
"0.2.6": [
{
"comment_text": "",
"digests": {
"md5": "a3c97e1cb263f3edf3386f5f4ed9f88f",
"sha256": "fc03bba46aa1bc7869220e09d50a974fa68afde1e43037a2c74fcda4b39bb5bd"
},
"downloads": -1,
"filename": "vcver-0.2.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a3c97e1cb263f3edf3386f5f4ed9f88f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13057,
"upload_time": "2019-08-02T16:42:26",
"url": "https://files.pythonhosted.org/packages/1f/d3/a0f8191b39d196385a31bd1206571b9d42fe182fbe27a505bf6d97339e03/vcver-0.2.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9b32ea5e950def8d192860fc9b480dc1",
"sha256": "b2a2388b06fb005d5427e47bfa6badc8d57a10bb4a67abcf5520cc2f7a451b8e"
},
"downloads": -1,
"filename": "vcver-0.2.6.tar.gz",
"has_sig": false,
"md5_digest": "9b32ea5e950def8d192860fc9b480dc1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12123,
"upload_time": "2019-08-02T16:42:27",
"url": "https://files.pythonhosted.org/packages/ce/e3/8b957650d275302a32a317cd781eced62b7759657d8ed8e8b85bf5950e4b/vcver-0.2.6.tar.gz"
}
],
"0.2.7": [
{
"comment_text": "",
"digests": {
"md5": "3edb72af01abe2f868388307f6054816",
"sha256": "ddac57e54561d27e368e495c8109a5f6ac04194a6762333f03c7a048cf6f0196"
},
"downloads": -1,
"filename": "vcver-0.2.7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3edb72af01abe2f868388307f6054816",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13257,
"upload_time": "2019-08-02T16:56:00",
"url": "https://files.pythonhosted.org/packages/89/8f/c1864a608e31b8fdd4335ed04fa29c21de37e077401df90815eaafed4db9/vcver-0.2.7-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "026d3e723a9076b133ca16381cdcee0c",
"sha256": "92c6826c63659f08d2164b35d26817ce428d52427af0be18c76e529491a42fc3"
},
"downloads": -1,
"filename": "vcver-0.2.7.tar.gz",
"has_sig": false,
"md5_digest": "026d3e723a9076b133ca16381cdcee0c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12302,
"upload_time": "2019-08-02T16:56:01",
"url": "https://files.pythonhosted.org/packages/07/31/5000e130f4c977673301c24f1306e5b8ea9f3ba6f9d6b10db8473bbb592e/vcver-0.2.7.tar.gz"
}
],
"0.2.8": [
{
"comment_text": "",
"digests": {
"md5": "ec4724240efac1a58e41c5448002fcbd",
"sha256": "fb9f90b85b2d40f1f0c00a5a43045cf7408d46863481db77b9762e43883d1b8f"
},
"downloads": -1,
"filename": "vcver-0.2.8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ec4724240efac1a58e41c5448002fcbd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13248,
"upload_time": "2019-08-02T19:25:56",
"url": "https://files.pythonhosted.org/packages/30/81/140580779d4fb9a795ba42e3f048941a3323d7dfb3f68564e6aa33de126e/vcver-0.2.8-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ff872ec13c96ef0f0cd65b0321b317fd",
"sha256": "328bad6580cf5b10ed843a60f7744e2584775de6f37d3db1f1c16b27c7e16a8b"
},
"downloads": -1,
"filename": "vcver-0.2.8.tar.gz",
"has_sig": false,
"md5_digest": "ff872ec13c96ef0f0cd65b0321b317fd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12301,
"upload_time": "2019-08-02T19:25:58",
"url": "https://files.pythonhosted.org/packages/b2/eb/a775af1d80c55766ff72aa25c58474cd44e8045b13faea2446ff32b78aa4/vcver-0.2.8.tar.gz"
}
],
"0.2.9": [
{
"comment_text": "",
"digests": {
"md5": "ea99e5ad68cf25cc994b05c58e133df2",
"sha256": "c996b18da1c8e520643c9643c9dd86f753cf2907fdb31ff2aaf1f2084e27e431"
},
"downloads": -1,
"filename": "vcver-0.2.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ea99e5ad68cf25cc994b05c58e133df2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13160,
"upload_time": "2019-08-04T04:02:19",
"url": "https://files.pythonhosted.org/packages/2b/10/8b6bf23a60970f7066cb6a1842feeff562eb09c4b1fd1a6505fcd6898a49/vcver-0.2.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f661253be7e1e51230a017e05d9f8689",
"sha256": "ac34614106e8ed6bbcf7083cec95d961284fc817d4660d515d5ef144c18f6ee0"
},
"downloads": -1,
"filename": "vcver-0.2.9.tar.gz",
"has_sig": false,
"md5_digest": "f661253be7e1e51230a017e05d9f8689",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12241,
"upload_time": "2019-08-04T04:02:21",
"url": "https://files.pythonhosted.org/packages/b3/68/532f1547bced0e8963efb9f95b2ee3038c93e807b19b796d890e8c5a8c6f/vcver-0.2.9.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "9a52ae9fd4430ecbdf83a162a045eec0",
"sha256": "60acd8e648eea757ff6000d5582f7fb2e9e9dc0309363fd794a467016497d425"
},
"downloads": -1,
"filename": "vcver-0.2.10-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9a52ae9fd4430ecbdf83a162a045eec0",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13241,
"upload_time": "2019-08-04T04:53:19",
"url": "https://files.pythonhosted.org/packages/25/a3/333a564d07931a83a81f79072d535e1172ee470fae421bf4c1a42a77f51b/vcver-0.2.10-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e15facfc0084818c67a5478d67f0259f",
"sha256": "938c12efa7625eab0383441de056860c4e497a270f78f4bc6910bf119890746f"
},
"downloads": -1,
"filename": "vcver-0.2.10.tar.gz",
"has_sig": false,
"md5_digest": "e15facfc0084818c67a5478d67f0259f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12320,
"upload_time": "2019-08-04T04:53:22",
"url": "https://files.pythonhosted.org/packages/e5/01/cfd0072aa272335a0b2a82bc0e8c66444be400f5ce3393b4fac6d353bd4a/vcver-0.2.10.tar.gz"
}
]
}