mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
698dfb8c9e
- Bring in changes from bugfix/3148 Signed-off-by: Dan Ryan <dan@danryan.co>
190 lines
8.8 KiB
JSON
190 lines
8.8 KiB
JSON
{
|
|
"info": {
|
|
"author": "Ethan Furman",
|
|
"author_email": "ethan@stoneleaf.us",
|
|
"bugtrack_url": null,
|
|
"classifiers": [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: BSD License",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 2.4",
|
|
"Programming Language :: Python :: 2.5",
|
|
"Programming Language :: Python :: 2.6",
|
|
"Programming Language :: Python :: 2.7",
|
|
"Programming Language :: Python :: 3.3",
|
|
"Programming Language :: Python :: 3.4",
|
|
"Programming Language :: Python :: 3.5",
|
|
"Topic :: Software Development"
|
|
],
|
|
"description": "enum --- support for enumerations\n========================================\n\nAn enumeration is a set of symbolic names (members) bound to unique, constant\nvalues. Within an enumeration, the members can be compared by identity, and\nthe enumeration itself can be iterated over.\n\n from enum import Enum\n\n class Fruit(Enum):\n apple = 1\n banana = 2\n orange = 3\n\n list(Fruit)\n # [<Fruit.apple: 1>, <Fruit.banana: 2>, <Fruit.orange: 3>]\n\n len(Fruit)\n # 3\n\n Fruit.banana\n # <Fruit.banana: 2>\n\n Fruit['banana']\n # <Fruit.banana: 2>\n\n Fruit(2)\n # <Fruit.banana: 2>\n\n Fruit.banana is Fruit['banana'] is Fruit(2)\n # True\n\n Fruit.banana.name\n # 'banana'\n\n Fruit.banana.value\n # 2\n\nRepository and Issue Tracker at https://bitbucket.org/stoneleaf/enum34.",
|
|
"description_content_type": null,
|
|
"docs_url": null,
|
|
"download_url": "",
|
|
"downloads": {
|
|
"last_day": -1,
|
|
"last_month": -1,
|
|
"last_week": -1
|
|
},
|
|
"home_page": "https://bitbucket.org/stoneleaf/enum34",
|
|
"keywords": "",
|
|
"license": "BSD License",
|
|
"maintainer": "",
|
|
"maintainer_email": "",
|
|
"name": "enum34",
|
|
"package_url": "https://pypi.org/project/enum34/",
|
|
"platform": "UNKNOWN",
|
|
"project_url": "https://pypi.org/project/enum34/",
|
|
"project_urls": {
|
|
"Homepage": "https://bitbucket.org/stoneleaf/enum34"
|
|
},
|
|
"release_url": "https://pypi.org/project/enum34/1.1.6/",
|
|
"requires_dist": null,
|
|
"requires_python": "",
|
|
"summary": "Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7, 2.6, 2.5, and 2.4",
|
|
"version": "1.1.6"
|
|
},
|
|
"last_serial": 2117417,
|
|
"releases": {
|
|
"1.1.6": [
|
|
{
|
|
"comment_text": "",
|
|
"digests": {
|
|
"md5": "68f6982cc07dde78f4b500db829860bd",
|
|
"sha256": "6bd0f6ad48ec2aa117d3d141940d484deccda84d4fcd884f5c3d93c23ecd8c79"
|
|
},
|
|
"downloads": -1,
|
|
"filename": "enum34-1.1.6-py2-none-any.whl",
|
|
"has_sig": false,
|
|
"md5_digest": "68f6982cc07dde78f4b500db829860bd",
|
|
"packagetype": "bdist_wheel",
|
|
"python_version": "py2",
|
|
"requires_python": null,
|
|
"size": 12427,
|
|
"upload_time": "2016-05-16T03:31:13",
|
|
"url": "https://files.pythonhosted.org/packages/c5/db/e56e6b4bbac7c4a06de1c50de6fe1ef3810018ae11732a50f15f62c7d050/enum34-1.1.6-py2-none-any.whl"
|
|
},
|
|
{
|
|
"comment_text": "",
|
|
"digests": {
|
|
"md5": "a63ecb4f0b1b85fb69be64bdea999b43",
|
|
"sha256": "644837f692e5f550741432dd3f223bbb9852018674981b1664e5dc339387588a"
|
|
},
|
|
"downloads": -1,
|
|
"filename": "enum34-1.1.6-py3-none-any.whl",
|
|
"has_sig": false,
|
|
"md5_digest": "a63ecb4f0b1b85fb69be64bdea999b43",
|
|
"packagetype": "bdist_wheel",
|
|
"python_version": "py3",
|
|
"requires_python": null,
|
|
"size": 12428,
|
|
"upload_time": "2016-05-16T03:31:19",
|
|
"url": "https://files.pythonhosted.org/packages/af/42/cb9355df32c69b553e72a2e28daee25d1611d2c0d9c272aa1d34204205b2/enum34-1.1.6-py3-none-any.whl"
|
|
},
|
|
{
|
|
"comment_text": "",
|
|
"digests": {
|
|
"md5": "5f13a0841a61f7fc295c514490d120d0",
|
|
"sha256": "8ad8c4783bf61ded74527bffb48ed9b54166685e4230386a9ed9b1279e2df5b1"
|
|
},
|
|
"downloads": -1,
|
|
"filename": "enum34-1.1.6.tar.gz",
|
|
"has_sig": false,
|
|
"md5_digest": "5f13a0841a61f7fc295c514490d120d0",
|
|
"packagetype": "sdist",
|
|
"python_version": "source",
|
|
"requires_python": null,
|
|
"size": 40048,
|
|
"upload_time": "2016-05-16T03:31:30",
|
|
"url": "https://files.pythonhosted.org/packages/bf/3e/31d502c25302814a7c2f1d3959d2a3b3f78e509002ba91aea64993936876/enum34-1.1.6.tar.gz"
|
|
},
|
|
{
|
|
"comment_text": "",
|
|
"digests": {
|
|
"md5": "61ad7871532d4ce2d77fac2579237a9e",
|
|
"sha256": "2d81cbbe0e73112bdfe6ef8576f2238f2ba27dd0d55752a776c41d38b7da2850"
|
|
},
|
|
"downloads": -1,
|
|
"filename": "enum34-1.1.6.zip",
|
|
"has_sig": false,
|
|
"md5_digest": "61ad7871532d4ce2d77fac2579237a9e",
|
|
"packagetype": "sdist",
|
|
"python_version": "source",
|
|
"requires_python": null,
|
|
"size": 44773,
|
|
"upload_time": "2016-05-16T03:31:48",
|
|
"url": "https://files.pythonhosted.org/packages/e8/26/a6101edcf724453845c850281b96b89a10dac6bd98edebc82634fccce6a5/enum34-1.1.6.zip"
|
|
}
|
|
]
|
|
},
|
|
"urls": [
|
|
{
|
|
"comment_text": "",
|
|
"digests": {
|
|
"md5": "68f6982cc07dde78f4b500db829860bd",
|
|
"sha256": "6bd0f6ad48ec2aa117d3d141940d484deccda84d4fcd884f5c3d93c23ecd8c79"
|
|
},
|
|
"downloads": -1,
|
|
"filename": "enum34-1.1.6-py2-none-any.whl",
|
|
"has_sig": false,
|
|
"md5_digest": "68f6982cc07dde78f4b500db829860bd",
|
|
"packagetype": "bdist_wheel",
|
|
"python_version": "py2",
|
|
"requires_python": null,
|
|
"size": 12427,
|
|
"upload_time": "2016-05-16T03:31:13",
|
|
"url": "https://files.pythonhosted.org/packages/c5/db/e56e6b4bbac7c4a06de1c50de6fe1ef3810018ae11732a50f15f62c7d050/enum34-1.1.6-py2-none-any.whl"
|
|
},
|
|
{
|
|
"comment_text": "",
|
|
"digests": {
|
|
"md5": "a63ecb4f0b1b85fb69be64bdea999b43",
|
|
"sha256": "644837f692e5f550741432dd3f223bbb9852018674981b1664e5dc339387588a"
|
|
},
|
|
"downloads": -1,
|
|
"filename": "enum34-1.1.6-py3-none-any.whl",
|
|
"has_sig": false,
|
|
"md5_digest": "a63ecb4f0b1b85fb69be64bdea999b43",
|
|
"packagetype": "bdist_wheel",
|
|
"python_version": "py3",
|
|
"requires_python": null,
|
|
"size": 12428,
|
|
"upload_time": "2016-05-16T03:31:19",
|
|
"url": "https://files.pythonhosted.org/packages/af/42/cb9355df32c69b553e72a2e28daee25d1611d2c0d9c272aa1d34204205b2/enum34-1.1.6-py3-none-any.whl"
|
|
},
|
|
{
|
|
"comment_text": "",
|
|
"digests": {
|
|
"md5": "5f13a0841a61f7fc295c514490d120d0",
|
|
"sha256": "8ad8c4783bf61ded74527bffb48ed9b54166685e4230386a9ed9b1279e2df5b1"
|
|
},
|
|
"downloads": -1,
|
|
"filename": "enum34-1.1.6.tar.gz",
|
|
"has_sig": false,
|
|
"md5_digest": "5f13a0841a61f7fc295c514490d120d0",
|
|
"packagetype": "sdist",
|
|
"python_version": "source",
|
|
"requires_python": null,
|
|
"size": 40048,
|
|
"upload_time": "2016-05-16T03:31:30",
|
|
"url": "https://files.pythonhosted.org/packages/bf/3e/31d502c25302814a7c2f1d3959d2a3b3f78e509002ba91aea64993936876/enum34-1.1.6.tar.gz"
|
|
},
|
|
{
|
|
"comment_text": "",
|
|
"digests": {
|
|
"md5": "61ad7871532d4ce2d77fac2579237a9e",
|
|
"sha256": "2d81cbbe0e73112bdfe6ef8576f2238f2ba27dd0d55752a776c41d38b7da2850"
|
|
},
|
|
"downloads": -1,
|
|
"filename": "enum34-1.1.6.zip",
|
|
"has_sig": false,
|
|
"md5_digest": "61ad7871532d4ce2d77fac2579237a9e",
|
|
"packagetype": "sdist",
|
|
"python_version": "source",
|
|
"requires_python": null,
|
|
"size": 44773,
|
|
"upload_time": "2016-05-16T03:31:48",
|
|
"url": "https://files.pythonhosted.org/packages/e8/26/a6101edcf724453845c850281b96b89a10dac6bd98edebc82634fccce6a5/enum34-1.1.6.zip"
|
|
}
|
|
]
|
|
} |