{
"info": {
"author": "",
"author_email": "",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft",
"Operating System :: POSIX",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Scientific/Engineering :: GIS"
],
"description": "================================================================\r\nInVEST: Integrated Valuation of Ecosystem Services and Tradeoffs \r\n================================================================\r\n\r\n.. image:: http://builds.naturalcapitalproject.org/buildStatus/icon?job=invest-nightly-develop\r\n :target: http://builds.naturalcapitalproject.org/job/invest-nightly-develop\r\n\r\nAbout InVEST\r\n=============\r\n\r\nInVEST (Integrated Valuation of Ecosystem Services and Tradeoffs) is a family\r\nof tools for quantifying the values of natural capital in clear, credible, and\r\npractical ways. In promising a return (of societal benefits) on investments in\r\nnature, the scientific community needs to deliver knowledge and tools to\r\nquantify and forecast this return. InVEST enables decision-makers to quantify\r\nthe importance of natural capital, to assess the tradeoffs associated with\r\nalternative choices, and to integrate conservation and human development.\r\n\r\nOlder versions of InVEST ran as script tools in the ArcGIS ArcToolBox environment,\r\nbut have almost all been ported over to a purely open-source python environment.\r\n\r\nInVEST is licensed under a permissive, modified BSD license.\r\n\r\nFor more information, see:\r\n * `InVEST API documentation `_\r\n * InVEST on `bitbucket `__\r\n * The `Natural Capital Project website `__.\r\n\r\n\r\n.. Everything after this comment will be included in the API docs.\r\n.. START API\r\n\r\nInstalling InVEST\r\n=================\r\n\r\nPython Dependencies\r\n-------------------\r\n\r\nDependencies for ``natcap.invest`` are listed in ``requirements.txt``:\r\n\r\n.. These dependencies are listed here statically because when I push the\r\n readme page to PyPI, they won't render if I use the .. include::\r\n directive. Annoying, but oh well. It just means that we'll need to\r\n periodically check that this list is accurate.\r\n\r\n.. code-block::\r\n\r\n\r\n\r\n GDAL>=2.0,<3.0\r\n\r\n Pyro4==4.41 # pip-only\r\n\r\n pandas>=0.22.0\r\n\r\n numpy>=1.11.0,!=1.16.0\r\n\r\n Rtree>=0.8.2\r\n\r\n scipy>=0.16.1\r\n\r\n Shapely>=1.6.4\r\n\r\n six\r\n\r\n pygeoprocessing>=1.6.1\r\n\r\n taskgraph[niced_processes]>=0.8.2\r\n\r\n psutil<5.6.0\r\n\r\n chardet>=3.0.4\r\n\r\n matplotlib\r\n\r\n xlrd>=1.2.0\r\n\r\n\r\n\r\n\r\nAdditionally, a python binding for Qt is needed to use the InVEST GUI, but is\r\nnot required for development against ``natcap.invest``. InVEST uses the\r\ninterface library ``qtpy`` to support ``PyQt4``, ``PyQt5``, and ``PySide``.\r\nOne of these bindings for Qt must be installed in order to use the GUI.\r\n\r\n\r\nInstalling from Source\r\n----------------------\r\n\r\nIf you have a compiler installed and configured for your system, and\r\ndependencies installed, the easiest way to install InVEST as a python package \r\nis:\r\n\r\n.. code-block:: console\r\n\r\n $ pip install natcap.invest\r\n\r\n\r\nInstalling the latest development version\r\n-----------------------------------------\r\n\r\nThe latest development version of InVEST can be installed from our source tree:\r\n\r\n.. code-block:: console\r\n\r\n $ pip install hg+https://bitbucket.org/natcap/invest@develop\r\n\r\n\r\nUsage\r\n=====\r\n\r\nTo run an InVEST model from the command-line, use the ``invest`` cli single\r\nentry point:\r\n\r\n.. code-block:: console\r\n\r\n $ invest --help\r\n usage: invest [-h] [--version] [-v | --debug] [--list] [-l] [-d [DATASTACK]]\r\n [-w [WORKSPACE]] [-q] [-y] [-n]\r\n [model]\r\n\r\n Integrated Valuation of Ecosystem Services and Tradeoffs. InVEST (Integrated\r\n Valuation of Ecosystem Services and Tradeoffs) is a family of tools for\r\n quantifying the values of natural capital in clear, credible, and practical\r\n ways. In promising a return (of societal benefits) on investments in nature,\r\n the scientific community needs to deliver knowledge and tools to quantify and\r\n forecast this return. InVEST enables decision-makers to quantify the\r\n importance of natural capital, to assess the tradeoffs associated with\r\n alternative choices, and to integrate conservation and human development.\r\n Older versions of InVEST ran as script tools in the ArcGIS ArcToolBox\r\n environment, but have almost all been ported over to a purely open-source\r\n python environment.\r\n\r\n positional arguments:\r\n model The model/tool to run. Use --list to show available\r\n models/tools. Identifiable model prefixes may also be\r\n used. Alternatively,specify \"launcher\" to reveal a\r\n model launcher window.\r\n\r\n optional arguments:\r\n -h, --help show this help message and exit\r\n --version show program's version number and exit\r\n -v, --verbose Increase verbosity. Affects how much is printed to the\r\n console and (if running in headless mode) how much is\r\n written to the logfile.\r\n --debug Enable debug logging. Alias for -vvvvv\r\n --list List available models\r\n -l, --headless Attempt to run InVEST without its GUI.\r\n -d [DATASTACK], --datastack [DATASTACK]\r\n Run the specified model with this datastack\r\n -w [WORKSPACE], --workspace [WORKSPACE]\r\n The workspace in which outputs will be saved\r\n\r\n gui options:\r\n These options are ignored if running in headless mode\r\n\r\n -q, --quickrun Run the target model without validating and quit with\r\n a nonzero exit status if an exception is encountered\r\n\r\n headless options:\r\n -y, --overwrite Overwrite the workspace without prompting for\r\n confirmation\r\n -n, --no-validate Do not validate inputs before running the model.\r\n\r\n\r\n\r\n\r\nTo list the available models:\r\n\r\n.. code-block:: console \r\n\r\n $ invest --list\r\n\r\n\r\nDevelopment\r\n===========\r\n\r\nDependencies for developing InVEST are listed in ``requirements.txt`` and in\r\n``requirements-dev.txt``.\r\n\r\nSupport\r\n=======\r\n\r\nParticipate in the NatCap forums here:\r\nhttp://forums.naturalcapitalproject.org\r\n\r\nBugs may be reported at http://bitbucket.org/natcap/invest\r\n\r\n\r\n",
"description_content_type": "",
"docs_url": "https://pythonhosted.org/natcap.invest/",
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "http://bitbucket.org/natcap/invest",
"keywords": "gis invest",
"license": "BSD",
"maintainer": "James Douglass",
"maintainer_email": "jdouglass@stanford.edu",
"name": "natcap.invest",
"package_url": "https://pypi.org/project/natcap.invest/",
"platform": "",
"project_url": "https://pypi.org/project/natcap.invest/",
"project_urls": {
"Homepage": "http://bitbucket.org/natcap/invest"
},
"release_url": "https://pypi.org/project/natcap.invest/3.7.0/",
"requires_dist": [
"GDAL (<3.0,>=2.0)",
"Pyro4 (==4.41)",
"pandas (>=0.22.0)",
"numpy (!=1.16.0,>=1.11.0)",
"Rtree (>=0.8.2)",
"scipy (>=0.16.1)",
"Shapely (>=1.6.4)",
"six",
"pygeoprocessing (>=1.6.1)",
"taskgraph[niced_processes] (>=0.8.2)",
"psutil (<5.6.0)",
"chardet (>=3.0.4)",
"matplotlib",
"xlrd (>=1.2.0)",
"qtpy (>1.3) ; extra == 'ui'",
"qtawesome ; extra == 'ui'",
"faulthandler ; extra == 'ui'",
"requests ; extra == 'ui'"
],
"requires_python": "",
"summary": "InVEST Ecosystem Service models",
"version": "3.7.0"
},
"last_serial": 5253312,
"releases": {
"3.3.0": [
{
"comment_text": "",
"digests": {
"md5": "6777992214389f4366f4d00c36cd8984",
"sha256": "6b83135c77e987c5a2f423232e6c06ebb31dd993781603c38e6ede0d2a1592bf"
},
"downloads": -1,
"filename": "natcap.invest-3.3.0.tar.gz",
"has_sig": false,
"md5_digest": "6777992214389f4366f4d00c36cd8984",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1203204,
"upload_time": "2016-03-15T01:42:04",
"url": "https://files.pythonhosted.org/packages/4d/57/82ee51c6ca45bef693ce811b060841bc621e55c724c99e00e5c01aaef6a2/natcap.invest-3.3.0.tar.gz"
}
],
"3.3.1": [
{
"comment_text": "",
"digests": {
"md5": "d133fd6e95fe763d41e44c6ba1cf0816",
"sha256": "bfb32994a60b45153c5605887d5aac64b4cb654043824121f9c8f1f1a593ab7f"
},
"downloads": -1,
"filename": "natcap.invest-3.3.1-cp27-none-win32.whl",
"has_sig": false,
"md5_digest": "d133fd6e95fe763d41e44c6ba1cf0816",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1530027,
"upload_time": "2016-06-13T18:36:53",
"url": "https://files.pythonhosted.org/packages/06/ee/d4b89ed11d81487550f756dd2622ce1949be054223ce7f07f560cbf39e15/natcap.invest-3.3.1-cp27-none-win32.whl"
},
{
"comment_text": "",
"digests": {
"md5": "aa81cc2d3aa7ca55b105bb575c69398d",
"sha256": "38591eea2a94905eca7b780d03e00286d68ee917b42f84630d74f57c3c3a82ed"
},
"downloads": -1,
"filename": "natcap.invest-3.3.1.tar.gz",
"has_sig": false,
"md5_digest": "aa81cc2d3aa7ca55b105bb575c69398d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 779845,
"upload_time": "2016-06-13T17:10:58",
"url": "https://files.pythonhosted.org/packages/52/2b/1a027e0b39fe7913b51e9700da40349289c49471e7bc2958cb71c81fdf86/natcap.invest-3.3.1.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "fc98ebd141e4cccd0bb4a1cb2a4dd7ae",
"sha256": "9d99fdf4d061b37399a2a83c22fcf2d97b4d655175f0cfd20e1dd9fce2b09f68"
},
"downloads": -1,
"filename": "natcap.invest-3.3.1.win32-py2.7.exe",
"has_sig": false,
"md5_digest": "fc98ebd141e4cccd0bb4a1cb2a4dd7ae",
"packagetype": "bdist_wininst",
"python_version": "2.7",
"requires_python": null,
"size": 1761582,
"upload_time": "2016-06-13T18:37:56",
"url": "https://files.pythonhosted.org/packages/b3/db/be1d1e476d20ce30b413be40cb386be98fcc4dc0c87b5c8f20726ed5a636/natcap.invest-3.3.1.win32-py2.7.exe"
}
],
"3.3.2": [
{
"comment_text": "",
"digests": {
"md5": "f71541d0424e7d39b512bfd13d8ff49d",
"sha256": "45ace84d668fa55b55cf45548f07e9c86aab4c8a410b3064111a881d1e815027"
},
"downloads": -1,
"filename": "natcap.invest-3.3.2-cp27-none-win32.whl",
"has_sig": false,
"md5_digest": "f71541d0424e7d39b512bfd13d8ff49d",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1440489,
"upload_time": "2016-10-17T23:29:48",
"url": "https://files.pythonhosted.org/packages/9d/9f/f40b7465f98f93cff3798a50a72b6fd984c62f73cedb875f06c7084556bf/natcap.invest-3.3.2-cp27-none-win32.whl"
},
{
"comment_text": "",
"digests": {
"md5": "56d2823f8cc9f83eb7d1209f54c619d0",
"sha256": "8f2433ff69c05050bf88c30ab30e3fe5990eff65b83d9ef9b15fdbe051328e67"
},
"downloads": -1,
"filename": "natcap.invest-3.3.2.tar.gz",
"has_sig": false,
"md5_digest": "56d2823f8cc9f83eb7d1209f54c619d0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 670919,
"upload_time": "2016-10-17T23:29:53",
"url": "https://files.pythonhosted.org/packages/78/44/d602ef2541e807a2926e725519025439183bba454ffd1dd83045478640da/natcap.invest-3.3.2.tar.gz"
}
],
"3.3.3": [
{
"comment_text": "",
"digests": {
"md5": "e06edfe64b1d082161815fc6b9819981",
"sha256": "75b878de81b906696003f3d5cf287b0ee3cbd4023b352a113c4afe38c2c53874"
},
"downloads": -1,
"filename": "natcap.invest-3.3.3-cp27-none-win32.whl",
"has_sig": false,
"md5_digest": "e06edfe64b1d082161815fc6b9819981",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1398641,
"upload_time": "2017-02-07T21:58:46",
"url": "https://files.pythonhosted.org/packages/05/be/f29e6fa8a1fe701ddcafc7b95e4586755be48af7fd4a797b94cd7aacf3c1/natcap.invest-3.3.3-cp27-none-win32.whl"
},
{
"comment_text": "",
"digests": {
"md5": "07085d1af4885d2a5f0972d4541fbc53",
"sha256": "13728afc6c1590e1aaac5d0b00dd630ce3e403dacf2152c6573696d450143d08"
},
"downloads": -1,
"filename": "natcap.invest-3.3.3.tar.gz",
"has_sig": false,
"md5_digest": "07085d1af4885d2a5f0972d4541fbc53",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 676584,
"upload_time": "2017-02-07T21:58:49",
"url": "https://files.pythonhosted.org/packages/42/4f/079f21d4cae98e8ca4a4a41326dc3af72f4618f1fb3d7f10a93a150ea7d6/natcap.invest-3.3.3.tar.gz"
}
],
"3.4.0": [
{
"comment_text": "",
"digests": {
"md5": "efcc7961da1a7b9f78354c2dac04bbd6",
"sha256": "102bb7259887fe7701d5719593dc855259fb1c53a80a767fcb8293677fdfe746"
},
"downloads": -1,
"filename": "natcap.invest-3.4.0-cp27-none-win32.whl",
"has_sig": false,
"md5_digest": "efcc7961da1a7b9f78354c2dac04bbd6",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 2139637,
"upload_time": "2017-12-04T18:32:45",
"url": "https://files.pythonhosted.org/packages/84/2f/e13bdf35ddb8c15ce4fcbf8361393a921776f36ee4dc1350b71702f16e5a/natcap.invest-3.4.0-cp27-none-win32.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6c7496b95a876d1b25bb37c83f399a0c",
"sha256": "fea1dd2d9228bae828fb7e4881747eee03e26cb56ec0e62b4f03abc169b37854"
},
"downloads": -1,
"filename": "natcap.invest-3.4.0.tar.gz",
"has_sig": false,
"md5_digest": "6c7496b95a876d1b25bb37c83f399a0c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 725295,
"upload_time": "2017-12-04T18:33:01",
"url": "https://files.pythonhosted.org/packages/1f/bd/84a38858b1549e95204ad663571a6afebe01ee2bddd6b29356bc6e2d71f8/natcap.invest-3.4.0.tar.gz"
}
],
"3.4.1": [
{
"comment_text": "",
"digests": {
"md5": "e92428fa98cab5ea42e087bc4c2ea11d",
"sha256": "9ab2be614d9c85884230d87a13669f7c54d54bd40dca5f3ed8c1cad81529b1f8"
},
"downloads": -1,
"filename": "natcap.invest-3.4.1-cp27-none-win32.whl",
"has_sig": false,
"md5_digest": "e92428fa98cab5ea42e087bc4c2ea11d",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1276150,
"upload_time": "2017-12-12T00:43:50",
"url": "https://files.pythonhosted.org/packages/51/d4/3a74d3bb57ae2492d1d31cef2af9329290e50851f683c6f0bbcde1313a88/natcap.invest-3.4.1-cp27-none-win32.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3e9c9016b881a75bced0f4d56ac16da7",
"sha256": "84527880d6e4795801a891fe3313dad43e7cd4be5076c72f44ab182793536dae"
},
"downloads": -1,
"filename": "natcap.invest-3.4.1.tar.gz",
"has_sig": false,
"md5_digest": "3e9c9016b881a75bced0f4d56ac16da7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 726976,
"upload_time": "2017-12-12T00:43:54",
"url": "https://files.pythonhosted.org/packages/23/1a/0cfa221fcf8141014cf5253d6f5b49ea721b9ee47a691c21e8a71afb91e2/natcap.invest-3.4.1.tar.gz"
}
],
"3.4.2": [
{
"comment_text": "",
"digests": {
"md5": "b73880e3aef6d81ea87c61d37ebf794b",
"sha256": "9a52e00c9a61ee2b1455efed02c8f8886d6df72c2404ec0d3e039d92f598befd"
},
"downloads": -1,
"filename": "natcap.invest-3.4.2-cp27-none-win32.whl",
"has_sig": false,
"md5_digest": "b73880e3aef6d81ea87c61d37ebf794b",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 2141111,
"upload_time": "2017-12-16T01:45:33",
"url": "https://files.pythonhosted.org/packages/09/cd/0af4f5eaea6580f7377c1190f59c04605894ade0d8463438557b4b6d4365/natcap.invest-3.4.2-cp27-none-win32.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f3b617f73351f0864fe1794019dd055c",
"sha256": "993b0ca51ffd1c7bb629723e9272640508eeeed520bd4bc0138ee80591c4b93c"
},
"downloads": -1,
"filename": "natcap.invest-3.4.2.tar.gz",
"has_sig": false,
"md5_digest": "f3b617f73351f0864fe1794019dd055c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1559879,
"upload_time": "2017-12-16T01:45:10",
"url": "https://files.pythonhosted.org/packages/db/12/d58bd750f1f76caf5b4e08084e511bab0670cc55775a22a90cbac0203455/natcap.invest-3.4.2.tar.gz"
}
],
"3.4.4": [
{
"comment_text": "",
"digests": {
"md5": "2a41121af3c15296daaf030654b5f40e",
"sha256": "618e7815a1d2ff328a34e97d2cf83dc674dea804e9c9c040d623f0e0a74f8315"
},
"downloads": -1,
"filename": "natcap.invest-3.4.4-cp27-none-win32.whl",
"has_sig": false,
"md5_digest": "2a41121af3c15296daaf030654b5f40e",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 2140420,
"upload_time": "2018-03-27T00:52:34",
"url": "https://files.pythonhosted.org/packages/52/4c/28a59e7db4ef0eea0456be331ad4baec1f3c4d7e68a10d977a2e77ab435c/natcap.invest-3.4.4-cp27-none-win32.whl"
},
{
"comment_text": "",
"digests": {
"md5": "36be17da809d22847a8632729e039daf",
"sha256": "c8ca8c76dc13074f4128fd1a003a7381566b29f132ed6c8cf8ed8f08117f8da0"
},
"downloads": -1,
"filename": "natcap.invest-3.4.4.tar.gz",
"has_sig": false,
"md5_digest": "36be17da809d22847a8632729e039daf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1554435,
"upload_time": "2018-03-27T00:52:37",
"url": "https://files.pythonhosted.org/packages/57/89/93628ba5c77260c04ad8005728038f85ebc140276804a8f7861ff6f59110/natcap.invest-3.4.4.tar.gz"
}
],
"3.5.0": [
{
"comment_text": "",
"digests": {
"md5": "216e5e46c9fe4a085aaca63af18b55aa",
"sha256": "8138f0ab71ee902cffd6afe6a98112505634f974799734f61997c856a9b2d47e"
},
"downloads": -1,
"filename": "natcap.invest-3.5.0-cp27-cp27m-win32.whl",
"has_sig": false,
"md5_digest": "216e5e46c9fe4a085aaca63af18b55aa",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1343368,
"upload_time": "2018-08-15T16:48:09",
"url": "https://files.pythonhosted.org/packages/c8/4c/a6ef5fe214220cd9728ec2544cd044db6c00743fc391d8c28efb16f6f4f1/natcap.invest-3.5.0-cp27-cp27m-win32.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a81e69fd251749bffe807b407b344dd8",
"sha256": "ec18675e1ab4c69d1fcac4e694f820a3583b503b47493fc8be2adb1697c22ac0"
},
"downloads": -1,
"filename": "natcap.invest-3.5.0.zip",
"has_sig": false,
"md5_digest": "a81e69fd251749bffe807b407b344dd8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1390108,
"upload_time": "2018-08-15T16:48:12",
"url": "https://files.pythonhosted.org/packages/0e/20/424e396390020b65d778d45c18ba74cfede03ae4791cc6aeb97c33f4fbd2/natcap.invest-3.5.0.zip"
}
],
"3.6.0": [
{
"comment_text": "",
"digests": {
"md5": "ae1fcc5464551b8f2cbf968378d4ac85",
"sha256": "0f04ce7358a928eb7fba47afb0c489fe189bffb42a76746cb043659be5a629c4"
},
"downloads": -1,
"filename": "natcap.invest-3.6.0-cp27-cp27m-win32.whl",
"has_sig": false,
"md5_digest": "ae1fcc5464551b8f2cbf968378d4ac85",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1156424,
"upload_time": "2019-02-04T19:59:22",
"url": "https://files.pythonhosted.org/packages/4a/1c/0aa17fe0af1da8c5c211bc4a8436679f3886c5db80edc1a8614b3ac85168/natcap.invest-3.6.0-cp27-cp27m-win32.whl"
},
{
"comment_text": "",
"digests": {
"md5": "207556e02a666aa3c6cb315c2f0cdc88",
"sha256": "d5da046834d4018e4057e012ef0fb01093b9a2dffad715462773574a9be062eb"
},
"downloads": -1,
"filename": "natcap.invest-3.6.0.tar.gz",
"has_sig": false,
"md5_digest": "207556e02a666aa3c6cb315c2f0cdc88",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 579885,
"upload_time": "2019-02-04T19:59:08",
"url": "https://files.pythonhosted.org/packages/a6/7d/745cf0a3e4e4da9a72b7b0491582a41fd8ef53fca798129f22eeaad86f74/natcap.invest-3.6.0.tar.gz"
}
],
"3.7.0": [
{
"comment_text": "",
"digests": {
"md5": "f9b77f8ab01b338a8899f5e3fb618de8",
"sha256": "862be96196c4e2ae273f492632b0ccac2a3dfaa5f35222d4127548875ba65cae"
},
"downloads": -1,
"filename": "natcap.invest-3.7.0-cp27-cp27m-win32.whl",
"has_sig": false,
"md5_digest": "f9b77f8ab01b338a8899f5e3fb618de8",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1041466,
"upload_time": "2019-05-10T17:45:03",
"url": "https://files.pythonhosted.org/packages/cf/b7/0e8687847ea68629f7e6594a509d402d41a23c163311e20a7080633f1a7d/natcap.invest-3.7.0-cp27-cp27m-win32.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0e37308b6647fa721272f99d7d6a5cfb",
"sha256": "576d7b1ce8d802fca98b91234d6076df3598e7938b0d14cc19d3b72f68c97b8f"
},
"downloads": -1,
"filename": "natcap.invest-3.7.0-cp27-cp27m-win_amd64.whl",
"has_sig": false,
"md5_digest": "0e37308b6647fa721272f99d7d6a5cfb",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1237488,
"upload_time": "2019-05-10T17:45:05",
"url": "https://files.pythonhosted.org/packages/04/d3/2c9a637b641ca2973ff34c645a6e981a043b040d560ae282e7d6333cd955/natcap.invest-3.7.0-cp27-cp27m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "82d5fae973594ac8784252dda8b60aa7",
"sha256": "8683fdb2987bfeffe8e5e9ee6abbd6df6317ef8c8f927107c8fc846dc04dc74e"
},
"downloads": -1,
"filename": "natcap.invest-3.7.0.zip",
"has_sig": false,
"md5_digest": "82d5fae973594ac8784252dda8b60aa7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1283828,
"upload_time": "2019-05-10T17:45:08",
"url": "https://files.pythonhosted.org/packages/3b/7f/fd170a30aebbffb2f71cc73aa1ed3d4e0c38a6b6d8eeb6e266333b462a9e/natcap.invest-3.7.0.zip"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "f9b77f8ab01b338a8899f5e3fb618de8",
"sha256": "862be96196c4e2ae273f492632b0ccac2a3dfaa5f35222d4127548875ba65cae"
},
"downloads": -1,
"filename": "natcap.invest-3.7.0-cp27-cp27m-win32.whl",
"has_sig": false,
"md5_digest": "f9b77f8ab01b338a8899f5e3fb618de8",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1041466,
"upload_time": "2019-05-10T17:45:03",
"url": "https://files.pythonhosted.org/packages/cf/b7/0e8687847ea68629f7e6594a509d402d41a23c163311e20a7080633f1a7d/natcap.invest-3.7.0-cp27-cp27m-win32.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0e37308b6647fa721272f99d7d6a5cfb",
"sha256": "576d7b1ce8d802fca98b91234d6076df3598e7938b0d14cc19d3b72f68c97b8f"
},
"downloads": -1,
"filename": "natcap.invest-3.7.0-cp27-cp27m-win_amd64.whl",
"has_sig": false,
"md5_digest": "0e37308b6647fa721272f99d7d6a5cfb",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 1237488,
"upload_time": "2019-05-10T17:45:05",
"url": "https://files.pythonhosted.org/packages/04/d3/2c9a637b641ca2973ff34c645a6e981a043b040d560ae282e7d6333cd955/natcap.invest-3.7.0-cp27-cp27m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "82d5fae973594ac8784252dda8b60aa7",
"sha256": "8683fdb2987bfeffe8e5e9ee6abbd6df6317ef8c8f927107c8fc846dc04dc74e"
},
"downloads": -1,
"filename": "natcap.invest-3.7.0.zip",
"has_sig": false,
"md5_digest": "82d5fae973594ac8784252dda8b60aa7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 1283828,
"upload_time": "2019-05-10T17:45:08",
"url": "https://files.pythonhosted.org/packages/3b/7f/fd170a30aebbffb2f71cc73aa1ed3d4e0c38a6b6d8eeb6e266333b462a9e/natcap.invest-3.7.0.zip"
}
]
}