{ "info": { "author": "Justin Simcock", "author_email": "jsimcock@rhg.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5" ], "description": "=====\nimpax\n=====\n\n\n.. image:: https://img.shields.io/pypi/v/impax.svg\n :target: https://pypi.python.org/pypi/impax\n\n.. image:: https://img.shields.io/travis/ClimateImpactLab/impax.svg\n :target: https://travis-ci.org/ClimateImpactLab/impax\n\n.. image:: https://readthedocs.org/projects/impax/badge/?version=latest\n :target: https://impax.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://pyup.io/repos/github/ClimateImpactLab/impax/shield.svg\n :target: https://pyup.io/repos/github/ClimateImpactLab/impax/\n :alt: Updates\n\n\nImpact Forecasting for the Climate Impact Lab\n\n\n* Free software: MIT license\n* Documentation: https://impax.readthedocs.io.\n\n\n\nSetting up this package\n-----------------------\n\n*Justin Simcock: complete these instructions and then remove this section from\nthe readme.*\n\n1. Create a matching repository on github if you haven't already:\n\n a. go to https://github.com/organizations/ClimateImpactLab/repositories/new\n b. enter the following information:\n\n owner\n ClimateImpactLab\n\n Repository Name\n impax\n\n Description\n Impact Forecasting for the Climate Impact Lab\n\n Privacy\n Public\n\n **Do not initialize the repo with a readme, license, or gitignore!**\n\n c. Press the big green buttton\n\n2. Execute the following commands in this directory:\n\n .. code-block:: bash\n\n git init\n git add .\n git commit -m \"initial commit\"\n git remote add origin git@github.com:ClimateImpactLab/impax.git\n git push -u origin master\n\n3. Set up automated testing, coverage, updates, and docs:\n\n a. Set up testing\n\n i. go to https://travis-ci.org/ and sign in/sign up with github.\n Make sure travis has access to the repositories on your github\n account *and* those owned by the ClimateImpactLab by enabling\n access in your account settings.\n ii. Next to \"My Repositories\" click the '+' icon\n iii. Flip the switch on ClimateImpactLab/impax. If\n you don't see it in the list, click 'Sync account', and make\n sure you are looking at the ClimateImpactLab repositories.\n iv. Push a change to your package (for example, you could delete\n this section). You should see tests start running on travis\n automatically.\n v. Start writing tests for your code in the \n ``impax/tests`` folder. There are some\n examples already in there to get you started.\n\n b. Set up docs\n\n i. go to https://readthedocs.io and sign in/sign up with github.\n Same deal - make sure readthedocs has access to your github\n account and ClimateImpactLab.\n ii. click 'Import a project', go to ClimateImpactLab, and refresh.\n iii. click the '+' icon next to\n ClimateImpactLab/impax. Pick a name for your\n project. The name has to be globally unique (not just within\n the ClimateImpactLab), so if you chose something with a common\n name you may have to rename the docs.\n iv. go to the settings page for your new docs site, and navigate to the 'advanced settings' tab.\n add `requirements_rtd.txt` to the \"requirements file\" field.\n v. next time you push code to master, docs should build\n automatically. You can view them at\n https://impax.readthedocs.io/en/latest/\n (substitute whatever name you chose).\n\n\n c. Set up updates\n\n i. go to https://pyup.io. you know the drill.\n ii. Go to your account, and click '+ Add Repo'. Sync.\n iii. Add ClimateImpactLab/impax\n with \"Dependency Updates\" and \"SafetyCI\" turned on. Leave \n \"Update Schedules\" off.\n\n d. Set up test coverage monitoring\n\n i. next up: https://coveralls.io. you got this.\n\n e. Breathe easy. The next time you push code, these should all update for\n you! Now that wasn't so bad, was it?\n\n4. Develop with github:\n\n a. In general, it's best to file an issue when you want to change something\n or when you've found a bug, then write tests which test a-priori\n assertions about desired behavior, and then write the minimum amount of\n code required to pass these tests. See the contributing docs for more\n workflow suggestions.\n\n To run all tests on your local machine:\n\n .. code-block:: bash\n\n make test\n\n5. Deploy\n\n a. Set up deployment by registering the package on the python package index\n (PyPI):\n\n i. Create an account on PyPI: https://pypi.python.org/pypi\n ii. Register the package:\n\n .. code-block:: bash\n\n python setup.py register\n\n iii. Encrypt & package your credentials so travis can deploy for you:\n\n .. code-block:: bash\n\n python travis_pypi_setup.py\n\n b. When you're ready to deploy this package, make sure all your changes are\n committed. Then run:\n\n .. code-block:: bash\n\n bumpversion patch # (or minor or major)\n git push\n git push --tags\n\n As soon as this new tagged commit passes tests, travis will deploy for\n you\n\n\n\n\n c. Anyone (in the world) should now be able to install your package with\n\n .. code-block:: bash\n\n pip install [package-name]\n\nFeatures\n--------\n\n* TODO\n\nCredits\n---------\n\nThis package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n\n\n\n=======\nHistory\n=======\n\n0.1.2 (Current version)\n-----------------------\n\nAPI changes\n~~~~~~~~~~~\n\n* :py:func:`impax.csvv.get_gammas` has been deprecated. Use :py:func:`impax.read_csvv` instead (:issue:`37`)\n* :py:meth:`~impax.csvv.Gammas._prep_gammas` has been removed, and :py:meth:`~impax.csvv.Gammas.sample` now\n takes no arguments and returns a sample by default. Seeding the random number generator is now left up to\n the user (:issue:`36`)\n\n\nBug fixes\n~~~~~~~~~\n\n* fix py3k compatability issues (:issue:`39`)\n* fix travis status icon in README\n* add tests for :py:func:`impax.mins._minimize_polynomial`, fix major math errors causing a failure to find minima in :py:mod:`impax.mins` module, and clarify documentation (:issue:`58`)\n\n\n0.1.0 (2017-10-12)\n------------------\n\n* First release on PyPI.\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ClimateImpactLab/impax", "keywords": "impax", "license": "MIT license", "maintainer": "", "maintainer_email": "", "name": "impax", "package_url": "https://pypi.org/project/impax/", "platform": "", "project_url": "https://pypi.org/project/impax/", "project_urls": { "Homepage": "https://github.com/ClimateImpactLab/impax" }, "release_url": "https://pypi.org/project/impax/0.1.2/", "requires_dist": [ "Click (>=6.0)" ], "requires_python": "", "summary": "Impact Forecasting for the Climate Impact Lab", "version": "0.1.2" }, "last_serial": 5829660, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "c28f2d02d393b5b0b5239e91d3106265", "sha256": "7dbee4eb6abba77e3ad8b715175367e8bfdc5192dd2a7223484faddaedcfdea1" }, "downloads": -1, "filename": "impax-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c28f2d02d393b5b0b5239e91d3106265", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12341, "upload_time": "2017-10-13T01:54:35", "url": "https://files.pythonhosted.org/packages/bb/51/30f2c081ddab04168e4d8352a667c1723f0f820571db3d4888b85fbb82ea/impax-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d97c4173f2888a5c3a760eeffd369259", "sha256": "43960d0e0ea44a80debd361a2c24beda52fabb36b6eabd576f68193ce148a3fd" }, "downloads": -1, "filename": "impax-0.1.0.tar.gz", "has_sig": false, "md5_digest": "d97c4173f2888a5c3a760eeffd369259", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18592, "upload_time": "2017-10-13T01:54:36", "url": "https://files.pythonhosted.org/packages/98/0e/19c4b8131e36312549cf5800377a548e279d1a2f1e17b17950313545e06c/impax-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "c44d48ff5ee1523cc08a1d9b914f7c0a", "sha256": "6a189bcdde3079d892c540517e15d6ea1f633f9f9ded867f0ae8f556d728f468" }, "downloads": -1, "filename": "impax-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c44d48ff5ee1523cc08a1d9b914f7c0a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12397, "upload_time": "2017-10-14T20:34:19", "url": "https://files.pythonhosted.org/packages/48/b7/dc72fb8329719f801c0776360f402af39e52d5377d24242f3ef408f6466a/impax-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c9de4093b5453e2fbb2537963f788788", "sha256": "86d870f000932521a62dc6e3861a4f5205c38d8c26623db43dce2ad082208c50" }, "downloads": -1, "filename": "impax-0.1.1.tar.gz", "has_sig": false, "md5_digest": "c9de4093b5453e2fbb2537963f788788", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18637, "upload_time": "2017-10-14T20:34:21", "url": "https://files.pythonhosted.org/packages/30/cf/fc46cd67dfe235f45c40996e69e3d4066c482055d05b83f5f3570bd75c83/impax-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "393a9c6d40448a9c920c179d283fea98", "sha256": "4c79c490b5339888a0323651c35292e00a74d7d4b51fab6bf4705c0633690056" }, "downloads": -1, "filename": "impax-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "393a9c6d40448a9c920c179d283fea98", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13649, "upload_time": "2018-02-27T00:04:21", "url": "https://files.pythonhosted.org/packages/54/c9/5a24a2a00181ed23f409c4fde3ff423a98618be575c79373a1e0ba513ec9/impax-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "800ccc68f3217bf58aff27f33ab428a5", "sha256": "6ff6ce0d3ebc217a2d96e2eed32f70f493b5a85b0bf5cafc894c1baa62576692" }, "downloads": -1, "filename": "impax-0.1.2.tar.gz", "has_sig": false, "md5_digest": "800ccc68f3217bf58aff27f33ab428a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22948, "upload_time": "2018-02-27T00:04:23", "url": "https://files.pythonhosted.org/packages/f4/6d/40f8dba81a2456ae66ac9931a2510d4be75c5d98272c159a9713f9dd4b45/impax-0.1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "393a9c6d40448a9c920c179d283fea98", "sha256": "4c79c490b5339888a0323651c35292e00a74d7d4b51fab6bf4705c0633690056" }, "downloads": -1, "filename": "impax-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "393a9c6d40448a9c920c179d283fea98", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13649, "upload_time": "2018-02-27T00:04:21", "url": "https://files.pythonhosted.org/packages/54/c9/5a24a2a00181ed23f409c4fde3ff423a98618be575c79373a1e0ba513ec9/impax-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "800ccc68f3217bf58aff27f33ab428a5", "sha256": "6ff6ce0d3ebc217a2d96e2eed32f70f493b5a85b0bf5cafc894c1baa62576692" }, "downloads": -1, "filename": "impax-0.1.2.tar.gz", "has_sig": false, "md5_digest": "800ccc68f3217bf58aff27f33ab428a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22948, "upload_time": "2018-02-27T00:04:23", "url": "https://files.pythonhosted.org/packages/f4/6d/40f8dba81a2456ae66ac9931a2510d4be75c5d98272c159a9713f9dd4b45/impax-0.1.2.tar.gz" } ] }