{
"info": {
"author": "Peter R. Wiecha",
"author_email": "wiechapeter@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Physics"
],
"description": "***********************************\nRequirements / Installation\n***********************************\n\npyGDM2 is available on `pypi `_ and `gitlab `_. \n\nDetailed documentation with many examples is avaiable at the `pyGDM2 documentation website `_. See also the `documentation paper on arXiv (1802.04071) `_\n\n\n\n\nRequirements\n================================\n\nPython\n------------------\n - **python** (2.7 or 3.5+, `python `_)\n - **numpy** (`numpy `_)\n - **python headers** (under ubuntu, install the package *python-dev* or *python-devel*)\n\n\nFortran\n------------------\n - *fortran* compiler (tested with **gfortran**. `gcc `_)\n - **openmp** (usually comes with fortran. `openmp `_)\n - **f2py** (comes with **numpy**. `link `_)\n\n\nOptional Python packages\n-------------------------------------\n - **scipy** >= v0.17.0, lower versions supported with restrictions (*Strongly recommended*. Used for standard solver LU decomposition and several tools. `scipy `_)\n - **matplotlib** (*Strongly recommended*. For all 2D visualization tools. `matplotlib `_)\n - **mpi4py** (for MPI parallelized calculation of spectra. `mpi4py `_)\n - **mayavi** (for all 3D visualization. `mayavi `_)\n - **PIL** (image processing. `PIL `_)\n - **pathos** (for multi-threaded generalized propagator operations. `pathos `_)\n - **pytables** (v3.x recommended. For hdf5 saving/loading of simulations. `pytables `_)\n - **PaGMO / PyGMO** (version 2.4+. *Required* for the **EO** submodule. `pagmo `_)\n - **pycuda** (tested with version 2018.1, for GPU-based matrix inversion. `pyCUDA `_, for problems during installation with pip, see `solution proposed here `_)\n - **scikit-cuda** (tested with version 0.5, for GPU-based matrix inversion. `scikit-cuda `_)\n - alternatively: **cupy** (version 7+, tested with version 7.0.0b4, alternative to *pycuda* for GPU-based matrix inversion. `cupy `_)\n\n(all available via `pip `_)\n\n\n\nInstallation under linux\n=============================================\n\nVia pip\n-------------------------------\n\nInstall from pypi repository via\n\n.. code-block:: bash\n \n $ pip install pygdm2\n\n\n\nVia setup script\n-------------------------------\n\nThe easiest possibility to compile (and install) pyGDM is via the \nsetup-script, which uses the extended *distutils* from *numpy*. \n\nTo install pyGDM, run in the source directory:\n\n.. code-block:: bash\n \n $ python setup.py install\n\nTo install to a user-defined location, use the *prefix* option:\n\n.. code-block:: bash\n \n $ python setup.py install --prefix=/some/specific/location\n\n\nTo only compile without installation, use\n\n.. code-block:: bash\n \n $ python setup.py build\n\n\n\n\nManual compilation\n-------------------------------------------------------------\n\n1. clone git:\n\n .. code-block:: bash\n \n $ git clone https://gitlab.com/wiechapeter/pyGDM2.git\n\n2.a *python 2.7*: compile fortran parts:\n\n .. code-block:: bash\n \n $ cd fortranBase\n $ make\n \n2.b *python 3.5+*:\n\n .. code-block:: bash\n \n $ cd fortranBase\n $ make python3\n\n3. *optional, for system-wide usage* add to **path** and **pythonpath**, \n e.g. add following lines to file \"/home/USER/.profile\", where \n \"path_of_pyGDM_folder\" is the pyGDM installation directory:\n \n .. code-block:: bash\n \n PATH=\"path_of_pyGDM_folder:$PATH\"\n export PATH\n \n PYTHONPATH=\"path_of_pyGDM_folder:$PYTHONPATH\"\n export PYTHONPATH\n\n \n\n\nInstallation under windows\n=============================================\n\nFor windows, we also recommend `Anaconda `_ in which pyGDM can be installed easily via pip. See also the MacOS X instructions, but you can skip all steps for installing the gcc compilers, since the windows version of pyGDM comes as pre-compiled binary package.\n\nVia pip\n-------------------------------\n\nWe provide a 64bit windows binary on the pypi repository (tested on Win7 and Win10). Install via\n\n.. code-block:: bash\n \n $ pip install pygdm2\n\n \nCompile using the Anaconda distribution (tested with anaconda3)\n------------------------------------------------------------------------------------------\n \n1. get the repo (e.g. download from gitlab)\n\n2. install gcc compiler:\n\n .. code-block:: bash\n \n $ conda install m2w64-toolchain libpython\n\n3. compile fortran parts:\n\n .. code-block:: bash\n \n $ python setupy.py build\n\n4. install:\n\n .. code-block:: bash\n \n $ python setupy.py install\n\n\n\n\n\nInstallation under Mac OS X\n=============================================\n\nUsing the Anaconda distribution\n-------------------------------------------------------------\n\nThe default compiler on OSX uses a clang which does not support OpenMP. Hence compilation might fail. We therefore suggest using `Anaconda (Mac) `_ and install gcc from the conda repository in a virtualenv (Here the example of python2. python3 was not tested on OSX so far):\n\n .. code-block:: bash\n \n $ conda create -n python2 python=2.7 anaconda\n\n\"anaconda\" at the end will copy the whole anaconda distribution to the virtial env. You can omit this option and create a \"blank\" virtual environment to install only selected packages. \n\nNext activate the virtualenv and install the required software:\n\n .. code-block:: bash\n\n $ source activate python2\n $ xcode-select --install\n $ conda install pip\n $ conda install gcc\n $ pip install pygdm2\n \nAlso make sure you have the latest versions of numpy and scipy:\n\n .. code-block:: bash\n \n $ pip install numpy scipy --upgrade\n \n\n\n\n\nWithout Anaconda\n-------------------------------------------------------------\n\nAlternatively, you can download the latest version and compile it manually without OpenMP support, which should work with the default OSX compiler:\n\n.. code-block:: bash\n \n $ python setup.py install --no-openmp\n\n\n\n\n\n\nAuthors\n=========================\n\nPython code\n------------------------\n - P\\. R. Wiecha\n - contributions by C\\. Majorel\n\n\nFortran code\n-------------------------\n - C\\. Girard\n - A\\. Arbouet\n - R\\. Marty\n - P\\. R. Wiecha",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://gitlab.com/wiechapeter/pyGDM2",
"keywords": "coupled dipoles method,green dyadic method,electrodynamical simulations,nano optics,frequency-domain",
"license": "GPLv3+",
"maintainer": "",
"maintainer_email": "",
"name": "pyGDM2",
"package_url": "https://pypi.org/project/pyGDM2/",
"platform": "",
"project_url": "https://pypi.org/project/pyGDM2/",
"project_urls": {
"Homepage": "https://gitlab.com/wiechapeter/pyGDM2"
},
"release_url": "https://pypi.org/project/pyGDM2/1.0.10.1/",
"requires_dist": null,
"requires_python": ">=2.7",
"summary": "A python full-field electrodynamical solver, based on the Green dyadic method (volume integral technique in frequency domain).",
"version": "1.0.10.1"
},
"last_serial": 5944090,
"releases": {
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "cadc3967ba35a8b59c1b654093be6dd6",
"sha256": "2721834ffa64f9e64df5678d0f3420fea7e048d03b019399c098db244da5006b"
},
"downloads": -1,
"filename": "pyGDM2-1.0.1-cp27-cp27m-win_amd64.whl",
"has_sig": false,
"md5_digest": "cadc3967ba35a8b59c1b654093be6dd6",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 531341,
"upload_time": "2018-03-24T13:41:52",
"url": "https://files.pythonhosted.org/packages/4c/44/2e3af57c0a86ec913fa24966864c6c024b50df1dfa7bee14c4ada8ae1abd/pyGDM2-1.0.1-cp27-cp27m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c2f5e353fcfbe005a5aca761c534fd3f",
"sha256": "3f682282e5c980fe8e5acfa2e317bdf9663a00edcf1f4be8f057378e2c7a731f"
},
"downloads": -1,
"filename": "pyGDM2-1.0.1-py2.7-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "c2f5e353fcfbe005a5aca761c534fd3f",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 435399,
"upload_time": "2018-02-13T09:12:21",
"url": "https://files.pythonhosted.org/packages/10/12/42eb51779e66f808f6ad7f4700e154a5b7ff181391177dd6b662655c1d07/pyGDM2-1.0.1-py2.7-linux-x86_64.egg"
},
{
"comment_text": "",
"digests": {
"md5": "03b19f8d49b7e337c7c2f492e148e930",
"sha256": "9f981db9569ff05d4d76c423144df6aa163ccac8ff2411ba56e798de1f15f1d1"
},
"downloads": -1,
"filename": "pyGDM2-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "03b19f8d49b7e337c7c2f492e148e930",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 272023,
"upload_time": "2018-02-13T09:12:10",
"url": "https://files.pythonhosted.org/packages/66/f5/f4bf54c1574b575ba808a6292627f50948c0e5600571959121e4d83d1836/pyGDM2-1.0.1.tar.gz"
}
],
"1.0.10": [
{
"comment_text": "",
"digests": {
"md5": "66e280197dbed99335cd6fcddef58599",
"sha256": "d4c6f550536fd11b61fa73a5e801d9c1fd2437835c0f050d0119de894ad35ecb"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10-cp35-cp35m-win_amd64.whl",
"has_sig": false,
"md5_digest": "66e280197dbed99335cd6fcddef58599",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=2.7",
"size": 375136,
"upload_time": "2019-10-02T10:11:03",
"url": "https://files.pythonhosted.org/packages/12/59/bac3745c9f9b2899b08bd50e724292987a3bb3953c9c0f233a66b2cdbbe0/pyGDM2-1.0.10-cp35-cp35m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "83b3fc7ff31344cc1c891376e3f7c76f",
"sha256": "1b006f69f3c7726c77f44bc2bc3619b11e5531f4663fac16e21acd18de730d31"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "83b3fc7ff31344cc1c891376e3f7c76f",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=2.7",
"size": 385447,
"upload_time": "2019-10-02T10:11:06",
"url": "https://files.pythonhosted.org/packages/12/56/516fd71da93f25cc08f6d43dbf1f3e732f54c0caf7b7fd238ee684efb570/pyGDM2-1.0.10-cp36-cp36m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "102450a14e98ad8af57658133f586793",
"sha256": "a38e1a5424a867885b9a8135e5aac351eab6864cdc7bd190ea1e2695b4f4391e"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "102450a14e98ad8af57658133f586793",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=2.7",
"size": 386200,
"upload_time": "2019-10-02T10:11:09",
"url": "https://files.pythonhosted.org/packages/4e/3f/5ce7e2a317cc376952f5bfd0e2af978fe8e9c9f943480f6378083fb8ba22/pyGDM2-1.0.10-cp37-cp37m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8f492d15cc637fc1e24cf06b40670b82",
"sha256": "4e0e0249bcb048ab82be6ceea2a227639a6eb349842d4dc4500dc5a5bbff7120"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.linux-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "8f492d15cc637fc1e24cf06b40670b82",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7",
"size": 447818,
"upload_time": "2019-10-02T09:54:11",
"url": "https://files.pythonhosted.org/packages/22/ef/4fceccab0efdaac5ef1620a11e97051fab5d6c1f5e9f4e27384c6b3e0b6a/pyGDM2-1.0.10.linux-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "f3e0db892293de3f053fda3f5e386a64",
"sha256": "23edd93313ff00d8d59b8610ec38c7cf530f35a09c21da65356c60be4e2f82cc"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10-py2.7-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "f3e0db892293de3f053fda3f5e386a64",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": ">=2.7",
"size": 477451,
"upload_time": "2019-10-02T09:54:14",
"url": "https://files.pythonhosted.org/packages/92/9c/e57406088d36b0f493c320b03611dc247140302240707fb3cc4f33ed7cea/pyGDM2-1.0.10-py2.7-linux-x86_64.egg"
},
{
"comment_text": "",
"digests": {
"md5": "33ae7a4d3428d3f5853a6f8e31f63dbb",
"sha256": "7421778c7cc3c6bab48a7999afcd88a7706a8db284e82b571af35195e3d23dcc"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10-py3.5-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "33ae7a4d3428d3f5853a6f8e31f63dbb",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": ">=2.7",
"size": 481992,
"upload_time": "2019-10-02T09:54:19",
"url": "https://files.pythonhosted.org/packages/93/3e/77a5706e1e600f85ddae35f0d3eb8d824e41dcd01153a97ef398a2e88fe8/pyGDM2-1.0.10-py3.5-linux-x86_64.egg"
}
],
"1.0.10.1": [
{
"comment_text": "",
"digests": {
"md5": "a7812b2124dda3085777ec1401e48222",
"sha256": "5afdc2411cdf27d522bbc0d910ab00a8567d4c63b253000aa8ed6c528529dc17"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.1-cp35-cp35m-win_amd64.whl",
"has_sig": false,
"md5_digest": "a7812b2124dda3085777ec1401e48222",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=2.7",
"size": 375053,
"upload_time": "2019-10-08T10:16:26",
"url": "https://files.pythonhosted.org/packages/b6/68/476915705092f4c67cb40a9bf0bdc9fa0a7554c2da3839f4122f5356e133/pyGDM2-1.0.10.1-cp35-cp35m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f7942352b72d471b7aa9bdfe54133563",
"sha256": "8d1e8465bc78b0f29b5175180e968e34046e6467aed79d8b17cd5a850f511a69"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.1-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "f7942352b72d471b7aa9bdfe54133563",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=2.7",
"size": 386109,
"upload_time": "2019-10-08T10:16:29",
"url": "https://files.pythonhosted.org/packages/21/34/9adfe74d5ee6be247629a65814b70a6826ededf440ab6c49ab328953151f/pyGDM2-1.0.10.1-cp36-cp36m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7282581701aa1671f22fb85f01a50b18",
"sha256": "8938cff2b3518dcfdd367af91482a7ed9a36d19448b2cc2630fa99316a25d5fb"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.1-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "7282581701aa1671f22fb85f01a50b18",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=2.7",
"size": 386843,
"upload_time": "2019-10-08T10:16:33",
"url": "https://files.pythonhosted.org/packages/bb/ec/7de182e2375b3c874947546f32900ac3583bf65629f6a30316e49c3a6ea8/pyGDM2-1.0.10.1-cp37-cp37m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c8f675d874ed687db9b9d4925687573e",
"sha256": "193d1913b5d2db006016f2ea6d9ca3c8ae7a7bbee34f24ca4c3dd2a58d0f3c51"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.1.linux-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "c8f675d874ed687db9b9d4925687573e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7",
"size": 450870,
"upload_time": "2019-10-08T09:58:47",
"url": "https://files.pythonhosted.org/packages/c9/47/9cef344a495c676f54dad951707c39739025343d6fd814ddcb1ef2d39b24/pyGDM2-1.0.10.1.linux-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "a078c56c05d9629aed0abb7ac5542de6",
"sha256": "10c7a8ece64c4cbc72f0f1b602550a5db18e5b0d2580ff4176b8c12d11e803a4"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.1-py2.7-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "a078c56c05d9629aed0abb7ac5542de6",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": ">=2.7",
"size": 478995,
"upload_time": "2019-10-08T09:58:49",
"url": "https://files.pythonhosted.org/packages/5b/e8/3717fd1ace530ceca0bbd0aab9ab504a5266c5f8453d1b1d02fcd06bc3fc/pyGDM2-1.0.10.1-py2.7-linux-x86_64.egg"
},
{
"comment_text": "",
"digests": {
"md5": "b1df98c88546b13377c1da2e75249785",
"sha256": "c78597be1033443bff604235eecd2f9460e45ff72e73c8d06a9b509d00d1cf13"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.1-py3.5-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "b1df98c88546b13377c1da2e75249785",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": ">=2.7",
"size": 487747,
"upload_time": "2019-10-08T09:58:52",
"url": "https://files.pythonhosted.org/packages/98/18/c617f7ee8d7f2532b9933adb3af743293a9d5f5ce135497bbdb0a06dfb4f/pyGDM2-1.0.10.1-py3.5-linux-x86_64.egg"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "7980e2214bf491244f8f85dc467e5b09",
"sha256": "1b997903a0f28ae256d7744abbad39727ff1c69b4d5e9a6d6748ed74cdb54ea9"
},
"downloads": -1,
"filename": "pyGDM2-1.0.2.linux-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "7980e2214bf491244f8f85dc467e5b09",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7",
"size": 405307,
"upload_time": "2018-03-30T10:10:31",
"url": "https://files.pythonhosted.org/packages/53/34/fc898bc37f2d4c7fdd58b783cb3067a0fd8246079e5e2af73e0aaf67af5f/pyGDM2-1.0.2.linux-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "f70851ad9fb6080ffbc31b175ca7fa9a",
"sha256": "31d540536f969509669829a591788576a4ed62f316c0dd3136ae27499cbe6da4"
},
"downloads": -1,
"filename": "pyGDM2-1.0.2-py2.7-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "f70851ad9fb6080ffbc31b175ca7fa9a",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": ">=2.7",
"size": 435405,
"upload_time": "2018-03-30T10:10:33",
"url": "https://files.pythonhosted.org/packages/5a/c7/5bfc4598106c441c00750382e795fc6501af56eb08d664dae548ca65957b/pyGDM2-1.0.2-py2.7-linux-x86_64.egg"
}
],
"1.0.3": [
{
"comment_text": "",
"digests": {
"md5": "141f3c99cb69e2d458cbb0c4b5951183",
"sha256": "ce77392a105650ec23f804a278830c5a2274d29f2fa26c23e944493c334c8842"
},
"downloads": -1,
"filename": "pyGDM2-1.0.3-cp27-cp27m-win_amd64.whl",
"has_sig": false,
"md5_digest": "141f3c99cb69e2d458cbb0c4b5951183",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": ">=2.7",
"size": 473951,
"upload_time": "2018-04-17T21:02:01",
"url": "https://files.pythonhosted.org/packages/71/82/deacba060e392776013e1fb84e19f16abd3a6db27234f1395f7b86ef5099/pyGDM2-1.0.3-cp27-cp27m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3052694eb84c4cd2c95c52cd4e52e88f",
"sha256": "406ab8b180654875b15f9e1cb4742f53adda31bb4d94c563ed1ed6d1906e5615"
},
"downloads": -1,
"filename": "pyGDM2-1.0.3-py2.7-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "3052694eb84c4cd2c95c52cd4e52e88f",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": ">=2.7",
"size": 438018,
"upload_time": "2018-04-06T12:07:01",
"url": "https://files.pythonhosted.org/packages/23/0b/e7013bd66b483c2426b0f50b684a840f043165599fc36cc010ce3aac353d/pyGDM2-1.0.3-py2.7-linux-x86_64.egg"
},
{
"comment_text": "",
"digests": {
"md5": "0e2e8cdb62a119b81486b70aff629acc",
"sha256": "dbb0ac24a4e050e1219a9da2eac763c8447ebecc627bc76d6129eab463c69e51"
},
"downloads": -1,
"filename": "pyGDM2-1.0.3.tar.gz",
"has_sig": false,
"md5_digest": "0e2e8cdb62a119b81486b70aff629acc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7",
"size": 275560,
"upload_time": "2018-04-06T12:07:03",
"url": "https://files.pythonhosted.org/packages/83/87/204b22717f3c18bd346152a1c295213e78d5f6ae4b015ec354231af32977/pyGDM2-1.0.3.tar.gz"
}
],
"1.0.4": [
{
"comment_text": "",
"digests": {
"md5": "1fb5b6f26d42b39171209772f9b16c7b",
"sha256": "8b46c5d770e8ee38c6b97d471a301f36fc30a1856d352e6521b99def73cefe9b"
},
"downloads": -1,
"filename": "pyGDM2-1.0.4-cp27-cp27m-win_amd64.whl",
"has_sig": false,
"md5_digest": "1fb5b6f26d42b39171209772f9b16c7b",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 476153,
"upload_time": "2018-06-07T18:48:10",
"url": "https://files.pythonhosted.org/packages/f1/69/c8b1fa04954daffc06ab251077e7f59687cafc82263a39bae23c7b605834/pyGDM2-1.0.4-cp27-cp27m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6608df21a5dc22fd96ee5ac7cd77a434",
"sha256": "e23cebdb6e320353c66da1b59d90f1a8491847d6f681c4bf2e8c6e775ae0c914"
},
"downloads": -1,
"filename": "pyGDM2-1.0.4-py2.7-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "6608df21a5dc22fd96ee5ac7cd77a434",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 442492,
"upload_time": "2018-06-07T15:48:46",
"url": "https://files.pythonhosted.org/packages/8f/91/bf99d1bbb433443fadd66dc7e6c06231718c5bf52456d446a388a664fd4a/pyGDM2-1.0.4-py2.7-linux-x86_64.egg"
},
{
"comment_text": "",
"digests": {
"md5": "b4f978a9a72fe5862fc23ec3f83a7040",
"sha256": "5ed258a667f18eedd4b19f68a64d52a49a70f66b6a1d66cf3868fea3f4af9504"
},
"downloads": -1,
"filename": "pyGDM2-1.0.4.tar.gz",
"has_sig": false,
"md5_digest": "b4f978a9a72fe5862fc23ec3f83a7040",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 379104,
"upload_time": "2018-06-07T15:48:48",
"url": "https://files.pythonhosted.org/packages/23/37/8e4a947421d444f3512589a3be3748904c139d910db1b2a7d489efc565bf/pyGDM2-1.0.4.tar.gz"
}
],
"1.0.5": [
{
"comment_text": "",
"digests": {
"md5": "a79685996008038a621f82866bcb915a",
"sha256": "4600d3d6f18fd28a725ac01dfb60c2f312a7194dd42e03e37b6373e9adc1f0c4"
},
"downloads": -1,
"filename": "pyGDM2-1.0.5-cp27-cp27m-win_amd64.whl",
"has_sig": false,
"md5_digest": "a79685996008038a621f82866bcb915a",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": ">=2.7",
"size": 475793,
"upload_time": "2018-07-09T09:17:24",
"url": "https://files.pythonhosted.org/packages/35/65/7144b953805d5b568aeace72648bf960c613e8f816ab086a6710da7231bc/pyGDM2-1.0.5-cp27-cp27m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9c4726d6d3c53fe4053c57f0e0a11181",
"sha256": "ad0106bfda10d56d9e231a034f286bb550ff82cd2fbdb5ecd6bdebaea977d594"
},
"downloads": -1,
"filename": "pyGDM2-1.0.5-py2.7-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "9c4726d6d3c53fe4053c57f0e0a11181",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": ">=2.7",
"size": 441606,
"upload_time": "2018-07-09T09:04:44",
"url": "https://files.pythonhosted.org/packages/0e/b9/1c812e5fb54d2c7dbbd18295929173b71e54ad01de4932eecc2fbd0341cf/pyGDM2-1.0.5-py2.7-linux-x86_64.egg"
},
{
"comment_text": "",
"digests": {
"md5": "307f2c786bfb95413580457d58d30071",
"sha256": "7e5934c05f54f26bae395c300cd1ca04f3a553dc0c3c30f389c6b30d02d5ab71"
},
"downloads": -1,
"filename": "pyGDM2-1.0.5.tar.gz",
"has_sig": false,
"md5_digest": "307f2c786bfb95413580457d58d30071",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7",
"size": 521534,
"upload_time": "2018-07-09T09:04:34",
"url": "https://files.pythonhosted.org/packages/06/e9/9d2aa3707cd8ae836f0c50c2324000fec5483aa1a345c06fd017733efa6d/pyGDM2-1.0.5.tar.gz"
}
],
"1.0.6": [
{
"comment_text": "",
"digests": {
"md5": "1e2dc0b64d88b48e99990122df644885",
"sha256": "2ea7d880b757a20d3bb39d4b6566b1978e3834959b6f05a350570f64cf7622e7"
},
"downloads": -1,
"filename": "pyGDM2-1.0.6-cp27-cp27m-win_amd64.whl",
"has_sig": false,
"md5_digest": "1e2dc0b64d88b48e99990122df644885",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": ">=2.7",
"size": 365395,
"upload_time": "2018-10-31T16:46:00",
"url": "https://files.pythonhosted.org/packages/63/61/868355b1951b8e2f935dff50be4f4e84263d72c195c3dd16a1df5aaa27bc/pyGDM2-1.0.6-cp27-cp27m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "06c5d80843dc18f34e9a8ad6e3fcf154",
"sha256": "bacb46f62f52900f10e8207f13a4c33abc71d169305782cea8407ffc1ace0b80"
},
"downloads": -1,
"filename": "pyGDM2-1.0.6-cp35-cp35m-win_amd64.whl",
"has_sig": false,
"md5_digest": "06c5d80843dc18f34e9a8ad6e3fcf154",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=2.7",
"size": 356272,
"upload_time": "2018-10-31T23:35:11",
"url": "https://files.pythonhosted.org/packages/56/77/6d8d161487896bb284e7a534969a77ceb79d8e6db674da4eae38b54ea875/pyGDM2-1.0.6-cp35-cp35m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fbbc9b0402455a65ab81de21d3b76bed",
"sha256": "06545549a31809edbb4475eac97167a728ea125fec214c141e1e530f321b15c8"
},
"downloads": -1,
"filename": "pyGDM2-1.0.6-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "fbbc9b0402455a65ab81de21d3b76bed",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=2.7",
"size": 368336,
"upload_time": "2018-10-31T23:30:53",
"url": "https://files.pythonhosted.org/packages/27/93/8d23436b9006e2acee47dad2ba8d46b7bb9b7621545760c38d7bb892c407/pyGDM2-1.0.6-cp36-cp36m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fabc4ab89f59766b6846e2692a93a959",
"sha256": "0ea8900bd2a6ec7f6d78ce7bad6fe554d30f81817773323b8e1f440f85aee2aa"
},
"downloads": -1,
"filename": "pyGDM2-1.0.6-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "fabc4ab89f59766b6846e2692a93a959",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=2.7",
"size": 356869,
"upload_time": "2018-10-31T15:54:20",
"url": "https://files.pythonhosted.org/packages/51/9d/5e5b50a0b97f5e7d7d6701f205f69b10a264ce6fd190dbc6d9d1a2b26849/pyGDM2-1.0.6-cp37-cp37m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6e70f12bdab9ffc995c171ad7a47d258",
"sha256": "faf298f7d9a9adb24fe3083683dbc26f7fd87a82e322cecdfdd0ff30a0164421"
},
"downloads": -1,
"filename": "pyGDM2-1.0.6-py2.7-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "6e70f12bdab9ffc995c171ad7a47d258",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": ">=2.7",
"size": 444428,
"upload_time": "2018-10-31T15:59:01",
"url": "https://files.pythonhosted.org/packages/1d/fe/9c4c386a0d35dc9bcc50d231d42e0700a8354c2b264945fcedd30d1b6ffa/pyGDM2-1.0.6-py2.7-linux-x86_64.egg"
},
{
"comment_text": "",
"digests": {
"md5": "04feb3a34f9a8968c2d59b9b82c7456c",
"sha256": "756b2e8d2825fdcdd100f835de1f0808db0b4f593425fa90c8ef9774300df49d"
},
"downloads": -1,
"filename": "pyGDM2-1.0.6-py3.5-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "04feb3a34f9a8968c2d59b9b82c7456c",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": ">=2.7",
"size": 451501,
"upload_time": "2018-10-31T16:18:50",
"url": "https://files.pythonhosted.org/packages/7b/83/888d594d5189768cfdf2037ee9e6bf24a8f24b6f7e6e33ac4ef97f8bfb71/pyGDM2-1.0.6-py3.5-linux-x86_64.egg"
},
{
"comment_text": "",
"digests": {
"md5": "fa1ad75b810e097fddd35aa44210d4cc",
"sha256": "0cf7450d7e4a3f594a4ec97f9b288f1387236ce52499953921442226439f2b87"
},
"downloads": -1,
"filename": "pyGDM2-1.0.6.tar.gz",
"has_sig": false,
"md5_digest": "fa1ad75b810e097fddd35aa44210d4cc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7",
"size": 437644,
"upload_time": "2018-10-31T15:59:03",
"url": "https://files.pythonhosted.org/packages/3a/05/21628940613d9b3bc01b2e4bd4d5f1d1b50390c866bd205751ddb32b2fcc/pyGDM2-1.0.6.tar.gz"
}
],
"1.0.7": [
{
"comment_text": "",
"digests": {
"md5": "142fb7f26d4104830e947025d854be23",
"sha256": "5fb650ed8f67c477e71495f9066002feea7c06d6e0be8139cfd32f8675eb9da2"
},
"downloads": -1,
"filename": "pyGDM2-1.0.7-cp27-cp27m-win_amd64.whl",
"has_sig": false,
"md5_digest": "142fb7f26d4104830e947025d854be23",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": ">=2.7",
"size": 474968,
"upload_time": "2018-11-20T14:19:44",
"url": "https://files.pythonhosted.org/packages/21/90/ed6c1ad19e1c067eba4897c9bd745c2341c12196d441eed6e9ecbd0c7e2e/pyGDM2-1.0.7-cp27-cp27m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "cf47f248251b7a5af7f55c2eef481a7b",
"sha256": "6d08ee782da14d1c661bda7d46718289a0ee8f6dec8379e71edbb4d3babbfeab"
},
"downloads": -1,
"filename": "pyGDM2-1.0.7-cp35-cp35m-win_amd64.whl",
"has_sig": false,
"md5_digest": "cf47f248251b7a5af7f55c2eef481a7b",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=2.7",
"size": 357965,
"upload_time": "2018-11-20T14:41:29",
"url": "https://files.pythonhosted.org/packages/a0/86/a68dca4ce31ee87d4adf23f3b7c968f6728cf99075b7ac6735c334791e70/pyGDM2-1.0.7-cp35-cp35m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "bb21a48a1eccb51395839a4366948166",
"sha256": "f96edcab8f3b97402c14e0bd4333e43e9b9d0df99d4928fb0af31bc13c5f1eee"
},
"downloads": -1,
"filename": "pyGDM2-1.0.7-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "bb21a48a1eccb51395839a4366948166",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=2.7",
"size": 369020,
"upload_time": "2018-11-20T14:42:32",
"url": "https://files.pythonhosted.org/packages/d3/a6/5d23522a3bc575ccd89929388aac7b53ce81593033dbd15840fd24f42073/pyGDM2-1.0.7-cp36-cp36m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d0790431c3464813fa255c46c0f8c0dd",
"sha256": "8dded9ed6cab506528429fae7a25a912dce36ffa47d22249b3336b738f2c845d"
},
"downloads": -1,
"filename": "pyGDM2-1.0.7.linux-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "d0790431c3464813fa255c46c0f8c0dd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7",
"size": 416747,
"upload_time": "2018-11-20T13:59:43",
"url": "https://files.pythonhosted.org/packages/5b/45/edfaf56dd19876604f9c5ecd46bbf2971e5e1e92160e33dd39535afb9d3f/pyGDM2-1.0.7.linux-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "9fe16ecc431b19d30f299e7af1cf2823",
"sha256": "327987aea09b255d23a35241feffc1edcb1f83b54d12e0ca90410eb9cef65632"
},
"downloads": -1,
"filename": "pyGDM2-1.0.7-py2.7-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "9fe16ecc431b19d30f299e7af1cf2823",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": ">=2.7",
"size": 445743,
"upload_time": "2018-11-20T13:59:46",
"url": "https://files.pythonhosted.org/packages/31/5d/992a0028204cb53beb2a3eb23a272184cee8a476778b977c93a05b7f8a30/pyGDM2-1.0.7-py2.7-linux-x86_64.egg"
}
],
"1.0.8": [
{
"comment_text": "",
"digests": {
"md5": "b4e8a05d27a917ce4649482d71aa7e34",
"sha256": "bcc187975f3569b35b7290ff4885be51b0676bd55254a3cb38d5d44073d76694"
},
"downloads": -1,
"filename": "pyGDM2-1.0.8-cp27-cp27m-win_amd64.whl",
"has_sig": false,
"md5_digest": "b4e8a05d27a917ce4649482d71aa7e34",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": ">=2.7",
"size": 477906,
"upload_time": "2019-06-07T08:29:47",
"url": "https://files.pythonhosted.org/packages/2e/f7/7844ac52009683490882578e6ba21668fbfe3f46930619772727a6070dc1/pyGDM2-1.0.8-cp27-cp27m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "082a5764391b258da9a72965a7e8ffc3",
"sha256": "fff0961f3a1dffaf81299fb38633955a9960d4542333956dd157013d19741dc5"
},
"downloads": -1,
"filename": "pyGDM2-1.0.8-cp35-cp35m-win_amd64.whl",
"has_sig": false,
"md5_digest": "082a5764391b258da9a72965a7e8ffc3",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=2.7",
"size": 366603,
"upload_time": "2019-06-07T08:29:49",
"url": "https://files.pythonhosted.org/packages/06/7d/49be3ffc3bd1eb93318f1fd8b0a3bf225cd2e9925dc220ac6d803907f6ef/pyGDM2-1.0.8-cp35-cp35m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "dbbb4d8ae977f0df96b0f687fa801f78",
"sha256": "415fb6ea2fc4c063b970e2d39235c54b691ef7d6b04c2081fecc19f663d99df8"
},
"downloads": -1,
"filename": "pyGDM2-1.0.8-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "dbbb4d8ae977f0df96b0f687fa801f78",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=2.7",
"size": 377224,
"upload_time": "2019-06-07T08:29:53",
"url": "https://files.pythonhosted.org/packages/10/60/8001875ff72d3756855611a068287f48776257850d6eb528a78a29cef7e9/pyGDM2-1.0.8-cp36-cp36m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "2acdaf9125358ee4355d7cb0010d30be",
"sha256": "f150cba2ece346f2c8fd9de9e4796644979b6978930257c29d99cdd8ce43ad2a"
},
"downloads": -1,
"filename": "pyGDM2-1.0.8-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "2acdaf9125358ee4355d7cb0010d30be",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=2.7",
"size": 377947,
"upload_time": "2019-06-07T08:29:55",
"url": "https://files.pythonhosted.org/packages/ae/85/0344e5809187f8fb0ec825d2b04fcc430b8eaa57d0dc150110e6a5623fcf/pyGDM2-1.0.8-cp37-cp37m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "706b2e3f0a822efc783b777a6285ff29",
"sha256": "1dc0ef0075422e7e88c425e0433eb5c3a2ef0461d7c7d679e58ff34a24b235e2"
},
"downloads": -1,
"filename": "pyGDM2-1.0.8-py3.5-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "706b2e3f0a822efc783b777a6285ff29",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": ">=2.7",
"size": 466672,
"upload_time": "2019-06-07T07:31:28",
"url": "https://files.pythonhosted.org/packages/aa/5d/3f90f2c8f5384aac2bdd2a3af062d6bd4db566ad919df78fd056b5086791/pyGDM2-1.0.8-py3.5-linux-x86_64.egg"
},
{
"comment_text": "",
"digests": {
"md5": "d2899787c5670f7089e114e6176fa104",
"sha256": "cfa77db08973df99b5ae96c69a17fde7e4d6066122b726bad1f922fa7d3bdf3a"
},
"downloads": -1,
"filename": "pyGDM2-1.0.8.tar.gz",
"has_sig": false,
"md5_digest": "d2899787c5670f7089e114e6176fa104",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7",
"size": 382353,
"upload_time": "2019-06-07T07:31:31",
"url": "https://files.pythonhosted.org/packages/1f/7a/758f790679a554b9b490212e58a2bf9c6b39a2cd37959615185520aa77d2/pyGDM2-1.0.8.tar.gz"
}
],
"1.0.9": [
{
"comment_text": "",
"digests": {
"md5": "7e671d9913c4dfb87237262694c4b9ed",
"sha256": "3c18894ca731a92403782d562a60e594a2185a617200442059016506d4301621"
},
"downloads": -1,
"filename": "pyGDM2-1.0.9-cp35-cp35m-win_amd64.whl",
"has_sig": false,
"md5_digest": "7e671d9913c4dfb87237262694c4b9ed",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=2.7",
"size": 366941,
"upload_time": "2019-08-22T11:44:23",
"url": "https://files.pythonhosted.org/packages/a8/74/a33084e65da9b5d7c6a3b0043249873bfb2798fcf3950d15fa8e539db087/pyGDM2-1.0.9-cp35-cp35m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d960bc41faa66ad537253b4b49d00126",
"sha256": "f25cb57640e129a2bd2c146fa80ed61201d60dd13ba5d43026ba7f50bf5bcbdb"
},
"downloads": -1,
"filename": "pyGDM2-1.0.9-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "d960bc41faa66ad537253b4b49d00126",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=2.7",
"size": 377802,
"upload_time": "2019-08-22T11:44:26",
"url": "https://files.pythonhosted.org/packages/a3/95/2c33de6a3adc05c9295706f960e0360a258374f80c300df1e8e03ee57f79/pyGDM2-1.0.9-cp36-cp36m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4060424fe8a3dc66742b73b723000489",
"sha256": "813e1d590441f78752a6268cef649e5ab7d9e06e76dab9b55a5a815941f62ecc"
},
"downloads": -1,
"filename": "pyGDM2-1.0.9-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "4060424fe8a3dc66742b73b723000489",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=2.7",
"size": 378515,
"upload_time": "2019-08-22T11:44:29",
"url": "https://files.pythonhosted.org/packages/7e/9e/0dde5be0a70eb6e17c36822ac2a7818a569571d7274581c7db69029dd285/pyGDM2-1.0.9-cp37-cp37m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c958684936c026c887001087dc0ff55b",
"sha256": "78c2fbeaa29fbedff045051e29029b4b413e7382ba7b636bac003f24b67ef6df"
},
"downloads": -1,
"filename": "pyGDM2-1.0.9-py3.5-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "c958684936c026c887001087dc0ff55b",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": ">=2.7",
"size": 470217,
"upload_time": "2019-08-22T11:31:43",
"url": "https://files.pythonhosted.org/packages/1b/b1/140b66b35cdcde1ab677400bceb90d9ba57479a4a5ef5667dbbd674949b1/pyGDM2-1.0.9-py3.5-linux-x86_64.egg"
},
{
"comment_text": "",
"digests": {
"md5": "80006009d2fadc1b9e4e6254860d0ddd",
"sha256": "5cfdedbad88c79a4d7ec69f15e77606914d8985be2af137ee265c0b50696ff78"
},
"downloads": -1,
"filename": "pyGDM2-1.0.9.tar.gz",
"has_sig": false,
"md5_digest": "80006009d2fadc1b9e4e6254860d0ddd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7",
"size": 409980,
"upload_time": "2019-08-22T11:31:46",
"url": "https://files.pythonhosted.org/packages/3a/9a/f278de2004f432ee3b48cd4578e83204b4d3c718d49267f019939de2844e/pyGDM2-1.0.9.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "a7812b2124dda3085777ec1401e48222",
"sha256": "5afdc2411cdf27d522bbc0d910ab00a8567d4c63b253000aa8ed6c528529dc17"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.1-cp35-cp35m-win_amd64.whl",
"has_sig": false,
"md5_digest": "a7812b2124dda3085777ec1401e48222",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=2.7",
"size": 375053,
"upload_time": "2019-10-08T10:16:26",
"url": "https://files.pythonhosted.org/packages/b6/68/476915705092f4c67cb40a9bf0bdc9fa0a7554c2da3839f4122f5356e133/pyGDM2-1.0.10.1-cp35-cp35m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f7942352b72d471b7aa9bdfe54133563",
"sha256": "8d1e8465bc78b0f29b5175180e968e34046e6467aed79d8b17cd5a850f511a69"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.1-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "f7942352b72d471b7aa9bdfe54133563",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=2.7",
"size": 386109,
"upload_time": "2019-10-08T10:16:29",
"url": "https://files.pythonhosted.org/packages/21/34/9adfe74d5ee6be247629a65814b70a6826ededf440ab6c49ab328953151f/pyGDM2-1.0.10.1-cp36-cp36m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7282581701aa1671f22fb85f01a50b18",
"sha256": "8938cff2b3518dcfdd367af91482a7ed9a36d19448b2cc2630fa99316a25d5fb"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.1-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "7282581701aa1671f22fb85f01a50b18",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=2.7",
"size": 386843,
"upload_time": "2019-10-08T10:16:33",
"url": "https://files.pythonhosted.org/packages/bb/ec/7de182e2375b3c874947546f32900ac3583bf65629f6a30316e49c3a6ea8/pyGDM2-1.0.10.1-cp37-cp37m-win_amd64.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c8f675d874ed687db9b9d4925687573e",
"sha256": "193d1913b5d2db006016f2ea6d9ca3c8ae7a7bbee34f24ca4c3dd2a58d0f3c51"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.1.linux-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "c8f675d874ed687db9b9d4925687573e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7",
"size": 450870,
"upload_time": "2019-10-08T09:58:47",
"url": "https://files.pythonhosted.org/packages/c9/47/9cef344a495c676f54dad951707c39739025343d6fd814ddcb1ef2d39b24/pyGDM2-1.0.10.1.linux-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "a078c56c05d9629aed0abb7ac5542de6",
"sha256": "10c7a8ece64c4cbc72f0f1b602550a5db18e5b0d2580ff4176b8c12d11e803a4"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.1-py2.7-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "a078c56c05d9629aed0abb7ac5542de6",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": ">=2.7",
"size": 478995,
"upload_time": "2019-10-08T09:58:49",
"url": "https://files.pythonhosted.org/packages/5b/e8/3717fd1ace530ceca0bbd0aab9ab504a5266c5f8453d1b1d02fcd06bc3fc/pyGDM2-1.0.10.1-py2.7-linux-x86_64.egg"
},
{
"comment_text": "",
"digests": {
"md5": "b1df98c88546b13377c1da2e75249785",
"sha256": "c78597be1033443bff604235eecd2f9460e45ff72e73c8d06a9b509d00d1cf13"
},
"downloads": -1,
"filename": "pyGDM2-1.0.10.1-py3.5-linux-x86_64.egg",
"has_sig": false,
"md5_digest": "b1df98c88546b13377c1da2e75249785",
"packagetype": "bdist_egg",
"python_version": "3.5",
"requires_python": ">=2.7",
"size": 487747,
"upload_time": "2019-10-08T09:58:52",
"url": "https://files.pythonhosted.org/packages/98/18/c617f7ee8d7f2532b9933adb3af743293a9d5f5ce135497bbdb0a06dfb4f/pyGDM2-1.0.10.1-py3.5-linux-x86_64.egg"
}
]
}