diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index fe8b870..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/README.md b/README.md deleted file mode 100644 index 7987b90..0000000 --- a/README.md +++ /dev/null @@ -1,9 +0,0 @@ -# SMA -Software metadata analysis repository - - -## Clustering analysis based on Param's data (3k repos with dependency files) - -1. Kmeans -2. GMM -3. Topic Modeling \ No newline at end of file diff --git a/cluster_analysis/.ipynb_checkpoints/GMM-checkpoint.ipynb b/cluster_analysis/.ipynb_checkpoints/GMM-checkpoint.ipynb deleted file mode 100644 index 7fec515..0000000 --- a/cluster_analysis/.ipynb_checkpoints/GMM-checkpoint.ipynb +++ /dev/null @@ -1,6 +0,0 @@ -{ - "cells": [], - "metadata": {}, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/cluster_analysis/.ipynb_checkpoints/Kmeans-checkpoint.ipynb b/cluster_analysis/.ipynb_checkpoints/Kmeans-checkpoint.ipynb deleted file mode 100644 index 15a4f3a..0000000 --- a/cluster_analysis/.ipynb_checkpoints/Kmeans-checkpoint.ipynb +++ /dev/null @@ -1,3364 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 71, - "metadata": {}, - "outputs": [], - "source": [ - "import json\n", - "import numpy\n", - "import re\n", - "import os\n", - "import numpy as np\n", - "import gensim\n", - "from sklearn.cluster import KMeans\n", - "from sklearn.mixture import GaussianMixture\n", - "from sklearn.decomposition import PCA\n", - "from gensim.models import Doc2Vec" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Load data" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "repos nums: 3012\n", - "repos which have no dependency files: 0\n", - "repos with dependency files: 3012\n", - "Distinct dependency file: 15663\n", - "\n" - ] - } - ], - "source": [ - "input_file ='../data/result_13k.json'\n", - "with open(input_file) as f:\n", - " data = json.load(f)\n", - "print(f'repos nums: {len(data)}')\n", - "\n", - "need_to_remove = []\n", - "for k,v in data.items():\n", - " if 'No dependency' in v:\n", - " need_to_remove.append(k)\n", - "print(f'repos which have no dependency files: {len(need_to_remove)}')\n", - "\n", - "for k in need_to_remove:\n", - " del data[k]\n", - "print(f'repos with dependency files: {len(data)}')\n", - "\n", - "\n", - "rep_list,dep_list = [],[]\n", - "for k,v in data.items():\n", - " rep_list.append(k)\n", - " dep_list.append(v)\n", - " \n", - "dep_dict = {}\n", - "for deps in data.values():\n", - " for i in deps:\n", - " dep_dict[i] = dep_dict.get(i,0)+1\n", - "\n", - "print(f'Distinct dependency file: {len(dep_dict)}',end='\\n\\n')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Doc Embedding" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Number of repos processed: 3012\n" - ] - } - ], - "source": [ - "LabeledSentence1 = gensim.models.doc2vec.TaggedDocument\n", - "all_content_train = []\n", - "j=0\n", - "for em in dep_list:\n", - " all_content_train.append(LabeledSentence1(em,[j]))\n", - " j+=1\n", - "print('Number of repos processed: ', j)" - ] - }, - { - "cell_type": "code", - "execution_count": 33, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "array([-1.79964565e-02, 5.03193913e-03, -4.53790883e-04, 1.87546611e-02,\n", - " -1.51073653e-02, 5.29240351e-03, 4.48650261e-03, 2.58057825e-02,\n", - " 1.13107834e-03, -6.38980325e-03, -2.79571372e-03, 1.99952032e-02,\n", - " 2.62658205e-03, 4.76064906e-03, 4.58404562e-03, -6.07662369e-05,\n", - " 7.02446140e-03, 1.98998954e-02, -7.28431018e-03, 4.22686432e-03,\n", - " -3.28802108e-03, -5.35103725e-03, -1.46459450e-03, -1.33908615e-02,\n", - " 9.41152778e-03, -1.32978503e-02, -1.54262818e-02, 1.49892247e-03,\n", - " 1.08978124e-02, 3.06003058e-04, 4.98316530e-03, -1.23409079e-02,\n", - " 5.65102883e-03, 1.30524095e-02, -2.92868516e-03, -2.43495330e-02,\n", - " -1.46494880e-02, 5.42605668e-03, 1.13541055e-02, 3.10646929e-03,\n", - " 1.02343801e-02, 2.79982705e-02, 1.71133429e-02, 2.76963832e-03,\n", - " 9.40721016e-03, 2.69042440e-02, 3.44380252e-02, -1.19685614e-02,\n", - " -1.41980303e-02, -1.27371140e-02, -7.06279231e-03, -1.67051274e-02,\n", - " -1.11815361e-02, -7.37955701e-03, 1.06698144e-02, -1.98916495e-02,\n", - " -1.35318208e-02, 2.11087931e-02, -1.79498065e-02, 1.34847313e-02,\n", - " -7.40242749e-03, -4.47431859e-03, 1.05381040e-02, 6.78020669e-03,\n", - " -9.58329812e-03, 2.57188529e-02, -1.18612126e-02, 1.45738041e-02,\n", - " -3.96466441e-03, -2.96894014e-02, 2.30677822e-03, -1.24809258e-02,\n", - " 1.82314706e-03, 5.71827218e-03, -1.40258102e-02, -5.93418535e-03,\n", - " 1.42936194e-02, -1.65388435e-02, 1.34064974e-02, -1.80029515e-02,\n", - " -1.80230923e-02, 3.20543945e-02, 1.64449271e-02, -8.18505976e-03,\n", - " 1.30124204e-02, -1.04016028e-02, -1.44007578e-02, 1.54137146e-02,\n", - " 1.80506823e-03, -9.40799061e-03, 1.07408816e-03, -6.09645015e-03,\n", - " 7.13870442e-03, -2.35023797e-02, 4.53795074e-04, -4.70930059e-03,\n", - " 5.41525427e-03, 1.04896231e-02, 7.22275302e-03, -1.68804172e-02],\n", - " dtype=float32)" - ] - }, - "execution_count": 33, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "d2v_model = Doc2Vec(all_content_train, \n", - " size = 100, \n", - " window = 10, \n", - " min_count = 1, \n", - " workers=7, \n", - " dm = 1,\n", - " alpha=0.025, \n", - " min_alpha=0.001)\n", - "d2v_model.train(all_content_train, \n", - " total_examples=d2v_model.corpus_count, \n", - " epochs=10, \n", - " start_alpha=0.002, \n", - " end_alpha=-0.016)\n", - "\n", - "d2v_model[0]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Clustering - Kmeans" - ] - }, - { - "cell_type": "code", - "execution_count": 47, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/opt/anaconda3/envs/Knowledge_Graph/lib/python3.6/site-packages/ipykernel_launcher.py:2: DeprecationWarning: Call to deprecated `doctag_syn0` (Attribute will be removed in 4.0.0, use docvecs.vectors_docs instead).\n", - " \n" - ] - } - ], - "source": [ - "kmeans_model = KMeans(n_clusters=10, init='k-means++', max_iter=500) \n", - "X = kmeans_model.fit(d2v_model.docvecs.doctag_syn0)\n", - "labels=kmeans_model.labels_" - ] - }, - { - "cell_type": "code", - "execution_count": 53, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0 ---> https://github.com/AgriculturalModelExchangeInitiative/Crop2ML\n", - "0 ---> https://github.com/natcap/natgeo-dams\n", - "0 ---> https://github.com/hlgirard/CrystalML\n", - "0 ---> https://github.com/houghb/ligpy\n", - "0 ---> https://github.com/oschwengers/referenceseeker\n", - "0 ---> https://github.com/LPDI-EPFL/trivalent_cocktail\n", - "0 ---> https://github.com/CIRA-Pulsars-and-Transients-Group/vcstools\n", - "5 ---> https://github.com/usc-isi-i2/kgtk\n", - "0 ---> https://github.com/garciagenrique/template_project_escape\n", - "9 ---> https://github.com/gwu-libraries/sfm-docker\n", - "5 ---> https://github.com/javaparser/javaparser\n", - "0 ---> https://github.com/williamjameshandley/anesthetic\n", - "0 ---> https://github.com/yardencsGitHub/tweetynet\n", - "0 ---> https://github.com/jagalindo/A-Python-QX-implementation\n", - "0 ---> https://github.com/jbkinney/mavenn\n", - "9 ---> https://github.com/GeoCode-polymtl/Seis_float16\n", - "0 ---> https://github.com/sebp/scikit-survival\n", - "0 ---> https://github.com/similitude/sumo-simmer\n", - "5 ---> https://github.com/GlobalNamesArchitecture/gnresolver\n", - "9 ---> https://github.com/nevenjovanovic/treebank-polybius\n", - "0 ---> https://github.com/Biophotonics-COMI/flimview\n", - "0 ---> https://github.com/joshspeagle/brutus\n", - "5 ---> https://github.com/metomi/isodatetime\n", - "0 ---> https://github.com/indralab/pybiopax\n", - "6 ---> https://github.com/FNNDSC/ChRIS_ui\n", - "5 ---> https://github.com/openphacts/explorer2\n", - "0 ---> https://github.com/TDAmeritrade/stumpy\n", - "0 ---> https://github.com/habi/acinar-analysis\n", - "0 ---> https://github.com/mbernste/hypothesis-driven-SRA-queries\n", - "3 ---> https://github.com/JiaxiangBU/dynamic_topic_modeling\n", - "9 ---> https://github.com/KnowledgeCaptureAndDiscovery/OBA_sparql\n", - "0 ---> https://github.com/maxscheurer/cppe\n", - "0 ---> https://github.com/Sung-Huan/ANNOgesic\n", - "5 ---> https://github.com/mayconbordin/storm-applications\n", - "0 ---> https://github.com/gauteh/ibcao_py\n", - "0 ---> https://github.com/GLAM-Workbench/te-papa-api\n", - "5 ---> https://github.com/cerebis/shap\n", - "3 ---> https://github.com/K3D-tools/K3D-jupyter\n", - "9 ---> https://github.com/CCMi-FIT/ontouml-code-generator\n", - "9 ---> https://github.com/diging/tethne\n", - "0 ---> https://github.com/mmhs013/pyHomogeneity\n", - "0 ---> https://github.com/bukhsh/oats\n", - "0 ---> https://github.com/mukil/pmic\n", - "0 ---> https://github.com/pySTEPS/pysteps\n", - "0 ---> https://github.com/groupeLIAMG/ttcr\n", - "0 ---> https://github.com/oujago/NumpyDL\n", - "6 ---> https://github.com/xldrkp/zocurelia\n", - "5 ---> https://github.com/encompasslabs/encompass-aquiferium\n", - "0 ---> https://github.com/deniederhut/niacin\n", - "0 ---> https://github.com/ZurichNLP/xstance\n", - "0 ---> https://github.com/raotnameh/End-to-end-E2E-Named-Entity-Recognition-from-English-Speech\n", - "0 ---> https://github.com/clincolnoz/maDMP-rocrates-maDMP\n", - "0 ---> https://github.com/thorstenwagner/ij-trajectory-classifier\n", - "0 ---> https://github.com/danielrd6/ifscube\n", - "0 ---> https://github.com/esteinig/sketchy\n", - "9 ---> https://github.com/opium-sh/prl\n", - "9 ---> https://github.com/maikherbig/AIDeveloper\n", - "0 ---> https://github.com/LFPy/LFPy\n", - "0 ---> https://github.com/aalzubidy/ssrt\n", - "0 ---> https://github.com/1QB-Information-Technologies/COOL\n", - "0 ---> https://github.com/morpheus-project/morpheus\n", - "0 ---> https://github.com/firedrakeproject/firedrake\n", - "0 ---> https://github.com/leal26/AeroPy\n", - "9 ---> https://github.com/arose/nglview\n", - "0 ---> https://github.com/jpgill86/neurotic\n", - "5 ---> https://github.com/MegaAttitude/frequency-acceptability-selection\n", - "0 ---> https://github.com/bertrandcz/CrocO_toolbox\n", - "9 ---> https://github.com/andsor/gridjug\n", - "0 ---> https://github.com/stfxecutables/empyricalRMT\n", - "9 ---> https://github.com/wmayner/pyphi\n", - "7 ---> https://github.com/isle-project/isle-editor\n", - "6 ---> https://github.com/cytoscape/cytoscape.js\n", - "9 ---> https://github.com/dejac001/MCFlow\n", - "9 ---> https://github.com/dragoon/kilogram\n", - "9 ---> https://github.com/pysal/spaghetti\n", - "0 ---> https://github.com/brisskit-uol/i2b2-install-procedures\n", - "0 ---> https://github.com/bast/runtest\n", - "9 ---> https://github.com/VarIr/scikit-hubness\n", - "9 ---> https://github.com/qbicsoftware/omero-client-portlet\n", - "5 ---> https://github.com/jyrkioraskari/IFCtoLBD_OpenAPI\n", - "0 ---> https://github.com/wright-group/WrightTools\n", - "9 ---> https://github.com/CamDavidsonPilon/lifelines\n", - "0 ---> https://github.com/tpall/pynodo\n", - "0 ---> https://github.com/rmkoesterer/uga\n", - "0 ---> https://github.com/proycon/clam\n", - "0 ---> https://github.com/GoekeLab/xpore\n", - "9 ---> https://github.com/ml-evs/matador\n", - "0 ---> https://github.com/stefsmeets/instamatic\n", - "0 ---> https://github.com/danxhuber/isoclassify\n", - "0 ---> https://github.com/proycon/colibri-core\n", - "6 ---> https://github.com/Yi-ran/Omnetpp\n", - "0 ---> https://github.com/alielhassouni/rl-multi-agent-simulation-for-e-health\n", - "5 ---> https://github.com/PTB-PSt1/time-series-metadata\n", - "0 ---> https://github.com/amueller/patsylearn\n", - "3 ---> https://github.com/globalbioticinteractions/globalbioticinteractions\n", - "3 ---> https://github.com/jiemakel/snapper\n", - "6 ---> https://github.com/digitallinguistics/scription2dlx\n", - "0 ---> https://github.com/lacava/few\n", - "0 ---> https://github.com/mheikenfeld/ramscube\n", - "0 ---> https://github.com/python-pillow/Pillow\n", - "0 ---> https://github.com/Silmathoron/NNGT\n", - "1 ---> https://github.com/RubenVerborgh/WebFundamentals\n", - "0 ---> https://github.com/ariercole/Cambridge_COVID-19_ICU\n", - "0 ---> https://github.com/JDRomano2/smdb_search\n", - "0 ---> https://github.com/matthiasweiss/dsue1-2020s\n", - "0 ---> https://github.com/jenojp/negspacy\n", - "0 ---> https://github.com/MartinPdS/OCT_calibration\n", - "0 ---> https://github.com/cmsopendata-finland/kurssimateriaali\n", - "5 ---> https://github.com/africanmathsinitiative/R-Instat\n", - "0 ---> https://github.com/SDM-TIB/SDM-RDFizer\n", - "0 ---> https://github.com/HERA-Team/librarian\n", - "9 ---> https://github.com/tkralphs/CuPPy\n", - "0 ---> https://github.com/r9y9/pylibfreenect2\n", - "6 ---> https://github.com/dmj/PicaRecord\n", - "9 ---> https://github.com/smartbugs/smartbugs\n", - "0 ---> https://github.com/Andros-Spica/EAA2018_ceramics\n", - "0 ---> https://github.com/arm61/uravu\n", - "9 ---> https://github.com/casmlab/facebook_group_collector\n", - "3 ---> https://github.com/vboyce/Maze\n", - "0 ---> https://github.com/acoular/acoular\n", - "5 ---> https://github.com/smarie/python-autoclass\n", - "0 ---> https://github.com/underworldcode/UWGeodynamics\n", - "0 ---> https://github.com/clij/clij2\n", - "0 ---> https://github.com/sherbold/autorank\n", - "0 ---> https://github.com/saschneider/VMV\n", - "0 ---> https://github.com/CENER-EPR/OWAbench\n", - "0 ---> https://github.com/tempdata73/tic-tac-toe\n", - "1 ---> https://github.com/molbiodiv/biojs-io-biom\n", - "0 ---> https://github.com/olivettigroup/article-downloader\n", - "6 ---> https://github.com/leilaicruz/Experimental-journal-deploy\n", - "6 ---> https://github.com/ltrr-arizona-edu/tellervo\n", - "0 ---> https://github.com/egonw/jqudt\n", - "9 ---> https://github.com/catalyst-cooperative/pudl\n", - "0 ---> https://github.com/TUDelft-CITG/OpenTISim\n", - "0 ---> https://github.com/hipster-philology/nlp-pie-taggers\n", - "0 ---> https://github.com/martinlackner/abcvoting\n", - "0 ---> https://github.com/pv/fimport\n", - "0 ---> https://github.com/nextgenusfs/funannotate\n", - "0 ---> https://github.com/cmccoy/ighutil\n", - "0 ---> https://github.com/kylemede/ExoSOFT\n", - "0 ---> https://github.com/AOtools/aotools\n", - "0 ---> https://github.com/weecology/retriever\n", - "0 ---> https://github.com/mdolab/idwarp\n", - "0 ---> https://github.com/paberlo/FastFeatureSelection\n", - "0 ---> https://github.com/davidrpugh/pyAM\n", - "9 ---> https://github.com/wateraccounting/IHEWAcollect\n", - "0 ---> https://github.com/N3PDF/yadism\n", - "0 ---> https://github.com/JohannesBuchner/snowline\n", - "0 ---> https://github.com/pychebfun/pychebfun\n", - "0 ---> https://github.com/mmadsen/ctmixtures\n", - "0 ---> https://github.com/coin-or/GiMPy\n", - "0 ---> https://github.com/hibernator11/notebook-lod-libraries\n", - "0 ---> https://github.com/GlobalNamesArchitecture/gn_uuid\n", - "0 ---> https://github.com/muammar/heisenberg\n", - "0 ---> https://github.com/spex-xray/pyspextools\n", - "9 ---> https://github.com/csdms/pymt\n", - "0 ---> https://github.com/santiago1234/MZT-rna-stability\n", - "9 ---> https://github.com/sehero/lua\n", - "0 ---> https://github.com/sepandhaghighi/qpage\n", - "0 ---> https://github.com/qmlcode/qml\n", - "0 ---> https://github.com/dmyersturnbull/tyrannosaurus\n", - "5 ---> https://github.com/wild-fire/twitter-graph-segmenter\n", - "0 ---> https://github.com/alcantarar/dryft\n", - "9 ---> https://github.com/DaniloZZZ/Qensor\n", - "9 ---> https://github.com/jfsantos/mushra-ruby-server\n", - "0 ---> https://github.com/MaayanLab/Zika-RNAseq-Pipeline\n", - "0 ---> https://github.com/pyReef-model/RADWave\n", - "0 ---> https://github.com/src-d/kmcuda\n", - "0 ---> https://github.com/perrygeo/pyimpute\n", - "0 ---> https://github.com/toshas/torch-fidelity\n", - "0 ---> https://github.com/intermine/intermine\n", - "0 ---> https://github.com/SasView/sasview\n", - "0 ---> https://github.com/SommerEngineering/NoiseEngine\n", - "6 ---> https://github.com/mathjax/MathJax-src\n", - "5 ---> https://github.com/IFCA/keystone-voms\n", - "0 ---> https://github.com/zfit/zfit-physics\n", - "0 ---> https://github.com/abhi1693/yii2-system-info\n", - "0 ---> https://github.com/harmslab/pytc\n", - "0 ---> https://github.com/biosustain/pyrcos\n", - "0 ---> https://github.com/CNRGH/contatester\n", - "0 ---> https://github.com/pcko1/Deep-Drug-Coder\n", - "0 ---> https://github.com/gree-gorey/rusclasp\n", - "0 ---> https://github.com/chartes/deucalion-model-lasla\n", - "0 ---> https://github.com/zero323/developing-data-products-shiny\n", - "0 ---> https://github.com/etnbrd/flx-example\n", - "3 ---> https://github.com/dalmia/siren\n", - "9 ---> https://github.com/sanshu/protaeljs\n", - "0 ---> https://github.com/dev-cafe/autocmake\n", - "9 ---> https://github.com/whitemech/LTLf2DFA\n", - "0 ---> https://github.com/SanneHoeken/HEEM-Data-Extractions\n", - "0 ---> https://github.com/cayolopesbc/eco-data-toolkit\n", - "0 ---> https://github.com/fliem/cpr\n", - "0 ---> https://github.com/Capitains/Hook-Worker\n", - "0 ---> https://github.com/OSSOS/liborbfit\n", - "0 ---> https://github.com/r9y9/nnmnkwii\n", - "5 ---> https://github.com/rdmorganiser/rdmo\n", - "6 ---> https://github.com/karimamufidah/karimamufidah.github.io\n", - "0 ---> https://github.com/assafZaritskyLab/IRM-Spreading-Dynamics\n", - "0 ---> https://github.com/paudetseis/PlateCurie\n", - "0 ---> https://github.com/cyclops-community/tensorbackends\n", - "0 ---> https://github.com/astrofle/CRRLpy\n", - "0 ---> https://github.com/stanford-futuredata/Willump\n", - "3 ---> https://github.com/petebrew/fhaes\n", - "9 ---> https://github.com/tferr/hIPNAT\n", - "0 ---> https://github.com/cescalara/minieuso_cpu\n", - "9 ---> https://github.com/phiweger/zoo\n", - "0 ---> https://github.com/shenlab-sinai/region_analysis\n", - "0 ---> https://github.com/duncanmmacleod/requests-ecp\n", - "0 ---> https://github.com/biasmv/pv\n", - "0 ---> https://github.com/podondra/bt-spectraldl\n", - "0 ---> https://github.com/ubermag/micromagnetictests\n", - "0 ---> https://github.com/amunozj/magnetograph_2HMI_converter\n", - "0 ---> https://github.com/r9y9/pysptk\n", - "0 ---> https://github.com/michaelaye/venim\n", - "0 ---> https://github.com/justinnk/bss-simulation-study\n", - "6 ---> https://github.com/LDflex/LDflex\n", - "5 ---> https://github.com/FAST-HEP/fast-carpenter\n", - "0 ---> https://github.com/lpwgroup/torsiondrive\n", - "9 ---> https://github.com/CCS-Lab/easyml\n", - "0 ---> https://github.com/datajoint/datajoint-python\n", - "0 ---> https://github.com/hallamlab/mlLGPR\n", - "0 ---> https://github.com/cmbant/CosmoMC\n", - "9 ---> https://github.com/lukasValentin/OBIA4RTM\n", - "0 ---> https://github.com/bowsersenior/itu_codes\n", - "0 ---> https://github.com/loostrum/darc\n", - "9 ---> https://github.com/sdorkenw/MeshParty\n", - "0 ---> https://github.com/RadioAstronomySoftwareGroup/pyuvsim\n", - "7 ---> https://github.com/cggh/panoptes\n", - "9 ---> https://github.com/experimaestro/datamaestro\n", - "3 ---> https://github.com/ruby-rdf/rdf\n", - "0 ---> https://github.com/ARGOeu/argo-api-authn\n", - "0 ---> https://github.com/NBISweden/workshop_omics_integration\n", - "0 ---> https://github.com/PyThaiNLP/Thai-Text-Generator\n", - "0 ---> https://github.com/aditya95sriram/td-slim\n", - "0 ---> https://github.com/geoopt/geoopt\n", - "0 ---> https://github.com/jswoboda/ISRSpectrum\n", - "0 ---> https://github.com/jonschwenk/RivGraph\n", - "0 ---> https://github.com/thoppe/Encyclopedia-of-Finite-Graphs\n", - "0 ---> https://github.com/Ry-C123/LazyPSF\n", - "8 ---> https://github.com/bionode/bionode-sra\n", - "0 ---> https://github.com/tjof2/ctrwfractal\n", - "0 ---> https://github.com/MatthewBCooke/Pathfinder\n", - "9 ---> https://github.com/connectomicslab/connectomemapper3\n", - "0 ---> https://github.com/rpep/fmmgen\n", - "9 ---> https://github.com/bionode/bionode-bbi\n", - "0 ---> https://github.com/griffin-h/superphot\n", - "8 ---> https://github.com/neuroscout/neuroscout\n", - "0 ---> https://github.com/tsamsonov/generalize-dem\n", - "9 ---> https://github.com/comodide/CoModIDE\n", - "0 ---> https://github.com/cscully-allison/Materia\n", - "6 ---> https://github.com/dnet-team/dnet-basic-aggregator\n", - "0 ---> https://github.com/tschaume/ccsgp_get_started\n", - "0 ---> https://github.com/discos/discos-backend\n", - "0 ---> https://github.com/wmayner/pyemd\n", - "0 ---> https://github.com/drsteve/PyForecastTools\n", - "0 ---> https://github.com/nickk124/RCR\n", - "0 ---> https://github.com/rmsolgi/geneticalgorithm\n", - "0 ---> https://github.com/mmhs013/pyMannKendall\n", - "5 ---> https://github.com/fusion-jena/abecto\n", - "0 ---> https://github.com/TerrainBento/terrainbento\n", - "0 ---> https://github.com/mwaskom/seaborn\n", - "0 ---> https://github.com/florafauna/optimParallel-python\n", - "0 ---> https://github.com/pietrobarbiero/evofs\n", - "0 ---> https://github.com/IsaacCorley/pytorch-enhance\n", - "0 ---> https://github.com/ecell/ecell4\n", - "0 ---> https://github.com/mirnylab/bioframe\n", - "0 ---> https://github.com/dean0x7d/pybinding\n", - "0 ---> https://github.com/janmtl/pypsych\n", - "0 ---> https://github.com/lcharleux/abapy\n", - "3 ---> https://github.com/pyhf/neos\n", - "9 ---> https://github.com/CiTR/djland\n", - "0 ---> https://github.com/nuest/ten-simple-rules-dockerfiles\n", - "0 ---> https://github.com/OpenSourceEconomics/ruspy\n", - "3 ---> https://github.com/ameyaKetkar/TypeChangeMiner\n", - "0 ---> https://github.com/lingfeiwang/normalisr\n", - "0 ---> https://github.com/ShuhuaGao/geppy\n", - "0 ---> https://github.com/bgruening/galaxy_ie_helpers\n", - "0 ---> https://github.com/pyvideo/data\n", - "0 ---> https://github.com/azedarach/matrix-factorization-case-studies\n", - "0 ---> https://github.com/driplineorg/dripline-python\n", - "0 ---> https://github.com/LoLab-VU/Gleipnir\n", - "0 ---> https://github.com/uwmadison-chm/scorify\n", - "0 ---> https://github.com/NESCent/fcdb-api\n", - "0 ---> https://github.com/csu-hmc/GaitAnalysisToolKit\n", - "0 ---> https://github.com/bakery-cg2at/bakery\n", - "0 ---> https://github.com/radical-cybertools/radical.synapse\n", - "0 ---> https://github.com/MaineKuehn/usim\n", - "0 ---> https://github.com/ag-gipp/FormulaCloudData\n", - "0 ---> https://github.com/astrom-tom/dfitspy\n", - "0 ---> https://github.com/SP7-Ritmare/EDI-NG_client\n", - "1 ---> https://github.com/jona-sassenhagen/statfail\n", - "9 ---> https://github.com/spacetelescope/jwql\n", - "0 ---> https://github.com/ePSIC-DLS/ParticleSpy\n", - "0 ---> https://github.com/N3PDF/pineappl\n", - "9 ---> https://github.com/rinde/vanLon17-JAAMAS-code\n", - "0 ---> https://github.com/pitthsls/pycounter\n", - "0 ---> https://github.com/hippylib/hippylib\n", - "0 ---> https://github.com/felixriese/CNN-SoilTextureClassification\n", - "0 ---> https://github.com/IQuOD/wodpy\n", - "0 ---> https://github.com/ahendriksen/msd_pytorch\n", - "6 ---> https://github.com/tobysmith568/TestEnv\n", - "0 ---> https://github.com/lucasberent/ds\n", - "9 ---> https://github.com/sgoldenlab/simba\n", - "0 ---> https://github.com/jonathanmorgan/django_config\n", - "6 ---> https://github.com/IbrahimTanyalcin/RafX\n", - "0 ---> https://github.com/mdolab/adflow\n", - "9 ---> https://github.com/Phylu/csd\n", - "9 ---> https://github.com/ebmdatalab/trialstracker\n", - "3 ---> https://github.com/datapoet/hubminer\n", - "0 ---> https://github.com/midas-isg/PITT-SEIR-model\n", - "1 ---> https://github.com/zakandrewking/escher\n", - "9 ---> https://github.com/EMAPS/climaps-platform\n", - "0 ---> https://github.com/OpenChemistry/tomviz\n", - "0 ---> https://github.com/yeeking/evosynth\n", - "9 ---> https://github.com/rinde/vanLon16-EJOR-code\n", - "9 ---> https://github.com/biowdl/QC\n", - "3 ---> https://github.com/intelaligent/tctb\n", - "5 ---> https://github.com/rinde/RinLog\n", - "0 ---> https://github.com/sertansenturk/seyiranalyzer\n", - "0 ---> https://github.com/sertansenturk/alignednotemodel\n", - "0 ---> https://github.com/miklos1/dijitso\n", - "0 ---> https://github.com/smart-facility/cognicity-reports-twitter\n", - "8 ---> https://github.com/speckleworks/SpeckleServer\n", - "0 ---> https://github.com/schwemro/diag-eff\n", - "3 ---> https://github.com/jacobwindsor/MetabMaster\n", - "0 ---> https://github.com/NLeSC/mcfly\n", - "9 ---> https://github.com/hahnec/plenopticam\n", - "9 ---> https://github.com/ICB-DCM/AMICI\n", - "0 ---> https://github.com/kundajelab/abstention\n", - "5 ---> https://github.com/qPRC/qPRC\n", - "8 ---> https://github.com/ecds/readux\n", - "5 ---> https://github.com/cemac/COMET_VolcDB\n", - "0 ---> https://github.com/transientlunatic/otter\n", - "9 ---> https://github.com/dftlibs/xcfun\n", - "9 ---> https://github.com/IKNL/vantage6\n", - "9 ---> https://github.com/PhiliPdB/treedepth-exact\n", - "0 ---> https://github.com/deniederhut/weather_report\n", - "9 ---> https://github.com/biowdl/structural-variantcalling\n", - "0 ---> https://github.com/kikuchipy/kikuchipy\n", - "0 ---> https://github.com/LispTO/llthw\n", - "6 ---> https://github.com/cfe-lab/Kive\n", - "0 ---> https://github.com/gpauloski/kfac_pytorch\n", - "5 ---> https://github.com/materialsproject/pymatgen\n", - "0 ---> https://github.com/douglasdavis/pygram11\n", - "0 ---> https://github.com/jrkerns/pylinac\n", - "0 ---> https://github.com/dvasilen/Hive-XML-SerDe\n", - "3 ---> https://github.com/rubenarslan/formr.org\n", - "0 ---> https://github.com/yannforget/pylandsat\n", - "9 ---> https://github.com/gousiosg/pullreqs\n", - "9 ---> https://github.com/kantale/MutationInfo\n", - "0 ---> https://github.com/kdberends/coral\n", - "0 ---> https://github.com/llondon6/positive\n", - "0 ---> https://github.com/josecastillolema/mini-nfv\n", - "9 ---> https://github.com/driehle/emobility-search-engine\n", - "0 ---> https://github.com/LiyrAstroph/CDNest\n", - "9 ---> https://github.com/pysal/giddy\n", - "0 ---> https://github.com/LeeBergstrand/BackBLAST_Reciprocal_BLAST\n", - "0 ---> https://github.com/JanaLasser/salt-polygons-are-caused-by-convection\n", - "0 ---> https://github.com/mediawiki-utilities/python-mwreverts\n", - "0 ---> https://github.com/rbnvrw/semtracking\n", - "0 ---> https://github.com/coin-or/GrUMPy\n", - "0 ---> https://github.com/nist-ionstorage/pdq2\n", - "0 ---> https://github.com/TLCFEM/suanPan\n", - "0 ---> https://github.com/dlilien/ImpDAR\n", - "0 ---> https://github.com/ihrke/pypillometry\n", - "0 ---> https://github.com/willpearse/stalkless\n", - "0 ---> https://github.com/mmhss/sstrong-webhook\n", - "0 ---> https://github.com/RobotExMachina/Machina.NET\n", - "3 ---> https://github.com/tripal/private_biodata\n", - "5 ---> https://github.com/brown-ccv/neuro-task-starter\n", - "0 ---> https://github.com/FractalMedia/wheresmunna\n", - "0 ---> https://github.com/vivekbhr/scRIApipe\n", - "0 ---> https://github.com/coin-or/pulp\n", - "0 ---> https://github.com/Titan-C/slaveparticles\n", - "9 ---> https://github.com/GlobalNamesArchitecture/gn_crossmap\n", - "9 ---> https://github.com/indigo-dc/DEEPaaS\n", - "5 ---> https://github.com/densitymodelling/dsmextra\n", - "5 ---> https://github.com/SandstoneHPC/sandstone-spawner\n", - "6 ---> https://github.com/ENCODE-DCC/atac-seq-pipeline\n", - "0 ---> https://github.com/pnuehrenberg/multiviewtracks\n", - "0 ---> https://github.com/cerndb/dist-keras\n", - "9 ---> https://github.com/CESNET/proxystatistics-simplesamlphp-module\n", - "0 ---> https://github.com/MatterMiners/cobald\n", - "9 ---> https://github.com/asherpasha/Araport_GeneSlider\n", - "0 ---> https://github.com/matthewfeickert/IRIS-HEP-2020-Poster-Session\n", - "0 ---> https://github.com/r4ecology/nctoolkit\n", - "0 ---> https://github.com/transientlunatic/heron\n", - "0 ---> https://github.com/capaulson/pyKriging\n", - "0 ---> https://github.com/VlachosGroup/jl_spectra_2_structure\n", - "9 ---> https://github.com/NCBI-Hackathons/Structural_Variant_Comparison\n", - "0 ---> https://github.com/wradlib/wradlib\n", - "0 ---> https://github.com/CICE-Consortium/CICE\n", - "0 ---> https://github.com/sherpa/sherpa\n", - "0 ---> https://github.com/toros-astro/astroalign\n", - "0 ---> https://github.com/bootphon/ABXpy\n", - "6 ---> https://github.com/HuckleyLab/phyto-mhw\n", - "0 ---> https://github.com/pdxgx/neoepiscope\n", - "0 ---> https://github.com/danforthcenter/plantcv\n", - "0 ---> https://github.com/jkitchin/pycse\n", - "0 ---> https://github.com/rraadd88/rohan\n", - "0 ---> https://github.com/compas-dev/compas_fea\n", - "0 ---> https://github.com/Remdeht/ia_detector\n", - "0 ---> https://github.com/justagist/panda_simulator\n", - "0 ---> https://github.com/stemtool/stemtool\n", - "0 ---> https://github.com/mkoeppe/sage-numerical-interactive-mip\n", - "0 ---> https://github.com/Nu-AI/Livid-About-COVID\n", - "0 ---> https://github.com/PyLorentz/PyLorentz\n", - "9 ---> https://github.com/firedrakeproject/loopy\n", - "0 ---> https://github.com/ctsit/dxster\n", - "9 ---> https://github.com/bodkan/archaic-ychr\n", - "0 ---> https://github.com/PhysicsOfMobility/ridesharing_topology_dependence\n", - "0 ---> https://github.com/SuperKam91/twentyoneflow\n", - "0 ---> https://github.com/gwpy/gwosc\n", - "0 ---> https://github.com/duartegroup/cgbind\n", - "0 ---> https://github.com/raphaelvallat/pingouin\n", - "0 ---> https://github.com/pnlbwh/dMRIharmonization\n", - "5 ---> https://github.com/choderalab/assaytools\n", - "0 ---> https://github.com/cryotools/cosipy\n", - "0 ---> https://github.com/N3PDF/vegasflow\n", - "0 ---> https://github.com/althonos/pronto\n", - "9 ---> https://github.com/nipy/nipype\n", - "0 ---> https://github.com/sgrieve/sinuosity\n", - "0 ---> https://github.com/boivinalex/permittivitycalc\n", - "9 ---> https://github.com/BlueBrain/NeuroR\n", - "0 ---> https://github.com/Curtin-Open-Knowledge-Initiative/institutional-oa-evaluation-2020\n", - "0 ---> https://github.com/dgasmith/opt_einsum\n", - "0 ---> https://github.com/knutankv/koma\n", - "0 ---> https://github.com/foerstner-lab/READemption\n", - "0 ---> https://github.com/matthiaskoenig/fbc_curation\n", - "1 ---> https://github.com/dmitriz/cpsfy\n", - "0 ---> https://github.com/sdey135/rtapylysis\n", - "0 ---> https://github.com/CICE-Consortium/Icepack\n", - "0 ---> https://github.com/Nikoleta-v3/blackbook\n", - "9 ---> https://github.com/daniel-dpk/distorted-motsfinder-public\n", - "0 ---> https://github.com/StevenGolovkine/FDApy\n", - "0 ---> https://github.com/Leinadj/CREAM\n", - "0 ---> https://github.com/wjlei1990/spaceweight\n", - "0 ---> https://github.com/genomematt/AmBiVErT\n", - "6 ---> https://github.com/InsightSoftwareConsortium/itk-js\n", - "0 ---> https://github.com/owlcollab/expression-materializing-reasoner\n", - "0 ---> https://github.com/PEtab-dev/PEtab\n", - "0 ---> https://github.com/ziatdinovmax/GPim\n", - "0 ---> https://github.com/gwappa/fitting2d\n", - "0 ---> https://github.com/aeonium/fakedatacite\n", - "0 ---> https://github.com/boolsi/boolsi\n", - "0 ---> https://github.com/TomMonks/forecast-tools\n", - "0 ---> https://github.com/biowdl/tasks\n", - "0 ---> https://github.com/holoviz/hvplot\n", - "0 ---> https://github.com/mathjax/MathJax\n", - "0 ---> https://github.com/gwu-libraries/sfm-utils\n", - "0 ---> https://github.com/ci-group/revolve\n", - "0 ---> https://github.com/matthiaskoenig/sbmlsim\n", - "0 ---> https://github.com/biobakery/phylophlan\n", - "1 ---> https://github.com/rodighiero/COVID-19\n", - "9 ---> https://github.com/qzhu2017/PyXtal\n", - "9 ---> https://github.com/pnlbwh/multi-shell-dMRIharmonization\n", - "0 ---> https://github.com/loostrum/arts_tools\n", - "0 ---> https://github.com/jboynyc/textnets\n", - "9 ---> https://github.com/python-adaptive/adaptive\n", - "0 ---> https://github.com/nfsi-canada/OBStools\n", - "5 ---> https://github.com/tikk3r/lofar-grid-hpccloud\n", - "3 ---> https://github.com/governit/GovernIT\n", - "0 ---> https://github.com/nestordemeure/tabularGP\n", - "0 ---> https://github.com/AstraZeneca-NGS/disambiguate\n", - "0 ---> https://github.com/dgilford/pyPI\n", - "0 ---> https://github.com/Jacob-yen/LEMON\n", - "9 ---> https://github.com/tasoc/photometry\n", - "9 ---> https://github.com/qbicsoftware/omero-client-lib\n", - "0 ---> https://github.com/ASaiM/group_humann2_uniref_abundances_to_GO\n", - "0 ---> https://github.com/natashabatalha/virga\n", - "3 ---> https://github.com/lightonphiri/etd_autoclassifier\n", - "3 ---> https://github.com/ncrncornell/ced2ar\n", - "5 ---> https://github.com/clij/clij\n", - "0 ---> https://github.com/castelao/oceansdb\n", - "0 ---> https://github.com/conorwalsh/doat\n", - "0 ---> https://github.com/lweasel/piquant\n", - "0 ---> https://github.com/marinang/SimProd\n", - "0 ---> https://github.com/ishahid/django-gdm\n", - "0 ---> https://github.com/darribas/gds16\n", - "0 ---> https://github.com/calliope-project/calliope\n", - "9 ---> https://github.com/rockt/SETH\n", - "0 ---> https://github.com/zih-a35/trinityvm\n", - "5 ---> https://github.com/MRChemSoft/mrchem\n", - "0 ---> https://github.com/ehthiede/EMUS\n", - "0 ---> https://github.com/caiostringari/pywavelearn\n", - "2 ---> https://github.com/GeriLife/wellbeing\n", - "0 ---> https://github.com/aboucaud/pypher\n", - "0 ---> https://github.com/niosh-mining/obsplus\n", - "9 ---> https://github.com/scienceai/neocortex\n", - "0 ---> https://github.com/MPAS-Dev/MPAS-Analysis\n", - "0 ---> https://github.com/ralna/ElementSchur\n", - "0 ---> https://github.com/bdestombe/flopymetascript\n", - "0 ---> https://github.com/scikit-hep/awkward-array\n", - "0 ---> https://github.com/jonathansick/padova\n", - "9 ---> https://github.com/gwpy/gwsumm\n", - "0 ---> https://github.com/saullocastro/panels\n", - "9 ---> https://github.com/EHadoux/aptimizer\n", - "9 ---> https://github.com/mchoji/wtg-seal\n", - "0 ---> https://github.com/apetros/pyeplan\n", - "0 ---> https://github.com/Molmed/checkQC\n", - "0 ---> https://github.com/similitude/netlogo-sample-simmer\n", - "0 ---> https://github.com/castelao/CoTeDe\n", - "0 ---> https://github.com/matt-graham/mici\n", - "0 ---> https://github.com/donia-lab/MetaBGC\n", - "0 ---> https://github.com/nschloe/accupy\n", - "9 ---> https://github.com/KitwareMedical/SlicerITKUltrasound\n", - "0 ---> https://github.com/scities/marble\n", - "0 ---> https://github.com/hshsl-training/outreach-toolkit\n", - "2 ---> https://github.com/hyperwell/gateway\n", - "0 ---> https://github.com/tjof2/pgure-svt\n", - "0 ---> https://github.com/dfm/python-fsps\n", - "9 ---> https://github.com/kevindoyle/geoscience-first-authorship\n", - "0 ---> https://github.com/amuslija/fbd-complexity-tool\n", - "0 ---> https://github.com/N3PDF/evolutionary_keras\n", - "0 ---> https://github.com/fabfab1/EnCAB\n", - "0 ---> https://github.com/muammar/ml4chem\n", - "0 ---> https://github.com/fepegar/unet\n", - "0 ---> https://github.com/rtidatascience/django-postgres-stats\n", - "0 ---> https://github.com/esm-tools/esm_tools\n", - "9 ---> https://github.com/cwi-swat/bacata\n", - "9 ---> https://github.com/Sentimentron/PRJ9081\n", - "0 ---> https://github.com/hema-ted/pyzfs\n", - "0 ---> https://github.com/vitkl/orthologsBioMART\n", - "0 ---> https://github.com/davidrpugh/pyCollocation\n", - "0 ---> https://github.com/sbaltes/dblp-retriever\n", - "0 ---> https://github.com/vsoch/gridtest\n", - "3 ---> https://github.com/meteoinfo/MeteoInfo\n", - "0 ---> https://github.com/tcompa/anneal\n", - "0 ---> https://github.com/pansism/downscale-satelliteLST\n", - "0 ---> https://github.com/pyspeckit/pyspeckit\n", - "9 ---> https://github.com/TAMU-CPT/PAUSE\n", - "0 ---> https://github.com/mosdef-hub/forcefield_perfluoroethers\n", - "9 ---> https://github.com/dimazest/fowler.corpora\n", - "6 ---> https://github.com/a-callahan/MechWolf_Pull\n", - "0 ---> https://github.com/sami2py/sami2py\n", - "0 ---> https://github.com/gwu-libraries/sfm-weibo-harvester\n", - "0 ---> https://github.com/sojamo/oscp5\n", - "0 ---> https://github.com/OllyButters/puma\n", - "9 ---> https://github.com/aplowman/atomistic\n", - "0 ---> https://github.com/guaix-ucm/pyemir\n", - "0 ---> https://github.com/biosustain/croissance\n", - "0 ---> https://github.com/linhd-postdata/averell\n", - "9 ---> https://github.com/gbif/gbif-api\n", - "0 ---> https://github.com/kalyanpi4/pySW\n", - "0 ---> https://github.com/pitmonticone/Torino-Lione\n", - "0 ---> https://github.com/dave-heslop74/vMF_Specimens\n", - "0 ---> https://github.com/hollenstein/maspy\n", - "0 ---> https://github.com/wiai/xcdskd\n", - "5 ---> https://github.com/Ayllonbe/gsan\n", - "0 ---> https://github.com/romoreira/EdgeComputingSlice\n", - "9 ---> https://github.com/pysal/segregation\n", - "3 ---> https://github.com/ALIADA/aliada-tool\n", - "0 ---> https://github.com/JordiBolibar/ALPGM\n", - "0 ---> https://github.com/keyinst/keypy\n", - "0 ---> https://github.com/has2k1/scikit-misc\n", - "5 ---> https://github.com/PedroMat8/micropy\n", - "9 ---> https://github.com/clld/glottolog3\n", - "0 ---> https://github.com/stain/ro-combine-archive\n", - "9 ---> https://github.com/BEAST-Fitting/beast\n", - "0 ---> https://github.com/fireshape/fireshape\n", - "0 ---> https://github.com/jsh9/python-plot-utilities\n", - "9 ---> https://github.com/hibernator11/AprediendoJava\n", - "0 ---> https://github.com/FlamTeam/flamedisx\n", - "0 ---> https://github.com/ihmeuw-msca/ODEOPT\n", - "0 ---> https://github.com/dmentipl/plonk\n", - "3 ---> https://github.com/HSF/phoenix\n", - "0 ---> https://github.com/haraldschilly/panobbgo\n", - "5 ---> https://github.com/mtinti/PIG-A\n", - "9 ---> https://github.com/TRACMASS/tracmass\n", - "0 ---> https://github.com/coneoproject/COFFEE\n", - "3 ---> https://github.com/oblassers/dmap-mockups\n", - "0 ---> https://github.com/bioFAM/MOFA2\n", - "0 ---> https://github.com/pytroll/pyresample\n", - "0 ---> https://github.com/FATSLiM/fatslim\n", - "0 ---> https://github.com/astropenguin/azely\n", - "0 ---> https://github.com/debsankha/flownetpy\n", - "0 ---> https://github.com/lyx12311/Astraea\n", - "0 ---> https://github.com/npielawski/pytorch_tiramisu\n", - "9 ---> https://github.com/clld/tsammalex\n", - "3 ---> https://github.com/postnathalie/WallTalk\n", - "0 ---> https://github.com/TUW-GEO/smecv-grid\n", - "9 ---> https://github.com/echevemaster/fedora-college\n", - "3 ---> https://github.com/ropensci/lingtypology\n", - "3 ---> https://github.com/vivo-project/VIVO\n", - "0 ---> https://github.com/deephdc/schema4deep\n", - "0 ---> https://github.com/nist-ionstorage/electrode\n", - "9 ---> https://github.com/opannekoucke/pdenetgen\n", - "0 ---> https://github.com/lingpy/word-tree-paper\n", - "3 ---> https://github.com/RBVI/CyAnimator\n", - "0 ---> https://github.com/fsenf/proj.nawdex_analysis\n", - "0 ---> https://github.com/RDFLib/pyrdfa3\n", - "0 ---> https://github.com/mwcraig/reducer\n", - "0 ---> https://github.com/lcharleux/hardness\n", - "0 ---> https://github.com/pisa-engine/pisa\n", - "0 ---> https://github.com/rjw57/starman\n", - "0 ---> https://github.com/dewiedem/calcopp\n", - "0 ---> https://github.com/rstoneback/OMMBV\n", - "9 ---> https://github.com/mfherbst/asedftk\n", - "3 ---> https://github.com/Colectica/ddiregistry\n", - "0 ---> https://github.com/CyberDataLab/AuthCode\n", - "0 ---> https://github.com/imageio/imageio\n", - "0 ---> https://github.com/masseyr/geosoupML\n", - "0 ---> https://github.com/r9y9/pyreaper\n", - "0 ---> https://github.com/JDRomano2/ASAP2\n", - "0 ---> https://github.com/josephhardinee/PyDSD\n", - "9 ---> https://github.com/filips123/MonologPHPMailer\n", - "0 ---> https://github.com/Spine-project/Spine-Database-API\n", - "0 ---> https://github.com/GeoStat-Framework/ogs5py\n", - "0 ---> https://github.com/Z-Zheng/SimpleCV\n", - "0 ---> https://github.com/angelmtenor/RL-ROBOT\n", - "5 ---> https://github.com/Sreyan88/Fatigue-Detection-using-Deep-Learning\n", - "0 ---> https://github.com/stefanch/sGDML\n", - "6 ---> https://github.com/machawk1/warcreate\n", - "0 ---> https://github.com/materialsvirtuallab/monty\n", - "0 ---> https://github.com/kgullikson88/Telluric-Fitter\n", - "0 ---> https://github.com/Urban-Meteorology-Reading/SUEWS\n", - "0 ---> https://github.com/serazing/xscale\n", - "0 ---> https://github.com/pauleve/mpbn\n", - "0 ---> https://github.com/ericmjl/flu-gibson\n", - "9 ---> https://github.com/MoritzStefaner/ach-ingen-zell\n", - "3 ---> https://github.com/MAGIC-nexus/nis-backend\n", - "0 ---> https://github.com/pycalphad/scheil\n", - "0 ---> https://github.com/vanheeringen-lab/genomepy\n", - "0 ---> https://github.com/deparkes/OOMMFTools\n", - "0 ---> https://github.com/sarisabban/RamaNet\n", - "0 ---> https://github.com/nano-sippe/dispersion\n", - "9 ---> https://github.com/hallamlab/pathway2vec\n", - "0 ---> https://github.com/SCM-NV/nano-qmflows\n", - "0 ---> https://github.com/bburan/NeuroBehavior\n", - "0 ---> https://github.com/PhenixCollaboration/web\n", - "0 ---> https://github.com/Bubblbu/crawling-framework\n", - "0 ---> https://github.com/smarr/ReBench\n", - "0 ---> https://github.com/Alerovere/Paleo-SL-utilities\n", - "0 ---> https://github.com/TUDelft-CITG/OpenCLSim\n", - "0 ---> https://github.com/RMeli/spyrmsd\n", - "9 ---> https://github.com/dejac001/RealGas\n", - "3 ---> https://github.com/SciCrunch/resource_disambiguator\n", - "0 ---> https://github.com/rraadd88/htsimaging\n", - "0 ---> https://github.com/etiennebresciani/wellradpy\n", - "0 ---> https://github.com/blsqr/paramspace\n", - "0 ---> https://github.com/FInAT/FInAT\n", - "0 ---> https://github.com/hovo1990/GROM\n", - "0 ---> https://github.com/scikit-learn/scikit-learn\n", - "9 ---> https://github.com/covid-lncc/pydemic\n", - "0 ---> https://github.com/pvlib/pvlib-python\n", - "0 ---> https://github.com/phenoscape/phenoday-reasoning-paper\n", - "0 ---> https://github.com/norawebbwilliams/images_as_data\n", - "0 ---> https://github.com/filips123/ZeroFramePy\n", - "5 ---> https://github.com/sisinflab-swot/ldp-coap-framework\n", - "0 ---> https://github.com/pablormier/yabox\n", - "3 ---> https://github.com/TomDemeranville/orcid-update-java\n", - "0 ---> https://github.com/pysal/region\n", - "2 ---> https://github.com/yogo/VOEIS\n", - "0 ---> https://github.com/krassowski/data-vault\n", - "9 ---> https://github.com/ENCODE-DCC/croo\n", - "0 ---> https://github.com/jaisenbe58r/MLearner\n", - "0 ---> https://github.com/dave-heslop74/vMF_Sites\n", - "0 ---> https://github.com/biomedia-mira/blast-ct\n", - "0 ---> https://github.com/NREL/bifacial_radiance\n", - "0 ---> https://github.com/kundajelab/deeplift\n", - "0 ---> https://github.com/embodied-computation-group/systole\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "9 ---> https://github.com/terraref/terraref.github.io\n", - "0 ---> https://github.com/astorfi/TensorFlow-World\n", - "0 ---> https://github.com/TheLartians/Expresso\n", - "9 ---> https://github.com/bionode/fasta-parser\n", - "0 ---> https://github.com/UCL/scikit-surgeryfred\n", - "0 ---> https://github.com/neurolib-dev/neurolib\n", - "2 ---> https://github.com/hyperwell/playground\n", - "0 ---> https://github.com/pnlbwh/SlicerDiffusionQC\n", - "0 ---> https://github.com/CORE-GATECH-GROUP/serpent-tools\n", - "0 ---> https://github.com/morganjwilliams/pyrolite-meltsutil\n", - "8 ---> https://github.com/rcfduarte/nmsat\n", - "0 ---> https://github.com/midas-isg/PITT-Anthrax-model\n", - "0 ---> https://github.com/gmiaslab/pyiomica\n", - "9 ---> https://github.com/MarcoMuellner/SMURFS\n", - "0 ---> https://github.com/MrLogarithm/pe-pc-datasets-interface\n", - "0 ---> https://github.com/raamana/neuropredict\n", - "0 ---> https://github.com/bartongroup/2passtools\n", - "0 ---> https://github.com/earthserver-eu/INSPIRE-notebooks\n", - "0 ---> https://github.com/aderidder/iCRFGenerator\n", - "0 ---> https://github.com/jfal027/Moodify\n", - "6 ---> https://github.com/jyrkioraskari/OnlineMvdXMLChecker\n", - "0 ---> https://github.com/rjleveque/ptha_rog\n", - "0 ---> https://github.com/GeoStat-Framework/pentapy\n", - "0 ---> https://github.com/GhostofGoes/ADLES\n", - "0 ---> https://github.com/castelao/pyWOA\n", - "0 ---> https://github.com/pynbody/pynbody\n", - "0 ---> https://github.com/MicroPasts/magicMountain\n", - "9 ---> https://github.com/intake/intake-esm\n", - "0 ---> https://github.com/harnesscloud/2015-07-15-feltham\n", - "0 ---> https://github.com/hfsf/sloth\n", - "5 ---> https://github.com/histogrammar/histogrammar-scala\n", - "8 ---> https://github.com/LandscapeGeoinformatics/EstSoil-EH_sw_supplement\n", - "9 ---> https://github.com/chienchi/amplicon_coverage_plot\n", - "0 ---> https://github.com/cmohl2013/permutation_test\n", - "0 ---> https://github.com/mrtommyb/ktransit\n", - "5 ---> https://github.com/midas-isg/digital-commons\n", - "0 ---> https://github.com/hipster-philology/greek-lemmatization-data\n", - "0 ---> https://github.com/soil-physics-okstate/automated_soil_moisture_mapping\n", - "0 ---> https://github.com/QInfer/python-qinfer\n", - "0 ---> https://github.com/inodb/sufam\n", - "9 ---> https://github.com/LiberalHD/gudagudaACG\n", - "5 ---> https://github.com/bihealth/scelvis\n", - "9 ---> https://github.com/SommerEngineering/Encrypter\n", - "0 ---> https://github.com/CellMigStandOrg/Tracks\n", - "0 ---> https://github.com/dr-rodriguez/AstrodbWeb\n", - "0 ---> https://github.com/iamdamion/grepCIRCLE\n", - "0 ---> https://github.com/Olllom/lettuce\n", - "0 ---> https://github.com/bjpop/lynch_gatk\n", - "0 ---> https://github.com/jGaboardi/pp2n\n", - "2 ---> https://github.com/atrisovic/weather-panel.github.io\n", - "3 ---> https://github.com/arXiv/arxiv-browse\n", - "1 ---> https://github.com/clarity-h2020/map-component\n", - "9 ---> https://github.com/samapriya/geeup\n", - "0 ---> https://github.com/fphammerle/freesurfer-stats\n", - "0 ---> https://github.com/Lagostra/exprimo\n", - "0 ---> https://github.com/kweis/acronym\n", - "1 ---> https://github.com/iomega/zenodo-upload\n", - "0 ---> https://github.com/mirca/maoud\n", - "0 ---> https://github.com/castelao/maud\n", - "0 ---> https://github.com/cwfparsonson/soa_driving\n", - "0 ---> https://github.com/luphysics/PyMODAlib\n", - "0 ---> https://github.com/piazentin/ksets\n", - "0 ---> https://github.com/tgbugs/inferno\n", - "0 ---> https://github.com/jGaboardi/non-duplicated-intersects\n", - "0 ---> https://github.com/rochefort-lab/fissa\n", - "0 ---> https://github.com/qutip/qutip\n", - "0 ---> https://github.com/RomainBey/stratified-cross-validation\n", - "0 ---> https://github.com/XENON1T/pax\n", - "0 ---> https://github.com/indralab/adeft\n", - "0 ---> https://github.com/polsys/ennemi\n", - "0 ---> https://github.com/gmierz/pupil-lib\n", - "0 ---> https://github.com/macs3-project/MACS\n", - "0 ---> https://github.com/NLeSC/lokum\n", - "0 ---> https://github.com/efirvida/python-gearbox\n", - "0 ---> https://github.com/SuLab/genewikiworld\n", - "0 ---> https://github.com/samapriya/Planet-Pipeline-Shell\n", - "9 ---> https://github.com/smd-faizan/CySpanningTree\n", - "0 ---> https://github.com/Unidata/cftime\n", - "9 ---> https://github.com/weecology/DeepForest\n", - "0 ---> https://github.com/datreant/datreant\n", - "9 ---> https://github.com/Svdvoort/PREDICTFastr\n", - "0 ---> https://github.com/qcscine/utilities\n", - "0 ---> https://github.com/martibosch/urban-footprinter\n", - "0 ---> https://github.com/fa-me/ratter\n", - "0 ---> https://github.com/impact27/WF_NTP\n", - "9 ---> https://github.com/Eomys/pyleecan\n", - "0 ---> https://github.com/oeg-upm/morph-csv\n", - "5 ---> https://github.com/javadch/quis\n", - "0 ---> https://github.com/pear2/Cache_SHM\n", - "0 ---> https://github.com/scijava/scijava-common\n", - "0 ---> https://github.com/USNavalResearchLaboratory/SNOPROP\n", - "0 ---> https://github.com/bbfrederick/picachooser\n", - "0 ---> https://github.com/GilesStrong/HiggsML_Lumin\n", - "0 ---> https://github.com/GooglingTheCancerGenome/sv-callers\n", - "0 ---> https://github.com/jgreener64/pdb-benchmarks\n", - "9 ---> https://github.com/shh-dlce/python-nexus\n", - "0 ---> https://github.com/NickleDave/searchstims\n", - "2 ---> https://github.com/opencv/cvat\n", - "8 ---> https://github.com/scholarslab/prism\n", - "0 ---> https://github.com/pyoceans/python-seawater\n", - "0 ---> https://github.com/olgabot/sj2psi\n", - "0 ---> https://github.com/malvikasharan/APRICOT\n", - "0 ---> https://github.com/raamana/confounds\n", - "0 ---> https://github.com/mrkrd/matlab_wrapper\n", - "0 ---> https://github.com/thorstenwagner/ij-blob\n", - "0 ---> https://github.com/michaelosthege/pyrff\n", - "5 ---> https://github.com/ODM2/ODM2DataSharingPortal\n", - "0 ---> https://github.com/hameye/MARCIA\n", - "0 ---> https://github.com/eyelovedata/sentimentemotionanalysis\n", - "0 ---> https://github.com/Swiss-Polar-Institute/pyantarctica\n", - "9 ---> https://github.com/cgre-aachen/gempy\n", - "0 ---> https://github.com/alexandrebarachant/pyRiemann\n", - "0 ---> https://github.com/yt-project/unyt\n", - "3 ---> https://github.com/bonej-org/BoneJ2\n", - "0 ---> https://github.com/ConorMacBride/mcalf\n", - "0 ---> https://github.com/widdowquinn/pyADHoRe\n", - "0 ---> https://github.com/valdergallo/data-importer\n", - "0 ---> https://github.com/saketkc/pysradb\n", - "0 ---> https://github.com/jeeberhardt/visualize\n", - "0 ---> https://github.com/hsharrison/experimentator\n", - "0 ---> https://github.com/nudomarinero/wquantiles\n", - "0 ---> https://github.com/davidbradway/Visualizing-Scholars-At-Duke-2017\n", - "5 ---> https://github.com/sepandhaghighi/findip\n", - "0 ---> https://github.com/md-lab-tools/lab-tools\n", - "9 ---> https://github.com/fiji/KymographBuilder\n", - "9 ---> https://github.com/YaserJaradeh/JarvisQA\n", - "3 ---> https://github.com/PBR/Marker2Sequence\n", - "0 ---> https://github.com/DesignEngrLab/fmdtools\n", - "0 ---> https://github.com/dkalisch/morgenstadtDB\n", - "0 ---> https://github.com/has2k1/mizani\n", - "0 ---> https://github.com/super-resolution/lineprofiler\n", - "0 ---> https://github.com/junaidmalik09/fastonn\n", - "9 ---> https://github.com/mzabrams/fars-cleaner\n", - "0 ---> https://github.com/fat-forensics/fat-forensics\n", - "0 ---> https://github.com/RPGroup-PBoC/chann_cap\n", - "0 ---> https://github.com/lascivaroma/forcellini-lemmas\n", - "0 ---> https://github.com/akxen/tps-parameterisation\n", - "0 ---> https://github.com/Davidelanz/quantum-robot\n", - "0 ---> https://github.com/SandstoneHPC/sandstone-slurm-assist\n", - "0 ---> https://github.com/applied-bioinformatics/An-Introduction-To-Applied-Bioinformatics\n", - "0 ---> https://github.com/aliFrancis/mars-crater-catalogue\n", - "0 ---> https://github.com/jcvasquezc/AEspeech\n", - "0 ---> https://github.com/oemof/oemof-solph\n", - "0 ---> https://github.com/kutaslab/fitgrid\n", - "5 ---> https://github.com/MCZbase/PreCapture\n", - "9 ---> https://github.com/tgwizard/sexymp-data\n", - "5 ---> https://github.com/semplea/characters-meta\n", - "9 ---> https://github.com/edwardcapriolo/filecrush\n", - "9 ---> https://github.com/smart-facility/cognicity-floodsensor\n", - "8 ---> https://github.com/lerkoah/ComplexBehaviorDetector\n", - "5 ---> https://github.com/evoldoers/wtfgenes\n", - "0 ---> https://github.com/nstarman/amuse_util\n", - "9 ---> https://github.com/yhaddad/Heppi\n", - "9 ---> https://github.com/janantala/speech-synthesis\n", - "0 ---> https://github.com/wjladams/pyanp\n", - "0 ---> https://github.com/seva100/optic-nerve-cnn\n", - "0 ---> https://github.com/vibbits/phyd3\n", - "6 ---> https://github.com/miledrousset/opentheso\n", - "5 ---> https://github.com/VDBWRAIR/ngs_mapper\n", - "9 ---> https://github.com/clij/clij-docs\n", - "0 ---> https://github.com/lpfann/fri\n", - "0 ---> https://github.com/seisman/HinetPy\n", - "0 ---> https://github.com/JonathanReeve/text-matcher\n", - "0 ---> https://github.com/csdms/bmi-python\n", - "0 ---> https://github.com/NaturalHistoryMuseum/revile\n", - "0 ---> https://github.com/ishahid/django-blogg\n", - "9 ---> https://github.com/SommerEngineering/Ed25519\n", - "0 ---> https://github.com/xuanxu/intergalactic\n", - "0 ---> https://github.com/PyPSA/PyPSA\n", - "0 ---> https://github.com/NickleDave/vak\n", - "0 ---> https://github.com/gtonkinhill/panaroo\n", - "0 ---> https://github.com/CMLPlatform/pycirk\n", - "9 ---> https://github.com/globalbioticinteractions/nomer\n", - "3 ---> https://github.com/dwhieb/Nuuchahnulth\n", - "9 ---> https://github.com/TUW-GEO/ecmwf_models\n", - "5 ---> https://github.com/urmi-21/MetaOmGraph\n", - "9 ---> https://github.com/bfieldtools/bfieldtools\n", - "0 ---> https://github.com/pedroernesto/HippoNetworkUnit\n", - "0 ---> https://github.com/zwicker-group/py-pde\n", - "0 ---> https://github.com/NeuralEnsemble/PyNN\n", - "0 ---> https://github.com/juliema/aTRAM\n", - "0 ---> https://github.com/GrzegorzMikaAGH/Towards-adaptivity-via-a-new-discrepancy-principle-for-Poisson-inverse-problems\n", - "0 ---> https://github.com/HTenkanen/pyrosm\n", - "9 ---> https://github.com/kjappelbaum/colorjeopardy\n", - "9 ---> https://github.com/OSUmageed/pyHeatTransfer\n", - "0 ---> https://github.com/olety/TIMLinUCB\n", - "3 ---> https://github.com/gcube-team/gcube-releases\n", - "0 ---> https://github.com/r9y9/pyopenjtalk\n", - "9 ---> https://github.com/altmetric/aho_corasick_matcher\n", - "0 ---> https://github.com/Edric-Matwiejew/QSW_MPI\n", - "0 ---> https://github.com/xieguigang/Data.GIS\n", - "0 ---> https://github.com/scikit-hep/hepstats\n", - "0 ---> https://github.com/elainehoml/GMM_Image_Quality\n", - "0 ---> https://github.com/mikahama/uralicNLP\n", - "6 ---> https://github.com/blobtoolkit/viewer\n", - "0 ---> https://github.com/e-VRO/frvcpy\n", - "0 ---> https://github.com/openeventdata/mordecai\n", - "0 ---> https://github.com/ssepulveda/RTGraph\n", - "9 ---> https://github.com/eWaterCycle/grpc4bmi\n", - "9 ---> https://github.com/msmexplorer/msmexplorer-d3\n", - "0 ---> https://github.com/bjodah/chempy\n", - "0 ---> https://github.com/chjacob-tubs/pyadf-releases\n", - "0 ---> https://github.com/Nikeshbajaj/spkit\n", - "0 ---> https://github.com/wright-group/WrightSim\n", - "0 ---> https://github.com/Curtin-Timescales-of-Mineral-Systems/UPb-Unmixer\n", - "0 ---> https://github.com/pietrobarbiero/dbgen\n", - "0 ---> https://github.com/larslau/DETECT\n", - "0 ---> https://github.com/edwardoughton/itmlogic\n", - "0 ---> https://github.com/tychotatitscheff/duc-sph\n", - "0 ---> https://github.com/impact27/diffusion_device\n", - "0 ---> https://github.com/williamjameshandley/fgivenx\n", - "0 ---> https://github.com/gregtucker/grain_hills\n", - "9 ---> https://github.com/holoviz/geoviews\n", - "0 ---> https://github.com/SoftwareDevEngResearch/CAML\n", - "0 ---> https://github.com/cyTVDN/cyTVDN\n", - "0 ---> https://github.com/birnstiel/two-pop-py\n", - "0 ---> https://github.com/DECLARE-Project/fastpan\n", - "0 ---> https://github.com/reneshbedre/bioinfokit\n", - "0 ---> https://github.com/INM-6/hybridLFPy\n", - "0 ---> https://github.com/caglorithm/mopet\n", - "9 ---> https://github.com/felicitia/EventExtractor\n", - "0 ---> https://github.com/molpopgen/fwdpy11\n", - "0 ---> https://github.com/jacobwindsor/pubchem-ranker\n", - "0 ---> https://github.com/ENCODE-DCC/caper\n", - "0 ---> https://github.com/colomoto/colomoto-jupyter\n", - "0 ---> https://github.com/nicolas-chaulet/torch-points-kernels\n", - "0 ---> https://github.com/MicroPasts/transcribing-WGS\n", - "9 ---> https://github.com/samapriya/Planet-GEE-Pipeline-GUI\n", - "0 ---> https://github.com/similitude/h2-world-simmer\n", - "0 ---> https://github.com/anthony-nouy/tensap\n", - "0 ---> https://github.com/ancklo/ChaosMagPy\n", - "0 ---> https://github.com/mvdh7/calkulate\n", - "9 ---> https://github.com/arviz-devs/arviz\n", - "9 ---> https://github.com/clij/clij-core\n", - "0 ---> https://github.com/saverymax/qdriven-chiqa-summarization\n", - "0 ---> https://github.com/jhidding/sustainability\n", - "0 ---> https://github.com/arif-zaman/network_probing\n", - "0 ---> https://github.com/janpipek/pydiq\n", - "0 ---> https://github.com/posterior/goftests\n", - "9 ---> https://github.com/zarr-developers/zarr-python\n", - "3 ---> https://github.com/marco-ka/semantic-annotation-writer\n", - "4 ---> https://github.com/medusa-project/databank\n", - "1 ---> https://github.com/schema-app/schema\n", - "0 ---> https://github.com/ulmo-dev/ulmo\n", - "9 ---> https://github.com/kuchaale/wcd_2020\n", - "0 ---> https://github.com/uwmadison-chm/masterfile\n", - "0 ---> https://github.com/jeeberhardt/unrolr\n", - "9 ---> https://github.com/Lane-Library/wiki-extract\n", - "0 ---> https://github.com/pydicom/pynetdicom\n", - "5 ---> https://github.com/NLeSC/fairdatapoint\n", - "0 ---> https://github.com/ilyasst/pydictoolkit\n", - "0 ---> https://github.com/NLESC-JCER/QMCTorch\n", - "0 ---> https://github.com/AthenaEPI/dmipy\n", - "0 ---> https://github.com/ISA-tools/nmrml2isa\n", - "9 ---> https://github.com/usethesource/capsule\n", - "0 ---> https://github.com/minzastro/unidam\n", - "0 ---> https://github.com/environmentalscience/essm\n", - "9 ---> https://github.com/afnogueira/datasetsaner2017\n", - "0 ---> https://github.com/raysect/source\n", - "5 ---> https://github.com/ivco19/brooks\n", - "0 ---> https://github.com/mattbv/lidartf\n", - "0 ---> https://github.com/ricoms/gpam_stats\n", - "5 ---> https://github.com/Capitains/Sparrow\n", - "0 ---> https://github.com/hpparvi/PyDE\n", - "0 ---> https://github.com/molbiodiv/Blackbird\n", - "9 ---> https://github.com/adrn/thejoker\n", - "0 ---> https://github.com/davidenunes/context-permeability\n", - "0 ---> https://github.com/akxen/rep-gep\n", - "0 ---> https://github.com/joergdietrich/NFW\n", - "3 ---> https://github.com/sandyherho/tutorial_xarray\n", - "0 ---> https://github.com/deniederhut/PyTeX\n", - "0 ---> https://github.com/interaction-lab/MoveToCode\n", - "0 ---> https://github.com/FilipeMaia/afnumpy\n", - "0 ---> https://github.com/nextgenusfs/amptk\n", - "5 ---> https://github.com/Qiskit/qiskit\n", - "0 ---> https://github.com/CU-Denver-UQ/LUQ\n", - "0 ---> https://github.com/casimp/lightct\n", - "0 ---> https://github.com/joostjor/random-graphs\n", - "0 ---> https://github.com/sbonaretti/pyKNEEr\n", - "0 ---> https://github.com/DataMedSci/pymchelper\n", - "0 ---> https://github.com/simonvh/pita\n", - "0 ---> https://github.com/Socrats/EGTTools\n", - "0 ---> https://github.com/ihmwg/python-ihm\n", - "0 ---> https://github.com/AlessioZanga/PyEEGLab\n", - "0 ---> https://github.com/samuelstjean/autodmri\n", - "1 ---> https://github.com/filips123/ZeroFrameJS\n", - "0 ---> https://github.com/Tyler-Yates/AestheticFractals\n", - "0 ---> https://github.com/fmalmeida/ngs-preprocess\n", - "0 ---> https://github.com/junhyeokahn/tf_rbdl\n", - "0 ---> https://github.com/Samreay/ChainConsumer\n", - "0 ---> https://github.com/JoshuaE1/supervised-classification-SSH-publications\n", - "0 ---> https://github.com/syhw/DTW_Cython\n", - "0 ---> https://github.com/cerebunit/cerebunit\n", - "0 ---> https://github.com/clebsonpy/HidroComp\n", - "9 ---> https://github.com/Terradue/dcs-insar-roipac\n", - "9 ---> https://github.com/drcassar/viscosity-graybox-nn\n", - "0 ---> https://github.com/MAVENSDC/PyTplot\n", - "5 ---> https://github.com/EricAlcaide/MiniFold\n", - "0 ---> https://github.com/CognitiveComputationLab/ccobra\n", - "0 ---> https://github.com/holoviz/colorcet\n", - "0 ---> https://github.com/jpvantassel/hvsrpy\n", - "9 ---> https://github.com/georgeOsdDev/longo\n", - "0 ---> https://github.com/unicus-skmk/test\n", - "0 ---> https://github.com/DTUComputeStatisticsAndDataAnalysis/MBPLS\n", - "0 ---> https://github.com/hyungjun/gtool\n", - "3 ---> https://github.com/UofS-Pulse-Binfo/nd_genotypes\n", - "0 ---> https://github.com/michaelaye/pyciss\n", - "0 ---> https://github.com/genomematt/pylazybam\n", - "0 ---> https://github.com/arkottke/pygmm\n", - "0 ---> https://github.com/evanodell/ukpolice\n", - "9 ---> https://github.com/kotori-y/Scopy\n", - "0 ---> https://github.com/gsantoni/ccCluster\n", - "0 ---> https://github.com/iancze/MPoL\n", - "0 ---> https://github.com/jacobo-diaz/aneupy\n", - "0 ---> https://github.com/j-stone/cog-tasks\n", - "0 ---> https://github.com/broyson/Locust-streaming\n", - "0 ---> https://github.com/rougier/numpy-100\n", - "0 ---> https://github.com/castelao/supportdata\n", - "0 ---> https://github.com/napsternxg/TwitterNER\n", - "0 ---> https://github.com/DomBennett/TaxonNamesResolver\n", - "9 ---> https://github.com/lucaspuvis/SAM\n", - "5 ---> https://github.com/caltechlibrary/handprint\n", - "5 ---> https://github.com/unipept/unipept-cli\n", - "5 ---> https://github.com/griffithlab/pVACtools\n", - "0 ---> https://github.com/MAGIC-nexus/nis-python-client\n", - "0 ---> https://github.com/spacetelescope/jwst-fgs-countrate\n", - "9 ---> https://github.com/skp703/RainInterpolator\n", - "0 ---> https://github.com/pysal/spvcm\n", - "0 ---> https://github.com/CKrawczyk/densityplot\n", - "0 ---> https://github.com/Abe404/root_painter\n", - "5 ---> https://github.com/freeknijweide/autoencoder-pdb-cleaning\n", - "0 ---> https://github.com/reegis/deflex\n", - "0 ---> https://github.com/DCAN-Labs/nhp-abcd-bids-pipeline\n", - "0 ---> https://github.com/MechMicroMan/DefDAP\n", - "0 ---> https://github.com/Climdyn/qgs\n", - "9 ---> https://github.com/anil88/population-origin-calculator\n", - "0 ---> https://github.com/AlgolLLC/phonetop\n", - "0 ---> https://github.com/jdmoorman/kaczmarz-algorithms\n", - "0 ---> https://github.com/qzhu2017/PyXtal_FF\n", - "6 ---> https://github.com/rodighiero/DH2019\n", - "5 ---> https://github.com/ioos/erddapy\n", - "0 ---> https://github.com/bjorntsv/tempmom\n", - "0 ---> https://github.com/ARM-DOE/ACT\n", - "0 ---> https://github.com/tvwenger/millennium-tap-query\n", - "5 ---> https://github.com/3D-e-Chem/knime-klifs\n", - "5 ---> https://github.com/harnesscloud/nova-docker\n", - "5 ---> https://github.com/Clinical-Genomics/chanjo\n", - "0 ---> https://github.com/globalbioticinteractions/elton\n", - "0 ---> https://github.com/felicitia/TestBenchmark-Java-client\n", - "0 ---> https://github.com/butcer0/found-diagnosis-network\n", - "0 ---> https://github.com/radtorch/radtorch\n", - "0 ---> https://github.com/UT-CHG/PolyADCIRC\n", - "5 ---> https://github.com/parsa-epfl/qflex\n", - "0 ---> https://github.com/martibosch/detectree\n", - "9 ---> https://github.com/nawrs/nawrs\n", - "5 ---> https://github.com/arfon/metamatter\n", - "0 ---> https://github.com/linsalrob/PPPF\n", - "0 ---> https://github.com/peckhams/topoflow\n", - "0 ---> https://github.com/mekman/recon\n", - "9 ---> https://github.com/petl-developers/petl\n", - "0 ---> https://github.com/piyush82/expression-evaluator\n", - "0 ---> https://github.com/MAVENSDC/cdflib\n", - "0 ---> https://github.com/acocac/MTLCC-MODIS-GCP\n", - "9 ---> https://github.com/nomencurator/taxonaut\n", - "0 ---> https://github.com/jw156605/MATCHER\n", - "0 ---> https://github.com/vprusso/toqito\n", - "0 ---> https://github.com/abhi1693/yii2-config\n", - "0 ---> https://github.com/scikit-hep/uproot-methods\n", - "3 ---> https://github.com/JustinGOSSES/predictatops\n", - "0 ---> https://github.com/ThomasRieutord/kabl\n", - "0 ---> https://github.com/pastas/pastas\n", - "0 ---> https://github.com/lingpy/workflow-paper\n", - "0 ---> https://github.com/tomwallis/PsyUtils\n", - "0 ---> https://github.com/adrn/gala\n", - "0 ---> https://github.com/kinnala/scikit-fem\n", - "0 ---> https://github.com/yatiml/yatiml\n", - "0 ---> https://github.com/ZFTurbo/Weighted-Boxes-Fusion\n", - "9 ---> https://github.com/willpearse/data_frame\n", - "0 ---> https://github.com/jameshowison/softcite\n", - "0 ---> https://github.com/clauswilke/PeptideBuilder\n", - "9 ---> https://github.com/GatorSense/HyperspectralAnalysisIntroduction\n", - "0 ---> https://github.com/MultithreadCorner/Hydra\n", - "5 ---> https://github.com/mgiorgio/comet-utilities\n", - "0 ---> https://github.com/specpose/stopeight\n", - "0 ---> https://github.com/MIC-DKFZ/cmdint\n", - "0 ---> https://github.com/pysat/pysatMadrigal\n", - "0 ---> https://github.com/berenslab/pr_bc_connectivity\n", - "0 ---> https://github.com/helioforecast/Predstorm\n", - "8 ---> https://github.com/datproject/dat\n", - "0 ---> https://github.com/TUW-GEO/ease_grid\n", - "9 ---> https://github.com/hrtlacek/faustTools\n", - "0 ---> https://github.com/Abe404/segmentation_of_roots_in_soil_with_unet\n", - "0 ---> https://github.com/ctreffe/alfred\n", - "0 ---> https://github.com/myGrid/ruby-zip-container\n", - "0 ---> https://github.com/ECSIM/pem-dataset1\n", - "0 ---> https://github.com/hasantayyar/doi-tools\n", - "0 ---> https://github.com/perryuu/managpu\n", - "0 ---> https://github.com/IceCubeOpenSource/ASTERIA\n", - "0 ---> https://github.com/jeremyf/orcid_album_cover\n", - "0 ---> https://github.com/josemiotto/pylevy\n", - "9 ---> https://github.com/JolleJolles/pirecorder\n", - "0 ---> https://github.com/mdolab/pygeo\n", - "0 ---> https://github.com/TUW-GEO/rt1\n", - "0 ---> https://github.com/AnyBody-Research-Group/AnyPyTools\n", - "0 ---> https://github.com/Yefee/xMCA\n", - "9 ---> https://github.com/rlworkgroup/garage\n", - "0 ---> https://github.com/screensinthewild/screenbase_unity_slideshow\n", - "0 ---> https://github.com/theblackunknown/creative-ecosystems\n", - "0 ---> https://github.com/simpeg/discretize\n", - "0 ---> https://github.com/tactcomplabs/xbgas-tools\n", - "0 ---> https://github.com/LRCFS/GSR_Paper\n", - "0 ---> https://github.com/soft-matter/trackpy\n", - "0 ---> https://github.com/jrleeman/biaxtools\n", - "0 ---> https://github.com/JaGeo/PaulingPublication\n", - "6 ---> https://github.com/tobysmith568/License-Sorter\n", - "6 ---> https://github.com/samik1986/ML_Semantic_Segmenation_NMI\n", - "0 ---> https://github.com/multiscale/ymmsl-python\n", - "0 ---> https://github.com/anitagraser/movingpandas\n", - "0 ---> https://github.com/fls-bioinformatics-core/RnaChipIntegrator\n", - "0 ---> https://github.com/bionet/ted.python\n", - "0 ---> https://github.com/thorstenwagner/ij-trackmate-findmaxima\n", - "0 ---> https://github.com/NHERI-SimCenter/pelicun\n", - "0 ---> https://github.com/hibernator11/AprendiendoPython\n", - "0 ---> https://github.com/danieljfarrell/pvtrace\n", - "0 ---> https://github.com/neuroscout/neuroscout-cli\n", - "0 ---> https://github.com/MichaelMauderer/Gazer\n", - "0 ---> https://github.com/FedUni/caliko\n", - "0 ---> https://github.com/vcutrona/elasticpedia\n", - "9 ---> https://github.com/aleksandarsibincic/ExcelAudit\n", - "0 ---> https://github.com/aldnav/abempy\n", - "9 ---> https://github.com/spectrochempy/spectrochempy\n", - "0 ---> https://github.com/isi-nmr/bruker2bart\n", - "0 ---> https://github.com/HobnobMancer/PhD_Project_Scripts\n", - "0 ---> https://github.com/drcassar/glasspy\n", - "0 ---> https://github.com/rieder/MASC\n", - "0 ---> https://github.com/oblassers/tuw-servicebroker\n", - "0 ---> https://github.com/Nelson-Gon/pyautocv\n", - "0 ---> https://github.com/jajcayn/pygpso\n", - "0 ---> https://github.com/Craig-Robson/postgres_spatial_join_areas\n", - "5 ---> https://github.com/MAGIC-nexus/nis-graph-diagrams\n", - "9 ---> https://github.com/silviodc/Gazetteer\n", - "0 ---> https://github.com/alchemistry/alchemlyb\n", - "9 ---> https://github.com/timtroendle/energy-agents\n", - "0 ---> https://github.com/xgcm/xgcm\n", - "0 ---> https://github.com/mheikenfeld/wrfcube\n", - "0 ---> https://github.com/sojamo/midimapper\n", - "0 ---> https://github.com/datreant/MDSynthesis\n", - "0 ---> https://github.com/UNSW-CEEM/NEMOSIS\n", - "0 ---> https://github.com/KeplerGO/K2fov\n", - "0 ---> https://github.com/atorras1618/PerMaViss\n", - "0 ---> https://github.com/tubiana/TTClust\n", - "0 ---> https://github.com/matt-long/xpersist\n", - "0 ---> https://github.com/bast/smeshing\n", - "1 ---> https://github.com/Scifabric/pybossa\n", - "0 ---> https://github.com/ds-wizard/docs\n", - "0 ---> https://github.com/abelcarreras/phonolammps\n", - "0 ---> https://github.com/jason-zl190/sisr_medical\n", - "0 ---> https://github.com/mdshw5/pyfaidx\n", - "9 ---> https://github.com/wiebket/delprocess\n", - "0 ---> https://github.com/holoviz/datashader\n", - "0 ---> https://github.com/ISA-tools/mzml2isa\n", - "0 ---> https://github.com/ajefweiss/HelioSat\n", - "0 ---> https://github.com/houghb/savvy\n", - "0 ---> https://github.com/fnl/gnamed\n", - "0 ---> https://github.com/jjgomera/iapws\n", - "0 ---> https://github.com/dicom/rtp-connect\n", - "5 ---> https://github.com/moonso/genmod\n", - "0 ---> https://github.com/zafarali/emdp\n", - "0 ---> https://github.com/phydev/trajpy\n", - "0 ---> https://github.com/IMMM-SFA/im3py\n", - "0 ---> https://github.com/yadage/yadage-schemas\n", - "0 ---> https://github.com/karenadam/Mixed-Bandlimited-Time-Encoding\n", - "0 ---> https://github.com/spacetelescope/gwcs\n", - "0 ---> https://github.com/mkjung99/pyc3dserver\n", - "9 ---> https://github.com/reegis/reegis\n", - "0 ---> https://github.com/kimlab/GPyM\n", - "0 ---> https://github.com/woutergins/satlas\n", - "0 ---> https://github.com/lachhebo/pyclustertend\n", - "0 ---> https://github.com/wiebket/delretrieve\n", - "6 ---> https://github.com/digitallinguistics/transliterate\n", - "9 ---> https://github.com/nlesc-nano/Nano-Utils\n", - "0 ---> https://github.com/oemof/oemof-thermal\n", - "0 ---> https://github.com/LRydin/MFDFA\n", - "2 ---> https://github.com/Flowminder/FlowKit\n", - "0 ---> https://github.com/linhd-postdata/desir\n", - "9 ---> https://github.com/DLR-SC/gitlab2prov\n", - "0 ---> https://github.com/openearth/aeolis-python\n", - "4 ---> https://github.com/Lonero-Team/Decentralized-Internet\n", - "0 ---> https://github.com/LegoStormtroopr/django-spaghetti-and-meatballs\n", - "5 ---> https://github.com/smarie/python-azureml-client\n", - "0 ---> https://github.com/NREL/floris\n", - "3 ---> https://github.com/ADicksonLab/wepy\n", - "0 ---> https://github.com/M4I-nanoscopy/tpx3-event-localisation\n", - "0 ---> https://github.com/myGrid/ruby-ucf\n", - "0 ---> https://github.com/andsor/pyfssa\n", - "0 ---> https://github.com/arkottke/pykoom\n", - "0 ---> https://github.com/tardis-sn/tardis\n", - "0 ---> https://github.com/IaPCS/gmsh-exodus-converter\n", - "0 ---> https://github.com/atait/lytest\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "9 ---> https://github.com/ocsmit/rindcalc\n", - "6 ---> https://github.com/mpostol/TP\n", - "8 ---> https://github.com/ElektraInitiative/libelektra\n", - "0 ---> https://github.com/will-rowe/groot\n", - "3 ---> https://github.com/bexis/Module_LUI\n", - "0 ---> https://github.com/benjaminrose/MC-Age\n", - "0 ---> https://github.com/SSW-DataLab/randomizer\n", - "0 ---> https://github.com/FowlerLab/Enrich2\n", - "0 ---> https://github.com/Andros-Spica/PhD-defense\n", - "0 ---> https://github.com/SirSharpest/NarrowEscapeSimulator\n", - "0 ---> https://github.com/annotation/tutorials\n", - "0 ---> https://github.com/RDFLib/OWL-RL\n", - "0 ---> https://github.com/RPGroup-PBoC/vdj_recombination\n", - "5 ---> https://github.com/carpyncho/carpyncho\n", - "0 ---> https://github.com/jpvantassel/sigpropy\n", - "0 ---> https://github.com/camelot-project/frontend\n", - "0 ---> https://github.com/cggh/scikit-allel\n", - "9 ---> https://github.com/kundajelab/seqdataloader\n", - "8 ---> https://github.com/ubccr/xdmod\n", - "0 ---> https://github.com/TomasBeuzen/pybeach\n", - "1 ---> https://github.com/prevwong/craft.js\n", - "0 ---> https://github.com/CovingtonResearchGroup/olm\n", - "9 ---> https://github.com/zykls/whynot\n", - "5 ---> https://github.com/DLR-RM/RAFCON\n", - "0 ---> https://github.com/hpparvi/PyTransit\n", - "0 ---> https://github.com/BigDataBiology/GMGC-mapper\n", - "0 ---> https://github.com/andycasey/ads\n", - "0 ---> https://github.com/darribas/wmn\n", - "5 ---> https://github.com/caltechlibrary/holdit\n", - "0 ---> https://github.com/AMReX-Astro/Castro\n", - "0 ---> https://github.com/greglucas/bezpy\n", - "0 ---> https://github.com/RCHG/FunFAN\n", - "0 ---> https://github.com/geek-yang/META\n", - "5 ---> https://github.com/Sentimentron/Nebraska-public\n", - "0 ---> https://github.com/jkibele/OpticalRS\n", - "8 ---> https://github.com/jupiterbak/FAPSDemoOPCUAServer2\n", - "0 ---> https://github.com/seandavi/ngCGH\n", - "0 ---> https://github.com/fraserw/trippy\n", - "0 ---> https://github.com/SainsburyWellcomeCentre/lasagna\n", - "1 ---> https://github.com/ufz/ogs\n", - "0 ---> https://github.com/libsemigroups/libsemigroups\n", - "9 ---> https://github.com/IDEES-Rouen/Flight-Scrapping\n", - "0 ---> https://github.com/AshKelly/pyquad\n", - "9 ---> https://github.com/jolespin/soothsayer\n", - "0 ---> https://github.com/kklmn/xrt\n", - "0 ---> https://github.com/beringresearch/ivis\n", - "0 ---> https://github.com/mdolab/pyspline\n", - "0 ---> https://github.com/thieunguyen5991/opfunu\n", - "5 ---> https://github.com/fmannhardt/pddp\n", - "5 ---> https://github.com/gwpy/gwpy\n", - "9 ---> https://github.com/pyvista/pyvista\n", - "9 ---> https://github.com/arcolife/scholarec\n", - "3 ---> https://github.com/NUStreaming/acm-mmsys-2020-grand-challenge\n", - "0 ---> https://github.com/adamewing/tebreak\n", - "9 ---> https://github.com/papis/papis\n", - "0 ---> https://github.com/wlad111/small_probs\n", - "9 ---> https://github.com/slimgroup/ServerlessImagingAWS\n", - "0 ---> https://github.com/danielbmmatos/Reduced-Model-of-Shear-Building\n", - "5 ---> https://github.com/biocore/qiime\n", - "0 ---> https://github.com/aretha-hep/mprtect\n", - "9 ---> https://github.com/bionode/bionode-template\n", - "0 ---> https://github.com/SebastianEggert/OpenWorkstation\n", - "0 ---> https://github.com/pyscf/pyscf\n", - "0 ---> https://github.com/GijsMulders/epos\n", - "0 ---> https://github.com/castelao/PyAVISO\n", - "1 ---> https://github.com/korpling/ANNIS\n", - "0 ---> https://github.com/sayounara/Green_training\n", - "2 ---> https://github.com/WikiWatershed/model-my-watershed\n", - "0 ---> https://github.com/aymara/lima\n", - "0 ---> https://github.com/xieguigang/ManhattanPlot\n", - "0 ---> https://github.com/thorstenwagner/TraJ\n", - "7 ---> https://github.com/sealuzh/lightweight-effectiveness\n", - "2 ---> https://github.com/phiresky/backchannel-prediction\n", - "0 ---> https://github.com/labexp/LibreScan\n", - "0 ---> https://github.com/jdmoorman/laptools\n", - "5 ---> https://github.com/krassowski/drug-disease-profile-matching\n", - "9 ---> https://github.com/allucas/allucas.github.io\n", - "0 ---> https://github.com/BradMcDanel/term-revealing\n", - "9 ---> https://github.com/silx-kit/pyFAI\n", - "0 ---> https://github.com/scipy-lectures/scipy-lecture-notes\n", - "0 ---> https://github.com/ornlneutronimaging/NEUIT\n", - "9 ---> https://github.com/kgullikson88/General\n", - "0 ---> https://github.com/BristolTopGroup/DailyPythonScripts\n", - "0 ---> https://github.com/redcap-tools/PyCap\n", - "9 ---> https://github.com/dgarijo/Widoco\n", - "1 ---> https://github.com/PecanProject/bety\n", - "7 ---> https://github.com/AABoyles/MicrobeTrace\n", - "0 ---> https://github.com/supercollider/supercollider\n", - "0 ---> https://github.com/linsalrob/PhiSpy\n", - "9 ---> https://github.com/Koushikphy/Interactive_Data_Editor\n", - "0 ---> https://github.com/keichi/mpEDM\n", - "9 ---> https://github.com/cldf-clts/pyclts\n", - "0 ---> https://github.com/TEB-model/teb\n", - "0 ---> https://github.com/comic/evalutils\n", - "0 ---> https://github.com/suryabaiarava/liferay-examples\n", - "0 ---> https://github.com/opencobra/cobratoolbox\n", - "0 ---> https://github.com/dtscalibration/python-dts-calibration\n", - "9 ---> https://github.com/eqcorrscan/EQcorrscan\n", - "0 ---> https://github.com/scikit-hep/decaylanguage\n", - "6 ---> https://github.com/OpenGeoscience/geojs\n", - "0 ---> https://github.com/PyThaiNLP/pythainlp\n", - "0 ---> https://github.com/TUW-GEO/ascat\n", - "0 ---> https://github.com/rvanheest/feedback4s\n", - "0 ---> https://github.com/screensinthewild/screenbase_instantiated_slideshow\n", - "0 ---> https://github.com/AMReX-Astro/MAESTROeX\n", - "0 ---> https://github.com/christianjauregui/famafrench\n", - "1 ---> https://github.com/TBroTeam/TBro\n", - "9 ---> https://github.com/mattbit/active-network-er\n", - "9 ---> https://github.com/timetag/ETA\n", - "0 ---> https://github.com/stephankramer/assess\n", - "9 ---> https://github.com/DataFusion4NetBio/Paper16-SCODE\n", - "6 ---> https://github.com/CDAT/jupyter-vcdat\n", - "0 ---> https://github.com/jorvlan/open-visualizations\n", - "0 ---> https://github.com/lsa-pucrs/acerta-abide\n", - "0 ---> https://github.com/particle-physics-playground/playground\n", - "0 ---> https://github.com/krischer/hypoDDpy\n", - "0 ---> https://github.com/jankrepl/deepdow\n", - "0 ---> https://github.com/weijias-opensource/acc\n", - "0 ---> https://github.com/sam-nayak/SynthNet\n", - "9 ---> https://github.com/laserkelvin/PySpecTools\n", - "0 ---> https://github.com/nithyanandan/AstroUtils\n", - "5 ---> https://github.com/tactcomplabs/xbgas-llvm\n", - "0 ---> https://github.com/mdolab/pyoptsparse\n", - "0 ---> https://github.com/tholoien/empiriciSN\n", - "0 ---> https://github.com/FUSED-Wind/fusedwind\n", - "0 ---> https://github.com/sam-greenwood/taco_vis\n", - "6 ---> https://github.com/lifs-tools/jmzTab-m\n", - "0 ---> https://github.com/JannisHoch/pcrglobwb_utils\n", - "0 ---> https://github.com/hep-lbdl/CaloGAN\n", - "0 ---> https://github.com/epiviz/Metaviz\n", - "0 ---> https://github.com/bbfrederick/rapidtide\n", - "0 ---> https://github.com/pnlbwh/conversion\n", - "1 ---> https://github.com/butcer0/SequenceOne\n", - "0 ---> https://github.com/LinkedEarth/Pyleoclim_util\n", - "5 ---> https://github.com/IMAGINE-Consortium/imagine\n", - "0 ---> https://github.com/glm-tools/pyglmnet\n", - "0 ---> https://github.com/aburrell/aacgmv2\n", - "0 ---> https://github.com/sncosmo/sncosmo\n", - "1 ---> https://github.com/InsightSoftwareConsortium/itkwidgets\n", - "0 ---> https://github.com/ICB-DCM/pyPESTO\n", - "0 ---> https://github.com/lballabio/QuantLib-SWIG\n", - "0 ---> https://github.com/SoftwareDevEngResearch/RigidFoilSimulator\n", - "0 ---> https://github.com/samuelstjean/dpr\n", - "0 ---> https://github.com/interrogator/corpkit\n", - "9 ---> https://github.com/gwu-libraries/sfm-ui\n", - "9 ---> https://github.com/tyson-swetnam/porder\n", - "9 ---> https://github.com/sabgaby/sabgaby\n", - "0 ---> https://github.com/panisson/pymobility\n", - "0 ---> https://github.com/ryanpeek/mapping-in-R-workshop\n", - "0 ---> https://github.com/lewisacidic/scikit-chem\n", - "1 ---> https://github.com/GerardBalaoro/jQuery-Tourer\n", - "1 ---> https://github.com/KnowledgeCaptureAndDiscovery/DISK\n", - "5 ---> https://github.com/RTIInternational/gobbli\n", - "0 ---> https://github.com/fabriziocosta/GraphLearn\n", - "0 ---> https://github.com/solvebio/veppy\n", - "0 ---> https://github.com/diku-dk/futhark\n", - "9 ---> https://github.com/kks32-slides/2016-berkeley\n", - "0 ---> https://github.com/SeqWare/oozie-sge\n", - "0 ---> https://github.com/kristianfoerster/melodist\n", - "0 ---> https://github.com/midas-isg/epicasemap\n", - "0 ---> https://github.com/BristolTopGroup/NTupleProduction\n", - "0 ---> https://github.com/kuchaale/X-regression\n", - "8 ---> https://github.com/dockstore/dockstore-ui2\n", - "0 ---> https://github.com/abhi1693/yii2-sms\n", - "5 ---> https://github.com/NLeSC/eEcology-Classification\n", - "0 ---> https://github.com/jdidion/atropos\n", - "0 ---> https://github.com/KBRI-Neuroinformatics/WGAN-for-RNASeq-analysis\n", - "0 ---> https://github.com/PinkShnack/TEMUL\n", - "0 ---> https://github.com/rOpenGov/eurostat\n", - "0 ---> https://github.com/rock-learning/pytransform3d\n", - "0 ---> https://github.com/matthiaskoenig/sbmlutils\n", - "9 ---> https://github.com/PennLINC/aslprep\n", - "0 ---> https://github.com/tamacgregor/structure_factor_tools\n", - "9 ---> https://github.com/kgullikson88/gullikson-scripts\n", - "0 ---> https://github.com/jacirrone/OutPredict\n", - "0 ---> https://github.com/shiyy123/FCDetector\n", - "5 ---> https://github.com/fmi-faim/fmi-trackmate-addons\n", - "0 ---> https://github.com/biocaddie/WG3-MetadataSpecifications\n", - "0 ---> https://github.com/habi/Zebra-Fish-Gills\n", - "0 ---> https://github.com/ga4gh/tool-registry-validator\n", - "9 ---> https://github.com/sagemath/sage\n", - "5 ---> https://github.com/4DNucleome/PartSeg\n", - "9 ---> https://github.com/priestoferis/animal-behaviour-analysis-2020\n", - "9 ---> https://github.com/mayconbordin/streaminer\n", - "9 ---> https://github.com/ctsit/redcap_external_module_development_guide\n", - "0 ---> https://github.com/joshje/drawpath\n", - "5 ---> https://github.com/BeckResearchLab/USP-inhibition\n", - "1 ---> https://github.com/bio-ontology-research-group/DDIEM\n", - "3 ---> https://github.com/fvalka/atc-reinforcement-learning\n", - "0 ---> https://github.com/kb-press/ndsplines\n", - "0 ---> https://github.com/agnsal/BlocksBot\n", - "0 ---> https://github.com/benmaier/COVID19CaseNumberModel\n", - "9 ---> https://github.com/uweschmitt/emzed2\n", - "0 ---> https://github.com/prajankya/Lidar-Robot\n", - "0 ---> https://github.com/AAROC/DevOps\n", - "0 ---> https://github.com/ybayle/Scyland3D\n", - "0 ---> https://github.com/jswhit/pygrib\n", - "0 ---> https://github.com/PTC-CMC/McCabeGroup\n", - "0 ---> https://github.com/bdw/GridKit\n", - "0 ---> https://github.com/feelpp/feelpp\n", - "3 ---> https://github.com/seclab-ucr/UBITect\n", - "3 ---> https://github.com/SuLab/scheduled-bots\n", - "0 ---> https://github.com/mjlaine/eppes\n", - "0 ---> https://github.com/alpha-xone/xbbg\n", - "0 ---> https://github.com/IA-Cardiologia-husa/VHD_NLP\n", - "5 ---> https://github.com/ahamilton144/hamilton-2020-managing-financial-risk-tradeoffs-for-hydropower\n", - "8 ---> https://github.com/MonashBioinformaticsPlatform/laxy\n", - "0 ---> https://github.com/Ptrskay3/PySprint\n", - "0 ---> https://github.com/gaojun0816/code_access_finder\n", - "2 ---> https://github.com/LinkedDataFragments/Server.js\n", - "1 ---> https://github.com/lgsvl/simulator\n", - "0 ---> https://github.com/foerstner-lab/GRADitude\n", - "0 ---> https://github.com/BritishMuseumDH/britishMuseumFacesDetection\n", - "0 ---> https://github.com/mattpitkin/psrqpy\n", - "0 ---> https://github.com/cbirdferrer/collatrix\n", - "0 ---> https://github.com/spacetelescope/pysiaf\n", - "0 ---> https://github.com/jag1g13/pycgtool\n", - "3 ---> https://github.com/jtmccr1/figtreejs-react\n", - "0 ---> https://github.com/vedantchandra/wdtools\n", - "0 ---> https://github.com/ericleasemorgan/reader\n", - "9 ---> https://github.com/AbhinavMir/Decentralized-Journalism-Using-Ethereum\n", - "0 ---> https://github.com/juliolugo96/ula-lang\n", - "0 ---> https://github.com/CountESS-Project/fqfa\n", - "0 ---> https://github.com/reflectivity/reflectivity.github.io\n", - "0 ---> https://github.com/vuw-sim-stia/TICJ\n", - "5 ---> https://github.com/tudelft3d/bag3d\n", - "5 ---> https://github.com/cyverse-gis/suas-metadata\n", - "0 ---> https://github.com/mwcraig/msumastro\n", - "0 ---> https://github.com/ctsit/qipr_approver\n", - "0 ---> https://github.com/Caltech-IPAC/Montage\n", - "0 ---> https://github.com/emtpb/pyfds\n", - "3 ---> https://github.com/DennisRippinger/spade\n", - "0 ---> https://github.com/Chilipp/psyplot_old\n", - "2 ---> https://github.com/UNCG-DAISY/Coastal-Image-Labeler\n", - "6 ---> https://github.com/jiemakel/aether\n", - "0 ---> https://github.com/chrisdjscott/Atoman\n", - "1 ---> https://github.com/cosmo-epfl/chemiscope\n", - "0 ---> https://github.com/spcl/dace\n", - "0 ---> https://github.com/CardiacModelling/nonlinear-time-dependent-leak\n", - "0 ---> https://github.com/templateflow/python-client\n", - "0 ---> https://github.com/redmod-team/profit\n", - "0 ---> https://github.com/pavolgaj/ObsPlanner\n", - "0 ---> https://github.com/nick-youngblut/MGSIM\n", - "5 ---> https://github.com/fcproj/agrotagger\n", - "0 ---> https://github.com/epiviz/epiviz\n", - "8 ---> https://github.com/filips123/EthAvatar.JS\n", - "1 ---> https://github.com/quadrama/DramaNLP\n", - "3 ---> https://github.com/Kitware/itk-vtk-viewer\n", - "8 ---> https://github.com/academic/thesaurus-manager\n", - "0 ---> https://github.com/milaboratory/mixcr\n", - "5 ---> https://github.com/Fu-PusH/statement-finder\n", - "0 ---> https://github.com/openmc-dev/openmc\n", - "0 ---> https://github.com/brelsford/topology\n", - "0 ---> https://github.com/thela/django_log_to_telegram\n", - "9 ---> https://github.com/cigroup-ol/metaopt\n", - "0 ---> https://github.com/lucananni93/CTCF_Spatial_Patterns\n", - "0 ---> https://github.com/stfbnc/fathon\n", - "0 ---> https://github.com/prisms-center/CASMcode\n", - "0 ---> https://github.com/ccd-utexas/binstarsolver\n", - "9 ---> https://github.com/wallissoncarvalho/HidroData\n", - "0 ---> https://github.com/XPRESSyourself/XPRESSplot\n", - "0 ---> https://github.com/airr-community/airr-standards\n", - "0 ---> https://github.com/joaomcteixeira/taurenmd\n", - "0 ---> https://github.com/jyhmiinlin/pynufft\n", - "0 ---> https://github.com/atrisovic/econ-data-policy\n", - "6 ---> https://github.com/DPBayes/DP-cross-silo-federated-learning\n", - "0 ---> https://github.com/statsmodels/statsmodels\n", - "6 ---> https://github.com/SciGraph/SciGraph\n", - "0 ---> https://github.com/giannisdoukas/ipython2cwl\n", - "9 ---> https://github.com/Neurita/pypes\n", - "5 ---> https://github.com/pesummary/pesummary\n", - "6 ---> https://github.com/nilsreiter/CorefAnnotator\n", - "5 ---> https://github.com/tripal/tripal_galaxy\n", - "0 ---> https://github.com/hipster-philology/protogenie\n", - "0 ---> https://github.com/PGijsbers/gama\n", - "5 ---> https://github.com/collab-uniba/personality\n", - "0 ---> https://github.com/sertansenturk/makammusicbrainz\n", - "9 ---> https://github.com/biowdl/germline-DNA\n", - "3 ---> https://github.com/CLARIAH/grlc\n", - "0 ---> https://github.com/openvax/isovar\n", - "3 ---> https://github.com/iimog/wikidata-game-flower-color\n", - "0 ---> https://github.com/seawander/nmf_imaging\n", - "9 ---> https://github.com/GiulioRossetti/cdlib\n", - "0 ---> https://github.com/neuhofmo/RecBlast\n", - "5 ---> https://github.com/cyverse-vice/jupyterlab-scipy\n", - "0 ---> https://github.com/UWDIRECT/UWDIRECT.github.io\n", - "0 ---> https://github.com/CoffeaTeam/coffea\n", - "3 ---> https://github.com/Rothamsted/knetminer\n", - "0 ---> https://github.com/multipaths/DiffuPath\n", - "0 ---> https://github.com/matplotlib/mpl-probscale\n", - "0 ---> https://github.com/richardjgowers/GCMCbenchmarks\n", - "0 ---> https://github.com/daft-dev/daft\n", - "6 ---> https://github.com/arose/ngl\n", - "0 ---> https://github.com/fa-me/spotlob\n", - "0 ---> https://github.com/thompsonsed/pycoalescence\n", - "9 ---> https://github.com/sdss/marvin\n", - "0 ---> https://github.com/brmather/pycurious\n", - "0 ---> https://github.com/MHKiT-Software/MHKiT-MATLAB\n", - "1 ---> https://github.com/sigsep/sigsep-mus-2018-website\n", - "0 ---> https://github.com/amusecode/amuse\n", - "6 ---> https://github.com/bwbohl/introduction-to-mei\n", - "6 ---> https://github.com/JaneliaSciComp/SharkViewer\n", - "9 ---> https://github.com/KeplerGO/lightkurve\n", - "0 ---> https://github.com/transientlunatic/gravpy\n", - "0 ---> https://github.com/astroufsc/chimera\n", - "1 ---> https://github.com/cogan-shimizu-wsu/ExperimentAnnotationTracker\n", - "0 ---> https://github.com/jenojp/extractacy\n", - "7 ---> https://github.com/aaronSig/rainforest-rhythms\n", - "0 ---> https://github.com/valentina-s/time-series-nmf\n", - "0 ---> https://github.com/Nikronic/Optimized-MDVRP\n", - "0 ---> https://github.com/pr-omethe-us/PyTeCK\n", - "0 ---> https://github.com/bumps/bumps\n", - "0 ---> https://github.com/jtempkin/enhanced_sampling_toolkit\n", - "5 ---> https://github.com/automatedskip/homerent.io\n", - "0 ---> https://github.com/a-slide/NanoCount\n", - "0 ---> https://github.com/NLeSC/dask-cassandra-loader\n", - "6 ---> https://github.com/explosion/spaCy\n", - "3 ---> https://github.com/mjuez/TFM2016_Analisis-Visual-Revisiones-Codigo\n", - "3 ---> https://github.com/owlcollab/owltools\n", - "5 ---> https://github.com/mmhss/sstrong-import\n", - "0 ---> https://github.com/I2Cvb/retinopathy\n", - "1 ---> https://github.com/sgsaenger/vipster\n", - "5 ---> https://github.com/SHDShim/PeakPo\n", - "0 ---> https://github.com/rangeetpan/decomposeDNNintoModules\n", - "0 ---> https://github.com/InsightSoftwareConsortium/ITKColorNormalization\n", - "0 ---> https://github.com/coin-or/Dip\n", - "9 ---> https://github.com/Thales1330/PSP\n", - "9 ---> https://github.com/fepegar/torchio\n", - "0 ---> https://github.com/phenoscape/phenoscape-owl-tools\n", - "9 ---> https://github.com/htcondor/htcondor-ce\n", - "0 ---> https://github.com/hugadams/pyparty\n", - "0 ---> https://github.com/NLeSC/baklava\n", - "5 ---> https://github.com/howardyclo/grammar-pattern\n", - "5 ---> https://github.com/ufbmi/mdc_search\n", - "9 ---> https://github.com/aplowman/first-principles-zr-grain-boundaries\n", - "5 ---> https://github.com/dlozeve/tda-networks\n", - "3 ---> https://github.com/mustakcsecuet/COIN-Attacks\n", - "0 ---> https://github.com/LargerPanda/ceph\n", - "5 ---> https://github.com/glukicov/ML_GPU\n", - "5 ---> https://github.com/devitocodes/devito\n", - "0 ---> https://github.com/pnlbwh/TBSS\n", - "0 ---> https://github.com/scipy/scipy\n", - "0 ---> https://github.com/DiamondLightSource/SuRVoS\n", - "9 ---> https://github.com/wri/restoration-mapper\n", - "0 ---> https://github.com/ICB-DCM/tumor2d\n", - "0 ---> https://github.com/sertansenturk/symbtrdataextractor\n", - "9 ---> https://github.com/chrisma/ScrumLint\n", - "0 ---> https://github.com/TheoryInPractice/BEAVr\n", - "5 ---> https://github.com/jloveric/high-order-layers\n", - "0 ---> https://github.com/jcreinhold/selfsupervised3d\n", - "0 ---> https://github.com/mlp6/fem\n", - "0 ---> https://github.com/Eden-Kramer-Lab/replay_trajectory_classification\n", - "9 ---> https://github.com/nschloe/colorio\n", - "0 ---> https://github.com/tsalo/convert-eprime\n", - "0 ---> https://github.com/projectglow/glow\n", - "0 ---> https://github.com/FRidh/scintillations\n", - "0 ---> https://github.com/pitt-rnel/perceptmapper\n", - "6 ---> https://github.com/carnisj/bcdi\n", - "0 ---> https://github.com/pysal/esda\n", - "0 ---> https://github.com/pedropro/TACO\n", - "0 ---> https://github.com/nkratzke/twista\n", - "0 ---> https://github.com/MicroPasts/egyptExplorationSocietyBuhen\n", - "0 ---> https://github.com/Lasagne/Lasagne\n", - "0 ---> https://github.com/Andros-Spica/EMAC-Angourakis-et-al-2019\n", - "1 ---> https://github.com/fg-inet/DASH-streaming-setup\n", - "0 ---> https://github.com/JiaweiZhuang/xESMF\n", - "0 ---> https://github.com/astrorama/SourceXtractorPlusPlus\n", - "9 ---> https://github.com/ssec/sift\n", - "0 ---> https://github.com/IMMM-SFA/proxymod\n", - "3 ---> https://github.com/bgruening/docker-galaxy-stable\n", - "0 ---> https://github.com/reflectometry/refl1d\n", - "9 ---> https://github.com/napari/napari\n", - "0 ---> https://github.com/sgrieve/spatial_efd\n", - "0 ---> https://github.com/genn-team/genn\n", - "0 ---> https://github.com/AxFoundation/strax\n", - "0 ---> https://github.com/pofatu/pypofatu\n", - "0 ---> https://github.com/bsc-mem/UEPREDICT\n", - "3 ---> https://github.com/Smart-Contract-Modelling-uOttawa/Symboleo-Compliance-Checker\n", - "0 ---> https://github.com/smarie/python-spawny\n", - "0 ---> https://github.com/usnistgov/jarvis\n", - "0 ---> https://github.com/diana-hep/carl\n", - "5 ---> https://github.com/PTB-PSt1/PyDynamic\n", - "5 ---> https://github.com/mne-tools/mne-python\n", - "0 ---> https://github.com/mlbernauer/drugstandards\n", - "0 ---> https://github.com/kundajelab/kerasAC\n", - "5 ---> https://github.com/felicitia/TestAnalyzer\n", - "3 ---> https://github.com/sshilpika/error-log-analysis\n", - "0 ---> https://github.com/dhermes/bezier\n", - "0 ---> https://github.com/sphinx-gallery/sphinx-gallery\n", - "5 ---> https://github.com/pysal/pysal\n", - "0 ---> https://github.com/numericalalgorithmsgroup/pybobyqa\n", - "0 ---> https://github.com/PyNIPT/pynipt\n", - "0 ---> https://github.com/jesford/cluster-lensing\n", - "0 ---> https://github.com/cosanlab/nltools\n", - "2 ---> https://github.com/plantinformatics/pretzel\n", - "0 ---> https://github.com/ryanpdwyer/1605-phasekick\n", - "3 ---> https://github.com/NatLibFi/Skosmos\n", - "9 ---> https://github.com/jcchiba/GANSta\n", - "0 ---> https://github.com/chembience/chembience\n", - "0 ---> https://github.com/Quantum-TII/qprime\n", - "1 ---> https://github.com/OpenKnowledgeMaps/Headstart\n", - "0 ---> https://github.com/radnut/amc\n", - "0 ---> https://github.com/omuse-geoscience/omuse\n", - "5 ---> https://github.com/klugem/watchdog\n", - "0 ---> https://github.com/nils-wisiol/pypuf\n", - "0 ---> https://github.com/ladisk/pyDIC\n", - "0 ---> https://github.com/easyDiffraction/easyDiffraction\n", - "0 ---> https://github.com/pauleve/pint\n", - "9 ---> https://github.com/e5k/TephraProb\n", - "0 ---> https://github.com/fmalmeida/bacannot\n", - "0 ---> https://github.com/delph-in/pydmrs\n", - "0 ---> https://github.com/GenericMappingTools/pygmt\n", - "6 ---> https://github.com/pymedphys/pymedphys\n", - "0 ---> https://github.com/anuprulez/galaxy_tool_recommendation\n", - "0 ---> https://github.com/BMKEG/sciDT-pipeline\n", - "9 ---> https://github.com/Irstea/otolithe\n", - "0 ---> https://github.com/hugovk/pypistats\n", - "0 ---> https://github.com/single-cell-genetics/vireo\n", - "5 ---> https://github.com/bionode/bionode\n", - "0 ---> https://github.com/Edric-Matwiejew/QuOp_MPI\n", - "5 ---> https://github.com/evanodell/parlitools\n", - "0 ---> https://github.com/steven-murray/hankel\n", - "9 ---> https://github.com/guillochon/MOSFiT\n", - "0 ---> https://github.com/lascivaroma/priapeia\n", - "0 ---> https://github.com/vahtras/loprop\n", - "0 ---> https://github.com/pv8/noipy\n", - "0 ---> https://github.com/MAfarrag/Hapi\n", - "0 ---> https://github.com/monteirotorres/ProtCHOIR\n", - "9 ---> https://github.com/dejac001/adsorption_isotherm_fitting\n", - "9 ---> https://github.com/GilesStrong/lumin\n", - "3 ---> https://github.com/worldsensing/xyz-iot-monitoring\n", - "0 ---> https://github.com/rcsb/ciftools-java\n", - "0 ---> https://github.com/cgre-aachen/pynoddy\n", - "0 ---> https://github.com/bashtage/linearmodels\n", - "0 ---> https://github.com/pygae/galgebra\n", - "5 ---> https://github.com/SandstoneHPC/sandstone-ide\n", - "0 ---> https://github.com/darothen/pyrcel\n", - "5 ---> https://github.com/DD-DeCaF/id-mapper\n", - "1 ---> https://github.com/Colectica/curation\n", - "0 ---> https://github.com/harnesscloud/harness-resource-manager\n", - "3 ---> https://github.com/huggingface/transformers\n", - "0 ---> https://github.com/stadelmanma/netl-ap-map-flow\n", - "0 ---> https://github.com/jl-wynen/isle\n", - "1 ---> https://github.com/rodighiero/DH2020\n", - "5 ---> https://github.com/scalaris-team/scalaris\n", - "0 ---> https://github.com/FEEprojects/plantower\n", - "0 ---> https://github.com/aibasel/pyperplan\n", - "0 ---> https://github.com/theboocock/NGaDNAP\n", - "9 ---> https://github.com/DeathStar3/symfinder\n", - "0 ---> https://github.com/AdmiralenOla/Scoary\n", - "0 ---> https://github.com/NickleDave/visual-search-nets\n", - "9 ---> https://github.com/dhondta/AppmemDumper\n", - "0 ---> https://github.com/scikit-hep/boost-histogram\n", - "3 ---> https://github.com/vsoch/askci\n", - "0 ---> https://github.com/boutiques/boutiques\n", - "0 ---> https://github.com/nansencenter/nansat\n", - "0 ---> https://github.com/cdanielmachado/reframed\n", - "0 ---> https://github.com/LightForm-group/matflow\n", - "9 ---> https://github.com/Capitains/Hook\n", - "0 ---> https://github.com/arokem/ISBI2015\n", - "0 ---> https://github.com/a-slide/NanoSnake\n", - "1 ---> https://github.com/laplizard/infoplot\n", - "0 ---> https://github.com/hugadams/PAME\n", - "0 ---> https://github.com/torressa/cspy\n", - "9 ---> https://github.com/ConservationInternational/trends.earth\n", - "0 ---> https://github.com/OpenChemistry/avogadrolibs\n", - "0 ---> https://github.com/ondrolexa/pywerami\n", - "1 ---> https://github.com/Sulstice/datacity\n", - "0 ---> https://github.com/bootphon/phonemizer\n", - "0 ---> https://github.com/chrisgorgo/alleninf\n", - "9 ---> https://github.com/opentox/lazar-rest\n", - "2 ---> https://github.com/SeqWare/seqware\n", - "0 ---> https://github.com/msmbuilder/osprey\n", - "9 ---> https://github.com/urschrei/CDP\n", - "5 ---> https://github.com/comic/grand-challenge.org\n", - "0 ---> https://github.com/roland-wallner/dss2020-ex1\n", - "0 ---> https://github.com/tasoc/corrections\n", - "1 ---> https://github.com/lucasberent/mapleDocs\n", - "0 ---> https://github.com/bakirtzisg/cybok-cli\n", - "0 ---> https://github.com/SuperElastix/SimpleElastix\n", - "0 ---> https://github.com/fsherry/bilevelmri\n", - "0 ---> https://github.com/USEPA/standardizedinventories\n", - "9 ---> https://github.com/ilogue/niprov\n", - "6 ---> https://github.com/kundajelab/atac_dnase_pipelines\n", - "0 ---> https://github.com/ktmeaton/NCBImeta\n", - "1 ---> https://github.com/University-of-Potsdam-MM/Reflect.UP\n", - "0 ---> https://github.com/mdolab/OpenAeroStruct\n", - "0 ---> https://github.com/amcpherson/remixt\n", - "0 ---> https://github.com/fbpic/fbpic\n", - "3 ---> https://github.com/sjcross/MIA\n", - "0 ---> https://github.com/RiceMunk/omnifit\n", - "6 ---> https://github.com/cronelab/bci2000web\n", - "0 ---> https://github.com/epigen/crop-seq\n", - "9 ---> https://github.com/rholson1/peyecoder\n", - "0 ---> https://github.com/dmnfarrell/pandastable\n", - "9 ---> https://github.com/YeoLab/flotilla\n", - "0 ---> https://github.com/amisr/flipchem\n", - "2 ---> https://github.com/TGAC/brassica\n", - "0 ---> https://github.com/silx-kit/fabio\n", - "0 ---> https://github.com/numericalalgorithmsgroup/dfols\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "9 ---> https://github.com/zeeguu-ecosystem/Zeeguu-API\n", - "3 ---> https://github.com/AVAuco/ssd_head_keras\n", - "9 ---> https://github.com/PRIMAVERA-H2020/primavera-dmt\n", - "0 ---> https://github.com/MartinMalyMM/pairef\n", - "0 ---> https://github.com/ImperialCollegeLondon/covid19model\n", - "0 ---> https://github.com/BrkRaw/bruker\n", - "3 ---> https://github.com/oicr-gsi/shesmu\n", - "9 ---> https://github.com/coderdj/emo\n", - "0 ---> https://github.com/ladisk/DyS\n", - "9 ---> https://github.com/Quasars/orange-spectroscopy\n", - "0 ---> https://github.com/WorldVistA/VistA\n", - "9 ---> https://github.com/faroit/CountNet\n", - "0 ---> https://github.com/HHTpy/HHTpywrapper\n", - "0 ---> https://github.com/constantinpape/z5\n", - "0 ---> https://github.com/samapriya/hdxpop\n", - "0 ---> https://github.com/pik-copan/pycopancore\n", - "0 ---> https://github.com/MARLEY-MC/marley\n", - "0 ---> https://github.com/garrettwrong/cuTWED\n", - "5 ---> https://github.com/greenape/mknotebooks\n", - "5 ---> https://github.com/bbglab/muts-needle-plot\n", - "0 ---> https://github.com/NickleDave/crowsetta\n", - "0 ---> https://github.com/ISA-tools/stato\n", - "9 ---> https://github.com/LJMUAstroecology/flirpy\n", - "0 ---> https://github.com/OntoElect/Code\n", - "3 ---> https://github.com/diging/giles-eco-cepheus\n", - "0 ---> https://github.com/scikit-hep/mplhep\n", - "0 ---> https://github.com/alimanfoo/vcfnp\n", - "0 ---> https://github.com/bjodah/finitediff\n", - "0 ---> https://github.com/pysit/pysit\n", - "0 ---> https://github.com/observingClouds/eurec4a_snd\n", - "0 ---> https://github.com/colloidlab/ccc-calculator\n", - "0 ---> https://github.com/elihuihms/itcsimlib\n", - "9 ---> https://github.com/tigefa4u/tigefa4u.github.io\n", - "0 ---> https://github.com/dvolgyes/zenodo_get\n", - "0 ---> https://github.com/alexander-rossner/dh-researchtool-landscape\n", - "5 ---> https://github.com/pylayers/pylayers\n", - "3 ---> https://github.com/alexrashed/eval_rest\n", - "0 ---> https://github.com/jovo/PyGraphStat\n", - "5 ---> https://github.com/dannyboscan/angular-and-rails\n", - "5 ---> https://github.com/Aletechdev/ava\n", - "0 ---> https://github.com/annotation/text-fabric\n", - "0 ---> https://github.com/ksmet1977/luxpy\n", - "0 ---> https://github.com/thorstenwagner/spie-photonics-europe-2016\n", - "3 ---> https://github.com/root-project/root\n", - "9 ---> https://github.com/slimsuite/SLiMScape\n", - "0 ---> https://github.com/AlanLoh/nenupy\n", - "0 ---> https://github.com/waterlandlab/CluBCpG\n", - "5 ---> https://github.com/diging/citesphere-importer\n", - "9 ---> https://github.com/OpenDroneMap/ODM\n", - "0 ---> https://github.com/openrsp/openrsp\n", - "1 ---> https://github.com/AliTVTeam/AliTV\n", - "9 ---> https://github.com/Finn-Lab/EukCC\n", - "0 ---> https://github.com/amlalejini/ALife-2020--SignalGP-Genetic-Regulation\n", - "9 ---> https://github.com/rinde/RinECJ\n", - "5 ---> https://github.com/spacetelescope/drizzlepac\n", - "0 ---> https://github.com/smoh/gaia-comoving-stars\n", - "0 ---> https://github.com/ckrapu/sprcom\n", - "9 ---> https://github.com/Terradue/rOpenSearch\n", - "1 ---> https://github.com/essepuntato/rash\n", - "0 ---> https://github.com/pygridtools/gridmap\n", - "9 ---> https://github.com/dftlibs/numgrid\n", - "5 ---> https://github.com/sckott/serrano\n", - "2 ---> https://github.com/snewhouse/exotic-dna-ngs\n", - "0 ---> https://github.com/numenta/gridcodingrange\n", - "0 ---> https://github.com/KWB-R/fakin\n", - "0 ---> https://github.com/fpavogt/fcmaker\n", - "6 ---> https://github.com/falafeljan/recogito-user-testing\n", - "0 ---> https://github.com/CalebBell/fluids\n", - "0 ---> https://github.com/ImperialCollegeLondon/acoustics-db\n", - "9 ---> https://github.com/mfroeling/QMRITools\n", - "9 ---> https://github.com/tqbl/ood_audio\n", - "1 ---> https://github.com/delphi-hub/delphi-webapp\n", - "0 ---> https://github.com/taishi-i/nagisa\n", - "0 ---> https://github.com/slimgroup/Azure2019\n", - "0 ---> https://github.com/afilipanog/afilipanog.github.io\n", - "9 ---> https://github.com/samapriya/Sat-Pipeline-CLI\n", - "0 ---> https://github.com/shah314/graphcoloring\n", - "0 ---> https://github.com/YeoLab/gscripts\n", - "5 ---> https://github.com/FitzwilliamMuseum/ahrc-linking-islands\n", - "0 ---> https://github.com/cern-fts/webfts\n", - "0 ---> https://github.com/brinkmanlab/feature_merge\n", - "0 ---> https://github.com/dohalloran/phylo-node\n", - "9 ---> https://github.com/IMTtugraz/PyQMRI\n", - "0 ---> https://github.com/openearth/aeolis\n", - "0 ---> https://github.com/obreitwi/py-veer\n", - "5 ---> https://github.com/InsightSoftwareConsortium/ITKElastix\n", - "3 ---> https://github.com/meijer-jeroen/contingent-evolution-2020\n", - "0 ---> https://github.com/pandera-dev/pandera\n", - "0 ---> https://github.com/cheshire3/cheshire3\n", - "0 ---> https://github.com/ludwig-burtscher/invenio-with-provenance\n", - "5 ---> https://github.com/CeON/CERMINE\n", - "9 ---> https://github.com/mjiUST/VasNet\n", - "5 ---> https://github.com/scleveland/NADV\n", - "1 ---> https://github.com/nextcloud/android\n", - "0 ---> https://github.com/neurodata/mvlearn\n", - "0 ---> https://github.com/TUM-CPN/CropTypes\n", - "6 ---> https://github.com/BMKEG/UimaBioC\n", - "1 ---> https://github.com/jbathmann/pyMANGA\n", - "0 ---> https://github.com/THzbiophotonics/Fit-TDS\n", - "5 ---> https://github.com/ICGC-TCGA-PanCancer/OxoGWrapperWorkflow\n", - "0 ---> https://github.com/franknu/cgmodsel\n", - "0 ---> https://github.com/openpathsampling/openpathsampling\n", - "0 ---> https://github.com/Teichlab/cellphonedb\n", - "0 ---> https://github.com/pear2/Net_Transmitter\n", - "0 ---> https://github.com/oslocyclotronlab/ompy\n", - "0 ---> https://github.com/GooglingTheCancerGenome/sv-gen\n", - "0 ---> https://github.com/benmontet/f3\n", - "0 ---> https://github.com/rubbs14/CSP-Analyzer\n", - "9 ---> https://github.com/hugomilan/tlmbht\n", - "0 ---> https://github.com/GRIFFINCollaboration/beamCompanionExplorer\n", - "9 ---> https://github.com/arnikz/PIQMIe\n", - "0 ---> https://github.com/SuperDARN/pydarn\n", - "9 ---> https://github.com/CharafeddineMechalikh/PureEdgeSim\n", - "0 ---> https://github.com/Andros-Spica/Postdocs-Angourakis-2019\n", - "1 ---> https://github.com/austindrenski/AD.PartialEquilibriumApi\n", - "0 ---> https://github.com/LightForm-group/xrdfit\n", - "0 ---> https://github.com/spcl/stencilflow\n", - "0 ---> https://github.com/kdmurray91/libqcpp\n", - "0 ---> https://github.com/nipy/nibabel\n", - "0 ---> https://github.com/openearth/flamingo\n", - "1 ---> https://github.com/ARGOeu/poem-2\n", - "6 ---> https://github.com/HelioML/HelioML\n", - "0 ---> https://github.com/SwissTPH/TBRU_serialTB\n", - "5 ---> https://github.com/liminoid/liminoid-react\n", - "0 ---> https://github.com/HaroldMills/Vesper\n", - "3 ---> https://github.com/iterative/dvc\n", - "0 ---> https://github.com/ultralytics/yolov5\n", - "0 ---> https://github.com/spa-networks/hpa\n", - "0 ---> https://github.com/PX4/Firmware\n", - "5 ---> https://github.com/speckleworks/SpeckleRhino\n", - "0 ---> https://github.com/alan-turing-institute/sktime\n", - "0 ---> https://github.com/Phlya/coolpuppy\n", - "6 ---> https://github.com/sigsep/website\n", - "0 ---> https://github.com/dejac001/distillation\n", - "9 ---> https://github.com/simeonreusch/ztffps\n", - "0 ---> https://github.com/django-salesforce/django-salesforce\n", - "9 ---> https://github.com/jellis18/PAL2\n", - "9 ---> https://github.com/rsa-tools/rsat-code\n", - "9 ---> https://github.com/tompollard/phd_thesis_markdown\n", - "0 ---> https://github.com/fpavogt/pyqz\n", - "0 ---> https://github.com/fnl/medic\n", - "9 ---> https://github.com/SciTools/iris\n", - "0 ---> https://github.com/neglectos/dockerhub_analysis\n", - "0 ---> https://github.com/mosdef-hub/foyer\n", - "9 ---> https://github.com/calipho-sib/feature-viewer\n", - "2 ---> https://github.com/academic/vipa\n", - "0 ---> https://github.com/IndexedConv/IndexedConv\n", - "0 ---> https://github.com/VlachosGroup/openmkm\n", - "0 ---> https://github.com/nipype/pydra\n", - "9 ---> https://github.com/sherlock-clustering/Sherlock_DiVE\n", - "0 ---> https://github.com/datalad/datalad\n", - "0 ---> https://github.com/asreview/asreview-covid19\n", - "9 ---> https://github.com/mikahama/akusanat\n", - "0 ---> https://github.com/laderast/ready_for_r_site\n", - "0 ---> https://github.com/GlobalNamesArchitecture/taxamatch_rb\n", - "0 ---> https://github.com/adbar/htmldate\n", - "0 ---> https://github.com/jonescompneurolab/hnn\n", - "0 ---> https://github.com/iross/km_indexer\n", - "0 ---> https://github.com/jameslyons/python_speech_features\n", - "9 ---> https://github.com/biolink/biolink-model\n", - "0 ---> https://github.com/x10-lang/x10\n", - "0 ---> https://github.com/MicroPasts/projectAndvariLOD\n", - "0 ---> https://github.com/griffin-h/lightcurve_fitting\n", - "0 ---> https://github.com/lanl/VizAly-Foresight\n", - "8 ---> https://github.com/cytoscape/cytoscape.js-cxtmenu\n", - "5 ---> https://github.com/BrennerG/DS1\n", - "9 ---> https://github.com/KitwareMedical/HASI\n", - "9 ---> https://github.com/SELAB-AA/arvue-platform\n", - "0 ---> https://github.com/rjfarmer/gfort2py\n", - "0 ---> https://github.com/danhey/maelstrom\n", - "9 ---> https://github.com/lewisacidic/synergy-maps\n", - "0 ---> https://github.com/KamilSJaron/smudgeplot\n", - "5 ---> https://github.com/zfit/zfit\n", - "0 ---> https://github.com/arkottke/pykooh\n", - "9 ---> https://github.com/gvoysey/corti\n", - "2 ---> https://github.com/bongadi/ARV-Predictor-OngadiB\n", - "2 ---> https://github.com/aquariumbio/aquarium\n", - "9 ---> https://github.com/appukuttan-shailesh/morphounit\n", - "0 ---> https://github.com/mbari-media-management/vars-avfoundation\n", - "6 ---> https://github.com/phon-ca/phon\n", - "0 ---> https://github.com/kbroman/AdvData\n", - "0 ---> https://github.com/insilichem/gaudiview\n", - "0 ---> https://github.com/bdhammel/least-squares-ellipse-fitting\n", - "3 ---> https://github.com/matthiaskoenig/pkdb\n", - "5 ---> https://github.com/manoelcampos/cloudsim-plus\n", - "0 ---> https://github.com/pystruct/pystruct\n", - "0 ---> https://github.com/mozillazg/phrase-pinyin-data\n", - "8 ---> https://github.com/pabloaaf/Factor-TranscriptionCaseStudy\n", - "0 ---> https://github.com/PonteIneptique/archives_org_latin_toolkit\n", - "0 ---> https://github.com/GeoStat-Framework/welltestpy\n", - "0 ---> https://github.com/guaix-ucm/numina\n", - "0 ---> https://github.com/mariogeiger/se3cnn\n", - "9 ---> https://github.com/craws/OpenAtlas\n", - "0 ---> https://github.com/sjvrijn/mf2\n", - "2 ---> https://github.com/docable/docable\n", - "5 ---> https://github.com/qbicsoftware/projectwizard-portlet\n", - "0 ---> https://github.com/DuttonLab/kvasir\n", - "0 ---> https://github.com/SolarArbiter/solarforecastarbiter-core\n", - "0 ---> https://github.com/duecredit/duecredit\n", - "9 ---> https://github.com/epiviz/epivizFileParser\n", - "0 ---> https://github.com/Accenture/AmpliGraph\n", - "7 ---> https://github.com/dockstore/dockstore\n", - "9 ---> https://github.com/jacobwindsor/kaavio-showdown\n", - "0 ---> https://github.com/julemai/EEE-DA\n", - "0 ---> https://github.com/materialsproject/custodian\n", - "0 ---> https://github.com/Samreay/Pippin\n", - "0 ---> https://github.com/DeepRank/deeprank\n", - "5 ---> https://github.com/bionode/bionode-ncbi\n", - "0 ---> https://github.com/leonardo-calcagno/covid19model_latam\n", - "9 ---> https://github.com/openvax/varcode\n", - "5 ---> https://github.com/nilsreiter/uima-util\n", - "0 ---> https://github.com/pybel/pybel\n", - "0 ---> https://github.com/hitliaomq/ELASTIC3rd\n", - "9 ---> https://github.com/portugueslab/stytra\n", - "3 ---> https://github.com/abhi1693/yii2-app-advanced-startup-kit\n", - "0 ---> https://github.com/steelelab-delft/stlabutils\n", - "0 ---> https://github.com/aouinizied/nfstream\n", - "0 ---> https://github.com/holgern/pyedflib\n", - "0 ---> https://github.com/pysal/mapclassify\n", - "0 ---> https://github.com/bastibe/MAPS-Scripts\n", - "0 ---> https://github.com/ICB-DCM/parPE\n", - "0 ---> https://github.com/newville/wxmplot\n", - "0 ---> https://github.com/jirikuncar/eelap\n", - "0 ---> https://github.com/giganticode/codeprep\n", - "0 ---> https://github.com/raphaelvallat/yasa\n", - "9 ---> https://github.com/JonnyDaenen/Gumbo\n", - "0 ---> https://github.com/BENR0/textory\n", - "9 ---> https://github.com/architecture-building-systems/CityEnergyAnalyst\n", - "0 ---> https://github.com/quexiang/STWR\n", - "5 ---> https://github.com/underworldcode/underworld2\n", - "0 ---> https://github.com/TerrainBento/umami\n", - "9 ---> https://github.com/FedericoGarza/covidmx\n", - "0 ---> https://github.com/SimonGreenhill/phylogemetric\n", - "0 ---> https://github.com/earthlab/matplotcheck\n", - "0 ---> https://github.com/landlab/landlab\n", - "0 ---> https://github.com/saltastro/pyhrs\n", - "0 ---> https://github.com/MRCIEU/MELODI-Presto\n", - "0 ---> https://github.com/kundajelab/tfmodisco\n", - "2 ---> https://github.com/jupiterbak/FAPSDemoOPCUAServer0\n", - "0 ---> https://github.com/hugadams/scikit-spectra\n", - "0 ---> https://github.com/YeoLab/clipper\n", - "0 ---> https://github.com/Confareneoclassico/Irrigation_Model\n", - "0 ---> https://github.com/mmaelicke/soil-moisture-dynamics-companion-code\n", - "0 ---> https://github.com/rscottweekly/processPKPD\n", - "9 ---> https://github.com/empymod/emg3d\n", - "0 ---> https://github.com/coin-or/rbfopt\n", - "0 ---> https://github.com/VForWaTer/metacatalog\n", - "0 ---> https://github.com/piyush82/iot-simulator\n", - "0 ---> https://github.com/rabroughton/QUAD\n", - "0 ---> https://github.com/biocore/qurro\n", - "0 ---> https://github.com/streamreasoning/rsplib\n", - "1 ---> https://github.com/NLeSC/nlesc-serverless-boilerplate\n", - "0 ---> https://github.com/lanl/CLAMR\n", - "0 ---> https://github.com/matiscke/lcps\n", - "0 ---> https://github.com/jdavidrcamacho/tedi\n", - "2 ---> https://github.com/jupiterbak/FAPSDemoOPCUAServer\n", - "0 ---> https://github.com/Fraternalilab/POPScomp\n", - "0 ---> https://github.com/DeepLearnPhysics/larcv3\n", - "0 ---> https://github.com/wangz10/text-classification\n", - "3 ---> https://github.com/NLeSC/docker-couch-admin\n", - "3 ---> https://github.com/cs-education/sysbuild\n", - "0 ---> https://github.com/nkeim/philatracks\n", - "9 ---> https://github.com/Qiskit/qiskit-terra\n", - "0 ---> https://github.com/mdolab/dafoam\n", - "3 ---> https://github.com/mikel-egana-aranguren/SADI-Galaxy-Docker\n", - "0 ---> https://github.com/JakeBlackmore/Diatomic-Py\n", - "3 ---> https://github.com/arXiv/arxiv-search\n", - "1 ---> https://github.com/Princeton-CDH/mep-django\n", - "0 ---> https://github.com/thesketh/pygen-structures\n", - "9 ---> https://github.com/paudetseis/RfPy\n", - "0 ---> https://github.com/maxibor/sourcepredict\n", - "0 ---> https://github.com/SNLComputation/compadre\n", - "6 ---> https://github.com/SmartAPI/smartAPI-editor\n", - "0 ---> https://github.com/felixriese/hyperspectral-processing\n", - "0 ---> https://github.com/briandconnelly/hankshaweffect\n", - "0 ---> https://github.com/Starlink/starlink\n", - "5 ---> https://github.com/acdh-oeaw/apis-core\n", - "2 ---> https://github.com/chaoss/augur\n", - "9 ---> https://github.com/thiagotts/CloudReports\n", - "0 ---> https://github.com/gijzelaerr/kliko\n", - "0 ---> https://github.com/chrisjsewell/ipymd\n", - "0 ---> https://github.com/evolaemp/svmcc\n", - "0 ---> https://github.com/njss/SpaceTimeCube3D\n", - "2 ---> https://github.com/lagotto/lagotto\n", - "6 ---> https://github.com/CloudBindle/youxia\n", - "0 ---> https://github.com/AA-ALERT/psrdada-python\n", - "0 ---> https://github.com/joyeuxnoel8/GAME\n", - "0 ---> https://github.com/refnx/refnx\n", - "8 ---> https://github.com/plertvilai/IPAX\n", - "0 ---> https://github.com/ikkebr/PyBozoCrack\n", - "9 ---> https://github.com/MicroPasts/MicroPasts-pybossa-theme\n", - "0 ---> https://github.com/chkoar/vfi\n", - "0 ---> https://github.com/evalf/nutils\n", - "0 ---> https://github.com/ESCOMP/CTSM\n", - "0 ---> https://github.com/daler/erythroid-genes\n", - "9 ---> https://github.com/hdcaicyt/La-Argentina-Manuscrita\n", - "3 ---> https://github.com/peterpeterp/atlantic_ace_seasonal_forecast\n", - "0 ---> https://github.com/USNavalResearchLaboratory/zernike\n", - "0 ---> https://github.com/MarouaJaoua/life-expectancy-analysis-and-prediction\n", - "0 ---> https://github.com/hcadavid/TimeWarpScheduleLibrary\n", - "3 ---> https://github.com/bihealth/sodar_core\n", - "0 ---> https://github.com/cmbant/CAMB\n", - "9 ---> https://github.com/SolarArbiter/solarforecastarbiter-dashboard\n", - "0 ---> https://github.com/ilent2/ott\n", - "0 ---> https://github.com/Phlya/adjustText\n", - "0 ---> https://github.com/UmbertoGostoli/Simulation-for-Scottish-Gov\n", - "2 ---> https://github.com/fzyukio/koe\n", - "0 ---> https://github.com/ewels/MultiQC\n", - "2 ---> https://github.com/gbif/registry\n", - "9 ---> https://github.com/quicklizard99/cheddar\n", - "0 ---> https://github.com/ggventurini/python-deltasigma\n", - "0 ---> https://github.com/moonso/stranger\n", - "0 ---> https://github.com/qcscine/sparrow\n", - "0 ---> https://github.com/smart-facility/petajakarta-web\n", - "0 ---> https://github.com/sakoho81/miplib\n", - "0 ---> https://github.com/nstarman/starkplot\n", - "1 ---> https://github.com/passaH2O/GeoFlood\n", - "0 ---> https://github.com/thompsonsed/pycoalescence_examples\n", - "3 ---> https://github.com/horizon-institute/artmaps-azure\n", - "5 ---> https://github.com/Unidata/MetPy\n", - "1 ---> https://github.com/miso-lims/miso-lims\n", - "0 ---> https://github.com/theosysbio/gene-expression-models\n", - "0 ---> https://github.com/TuringLang/Turing.jl\n", - "0 ---> https://github.com/sertansenturk/alignedpitchfilter\n", - "9 ---> https://github.com/cytoscape/cytoscape.js-euler\n", - "9 ---> https://github.com/sbonaretti/cart_segm_liter_map\n", - "5 ---> https://github.com/gchure/phd\n", - "6 ---> https://github.com/korpling/pepper\n", - "9 ---> https://github.com/sdomanskyi/DigitalCellSorter\n", - "0 ---> https://github.com/PaulHancock/Aegean\n", - "0 ---> https://github.com/casperdcl/brainweb\n", - "0 ---> https://github.com/deeptools/deepTools\n", - "0 ---> https://github.com/ofionnad/radiowinds\n", - "3 ---> https://github.com/hail-is/hail\n", - "0 ---> https://github.com/coin-or/python-mip\n", - "0 ---> https://github.com/FRidh/auraliser\n", - "9 ---> https://github.com/Amber-MD/pytraj\n", - "0 ---> https://github.com/glukicov/alignTrack\n", - "9 ---> https://github.com/starschema/COVID-19-data\n", - "9 ---> https://github.com/clcr/pyeo\n", - "0 ---> https://github.com/TUW-GEO/yeoda\n", - "6 ---> https://github.com/spacetx/starfish\n", - "0 ---> https://github.com/dapperstats/salvage\n", - "0 ---> https://github.com/matplotlib/matplotlib\n", - "0 ---> https://github.com/DLR-SC/prov-db-connector\n", - "0 ---> https://github.com/MicroPasts/egyptExplorationSociety\n", - "9 ---> https://github.com/badlands-model/badlands\n", - "3 ---> https://github.com/AAROC/CODE-RADE\n", - "0 ---> https://github.com/BBN-Q/macrospin_gpu\n", - "0 ---> https://github.com/SciTools/cf-units\n", - "6 ---> https://github.com/macarthur-lab/seqr\n", - "9 ---> https://github.com/gwastro/pycbc\n", - "0 ---> https://github.com/sahilm89/lhsmdu\n", - "0 ---> https://github.com/nfsi-canada/OrientPy\n", - "0 ---> https://github.com/ai-se/perfect-repo\n", - "0 ---> https://github.com/cojacoo/rootwater\n", - "9 ---> https://github.com/multiscale/muscle3\n", - "9 ---> https://github.com/proycon/gecco\n", - "9 ---> https://github.com/USGS-Astrogeology/autocnet\n", - "0 ---> https://github.com/oemof/tespy\n", - "0 ---> https://github.com/pdfo/pdfo\n", - "0 ---> https://github.com/louisabraham/fastnode2vec\n", - "9 ---> https://github.com/poliastro/poliastro\n", - "9 ---> https://github.com/stabix/stabix\n", - "5 ---> https://github.com/TonyKaravasilev/CryptoManana\n", - "0 ---> https://github.com/EpistasisLab/tpot\n", - "9 ---> https://github.com/bird-house/finch\n", - "5 ---> https://github.com/PCMDI/cmor3_documentation\n", - "0 ---> https://github.com/epiasini/pymuvr\n", - "0 ---> https://github.com/jkguiang/tuda\n", - "9 ---> https://github.com/TiKeil/perturbations-for-2d-data\n", - "0 ---> https://github.com/MJOLNIRPackage/MJOLNIR\n", - "0 ---> https://github.com/EducationalTestingService/rsmtool\n", - "0 ---> https://github.com/mpschr/mutex\n", - "5 ---> https://github.com/openearth/wpsbuilder\n", - "9 ---> https://github.com/preprocessed-connectomes-project/quality-assessment-protocol\n", - "3 ---> https://github.com/LucMarechal/Soft-Robotics-Materials-Database\n", - "9 ---> https://github.com/ufbmi/mdc_api\n", - "0 ---> https://github.com/Andros-Spica/CDAL-Angourakis-2019\n", - "0 ---> https://github.com/sappelhoff/eeg_positions\n", - "3 ---> https://github.com/CERNatschool/LUCIDITY\n", - "0 ---> https://github.com/glubbdubdrib/lazygrid\n", - "0 ---> https://github.com/KnowledgeCaptureAndDiscovery/somef\n", - "6 ---> https://github.com/ESMValGroup/ESMValCore\n", - "0 ---> https://github.com/castelao/pyrings\n", - "5 ---> https://github.com/myGrid/t2-server-gem\n", - "0 ---> https://github.com/casperdcl/git-fame\n", - "5 ---> https://github.com/gge-ucd/wRangling-Ecology\n", - "3 ---> https://github.com/SysBioChalmers/yeast-GEM\n", - "0 ---> https://github.com/by256/rdfpy\n", - "5 ---> https://github.com/FNNDSC/ChRIS_ultron_backEnd\n", - "9 ---> https://github.com/cmorty/realsim\n", - "0 ---> https://github.com/Andros-Spica/TIPC2-Angourakis-Graham-2018\n", - "0 ---> https://github.com/rigetti/pyquil\n", - "9 ---> https://github.com/antlr/codebuff\n", - "5 ---> https://github.com/vdenotaris/spring-boot-security-saml-sample\n", - "5 ---> https://github.com/ci-for-research/zenodo\n", - "9 ---> https://github.com/laduplessis/SARS-CoV-2_Guangdong_genomic_epidemiology\n", - "2 ---> https://github.com/sealuzh/cd-linter-artifacts\n", - "9 ---> https://github.com/clij/clij-ops\n", - "0 ---> https://github.com/bmcage/odes\n", - "0 ---> https://github.com/ryanvarley/ExoData\n", - "9 ---> https://github.com/poppy-project/pypot\n", - "0 ---> https://github.com/NLeSC/cptm\n", - "0 ---> https://github.com/ivanhercaz/research\n", - "0 ---> https://github.com/dib-lab/sourmash\n", - "5 ---> https://github.com/PecanProject/pecan\n", - "0 ---> https://github.com/thorstenwagner/ij-particlesizer\n", - "9 ---> https://github.com/ctsit/redi-dropper-client\n", - "0 ---> https://github.com/juseg/absplots\n", - "0 ---> https://github.com/tolliob/PhasePortrait\n", - "0 ---> https://github.com/gtaylor/python-colormath\n", - "0 ---> https://github.com/SoftwareDevEngResearch/PyFAT\n", - "0 ---> https://github.com/ComputationalRadiationPhysics/mallocMC\n", - "6 ---> https://github.com/Arabidopsis-Information-Portal/adama\n", - "9 ---> https://github.com/biowdl/RNA-seq\n", - "0 ---> https://github.com/RPGroup-PBoC/RNAseq_SortSeq\n", - "0 ---> https://github.com/mensBash/DataStewardship\n", - "0 ---> https://github.com/thetisproject/thetis\n", - "6 ---> https://github.com/nismod/smif\n", - "9 ---> https://github.com/mgndolan/phagesdb\n", - "0 ---> https://github.com/rajeshrinet/pystokes\n", - "0 ---> https://github.com/alan-turing-institute/azure_usage_v1\n", - "6 ---> https://github.com/rdfjs/N3.js\n", - "0 ---> https://github.com/s-utkarsh/convex\n", - "9 ---> https://github.com/docmanny/RecSearch\n", - "3 ---> https://github.com/BenediktKleppmann/TreeOfKnowledge\n", - "0 ---> https://github.com/fanatichuman/ZOOMIEv1.0\n", - "0 ---> https://github.com/subangstrom/usetemServers\n", - "9 ---> https://github.com/bio-guoda/preston\n", - "1 ---> https://github.com/molstar/molstar\n", - "0 ---> https://github.com/philrosenfield/core_overshoot_clusters\n", - "0 ---> https://github.com/a-slide/pycoQC\n", - "0 ---> https://github.com/Epistimio/orion\n", - "0 ---> https://github.com/tholoien/XDGMM\n", - "5 ---> https://github.com/PyTorchLightning/pytorch-lightning\n", - "3 ---> https://github.com/fusion-jena/CoMerger\n", - "0 ---> https://github.com/collectionslab/Omniscribe\n", - "9 ---> https://github.com/cohenlabUNC/clpipe\n", - "0 ---> https://github.com/harpolea/r3d2\n", - "1 ---> https://github.com/peterbanda/coel\n", - "5 ---> https://github.com/Xilinx/brevitas\n", - "9 ---> https://github.com/aulasoftwarelibre/taller-de-git\n", - "0 ---> https://github.com/ornlneutronimaging/iBeatles\n", - "9 ---> https://github.com/dennissergeev/arke\n", - "0 ---> https://github.com/awickert/GRLP\n", - "8 ---> https://github.com/na399/VAST-Challenge-2019-MC1\n", - "0 ---> https://github.com/schmelling/reciprocal_BLAST\n", - "0 ---> https://github.com/diana-hep/madminer\n", - "0 ---> https://github.com/fmorenopino/HeterogeneousHMM\n", - "0 ---> https://github.com/dslfaithdev/SocialCrawler\n", - "0 ---> https://github.com/AndrewIOM/global-pollen-project\n", - "0 ---> https://github.com/PySCeS/pysces\n", - "0 ---> https://github.com/DamCB/tyssue\n", - "9 ---> https://github.com/lsmo-epfl/discover-curated-cofs\n", - "0 ---> https://github.com/caltechlibrary/eprints2bags\n", - "0 ---> https://github.com/proycon/foliapy\n", - "5 ---> https://github.com/bird-house/twitcher\n", - "9 ---> https://github.com/ganga-devs/ganga\n", - "9 ---> https://github.com/kotik-coder/PULsE\n", - "0 ---> https://github.com/mozillazg/pinyin-data\n", - "0 ---> https://github.com/MicroPasts/EgyptExplorationSocBuhenPottery\n", - "0 ---> https://github.com/luispedro/imread\n", - "3 ---> https://github.com/PCMSolver/pcmsolver\n", - "9 ---> https://github.com/klout/brickhouse\n", - "8 ---> https://github.com/Dash-Industry-Forum/dash.js\n", - "0 ---> https://github.com/ProjectDrawdown/spatial-aez\n", - "8 ---> https://github.com/cytoscape/cytoscape.js-popper\n", - "9 ---> https://github.com/ecohealthalliance/pubcrawler\n", - "0 ---> https://github.com/underworldcode/stripy\n", - "0 ---> https://github.com/pycroscopy/pyUSID\n", - "0 ---> https://github.com/jjnp/dss20-ue1\n", - "9 ---> https://github.com/pytroll/satpy\n", - "9 ---> https://github.com/psambit9791/jDSP\n", - "0 ---> https://github.com/pypeit/PypeIt\n", - "0 ---> https://github.com/MPI-Dortmund/sphire_classes_autoselect\n", - "0 ---> https://github.com/PaulScotti/educortex\n", - "0 ---> https://github.com/adaerr/pendent-drop\n", - "0 ---> https://github.com/simpeg-research/Astic-2020-JointInversion\n", - "0 ---> https://github.com/cgvwzq/polca\n", - "0 ---> https://github.com/davidenunes/jnetwork\n", - "0 ---> https://github.com/dbbs-lab/glia\n", - "0 ---> https://github.com/KarrLab/paper_2018_curr_opin_sys_biol\n", - "7 ---> https://github.com/RADAR-base/RADAR-Questionnaire\n", - "5 ---> https://github.com/DIRACGrid/DIRACOS\n", - "9 ---> https://github.com/nichtich/wikidata-taxonomy\n", - "3 ---> https://github.com/Kitware/vtk-js\n", - "0 ---> https://github.com/tanghaibao/goatools\n", - "5 ---> https://github.com/clld/clld\n", - "6 ---> https://github.com/tdurieux/Travis-Listener\n", - "0 ---> https://github.com/scivision/LCPFCT\n", - "0 ---> https://github.com/dr-rodriguez/Kinematics-App\n", - "0 ---> https://github.com/starkiller-astro/Microphysics\n", - "0 ---> https://github.com/Parallel-in-Time/PyPinT\n", - "0 ---> https://github.com/ufz/ogs-data\n", - "0 ---> https://github.com/vlouf/dealias\n", - "5 ---> https://github.com/RMLio/rmlmapper-java\n", - "9 ---> https://github.com/pysal/splot\n", - "9 ---> https://github.com/SuLab/Wikidata-phenomizer\n", - "0 ---> https://github.com/jaredsampson/pymolprobity\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0 ---> https://github.com/casimp/pyxe\n", - "0 ---> https://github.com/imodpasteur/pySPIRALTAP\n", - "5 ---> https://github.com/ufbmi/mdc_meter\n", - "0 ---> https://github.com/spectralpython/spectral\n", - "0 ---> https://github.com/openvax/pyensembl\n", - "5 ---> https://github.com/SMRUCC/GCModeller\n", - "0 ---> https://github.com/DyogenIBENS/SCORPIOS\n", - "5 ---> https://github.com/benchoufi/DocChain\n", - "0 ---> https://github.com/krassowski/complex-upset\n", - "9 ---> https://github.com/d-tear/SIAL\n", - "9 ---> https://github.com/arkottke/pyrvt\n", - "9 ---> https://github.com/jensdebruijn/Multimodal-flood-tweet-classification\n", - "0 ---> https://github.com/let-unimi/liblet\n", - "0 ---> https://github.com/scikit-learn-contrib/hdbscan\n", - "0 ---> https://github.com/arichar6/turbopy\n", - "0 ---> https://github.com/SystemsGenetics/GEMmaker\n", - "9 ---> https://github.com/CentreForCorpusResearch/clic\n", - "0 ---> https://github.com/benbovy/xarray-simlab\n", - "2 ---> https://github.com/Zettlr/Zettlr\n", - "0 ---> https://github.com/coreylammie/MemTorch\n", - "0 ---> https://github.com/milaboratory/mitools\n", - "0 ---> https://github.com/faustusdotbe/topic-modeling-tool-FR\n", - "1 ---> https://github.com/RADAR-base/ManagementPortal\n", - "0 ---> https://github.com/DocNow/twarc\n", - "0 ---> https://github.com/samapriya/gee_asset_manager_addon\n", - "0 ---> https://github.com/moorepants/DynamicistToolKit\n", - "3 ---> https://github.com/Clinical-Genomics/scout\n", - "0 ---> https://github.com/nschloe/pygmsh\n", - "0 ---> https://github.com/varungohil/Generalizing-Lottery-Tickets\n", - "0 ---> https://github.com/powerpak/pathogendb-pipeline\n", - "0 ---> https://github.com/Capitains/HookTest\n", - "2 ---> https://github.com/chanzuckerberg/cellxgene\n", - "0 ---> https://github.com/nf-core/tools\n", - "0 ---> https://github.com/ListerLab/TEPID\n", - "0 ---> https://github.com/fishstamp82/moltools\n", - "2 ---> https://github.com/University-of-Potsdam-MM/Mobile.UP\n", - "0 ---> https://github.com/blueskyjunkie/timetools\n", - "3 ---> https://github.com/biojava/biojava\n", - "0 ---> https://github.com/resal81/PyTopol\n", - "6 ---> https://github.com/digitallinguistics/word-aligner\n", - "0 ---> https://github.com/MITgcm/gcmfaces\n", - "0 ---> https://github.com/thompson318/scikit-surgery-sphere-fitting\n", - "8 ---> https://github.com/feelpp/book.feelpp.org\n", - "0 ---> https://github.com/brwnj/umitools\n", - "6 ---> https://github.com/IvanPaez/Proact\n", - "0 ---> https://github.com/poneill/formosa\n", - "0 ---> https://github.com/yabata/pyrenn\n", - "0 ---> https://github.com/TeamMacLean/redpatch\n", - "9 ---> https://github.com/pear2/Net_RouterOS\n", - "0 ---> https://github.com/rjw57/freenect2-python\n", - "0 ---> https://github.com/mvdh7/teos10\n", - "0 ---> https://github.com/SymbioticLab/tensorflow-salus\n", - "5 ---> https://github.com/LukasEttel/YoshikoStandalone\n", - "9 ---> https://github.com/JULIELab/MEmoLon\n", - "0 ---> https://github.com/fwitte/fluprodia\n", - "0 ---> https://github.com/openstreams/wflow\n", - "9 ---> https://github.com/sand-ci/TRACe-ExploRer-TRACER\n", - "9 ---> https://github.com/ISA-tools/NanoMaton\n", - "1 ---> https://github.com/DukeLearningInnovation/muser\n", - "5 ---> https://github.com/luosolo/OAiZer\n", - "0 ---> https://github.com/abrahamnunes/fitr\n", - "0 ---> https://github.com/jmbr/committor\n", - "0 ---> https://github.com/eEcoLiDAR/laserchicken\n", - "0 ---> https://github.com/feelpp/toolbox\n", - "0 ---> https://github.com/dfm/celerite\n", - "6 ---> https://github.com/buddhi1980/mandelbulber2\n", - "9 ---> https://github.com/DECLARE-Project/palladio-headless\n", - "0 ---> https://github.com/hudcondr/Digital-preservation---sports-trackers-for-Strava\n", - "0 ---> https://github.com/ultralytics/flickr_scraper\n", - "0 ---> https://github.com/ctuning/ck-env\n", - "0 ---> https://github.com/dyskurs/bel.esperanto\n", - "9 ---> https://github.com/lmjohns3/theanets\n", - "1 ---> https://github.com/fablabbcn/smartcitizen-kit-21\n", - "2 ---> https://github.com/eeditiones/shakespeare\n", - "9 ---> https://github.com/ivco19/epyRba\n", - "0 ---> https://github.com/Andros-Spica/ENE-Angourakis-et-al-2019\n", - "0 ---> https://github.com/rjfarmer/mesaplot\n", - "0 ---> https://github.com/tjof2/robustpca\n", - "0 ---> https://github.com/zerothi/sisl\n", - "0 ---> https://github.com/ChiaraBonacchi/MaryRose\n", - "6 ---> https://github.com/claudioatzori/dnet-gdup\n", - "0 ---> https://github.com/quantling/pyndl\n", - "0 ---> https://github.com/FAST-HEP/fast-flow\n", - "0 ---> https://github.com/pysat/pysatMissions\n", - "0 ---> https://github.com/kinnala/kirchhoff-nitsche-ex3\n", - "0 ---> https://github.com/GMOD/Apollo\n", - "2 ---> https://github.com/brics-dev/brics\n", - "0 ---> https://github.com/cismet/cids-custom-sudplan-linz\n", - "0 ---> https://github.com/theia-dev/molani\n", - "0 ---> https://github.com/planetserver/webclient-neo\n", - "0 ---> https://github.com/djgagne/lorenz_gan\n", - "0 ---> https://github.com/mmcauliffe/Conch-sounds\n", - "5 ---> https://github.com/pandas-dev/pandas\n", - "0 ---> https://github.com/dvav/dgeclust\n", - "0 ---> https://github.com/bjmorgan/vasppy\n", - "0 ---> https://github.com/has2k1/plotnine\n", - "0 ---> https://github.com/churchill-lab/gbrs\n", - "0 ---> https://github.com/salilab/imp\n", - "9 ---> https://github.com/NLeSC/eEcology-Annotation-WS\n", - "0 ---> https://github.com/pygeo/pycmbs\n", - "5 ---> https://github.com/Barski-lab/cwl-airflow\n", - "0 ---> https://github.com/prisae/fftlog\n", - "9 ---> https://github.com/DigitalPreservationTuWien2017/dp-task3\n", - "5 ---> https://github.com/biolink/biolink-api\n", - "9 ---> https://github.com/yadage/packtivity\n", - "0 ---> https://github.com/fact-project/aict-tools\n", - "0 ---> https://github.com/proycon/tscan\n", - "0 ---> https://github.com/mattam82/Coq-Equations\n", - "0 ---> https://github.com/datalad/datalad-osf\n", - "0 ---> https://github.com/paradoxysm/EMGanalysis\n", - "0 ---> https://github.com/dparks1134/DBB\n", - "0 ---> https://github.com/mikahama/haracat\n", - "9 ---> https://github.com/brainiak/brainiak\n", - "0 ---> https://github.com/AtkinsGroup/TransmissionPairs\n", - "0 ---> https://github.com/samapriya/spotifind\n", - "0 ---> https://github.com/jaj42/GraPhysio\n", - "0 ---> https://github.com/TUD-RST/pycartan\n", - "0 ---> https://github.com/ghammad/pyActigraphy\n", - "5 ---> https://github.com/ebmdatalab/fdaaa_trends\n", - "5 ---> https://github.com/python-visualization/folium\n", - "0 ---> https://github.com/didillysquat/SymPortal_framework\n", - "6 ---> https://github.com/galaxyproject/SARS-CoV-2\n", - "0 ---> https://github.com/SMTorg/smt\n", - "0 ---> https://github.com/bnpy/bnpy\n", - "0 ---> https://github.com/alielhassouni/heartsteps-gaussian-generative-model\n", - "0 ---> https://github.com/rileyhales/geomatics\n", - "9 ---> https://github.com/smart-facility/cognicity-server\n", - "9 ---> https://github.com/smarie/python-pytest-cases\n", - "0 ---> https://github.com/tum-camp/survival-support-vector-machine\n", - "9 ---> https://github.com/Capitains/MyCapytain\n", - "5 ---> https://github.com/rasmuse/subnational-p-budgets\n", - "0 ---> https://github.com/kimmo1019/Roundtrip\n", - "0 ---> https://github.com/nighres/nighres\n", - "0 ---> https://github.com/Swiss-Polar-Institute/wind-speed-correction\n", - "0 ---> https://github.com/rmarkello/abagen\n", - "8 ---> https://github.com/ApirsAL/GeoReVi\n", - "0 ---> https://github.com/mdolab/baseclasses\n", - "0 ---> https://github.com/dams-mcda/Dams-MCDA\n", - "0 ---> https://github.com/LinuNils/TMC_reproduced\n", - "0 ---> https://github.com/alan-turing-institute/TCPDBench\n", - "0 ---> https://github.com/churchill-lab/emase\n", - "0 ---> https://github.com/pyspec/pyspec\n", - "2 ---> https://github.com/FelixHenninger/lab.js\n", - "9 ---> https://github.com/sonjageorgievska/CClusTera\n", - "0 ---> https://github.com/mrkrd/cochlea\n", - "9 ---> https://github.com/juy/setting\n", - "0 ---> https://github.com/swartn/cmipdata\n", - "6 ---> https://github.com/simetenn/uncertainpy\n", - "6 ---> https://github.com/liminoid/liminoid-cli\n", - "9 ---> https://github.com/ben-aaron188/netanos\n", - "0 ---> https://github.com/timtroendle/urban-occupants-paper\n", - "0 ---> https://github.com/openshs/openshs\n", - "0 ---> https://github.com/silx-kit/silx\n", - "9 ---> https://github.com/Duke-GCB/iMADS\n", - "0 ---> https://github.com/ecuracosta/Modeling_the_spatiotemporal_control_of_cell_cycle_acceleration\n", - "0 ---> https://github.com/aoelen/Survey-table-importer\n", - "0 ---> https://github.com/nasa/RHEAS\n", - "9 ---> https://github.com/1313e/PRISM\n", - "0 ---> https://github.com/COSMIC-PopSynth/COSMIC\n", - "0 ---> https://github.com/Mykrobe-tools/mykrobe\n", - "9 ---> https://github.com/keflavich/APEX_CMZ_H2CO\n", - "9 ---> https://github.com/datacite/omniauth-orcid\n", - "0 ---> https://github.com/clelange/cds_paper_bot\n", - "0 ---> https://github.com/lifs-tools/pygoslin\n", - "0 ---> https://github.com/sblunt/orbitize\n", - "6 ---> https://github.com/holoviz/panel\n", - "5 ---> https://github.com/fiji/Trainable_Segmentation\n", - "9 ---> https://github.com/SymbioticLab/Salus\n", - "0 ---> https://github.com/uw-cryo/skysat_stereo\n", - "0 ---> https://github.com/NaturalHistoryMuseum/inselect\n", - "0 ---> https://github.com/ishomam/high-cycle-fatigue-tool\n", - "9 ---> https://github.com/gwu-libraries/TweetSets\n", - "9 ---> https://github.com/smart-facility/cognicity-reports\n", - "9 ---> https://github.com/randlab/geocv\n", - "0 ---> https://github.com/stain/profilechecker\n", - "0 ---> https://github.com/JasperBoom/caltha\n", - "0 ---> https://github.com/Karel-Kroeze/adaptive-hypothesis-grammars\n", - "1 ---> https://github.com/michael-pagan/Netflix-Analysis\n", - "0 ---> https://github.com/Auerilas/ecopy\n", - "0 ---> https://github.com/nadavbra/pwas\n", - "0 ---> https://github.com/orbingol/NURBS-Python\n", - "0 ---> https://github.com/MStarmans91/GISTRadiomics\n", - "0 ---> https://github.com/seankmartin/NeuroChaT\n", - "9 ---> https://github.com/gossi/docblock\n", - "0 ---> https://github.com/byu-vv-lab/mercury\n", - "0 ---> https://github.com/zfit/phasespace\n", - "0 ---> https://github.com/jswoboda/GeoDataPython\n", - "9 ---> https://github.com/datalad/datalad-neuroimaging\n", - "5 ---> https://github.com/schxslt/schxslt\n", - "0 ---> https://github.com/christianbrodbeck/Eelbrain\n", - "0 ---> https://github.com/VHellendoorn/ICLR20-Great\n", - "0 ---> https://github.com/kutaslab/merp2tbl\n", - "0 ---> https://github.com/pytransitions/transitions\n", - "0 ---> https://github.com/JoshuaDull/Text-Recognition-Introduction\n", - "0 ---> https://github.com/lejon/PartiallyCollapsedLDA\n", - "0 ---> https://github.com/Sulstice/global-chem\n", - "9 ---> https://github.com/glottolog/pyglottolog\n", - "0 ---> https://github.com/SebastianBocquet/MiraTitanHMFemulator\n", - "0 ---> https://github.com/LanguageMachines/PICCL\n", - "5 ---> https://github.com/CCMi-FIT/ontouml-csharp-utils\n", - "0 ---> https://github.com/j-i-l/pyAlluv\n", - "0 ---> https://github.com/ypriverol/cubascience\n", - "0 ---> https://github.com/pc2/HPCC_FPGA\n", - "0 ---> https://github.com/rrwick/Minipolish\n", - "0 ---> https://github.com/dftlibs/xcint\n", - "9 ---> https://github.com/pyvideo/pyvideo\n", - "9 ---> https://github.com/WIPACrepo/file_catalog\n", - "0 ---> https://github.com/Helveg/patch\n", - "3 ---> https://github.com/par12005/TPPS\n", - "0 ---> https://github.com/NixtonM/srsmp\n", - "8 ---> https://github.com/onnovalkering/brane\n", - "0 ---> https://github.com/pygae/clifford\n", - "0 ---> https://github.com/Ajax23/PoreMS\n", - "6 ---> https://github.com/Met4FoF/Code\n", - "0 ---> https://github.com/cwru-pat/macro_lightning\n", - "9 ---> https://github.com/phillima/asniffer\n", - "9 ---> https://github.com/timothydmorton/isochrones\n", - "0 ---> https://github.com/USEPA/IO-Model-Builder\n", - "9 ---> https://github.com/UF-OCR/ocr-summary-accrual\n", - "0 ---> https://github.com/toniher/mediawiki-BioDB\n", - "6 ---> https://github.com/ncsa/OA4MP\n", - "0 ---> https://github.com/jensleitloff/CNN-Sentinel\n", - "9 ---> https://github.com/meraki-analytics/orianna\n", - "3 ---> https://github.com/WormieCorp/Localization.AspNetCore.TagHelpers\n", - "9 ---> https://github.com/mikahama/natas\n", - "9 ---> https://github.com/meyer-lab/ps-growth-model\n", - "0 ---> https://github.com/Guillawme/localres\n", - "0 ---> https://github.com/saeg/asm-defuse\n", - "0 ---> https://github.com/alejandrobll/py-sphviewer\n", - "0 ---> https://github.com/BioSTEAMDevelopmentGroup/thermosteam\n", - "0 ---> https://github.com/TUDelft-CITG/OpenTNSim\n", - "0 ---> https://github.com/IceCubeOpenSource/flarestack\n", - "0 ---> https://github.com/timm/bnbad\n", - "0 ---> https://github.com/zhinst/zhinst-toolkit\n", - "9 ---> https://github.com/ngs-mstb/micgent\n", - "0 ---> https://github.com/rbardaji/mooda\n", - "0 ---> https://github.com/pytube/data\n", - "0 ---> https://github.com/VlachosGroup/pQUAD\n", - "0 ---> https://github.com/MicroPasts/maryrose-bell\n", - "0 ---> https://github.com/drs-m/mrtrix3\n", - "0 ---> https://github.com/eyurtsev/FlowCytometryTools\n", - "9 ---> https://github.com/mirnylab/cooler\n", - "0 ---> https://github.com/choderalab/alchemy\n", - "0 ---> https://github.com/Nikoleta-v3/meta-analysis-of-prisoners-dilemma-tournaments\n", - "9 ---> https://github.com/villevaara/dhum-topic-gutfin\n", - "0 ---> https://github.com/natashabatalha/picaso\n", - "0 ---> https://github.com/delira-dev/delira\n", - "0 ---> https://github.com/philip-mach/herd-immunity\n", - "8 ---> https://github.com/Alan-Cha/graphql-complexity-paper-artifact\n", - "0 ---> https://github.com/Becksteinlab/propkatraj\n", - "0 ---> https://github.com/3DGenomes/TADbit\n", - "0 ---> https://github.com/TariqAHassan/BioVida\n", - "0 ---> https://github.com/dxm447/stemtool\n", - "0 ---> https://github.com/Emma926/paradnn\n", - "9 ---> https://github.com/gcunhase/AnnotatedMV-PreProcessing\n", - "8 ---> https://github.com/liminoid/liminoid-mdx\n", - "5 ---> https://github.com/Ouranosinc/raven\n", - "0 ---> https://github.com/scities/patterns-of-segregation\n", - "0 ---> https://github.com/pkienzle/periodictable\n", - "9 ---> https://github.com/biowdl/expression-quantification\n", - "0 ---> https://github.com/dokester/BayesicFitting\n", - "9 ---> https://github.com/fphammerle/freesurfer-volume-reader\n", - "0 ---> https://github.com/fmalmeida/MpGAP\n", - "1 ---> https://github.com/collaborative-open-plant-omics/COPO\n", - "0 ---> https://github.com/OrderN/CONQUEST-release\n", - "0 ---> https://github.com/chemfiles/chemfiles\n", - "0 ---> https://github.com/camillescott/goetia\n", - "0 ---> https://github.com/Charestlab/pyrsa\n", - "0 ---> https://github.com/wannaphong/thai-ner\n", - "9 ---> https://github.com/cylc/cylc-flow\n", - "0 ---> https://github.com/krassowski/gsea-api\n", - "0 ---> https://github.com/UW-Hydro/RVIC\n", - "0 ---> https://github.com/stefanbringuier/NaivePolyCrys\n", - "0 ---> https://github.com/harmslab/pytc-gui\n", - "6 ---> https://github.com/maurov/xraysloth\n", - "0 ---> https://github.com/genicam/harvesters\n", - "0 ---> https://github.com/EC-Earth/ece2cmor3\n", - "6 ---> https://github.com/rodighiero/Affinity-Map\n", - "9 ---> https://github.com/trtcrd/SLIM\n", - "0 ---> https://github.com/MTG/SymbTr-extras\n", - "0 ---> https://github.com/midas-isg/object-serializer\n", - "0 ---> https://github.com/caltechlibrary/microarchiver\n", - "0 ---> https://github.com/UCL/scikit-surgeryvtk\n", - "0 ---> https://github.com/XanaduAI/thewalrus\n", - "9 ---> https://github.com/common-workflow-language/cwltool\n", - "9 ---> https://github.com/exoplanet-dev/exoplanet\n", - "0 ---> https://github.com/genenetwork/genenetwork2\n", - "0 ---> https://github.com/dftd4/dftd4\n", - "9 ---> https://github.com/hesselberthlab/modmap\n", - "0 ---> https://github.com/nkarasiak/MuseoToolBox\n", - "0 ---> https://github.com/timtroendle/pytus2000\n", - "0 ---> https://github.com/mdolab/multipoint\n", - "0 ---> https://github.com/matthiaskoenig/libsbgn-python\n", - "6 ---> https://github.com/mrc-ide/squire_js\n", - "9 ---> https://github.com/sotorrent/posthistory-extractor\n", - "0 ---> https://github.com/FAST-HEP/fast-plotter\n", - "0 ---> https://github.com/tresoldi/dafsa\n", - "0 ---> https://github.com/alphatwirl/alphatwirl\n", - "9 ---> https://github.com/nipy/heudiconv\n", - "1 ---> https://github.com/CESNET/perun\n", - "0 ---> https://github.com/RBhupi/PyREClass\n", - "0 ---> https://github.com/jrafolsr/opeg-green-solvent\n", - "0 ---> https://github.com/tomminylander/cloning-simulator\n", - "6 ---> https://github.com/moschlar/SAUCE\n", - "0 ---> https://github.com/astrom-tom/loots\n", - "3 ---> https://github.com/ericmandel/js9\n", - "9 ---> https://github.com/empymod/empymod\n", - "5 ---> https://github.com/MRChemSoft/mrcpp\n", - "0 ---> https://github.com/QuantumPackage/qp2\n", - "0 ---> https://github.com/johannfaouzi/pyts\n", - "0 ---> https://github.com/duncanmmacleod/ciecplib\n", - "0 ---> https://github.com/matthiasweiss/runtastic-strava-migrate\n", - "9 ---> https://github.com/carpyncho/carpyncho-py\n", - "3 ---> https://github.com/thomas-crane/networking-project\n", - "0 ---> https://github.com/bab2min/tomotopy\n", - "0 ---> https://github.com/ace-design/cosmic\n", - "0 ---> https://github.com/FaustinCarter/scraps\n", - "3 ---> https://github.com/tripal/tripal\n", - "0 ---> https://github.com/SCCAF/sccaf\n", - "0 ---> https://github.com/src-d/minhashcuda\n", - "6 ---> https://github.com/ebimodeling/ghgvc\n", - "0 ---> https://github.com/NERSC/pytokio\n", - "9 ---> https://github.com/KnowledgeCaptureAndDiscovery/OBA\n", - "9 ---> https://github.com/praveen-palanisamy/macad-gym\n", - "0 ---> https://github.com/dimazest/poultry\n", - "0 ---> https://github.com/waterlandlab/PReLIM\n", - "0 ---> https://github.com/felixriese/alpaca-processing\n", - "3 ---> https://github.com/ocean-data-qc/ocean-data-qc\n", - "0 ---> https://github.com/lmfit/lmfit-py\n", - "0 ---> https://github.com/masseyr/eehelper\n", - "3 ---> https://github.com/diging/virtual-spaces-2.0\n", - "9 ---> https://github.com/SISPO-developers/sispo\n", - "0 ---> https://github.com/rbutleriii/Clinotator\n", - "5 ---> https://github.com/sosy-lab/benchexec\n", - "5 ---> https://github.com/Nikronic/CoarseNet\n", - "5 ---> https://github.com/IDSIA/sacred\n", - "0 ---> https://github.com/GeoStat-Framework/GSTools\n", - "5 ---> https://github.com/camomile-project/camomile-server\n", - "0 ---> https://github.com/weecology/macroecotools\n", - "0 ---> https://github.com/nlesc-nano/AssertionLib\n", - "9 ---> https://github.com/pnnl/ripples\n", - "9 ---> https://github.com/dreamtools/dreamtools\n", - "0 ---> https://github.com/DeepRank/pdb2sql\n", - "0 ---> https://github.com/zebateira/rama-spotify\n", - "0 ---> https://github.com/qutech/qupulse\n", - "8 ---> https://github.com/eWaterCycle/Cesium-NcWMS\n", - "8 ---> https://github.com/CMLPlatform/ramascene\n", - "0 ---> https://github.com/filips123/ConfigWriter\n", - "1 ---> https://github.com/schimatos/schimatos.org\n", - "0 ---> https://github.com/ALSETLab/Nordic44-Nordpool\n", - "9 ---> https://github.com/NCAR/wrf_hydro_nwm_public\n", - "0 ---> https://github.com/frandorr/PROBA-V-3DWDSR\n", - "0 ---> https://github.com/chrisdembia/yeadon\n", - "0 ---> https://github.com/open-editions/corpus-joyce-ulysses-tei\n", - "3 ---> https://github.com/AAROC/hackfest-site\n", - "0 ---> https://github.com/amirsani/pySharpeRratio\n", - "0 ---> https://github.com/CINPLA/RippleNet\n", - "5 ---> https://github.com/karkirowle/oral_cancer_analysis\n", - "0 ---> https://github.com/brisskit-uol/onyx-install-procedures\n", - "0 ---> https://github.com/llondon6/nrutils_dev\n", - "9 ---> https://github.com/Andros-Spica/EAA2018_simulation\n", - "0 ---> https://github.com/GeneDx/phenopy\n", - "3 ---> https://github.com/andremann/MoniQ\n", - "9 ---> https://github.com/jupyter/nbgrader\n", - "0 ---> https://github.com/GeoStat-Framework/PyKrige\n", - "0 ---> https://github.com/orlade/microsimmer\n", - "0 ---> https://github.com/ideaconsult/appdomain\n", - "0 ---> https://github.com/irgroup/sigir2020-measure-reproducibility\n", - "0 ---> https://github.com/mikekestemont/chivalric_diversity\n", - "0 ---> https://github.com/CosmologyTaskForce/PhysicsResearchSurvivalManual\n", - "0 ---> https://github.com/dbischof90/optimal_extreme_value_portfolios\n", - "0 ---> https://github.com/ComputationalRadiationPhysics/picongpu\n", - "0 ---> https://github.com/DorianDepriester/MTEX2Gmsh\n", - "5 ---> https://github.com/MStarmans91/WORC\n", - "0 ---> https://github.com/colomoto/pyMaBoSS\n", - "0 ---> https://github.com/lktsui/carbon_xs_gui\n", - "0 ---> https://github.com/severin-lemaignan/pyrobots\n", - "9 ---> https://github.com/casmlab/twitter_user_collector\n", - "5 ---> https://github.com/QCoDeS/Qcodes\n", - "0 ---> https://github.com/kusterlab/MasterSpectrum\n", - "9 ---> https://github.com/TUW-GEO/smap_io\n", - "5 ---> https://github.com/neurodata/ndstore\n", - "0 ---> https://github.com/isi-nmr/brukerapi-python\n", - "9 ---> https://github.com/pysal/tobler\n", - "0 ---> https://github.com/mbdemoraes/moafs\n", - "5 ---> https://github.com/gbv/kos-registry\n", - "9 ---> https://github.com/callat-qcd/espressodb\n", - "0 ---> https://github.com/longavailable/adaptive-curvefitting\n", - "0 ---> https://github.com/LUMC/pytest-workflow\n", - "0 ---> https://github.com/cta-observatory/ctapipe\n", - "0 ---> https://github.com/SystemsGenetics/pynome\n", - "0 ---> https://github.com/openvax/mhctools\n", - "0 ---> https://github.com/alexvoronov/geonetworking\n", - "0 ---> https://github.com/Dioptas/Dioptas\n", - "0 ---> https://github.com/shbhuk/barycorrpy\n", - "0 ---> https://github.com/vanheeringen-lab/ANANSE\n", - "0 ---> https://github.com/mazlo/lodcc\n", - "7 ---> https://github.com/LDflex/LDflex-Comunica\n", - "3 ---> https://github.com/nicysneiros/SemMatcher\n", - "0 ---> https://github.com/pace-gt/PACE-ProvBench\n", - "0 ---> https://github.com/spirali/rsds\n", - "9 ---> https://github.com/UNCG-DAISY/psi-collect\n", - "0 ---> https://github.com/gmbrandt/xwavecal\n", - "0 ---> https://github.com/Fuminides/Fancy_aggregations\n", - "0 ---> https://github.com/rootpy/rootpy\n", - "0 ---> https://github.com/Social-Evolution-and-Behavior/anTraX\n", - "0 ---> https://github.com/seasite-project/Offsite\n", - "0 ---> https://github.com/emsec/hal\n", - "5 ---> https://github.com/SolarArbiter/solarforecastarbiter-api\n", - "0 ---> https://github.com/VIDA-NYU/reproserver\n", - "0 ---> https://github.com/Crompulence/cpl-library\n", - "0 ---> https://github.com/KeplerGO/kadenza\n", - "0 ---> https://github.com/MarinManuel/Huh_et_al_2020\n", - "0 ---> https://github.com/JasperHG90/sleepsimR-documentation\n", - "8 ---> https://github.com/OPEnSLab-OSU/SlideSentinel\n", - "9 ---> https://github.com/TeamRegio/EpiRegioDB\n", - "0 ---> https://github.com/Aetf/tf_benchmarks\n", - "3 ---> https://github.com/HypothesisWorks/hypothesis\n", - "0 ---> https://github.com/astrom-tom/catscii\n", - "0 ---> https://github.com/NESTCollaboration/nestpy\n", - "0 ---> https://github.com/remyleone/makesense\n", - "9 ---> https://github.com/OSOceanAcoustics/echopype\n", - "0 ---> https://github.com/California-Planet-Search/radvel\n", - "0 ---> https://github.com/vangorden/OUR2D2\n", - "0 ---> https://github.com/jpvantassel/swprepost\n", - "9 ---> https://github.com/SanPen/GridCal\n", - "9 ---> https://github.com/INVEST-flagship/Randomized-picture-rating-tool-for-surveys\n", - "5 ---> https://github.com/BioSTEAMDevelopmentGroup/biosteam\n", - "9 ---> https://github.com/o2r-project/geoextent\n", - "0 ---> https://github.com/locked-fg/JFeatureLib\n", - "0 ---> https://github.com/bastula/dicompyler\n", - "7 ---> https://github.com/research-software-directory/research-software-directory\n", - "0 ---> https://github.com/mast-group/OpenVocabCodeNLM\n", - "0 ---> https://github.com/SystemsGenetics/KINC\n", - "0 ---> https://github.com/darothen/py-mie\n", - "0 ---> https://github.com/PySEE/home\n", - "0 ---> https://github.com/mfherbst/cvs-relaxation-scripts\n", - "0 ---> https://github.com/ctsit/research-subject-mapper\n", - "0 ---> https://github.com/havok2063/boolean_parser\n", - "0 ---> https://github.com/DTUWindEnergy/TOPFARM\n", - "0 ---> https://github.com/halfak/deltas\n", - "9 ---> https://github.com/srmnitc/pyscal\n", - "0 ---> https://github.com/Parallel-in-Time/pySDC\n", - "0 ---> https://github.com/kjappelbaum/permutationplotter\n", - "9 ---> https://github.com/ESMValGroup/ESMValTool\n", - "8 ---> https://github.com/lacinoire/chunk-retrieval-replication\n", - "0 ---> https://github.com/rahul-gohil/GFKT\n", - "1 ---> https://github.com/Edirom/WeGA-WebApp\n", - "9 ---> https://github.com/NYUCCL/psiTurk\n", - "5 ---> https://github.com/SP7-Ritmare/EDI-NG_server\n", - "0 ---> https://github.com/abhi1693/yii2-enum\n", - "9 ---> https://github.com/rinde/pdptw-dataset-generator\n", - "9 ---> https://github.com/CambridgeSemiticsLab/BH_time_collocations\n", - "0 ---> https://github.com/erwinkendo/polaruob\n", - "0 ---> https://github.com/geneontology/obographs\n", - "5 ---> https://github.com/speckleworks/SpeckleCore\n", - "0 ---> https://github.com/rjw57/videosequence\n", - "0 ---> https://github.com/tylerjereddy/diffusion_analysis_MD_simulations\n", - "5 ---> https://github.com/luphysics/PyMODA\n", - "0 ---> https://github.com/NatLibFi/Annif\n", - "0 ---> https://github.com/adbar/trafilatura\n", - "0 ---> https://github.com/ForeverZyh/DEBAR\n", - "9 ---> https://github.com/danchubb/CanVar\n", - "0 ---> https://github.com/JonathonMSmith/growin\n", - "0 ---> https://github.com/SoftwareDevEngResearch/flexWecDesignOpt\n", - "0 ---> https://github.com/RubenImhoff/Large_Sample_Nowcasting_Evaluation\n", - "5 ---> https://github.com/TreeCmp/TreeCmpWEB\n", - "0 ---> https://github.com/TaufiqHassan/acccmip6\n", - "0 ---> https://github.com/clsb/miles\n", - "9 ---> https://github.com/kip-hart/MicroStructPy\n", - "0 ---> https://github.com/hls-fpga-machine-learning/hls4ml\n", - "9 ---> https://github.com/biowdl/BamMetrics\n", - "0 ---> https://github.com/cwida/duckdb\n", - "0 ---> https://github.com/FREVA-CLINT/climatereconstructionAI\n", - "3 ---> https://github.com/CESEL/RelationalGit\n", - "9 ---> https://github.com/ComplexNetTSP/Simulation-Files-for-Large-Scale-Model-for-Information-Dissemination-with-Device-to-Device\n", - "9 ---> https://github.com/tresoldi/distfeat\n", - "9 ---> https://github.com/ceholden/TSTools\n", - "0 ---> https://github.com/riga/law\n", - "0 ---> https://github.com/castelao/seabird\n", - "8 ---> https://github.com/MrShoenel/git-density\n", - "0 ---> https://github.com/ufz/ogs-container-maker\n", - "0 ---> https://github.com/ADicksonLab/mastic\n", - "0 ---> https://github.com/rasbt/mlxtend\n", - "0 ---> https://github.com/VIDA-NYU/domain-discovery-d4\n", - "9 ---> https://github.com/SUNCAT-Center/CatLearn\n", - "0 ---> https://github.com/fastread/src\n", - "9 ---> https://github.com/lanecodes/cymod\n", - "0 ---> https://github.com/mancellin/capytaine\n", - "5 ---> https://github.com/tferr/Scripts\n", - "0 ---> https://github.com/ostwalprasad/LGNpy\n", - "0 ---> https://github.com/AstraZeneca-NGS/simple_sv_annotation\n", - "9 ---> https://github.com/sept08/WebToys\n", - "0 ---> https://github.com/JiaweiZhuang/ipm_util\n", - "0 ---> https://github.com/SynthSys/pyOmeroUpload\n", - "0 ---> https://github.com/adamewing/tldr\n", - "3 ---> https://github.com/JustinGOSSES/wellio.js\n", - "0 ---> https://github.com/purdue-cap/DryadSynth\n", - "6 ---> https://github.com/ph463/Gygax\n", - "0 ---> https://github.com/mayconbordin/cdr-gen\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0 ---> https://github.com/Axelrod-Python/Axelrod\n", - "9 ---> https://github.com/MIPT-Oulu/solt\n", - "9 ---> https://github.com/hibernator11/notebook-texts-metadata\n", - "3 ---> https://github.com/nismod/transport\n", - "9 ---> https://github.com/scikit-hep/uproot\n", - "9 ---> https://github.com/alan-turing-institute/CROP\n", - "0 ---> https://github.com/cmusatyalab/openface\n", - "5 ---> https://github.com/blahah/transrate\n", - "9 ---> https://github.com/1313e/CMasher\n", - "9 ---> https://github.com/stonerlab/Stoner-PythonCode\n", - "0 ---> https://github.com/netneurolab/markello_ppmisnf\n", - "0 ---> https://github.com/jobovy/galpy\n", - "0 ---> https://github.com/LABSN/tdtpy\n", - "0 ---> https://github.com/tknapen/FIRDeconvolution\n", - "0 ---> https://github.com/jongablop/MinervaLab\n", - "9 ---> https://github.com/clarity-h2020/data-management-plan\n", - "9 ---> https://github.com/kashyapchhatbar/CLASHChimeras\n", - "5 ---> https://github.com/pzeidler89/MUSEpack\n", - "9 ---> https://github.com/tofaquih/imputation_of_untargeted_metabolites\n", - "9 ---> https://github.com/sebastientourbier/multiscalebrainparcellator\n", - "0 ---> https://github.com/hammurabi-dev/hammurabiX\n", - "8 ---> https://github.com/comses/comses.net\n", - "0 ---> https://github.com/ultralytics/yolov3\n", - "9 ---> https://github.com/clld/concepticon\n", - "0 ---> https://github.com/epigen/cll-chromatin\n", - "3 ---> https://github.com/sagemathinc/cocalc_tutorial\n", - "0 ---> https://github.com/paddy-seismic/retreat\n", - "0 ---> https://github.com/geoschem/gcpy\n", - "0 ---> https://github.com/NickSwainston/mwa_search\n", - "3 ---> https://github.com/dhimmel/gene-ontology\n", - "0 ---> https://github.com/lmarti/nsgaiii\n", - "6 ---> https://github.com/sbmlteam/jsbml\n", - "0 ---> https://github.com/ankahira/chainermnx\n", - "0 ---> https://github.com/CalebBell/fpi\n", - "0 ---> https://github.com/gplepage/corrfitter\n", - "3 ---> https://github.com/ADicksonLab/geomm\n", - "0 ---> https://github.com/pycroscopy/pycroscopy\n", - "0 ---> https://github.com/bioasp/iggy\n", - "0 ---> https://github.com/TUW-GEO/smos\n", - "0 ---> https://github.com/SynthSys/OMEROConnect\n", - "3 ---> https://github.com/jaclaes/SPMM2015\n", - "9 ---> https://github.com/FNNDSC/ChRIS_store\n", - "0 ---> https://github.com/hpparvi/KeplerJC\n", - "0 ---> https://github.com/neurodata/graspy\n", - "0 ---> https://github.com/bast/polygons\n", - "0 ---> https://github.com/MatthewReid854/reliability\n", - "0 ---> https://github.com/greenelab/DAPS\n", - "0 ---> https://github.com/merijn/Belewitte\n", - "3 ---> https://github.com/HexaPlant/pixeldragon\n", - "0 ---> https://github.com/sertansenturk/ahenkidentifier\n", - "0 ---> https://github.com/bss116/citygenerator\n", - "0 ---> https://github.com/jeffbass/imagezmq\n", - "3 ---> https://github.com/njss/Sense.me\n", - "0 ---> https://github.com/materialsvirtuallab/pyhull\n", - "0 ---> https://github.com/alexnaoki/LHC_Hidroweb\n", - "9 ---> https://github.com/UCATLAS/xAODAnaHelpers\n", - "0 ---> https://github.com/rhiever/MarkovNetwork\n", - "0 ---> https://github.com/dvalters/caesarplotlib\n", - "0 ---> https://github.com/pyproj4/pyproj\n", - "9 ---> https://github.com/clld/csd\n", - "0 ---> https://github.com/colbyj/bride-of-frankensystem\n", - "5 ---> https://github.com/SainsburyWellcomeCentre/cellfinder\n", - "0 ---> https://github.com/pySRURGS/pyGOURGS\n", - "5 ---> https://github.com/acdh-oeaw/4dpuzzle\n", - "0 ---> https://github.com/kinnala/kirchhoff-nitsche-ex2\n", - "0 ---> https://github.com/petl-developers/petlx\n", - "0 ---> https://github.com/mmcauliffe/Pyraat\n", - "5 ---> https://github.com/plt-tud/r43ples\n", - "0 ---> https://github.com/EducationalTestingService/skll\n", - "0 ---> https://github.com/RadioAstronomySoftwareGroup/pyuvdata\n", - "0 ---> https://github.com/jfnavarro/st_pipeline\n", - "0 ---> https://github.com/Neuroinflab/PyMICE\n", - "5 ---> https://github.com/pythoninchemistry/intro_python_chemists\n", - "0 ---> https://github.com/OpenPIV/openpiv-python\n", - "6 ---> https://github.com/mbari-media-management/vcr4j\n", - "9 ---> https://github.com/dpizetta/wavy\n", - "6 ---> https://github.com/arman2/equal_public\n", - "0 ---> https://github.com/gher-ulg/Diva-Workshops\n", - "0 ---> https://github.com/pydata/xarray\n", - "0 ---> https://github.com/transientlunatic/elk\n", - "0 ---> https://github.com/qcscine/readuct\n", - "0 ---> https://github.com/RDFLib/pymicrodata\n", - "0 ---> https://github.com/sbmlteam/libCombine\n", - "3 ---> https://github.com/encompasslabs/mcsdss-watermark\n", - "9 ---> https://github.com/OGGM/oggm\n", - "0 ---> https://github.com/tdwg/dwc\n", - "0 ---> https://github.com/NeuralEnsemble/elephant\n", - "0 ---> https://github.com/agporto/ml-morph\n", - "0 ---> https://github.com/SeismicSource/sourcespec\n", - "9 ---> https://github.com/tensorwerk/hangar-py\n", - "0 ---> https://github.com/virgesmith/humanleague\n", - "0 ---> https://github.com/lebedov/scikit-cuda\n", - "5 ---> https://github.com/mbari-media-management/vars-query\n", - "8 ---> https://github.com/jpdias/node-red-contrib-self-healing\n", - "0 ---> https://github.com/snastase/isc-tutorial\n", - "0 ---> https://github.com/smart-facility/cognicity-reports-qlue\n", - "0 ---> https://github.com/simpeg-research/kang-2019-3D-aem\n", - "9 ---> https://github.com/appetrosyan/LCDM-NS\n", - "0 ---> https://github.com/asergiobranco/ArchNet\n", - "0 ---> https://github.com/DistrictDataLabs/yellowbrick\n", - "0 ---> https://github.com/enolfc/d4science-galaxy-authn\n", - "0 ---> https://github.com/pyGSTio/pyGSTi\n", - "0 ---> https://github.com/smart-facility/cognicity-reports-floodgauge\n", - "0 ---> https://github.com/miguelfp/ibmos\n", - "0 ---> https://github.com/DanPorter/Dans_Diffraction\n", - "0 ---> https://github.com/CexyNature/Crabspy\n", - "0 ---> https://github.com/ismrmrd/ismrmrd-python\n", - "0 ---> https://github.com/kkmann/sample-size-calculation-under-uncertainty\n", - "0 ---> https://github.com/kingjr/ecoggui\n", - "0 ---> https://github.com/OP2/PyOP2\n", - "9 ---> https://github.com/cgat-developers/cgat-core\n", - "0 ---> https://github.com/pnlbwh/luigi-pnlpipe\n", - "7 ---> https://github.com/dzhw/metadatamanagement\n", - "9 ---> https://github.com/mastrogeppetto/OCCI4IOT\n", - "0 ---> https://github.com/scivision/fortran-submodule\n", - "0 ---> https://github.com/librosa/librosa\n", - "0 ---> https://github.com/morganjwilliams/pyrolite\n", - "0 ---> https://github.com/planetserver/ps2-www-client\n", - "0 ---> https://github.com/MDAnalysis/RotamerConvolveMD\n", - "0 ---> https://github.com/psu-inversion/atmospheric-inverse-methods-for-flux-optimization\n", - "0 ---> https://github.com/enolfc/d4scienceauth\n", - "0 ---> https://github.com/yoavram/Sid\n", - "9 ---> https://github.com/ISOBlue/isoblue-android\n", - "0 ---> https://github.com/bio2bel/bio2bel\n", - "0 ---> https://github.com/CDAT/ci-bots\n", - "9 ---> https://github.com/ropensci/stplanr\n", - "1 ---> https://github.com/digitallinguistics/app\n", - "0 ---> https://github.com/blokhin/genealogical-trees\n", - "0 ---> https://github.com/hannes-brt/hebel\n", - "0 ---> https://github.com/mcs07/CIRpy\n", - "3 ---> https://github.com/tobysmith568/Generate-License-File\n", - "6 ---> https://github.com/HBLL-Collection-Development/omeka-s-any-cloud\n", - "3 ---> https://github.com/dgnest/foottrial\n", - "9 ---> https://github.com/neuropsychology/NeuroKit\n", - "0 ---> https://github.com/makgyver/rectorch\n", - "0 ---> https://github.com/Continvvm/continuum\n", - "0 ---> https://github.com/mdolab/pyhyp\n", - "0 ---> https://github.com/timothydmorton/exosyspop\n", - "0 ---> https://github.com/WGUNDERWOOD/motifcluster\n", - "0 ---> https://github.com/egonw/ops4j\n", - "5 ---> https://github.com/SebBuchelt/georef_webcam\n", - "0 ---> https://github.com/dimazest/google-ngram-downloader\n", - "0 ---> https://github.com/mmadsen/seriationct\n", - "9 ---> https://github.com/thorstenwagner/ij-shape-smoothing\n", - "0 ---> https://github.com/prisae/pyfftlog\n", - "0 ---> https://github.com/koszullab/hicstuff\n", - "9 ---> https://github.com/TUW-GEO/gldas\n", - "0 ---> https://github.com/martinfleis/momepy\n", - "0 ---> https://github.com/alamar/microbe\n", - "0 ---> https://github.com/romain-jacob/TTW-Artifacts\n", - "8 ---> https://github.com/netsage-project/netsage-pipeline\n", - "0 ---> https://github.com/krischer/pyflex\n", - "0 ---> https://github.com/cheeseywhiz/cheeseywhiz\n", - "0 ---> https://github.com/NeuPhysics/neutrino\n", - "0 ---> https://github.com/astrojs/fitsjs\n", - "9 ---> https://github.com/arbox/shalmaneser\n", - "0 ---> https://github.com/keflavich/pyradex\n", - "0 ---> https://github.com/alphatwirl/mantichora\n", - "0 ---> https://github.com/pysal/spreg\n", - "0 ---> https://github.com/dmey/minimal-dx\n", - "0 ---> https://github.com/dftlibs/xcauto\n", - "3 ---> https://github.com/kizniche/Mycodo\n", - "0 ---> https://github.com/lmcinnes/umap\n", - "0 ---> https://github.com/flowersteam/explauto\n", - "0 ---> https://github.com/malkayo/AiRL\n", - "6 ---> https://github.com/liminoid/liminoid-js\n", - "0 ---> https://github.com/llambourne/isoenzymes_flux_balance\n", - "0 ---> https://github.com/davidhin/stringmatching\n", - "0 ---> https://github.com/maxplanck-ie/snakepipes\n", - "0 ---> https://github.com/titipata/pubmed_parser\n", - "0 ---> https://github.com/inodb/revmut\n", - "9 ---> https://github.com/LASER-UMASS/CausalTesting_ICSE20\n", - "0 ---> https://github.com/bcbio/bcbio-nextgen\n", - "0 ---> https://github.com/coin-or/CyLP\n", - "9 ---> https://github.com/SciTools/cartopy\n", - "2 ---> https://github.com/Jollyfant/PMAG2\n", - "0 ---> https://github.com/AlBi-HHU/homo-edit-distance\n", - "0 ---> https://github.com/atmtools/typhon\n", - "0 ---> https://github.com/benvanwerkhoven/kernel_tuner\n", - "0 ---> https://github.com/myGrid/ruby-ro-bundle\n", - "5 ---> https://github.com/juoceano/lecture_figures\n", - "0 ---> https://github.com/briandconnelly/nicheconstruct\n", - "5 ---> https://github.com/deeptools/HiCExplorer\n", - "5 ---> https://github.com/mmalekzadeh/privacy-preserving-bandits\n", - "9 ---> https://github.com/jjnp/dss-ue2\n", - "0 ---> https://github.com/jsh9/PySeismoSoil\n", - "0 ---> https://github.com/wiheto/teneto\n", - "0 ---> https://github.com/CamDavidsonPilon/lifetimes\n", - "0 ---> https://github.com/meelgroup/baital\n", - "0 ---> https://github.com/harnesscloud/bqwm\n", - "0 ---> https://github.com/apcamargo/tspex\n", - "0 ---> https://github.com/a-slide/pycoMeth\n", - "0 ---> https://github.com/RoberAgro/nurbspy\n", - "0 ---> https://github.com/ralph-group/pymeasure\n", - "9 ---> https://github.com/TrapperTeam/Trapper\n", - "0 ---> https://github.com/sertansenturk/tomato\n", - "0 ---> https://github.com/oscarbranson/carbspec\n", - "6 ---> https://github.com/rodighiero/AIUCD2020\n", - "0 ---> https://github.com/michaelaye/planet4\n", - "0 ---> https://github.com/mcs07/PubChemPy\n", - "0 ---> https://github.com/kyleniemeyer/mech_util\n", - "0 ---> https://github.com/nathandunn/galaxy-monarch-integration\n", - "9 ---> https://github.com/pyoceans/python-ctd\n", - "0 ---> https://github.com/sebhenri/HyWF\n", - "5 ---> https://github.com/MatthijsKaminski/AnalyzeTool\n", - "0 ---> https://github.com/mila-iqia/blocks\n", - "0 ---> https://github.com/vnmabus/dcor\n", - "0 ---> https://github.com/ejhumphrey/optimus\n", - "9 ---> https://github.com/Kaleidophon/token2index\n", - "0 ---> https://github.com/gchrupala/visually-grounded-speech\n", - "0 ---> https://github.com/dhhagan/opcsim\n", - "5 ---> https://github.com/kipoi/kipoiseq\n", - "0 ---> https://github.com/pnlbwh/freesurfer-analysis\n", - "0 ---> https://github.com/mpastell/CowLog\n", - "9 ---> https://github.com/TGAC/RAMPART\n", - "9 ---> https://github.com/repseqio/repseqio\n", - "6 ---> https://github.com/liminoid/liminoid\n", - "5 ---> https://github.com/SotosTsepe/invenio-madmp\n", - "8 ---> https://github.com/russianwordnet/yarn\n", - "0 ---> https://github.com/ihmeuw/vivarium_conic_lsff\n", - "0 ---> https://github.com/CMA-ES/pycma\n", - "0 ---> https://github.com/FAST-HEP/fast-curator\n", - "0 ---> https://github.com/erdc/AutoRoutePy\n", - "0 ---> https://github.com/kjappelbaum/oximachinetool\n", - "5 ---> https://github.com/ameyaKetkar/SimpleTypeChangeMiner\n", - "0 ---> https://github.com/rvhonorato/cazy-parser\n", - "0 ---> https://github.com/CrystalMei/ProvBuild\n", - "3 ---> https://github.com/stoqs/stoqs\n", - "0 ---> https://github.com/jamesrhester/PyFormatTransformer\n", - "0 ---> https://github.com/mirnylab/cooltools\n", - "0 ---> https://github.com/maxibor/adrsm\n", - "0 ---> https://github.com/thorstenwagner/ij-shape-filter\n", - "3 ---> https://github.com/cemac/SWIFTDB\n", - "0 ---> https://github.com/minimalparts/nonce2vec\n", - "0 ---> https://github.com/sepandhaghighi/pyrgg\n", - "5 ---> https://github.com/xBimTeam/XbimEssentials\n", - "5 ---> https://github.com/bionode/bionode-fasta\n", - "0 ---> https://github.com/chembl/FPSim2\n", - "5 ---> https://github.com/WIPACrepo/iceprod\n", - "0 ---> https://github.com/smarsland/AviaNZ\n", - "9 ---> https://github.com/chasemc/IDBacApp\n", - "0 ---> https://github.com/metomi/rose\n", - "0 ---> https://github.com/dune-community/dune-gdt\n", - "0 ---> https://github.com/LEAF-BoiseState/janus\n", - "0 ---> https://github.com/mmbajo/PROBA-V\n", - "0 ---> https://github.com/koszullab/instaGRAAL\n", - "0 ---> https://github.com/clincolnoz/WorldBank_WDI_Visulization\n", - "3 ---> https://github.com/lifs-tools/jmzTab-m-webapp\n", - "0 ---> https://github.com/thieunguyen5991/mealpy\n", - "0 ---> https://github.com/sepandhaghighi/pycm\n", - "1 ---> https://github.com/fruchtfolge/client\n", - "7 ---> https://github.com/newcastle-living-lab/living-lab\n", - "9 ---> https://github.com/waqasbhatti/astrobase\n", - "0 ---> https://github.com/TECH-UB-24-Programming-DS-Spring-2020/notebooks\n", - "0 ---> https://github.com/hidrokit/hidrokit\n", - "0 ---> https://github.com/biosustain/gnomic\n", - "0 ---> https://github.com/digicademy/AskMoreXtension\n", - "0 ---> https://github.com/jnicoleoliveira/SPECData\n", - "0 ---> https://github.com/glotzerlab/signac-flow\n", - "0 ---> https://github.com/erdc/spt_compute\n", - "0 ---> https://github.com/maayane/PhotoManip\n", - "9 ---> https://github.com/ufbmi/mdc_tree\n", - "0 ---> https://github.com/VlachosGroup/vunits\n", - "0 ---> https://github.com/rhshah/iCallSV\n", - "0 ---> https://github.com/widdowquinn/SI_Holmes_etal_2020\n", - "5 ---> https://github.com/vemomoto/vemomoto\n", - "0 ---> https://github.com/nschloe/tikzplotlib\n", - "0 ---> https://github.com/msmbuilder/msmbuilder\n", - "0 ---> https://github.com/dmolina/shadeils\n", - "9 ---> https://github.com/spacetelescope/mirage\n", - "9 ---> https://github.com/dpla/ingestion\n", - "5 ---> https://github.com/bigbadcrad/PUFFIN\n", - "9 ---> https://github.com/Ouranosinc/xclim\n", - "0 ---> https://github.com/erdc/spt_dataset_manager\n", - "0 ---> https://github.com/jhrmnn/pyberny\n", - "5 ---> https://github.com/scharom16/evolutionary-nas-with-performance-estimation\n", - "0 ---> https://github.com/timm/shape\n", - "0 ---> https://github.com/JulianKarlBauer/mechkit\n", - "0 ---> https://github.com/gher-ulg/DINCAE\n", - "2 ---> https://github.com/eweitz/ideogram\n", - "9 ---> https://github.com/rinde/vanLon17-GPEM-code\n", - "9 ---> https://github.com/NESCent/dplace\n", - "0 ---> https://github.com/kkmann/optimal-binary-two-stage-designs\n", - "9 ---> https://github.com/pyoceans/python-oceans\n", - "0 ---> https://github.com/DiamondLightSource/Opt-ID\n", - "0 ---> https://github.com/salvadorgarciamunoz/kipet\n", - "0 ---> https://github.com/JasperHG90/sleepsimR-api\n", - "0 ---> https://github.com/njsmith/zs\n", - "0 ---> https://github.com/cicirello/JavaPermutationTools\n", - "0 ---> https://github.com/AndrewAnnex/SpiceyPy\n", - "5 ---> https://github.com/CESNET/perun-mitreid\n", - "0 ---> https://github.com/choderalab/itctools\n", - "0 ---> https://github.com/vpasumarthi/PyCD\n", - "0 ---> https://github.com/jiemakel/seco-hfst\n", - "6 ---> https://github.com/digitallinguistics/spec\n", - "0 ---> https://github.com/philippkraft/cmf\n", - "9 ---> https://github.com/fo-am/mongoose-2000\n", - "0 ---> https://github.com/snowformatics/macrobot\n", - "2 ---> https://github.com/kach/nearley\n", - "2 ---> https://github.com/direwolf/direwolf-app\n", - "6 ---> https://github.com/infraling/atomic\n", - "0 ---> https://github.com/samapriya/plantpy\n", - "0 ---> https://github.com/KatyBrown/CIAlign\n", - "0 ---> https://github.com/iteal/wormpose\n", - "0 ---> https://github.com/felixriese/susi\n", - "0 ---> https://github.com/proycon/codemetapy\n", - "0 ---> https://github.com/eblur/dust\n", - "0 ---> https://github.com/BioMoDeL/aesop\n", - "0 ---> https://github.com/bashtage/randomgen\n", - "0 ---> https://github.com/UT-CHG/BET\n", - "2 ---> https://github.com/bids-standard/bids-validator\n", - "0 ---> https://github.com/concepticon/pynorare\n", - "0 ---> https://github.com/nipy/PySurfer\n", - "0 ---> https://github.com/jeffreyruffolo/lamprey_rs_neuron_parameter_exploration\n", - "0 ---> https://github.com/harnesscloud/irm-nova\n", - "0 ---> https://github.com/obachem/kmc2\n", - "9 ---> https://github.com/biowdl/gatk-preprocess\n", - "0 ---> https://github.com/beOn/cili\n", - "4 ---> https://github.com/trendscenter/coinstac\n", - "3 ---> https://github.com/kuechenrole/antarctic_melting\n", - "0 ---> https://github.com/saketkc/moca\n", - "0 ---> https://github.com/PBR/MQ2\n", - "0 ---> https://github.com/ijpb/MorphoLibJ\n", - "0 ---> https://github.com/tesera/pygypsy\n", - "0 ---> https://github.com/ml-evs/ilustrado\n", - "9 ---> https://github.com/DeepRank/iScore\n", - "0 ---> https://github.com/fastscape-lem/fastscape\n", - "1 ---> https://github.com/yogo/sapphire\n", - "0 ---> https://github.com/BlueBrain/MorphIO\n", - "0 ---> https://github.com/bashtage/arch\n", - "0 ---> https://github.com/vsoch/TtoZ\n", - "0 ---> https://github.com/miurahr/pykakasi\n", - "0 ---> https://github.com/dalejn/cleanBib\n", - "0 ---> https://github.com/fail2ban/fail2ban\n", - "0 ---> https://github.com/mih/gumpdata\n", - "9 ---> https://github.com/compas-dev/compas_fab\n", - "9 ---> https://github.com/steelelab-delft/stlab\n", - "0 ---> https://github.com/mozillazg/python-pinyin\n", - "0 ---> https://github.com/aestimosolver/aestimo\n", - "0 ---> https://github.com/PyMVPA/PyMVPA\n", - "0 ---> https://github.com/eljost/pysisyphus\n", - "0 ---> https://github.com/mikahama/murre\n", - "3 ---> https://github.com/sbalci/clinicopathological\n", - "0 ---> https://github.com/arselzer/HTQueryOptimizer\n", - "0 ---> https://github.com/phenomecentre/ISTOCSY\n", - "9 ---> https://github.com/BerkeleyPhotonicsGenerator/BPG\n", - "0 ---> https://github.com/shiny-data-scientist/webscrap_pract_1\n", - "9 ---> https://github.com/GeoscienceAustralia/tcrm\n", - "9 ---> https://github.com/dputhier/pygtftk\n", - "0 ---> https://github.com/michaelaye/iuvs\n", - "0 ---> https://github.com/discsim/frank\n", - "0 ---> https://github.com/dguijo/TSOC\n" - ] - } - ], - "source": [ - "topic_dict = {}\n", - "for index,label in enumerate(labels):\n", - " topic_id = label\n", - " print(topic_id, '--->', rep_list[index])\n", - " \n", - " topic_dict[label] = topic_dict.get(label,[])\n", - " topic_dict[label].append(rep_list[index])" - ] - }, - { - "cell_type": "code", - "execution_count": 69, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "topic 0 : repos num: 2004\n", - "topic 1 : repos num: 59\n", - "topic 2 : repos num: 37\n", - "topic 3 : repos num: 118\n", - "topic 4 : repos num: 3\n", - "topic 5 : repos num: 202\n", - "topic 6 : repos num: 83\n", - "topic 7 : repos num: 11\n", - "topic 8 : repos num: 36\n", - "topic 9 : repos num: 459\n" - ] - } - ], - "source": [ - "for k in sorted(topic_dict.keys()):\n", - " print(f'topic {k} : repos num: {len(topic_dict[k])}')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Clustering - GMM" - ] - }, - { - "cell_type": "code", - "execution_count": 82, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/opt/anaconda3/envs/Knowledge_Graph/lib/python3.6/site-packages/ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `doctag_syn0` (Attribute will be removed in 4.0.0, use docvecs.vectors_docs instead).\n", - " \"\"\"Entry point for launching an IPython kernel.\n", - "/opt/anaconda3/envs/Knowledge_Graph/lib/python3.6/site-packages/ipykernel_launcher.py:2: DeprecationWarning: Call to deprecated `doctag_syn0` (Attribute will be removed in 4.0.0, use docvecs.vectors_docs instead).\n", - " \n" - ] - }, - { - "data": { - "text/plain": [ - "((3012, 10),\n", - " array([[3.83853395e-005, 1.60064351e-253, 0.00000000e+000, ...,\n", - " 5.89829455e-014, 0.00000000e+000, 9.99961615e-001],\n", - " [7.79539839e-006, 2.16666431e-252, 0.00000000e+000, ...,\n", - " 1.78288693e-012, 0.00000000e+000, 9.99992205e-001],\n", - " [9.67671120e-006, 0.00000000e+000, 0.00000000e+000, ...,\n", - " 4.93476052e-016, 0.00000000e+000, 9.99990323e-001],\n", - " ...,\n", - " [4.93449671e-005, 0.00000000e+000, 0.00000000e+000, ...,\n", - " 1.54121993e-014, 0.00000000e+000, 9.99950655e-001],\n", - " [9.69154455e-007, 5.86529082e-279, 0.00000000e+000, ...,\n", - " 1.22051508e-017, 0.00000000e+000, 9.99999031e-001],\n", - " [3.26109095e-007, 1.39024139e-312, 0.00000000e+000, ...,\n", - " 2.73686617e-019, 0.00000000e+000, 9.99999674e-001]]))" - ] - }, - "execution_count": 82, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "GMM = GaussianMixture(n_components=10).fit(d2v_model.docvecs.doctag_syn0)\n", - "probs = GMM.predict_proba(d2v_model.docvecs.doctag_syn0)\n", - "\n", - "probs.shape,probs" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Knowledge_Graph", - "language": "python", - "name": "knowledge_graph" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.6.10" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/cluster_analysis/.ipynb_checkpoints/topic_modeling-checkpoint.ipynb b/cluster_analysis/.ipynb_checkpoints/topic_modeling-checkpoint.ipynb deleted file mode 100644 index 5652bed..0000000 --- a/cluster_analysis/.ipynb_checkpoints/topic_modeling-checkpoint.ipynb +++ /dev/null @@ -1,5680 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Import Library" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [], - "source": [ - "import json\n", - "from pprint import pprint\n", - "\n", - "import gensim\n", - "import gensim.corpora as corpora\n", - "from gensim.models import CoherenceModel\n", - "\n", - "#Plotting tools\n", - "import pyLDAvis\n", - "import pyLDAvis.gensim # don't skip this \n", - "import matplotlib.pyplot as plt\n", - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Load Data \n", - "\n", - "variable: data format: {repo1: [...] , repo2: [...] }\n" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "repos nums: 3012\n", - "repos which have no dependency files: 0\n", - "repos with dependency files: 3012\n" - ] - } - ], - "source": [ - "input_file ='../data/result_13k.json'\n", - "with open(input_file) as f:\n", - " data = json.load(f)\n", - "print(f'repos nums: {len(data)}')\n", - "\n", - "need_to_remove = []\n", - "for k,v in data.items():\n", - " if 'No dependency' in v:\n", - " need_to_remove.append(k)\n", - "print(f'repos which have no dependency files: {len(need_to_remove)}')\n", - "\n", - "for k in need_to_remove:\n", - " del data[k]\n", - "print(f'repos with dependency files: {len(data)}')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## PreProcessing\n", - "1. Get distinct dependency file dictionary -> dep_dict\n", - "2. Sort dependency file by frequency. -> sort_dep" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Distinct dependency file: 15663\n", - "\n", - "Frequent dependency files: [('numpy', 1536), ('scipy', 982), ('matplotlib', 881), ('pandas', 840), ('pytest', 598), ('sphinx', 433), ('requests', 389), ('six', 339), ('scikit-learn', 296), ('pyyaml', 284), ('pytest-cov', 270), ('tqdm', 268), ('sphinx-rtd-theme', 251), ('ipython', 236), ('coverage', 224), ('python-dateutil', 224), ('seaborn', 205), ('h5py', 197), ('pytz', 197), ('jinja2', 191)]\n" - ] - } - ], - "source": [ - "rep_list,dep_list = [],[]\n", - "for k,v in data.items():\n", - " rep_list.append(k)\n", - " dep_list.append(v)\n", - " \n", - "dep_dict = {}\n", - "for deps in data.values():\n", - " for i in deps:\n", - " dep_dict[i] = dep_dict.get(i,0)+1\n", - "\n", - "print(f'Distinct dependency file: {len(dep_dict)}',end='\\n\\n')\n", - " \n", - "sort_dep = sorted(dep_dict.items(),key=lambda x: x[-1], reverse=True)\n", - "print(f'Frequent dependency files: {sort_dep[:20]}')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Word Embedding\n", - "1. Build dependency file index table -> id2word format: {0: 'ipython',1: 'jupyter-sphinx',....}\n", - "2. Build Corpus -> corpus format: [[repo1 info], [repo2 info] ] repo1_info: [ (dep1_id:fre), xxx ]\n", - "3. Build a LDA model" - ] - }, - { - "cell_type": "code", - "execution_count": 48, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "repos info: [(0, 1), (1, 1), (2, 1), (3, 1), (4, 1), (5, 1), (6, 1), (7, 1), (8, 1)]\n" - ] - }, - { - "data": { - "text/plain": [ - "[[('ipython', 1),\n", - " ('jupyter-sphinx', 1),\n", - " ('nbformat', 1),\n", - " ('nbsphinx', 1),\n", - " ('path-py', 1),\n", - " ('six', 1),\n", - " ('sphinx', 1),\n", - " ('sphinx-hoverxref', 1),\n", - " ('sphinx-rtd-theme', 1)]]" - ] - }, - "execution_count": 48, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# based on dep file names , build dep name dictionary\n", - "id2word = corpora.Dictionary(list(data.values())) # {0: 'emd-signal',1: 'numpy', 2: 'SQLAlchemy', 3: 'aiofiles' ....}\n", - "\n", - "# based on dep name dict and dep names, build corpus\n", - "corpus = [id2word.doc2bow(text) for text in list(data.values())] # [[(0, 1), (1, 1)],.....]\n", - "\n", - "\n", - "print(f'repos info: {corpus[0]}') #(0, 1)\n", - "\n", - "[[(id2word[id_], freq) for id_, freq in cp] for cp in corpus[:1]]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Build LDA model" - ] - }, - { - "cell_type": "code", - "execution_count": 51, - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[(0,\n", - " '0.013*\"flask-sqlalchemy\" + 0.011*\"flask-login\" + '\n", - " '0.008*\"com.beust:jcommander\" + 0.006*\"cors\" + 0.006*\"flask-script\" + '\n", - " '0.006*\"flask-migrate\" + 0.006*\"wtforms\" + 0.006*\"@types/jest\" + '\n", - " '0.005*\"flask-wtf\" + 0.005*\"blinker\"'),\n", - " (1,\n", - " '0.026*\"beautifulsoup4\" + 0.026*\"dask\" + 0.023*\"plotly\" + 0.012*\"sass\" + '\n", - " '0.010*\"pyasn1\" + 0.010*\"coffee-script\" + 0.010*\"docopt\" + '\n", - " '0.008*\"addressable\" + 0.008*\"json5\" + 0.008*\"ffi\"'),\n", - " (2,\n", - " '0.044*\"kiwisolver\" + 0.024*\"com.google.code.gson:gson\" + 0.023*\"selenium\" + '\n", - " '0.019*\"pycodestyle\" + 0.018*\"babel\" + 0.018*\"alabaster\" + 0.016*\"q\" + '\n", - " '0.016*\"snowballstemmer\" + 0.014*\"imagesize\" + 0.011*\"pyflakes\"'),\n", - " (3,\n", - " '0.105*\"numpy\" + 0.071*\"scipy\" + 0.064*\"matplotlib\" + 0.060*\"pandas\" + '\n", - " '0.040*\"pytest\" + 0.023*\"sphinx\" + 0.021*\"scikit-learn\" + 0.016*\"seaborn\" + '\n", - " '0.016*\"pytest-cov\" + 0.015*\"setuptools\"'),\n", - " (4,\n", - " '0.011*\"semver\" + 0.010*\"js-yaml\" + 0.009*\"tox\" + 0.008*\"inherits\" + '\n", - " '0.008*\"graphviz\" + 0.007*\"inflight\" + 0.007*\"ms\" + 0.007*\"isarray\" + '\n", - " '0.006*\"mem\" + 0.006*\"minimatch\"'),\n", - " (5,\n", - " '0.054*\"requests\" + 0.020*\"pyyaml\" + 0.019*\"certifi\" + 0.017*\"six\" + '\n", - " '0.017*\"jinja2\" + 0.016*\"attrs\" + 0.016*\"cffi\" + 0.016*\"idna\" + 0.015*\"mock\" '\n", - " '+ 0.015*\"netcdf4\"'),\n", - " (6,\n", - " '0.022*\"org.apache.maven.plugins:maven-compiler-plugin\" + '\n", - " '0.020*\"junit:junit\" + 0.014*\"org.apache.maven.plugins:maven-jar-plugin\" + '\n", - " '0.013*\"org.apache.maven.plugins:maven-surefire-plugin\" + '\n", - " '0.012*\"org.apache.maven.plugins:maven-javadoc-plugin\" + '\n", - " '0.012*\"org.apache.maven.plugins:maven-shade-plugin\" + '\n", - " '0.011*\"commons-cli:commons-cli\" + '\n", - " '0.010*\"org.apache.maven.plugins:maven-source-plugin\" + '\n", - " '0.008*\"org.postgresql:postgresql\" + 0.008*\"commons-io:commons-io\"'),\n", - " (7,\n", - " '0.020*\"python-dateutil\" + 0.015*\"markupsafe\" + 0.015*\"pyparsing\" + '\n", - " '0.015*\"decorator\" + 0.014*\"cycler\" + 0.012*\"jinja2\" + 0.011*\"pytz\" + '\n", - " '0.011*\"joblib\" + 0.011*\"pexpect\" + 0.011*\"pyzmq\"'),\n", - " (8,\n", - " '0.023*\"cartopy\" + 0.019*\"eslint-config-airbnb\" + 0.018*\"electron\" + '\n", - " '0.017*\"concurrently\" + 0.016*\"i18next\" + 0.016*\"electron-builder\" + '\n", - " '0.015*\"electron-devtools-installer\" + 0.014*\"@hapi/cryptiles\" + '\n", - " '0.014*\"electron-squirrel-startup\" + 0.014*\"connected-react-router\"'),\n", - " (9,\n", - " '0.004*\"jupyter\" + 0.004*\"acorn\" + 0.004*\"ansi-styles\" + 0.003*\"ansi-regex\" '\n", - " '+ 0.003*\"chalk\" + 0.003*\"@babel/core\" + 0.003*\"eslint\" + '\n", - " '0.003*\"brace-expansion\" + 0.003*\"@babel/preset-env\" + 0.003*\"concat-map\"')]\n" - ] - } - ], - "source": [ - "lda_model = gensim.models.ldamodel.LdaModel(corpus=corpus,\n", - " id2word=id2word,\n", - " num_topics=10, \n", - " random_state=100,\n", - " update_every=1,\n", - " chunksize=100,\n", - " passes=10,\n", - " alpha='auto',\n", - " per_word_topics=True)\n", - "pprint(lda_model.print_topics())" - ] - }, - { - "cell_type": "code", - "execution_count": 52, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Perplexity: -8.880674283106055\n", - "Coherence Score: 0.6355667452627967\n" - ] - } - ], - "source": [ - "# Compute Perplexity\n", - "print('Perplexity: ', lda_model.log_perplexity(corpus)) # a measure of how good the model is. lower the better.\n", - "\n", - "# Compute Coherence Score\n", - "coherence_model_lda = CoherenceModel(model=lda_model, texts=list(data.values()), dictionary=id2word, coherence='c_v')\n", - "coherence_lda = coherence_model_lda.get_coherence()\n", - "print('Coherence Score: ', coherence_lda)" - ] - }, - { - "cell_type": "code", - "execution_count": 53, - "metadata": { - "scrolled": false - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(0, '0.013*\"flask-sqlalchemy\" + 0.011*\"flask-login\" + 0.008*\"com.beust:jcommander\" + 0.006*\"cors\" + 0.006*\"flask-script\"')\n", - "(1, '0.026*\"beautifulsoup4\" + 0.026*\"dask\" + 0.023*\"plotly\" + 0.012*\"sass\" + 0.010*\"pyasn1\"')\n", - "(2, '0.044*\"kiwisolver\" + 0.024*\"com.google.code.gson:gson\" + 0.023*\"selenium\" + 0.019*\"pycodestyle\" + 0.018*\"babel\"')\n", - "(3, '0.105*\"numpy\" + 0.071*\"scipy\" + 0.064*\"matplotlib\" + 0.060*\"pandas\" + 0.040*\"pytest\"')\n", - "(4, '0.011*\"semver\" + 0.010*\"js-yaml\" + 0.009*\"tox\" + 0.008*\"inherits\" + 0.008*\"graphviz\"')\n", - "(5, '0.054*\"requests\" + 0.020*\"pyyaml\" + 0.019*\"certifi\" + 0.017*\"six\" + 0.017*\"jinja2\"')\n", - "(6, '0.022*\"org.apache.maven.plugins:maven-compiler-plugin\" + 0.020*\"junit:junit\" + 0.014*\"org.apache.maven.plugins:maven-jar-plugin\" + 0.013*\"org.apache.maven.plugins:maven-surefire-plugin\" + 0.012*\"org.apache.maven.plugins:maven-javadoc-plugin\"')\n", - "(7, '0.020*\"python-dateutil\" + 0.015*\"markupsafe\" + 0.015*\"pyparsing\" + 0.015*\"decorator\" + 0.014*\"cycler\"')\n", - "(8, '0.023*\"cartopy\" + 0.019*\"eslint-config-airbnb\" + 0.018*\"electron\" + 0.017*\"concurrently\" + 0.016*\"i18next\"')\n", - "(9, '0.004*\"jupyter\" + 0.004*\"acorn\" + 0.004*\"ansi-styles\" + 0.003*\"ansi-regex\" + 0.003*\"chalk\"')\n" - ] - } - ], - "source": [ - "# Show the top 5 words of each topic\n", - "for topic in lda_model.print_topics(num_words=5):\n", - " print(topic)" - ] - }, - { - "cell_type": "code", - "execution_count": 61, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "((3012, 10),\n", - " array([[0.01560236, 0.07957503, 0.06580058, ..., 0.2006868 , 0.0221843 ,\n", - " 0.08951548],\n", - " [0.01560236, 0.07957509, 0.06580059, ..., 0.19480723, 0.0221843 ,\n", - " 0.08951551],\n", - " [0.01560236, 4.079008 , 0.06580058, ..., 2.8627398 , 0.0221843 ,\n", - " 0.08951548],\n", - " ...,\n", - " [0.01560236, 0.07957502, 0.06580058, ..., 0.19474855, 0.0221843 ,\n", - " 0.08951548],\n", - " [0.01560236, 0.07957502, 0.06580058, ..., 0.19474855, 0.0221843 ,\n", - " 0.08951548],\n", - " [0.01560236, 0.07957502, 0.06580058, ..., 0.19474855, 0.0221843 ,\n", - " 0.08951548]], dtype=float32))" - ] - }, - "execution_count": 61, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# get the possible of each topic\n", - "lda_model.inference(corpus)[0].shape,lda_model.inference(corpus)[0]" - ] - }, - { - "cell_type": "code", - "execution_count": 62, - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "inference :\n", - "3 ---> https://github.com/AgriculturalModelExchangeInitiative/Crop2ML\n", - "5 ---> https://github.com/natcap/natgeo-dams\n", - "3 ---> https://github.com/hlgirard/CrystalML\n", - "3 ---> https://github.com/houghb/ligpy\n", - "3 ---> https://github.com/oschwengers/referenceseeker\n", - "3 ---> https://github.com/LPDI-EPFL/trivalent_cocktail\n", - "3 ---> https://github.com/CIRA-Pulsars-and-Transients-Group/vcstools\n", - "3 ---> https://github.com/usc-isi-i2/kgtk\n", - "3 ---> https://github.com/garciagenrique/template_project_escape\n", - "2 ---> https://github.com/gwu-libraries/sfm-docker\n", - "6 ---> https://github.com/javaparser/javaparser\n", - "3 ---> https://github.com/williamjameshandley/anesthetic\n", - "3 ---> https://github.com/yardencsGitHub/tweetynet\n", - "3 ---> https://github.com/jagalindo/A-Python-QX-implementation\n", - "3 ---> https://github.com/jbkinney/mavenn\n", - "3 ---> https://github.com/GeoCode-polymtl/Seis_float16\n", - "3 ---> https://github.com/sebp/scikit-survival\n", - "5 ---> https://github.com/similitude/sumo-simmer\n", - "6 ---> https://github.com/GlobalNamesArchitecture/gnresolver\n", - "9 ---> https://github.com/nevenjovanovic/treebank-polybius\n", - "3 ---> https://github.com/Biophotonics-COMI/flimview\n", - "3 ---> https://github.com/joshspeagle/brutus\n", - "4 ---> https://github.com/metomi/isodatetime\n", - "5 ---> https://github.com/indralab/pybiopax\n", - "9 ---> https://github.com/FNNDSC/ChRIS_ui\n", - "7 ---> https://github.com/openphacts/explorer2\n", - "3 ---> https://github.com/TDAmeritrade/stumpy\n", - "3 ---> https://github.com/habi/acinar-analysis\n", - "3 ---> https://github.com/mbernste/hypothesis-driven-SRA-queries\n", - "1 ---> https://github.com/JiaxiangBU/dynamic_topic_modeling\n", - "7 ---> https://github.com/KnowledgeCaptureAndDiscovery/OBA_sparql\n", - "3 ---> https://github.com/maxscheurer/cppe\n", - "3 ---> https://github.com/Sung-Huan/ANNOgesic\n", - "6 ---> https://github.com/mayconbordin/storm-applications\n", - "3 ---> https://github.com/gauteh/ibcao_py\n", - "9 ---> https://github.com/GLAM-Workbench/te-papa-api\n", - "6 ---> https://github.com/cerebis/shap\n", - "7 ---> https://github.com/K3D-tools/K3D-jupyter\n", - "9 ---> https://github.com/CCMi-FIT/ontouml-code-generator\n", - "9 ---> https://github.com/diging/tethne\n", - "3 ---> https://github.com/mmhs013/pyHomogeneity\n", - "3 ---> https://github.com/bukhsh/oats\n", - "3 ---> https://github.com/mukil/pmic\n", - "3 ---> https://github.com/pySTEPS/pysteps\n", - "3 ---> https://github.com/groupeLIAMG/ttcr\n", - "3 ---> https://github.com/oujago/NumpyDL\n", - "9 ---> https://github.com/xldrkp/zocurelia\n", - "9 ---> https://github.com/encompasslabs/encompass-aquiferium\n", - "3 ---> https://github.com/deniederhut/niacin\n", - "3 ---> https://github.com/ZurichNLP/xstance\n", - "3 ---> https://github.com/raotnameh/End-to-end-E2E-Named-Entity-Recognition-from-English-Speech\n", - "5 ---> https://github.com/clincolnoz/maDMP-rocrates-maDMP\n", - "6 ---> https://github.com/thorstenwagner/ij-trajectory-classifier\n", - "3 ---> https://github.com/danielrd6/ifscube\n", - "3 ---> https://github.com/esteinig/sketchy\n", - "3 ---> https://github.com/opium-sh/prl\n", - "9 ---> https://github.com/maikherbig/AIDeveloper\n", - "3 ---> https://github.com/LFPy/LFPy\n", - "8 ---> https://github.com/aalzubidy/ssrt\n", - "3 ---> https://github.com/1QB-Information-Technologies/COOL\n", - "3 ---> https://github.com/morpheus-project/morpheus\n", - "7 ---> https://github.com/firedrakeproject/firedrake\n", - "3 ---> https://github.com/leal26/AeroPy\n", - "3 ---> https://github.com/arose/nglview\n", - "3 ---> https://github.com/jpgill86/neurotic\n", - "7 ---> https://github.com/MegaAttitude/frequency-acceptability-selection\n", - "3 ---> https://github.com/bertrandcz/CrocO_toolbox\n", - "3 ---> https://github.com/andsor/gridjug\n", - "3 ---> https://github.com/stfxecutables/empyricalRMT\n", - "3 ---> https://github.com/wmayner/pyphi\n", - "9 ---> https://github.com/isle-project/isle-editor\n", - "9 ---> https://github.com/cytoscape/cytoscape.js\n", - "2 ---> https://github.com/dejac001/MCFlow\n", - "5 ---> https://github.com/dragoon/kilogram\n", - "3 ---> https://github.com/pysal/spaghetti\n", - "3 ---> https://github.com/brisskit-uol/i2b2-install-procedures\n", - "3 ---> https://github.com/bast/runtest\n", - "3 ---> https://github.com/VarIr/scikit-hubness\n", - "6 ---> https://github.com/qbicsoftware/omero-client-portlet\n", - "4 ---> https://github.com/jyrkioraskari/IFCtoLBD_OpenAPI\n", - "3 ---> https://github.com/wright-group/WrightTools\n", - "3 ---> https://github.com/CamDavidsonPilon/lifelines\n", - "3 ---> https://github.com/tpall/pynodo\n", - "3 ---> https://github.com/rmkoesterer/uga\n", - "5 ---> https://github.com/proycon/clam\n", - "3 ---> https://github.com/GoekeLab/xpore\n", - "3 ---> https://github.com/ml-evs/matador\n", - "3 ---> https://github.com/stefsmeets/instamatic\n", - "3 ---> https://github.com/danxhuber/isoclassify\n", - "3 ---> https://github.com/proycon/colibri-core\n", - "6 ---> https://github.com/Yi-ran/Omnetpp\n", - "3 ---> https://github.com/alielhassouni/rl-multi-agent-simulation-for-e-health\n", - "5 ---> https://github.com/PTB-PSt1/time-series-metadata\n", - "3 ---> https://github.com/amueller/patsylearn\n", - "6 ---> https://github.com/globalbioticinteractions/globalbioticinteractions\n", - "7 ---> https://github.com/jiemakel/snapper\n", - "4 ---> https://github.com/digitallinguistics/scription2dlx\n", - "3 ---> https://github.com/lacava/few\n", - "3 ---> https://github.com/mheikenfeld/ramscube\n", - "3 ---> https://github.com/python-pillow/Pillow\n", - "3 ---> https://github.com/Silmathoron/NNGT\n", - "4 ---> https://github.com/RubenVerborgh/WebFundamentals\n", - "3 ---> https://github.com/ariercole/Cambridge_COVID-19_ICU\n", - "6 ---> https://github.com/JDRomano2/smdb_search\n", - "3 ---> https://github.com/matthiasweiss/dsue1-2020s\n", - "3 ---> https://github.com/jenojp/negspacy\n", - "3 ---> https://github.com/MartinPdS/OCT_calibration\n", - "3 ---> https://github.com/cmsopendata-finland/kurssimateriaali\n", - "7 ---> https://github.com/africanmathsinitiative/R-Instat\n", - "5 ---> https://github.com/SDM-TIB/SDM-RDFizer\n", - "3 ---> https://github.com/HERA-Team/librarian\n", - "3 ---> https://github.com/tkralphs/CuPPy\n", - "3 ---> https://github.com/r9y9/pylibfreenect2\n", - "7 ---> https://github.com/dmj/PicaRecord\n", - "5 ---> https://github.com/smartbugs/smartbugs\n", - "9 ---> https://github.com/Andros-Spica/EAA2018_ceramics\n", - "3 ---> https://github.com/arm61/uravu\n", - "7 ---> https://github.com/casmlab/facebook_group_collector\n", - "1 ---> https://github.com/vboyce/Maze\n", - "3 ---> https://github.com/acoular/acoular\n", - "5 ---> https://github.com/smarie/python-autoclass\n", - "3 ---> https://github.com/underworldcode/UWGeodynamics\n", - "6 ---> https://github.com/clij/clij2\n", - "3 ---> https://github.com/sherbold/autorank\n", - "6 ---> https://github.com/saschneider/VMV\n", - "3 ---> https://github.com/CENER-EPR/OWAbench\n", - "3 ---> https://github.com/tempdata73/tic-tac-toe\n", - "9 ---> https://github.com/molbiodiv/biojs-io-biom\n", - "5 ---> https://github.com/olivettigroup/article-downloader\n", - "9 ---> https://github.com/leilaicruz/Experimental-journal-deploy\n", - "6 ---> https://github.com/ltrr-arizona-edu/tellervo\n", - "6 ---> https://github.com/egonw/jqudt\n", - "3 ---> https://github.com/catalyst-cooperative/pudl\n", - "3 ---> https://github.com/TUDelft-CITG/OpenTISim\n", - "5 ---> https://github.com/hipster-philology/nlp-pie-taggers\n", - "3 ---> https://github.com/martinlackner/abcvoting\n", - "3 ---> https://github.com/pv/fimport\n", - "3 ---> https://github.com/nextgenusfs/funannotate\n", - "3 ---> https://github.com/cmccoy/ighutil\n", - "5 ---> https://github.com/kylemede/ExoSOFT\n", - "3 ---> https://github.com/AOtools/aotools\n", - "3 ---> https://github.com/weecology/retriever\n", - "3 ---> https://github.com/mdolab/idwarp\n", - "6 ---> https://github.com/paberlo/FastFeatureSelection\n", - "3 ---> https://github.com/davidrpugh/pyAM\n", - "5 ---> https://github.com/wateraccounting/IHEWAcollect\n", - "3 ---> https://github.com/N3PDF/yadism\n", - "3 ---> https://github.com/JohannesBuchner/snowline\n", - "3 ---> https://github.com/pychebfun/pychebfun\n", - "3 ---> https://github.com/mmadsen/ctmixtures\n", - "3 ---> https://github.com/coin-or/GiMPy\n", - "3 ---> https://github.com/hibernator11/notebook-lod-libraries\n", - "6 ---> https://github.com/GlobalNamesArchitecture/gn_uuid\n", - "3 ---> https://github.com/muammar/heisenberg\n", - "3 ---> https://github.com/spex-xray/pyspextools\n", - "3 ---> https://github.com/csdms/pymt\n", - "3 ---> https://github.com/santiago1234/MZT-rna-stability\n", - "3 ---> https://github.com/sehero/lua\n", - "5 ---> https://github.com/sepandhaghighi/qpage\n", - "3 ---> https://github.com/qmlcode/qml\n", - "3 ---> https://github.com/dmyersturnbull/tyrannosaurus\n", - "6 ---> https://github.com/wild-fire/twitter-graph-segmenter\n", - "3 ---> https://github.com/alcantarar/dryft\n", - "3 ---> https://github.com/DaniloZZZ/Qensor\n", - "6 ---> https://github.com/jfsantos/mushra-ruby-server\n", - "3 ---> https://github.com/MaayanLab/Zika-RNAseq-Pipeline\n", - "3 ---> https://github.com/pyReef-model/RADWave\n", - "3 ---> https://github.com/src-d/kmcuda\n", - "3 ---> https://github.com/perrygeo/pyimpute\n", - "3 ---> https://github.com/toshas/torch-fidelity\n", - "5 ---> https://github.com/intermine/intermine\n", - "3 ---> https://github.com/SasView/sasview\n", - "8 ---> https://github.com/SommerEngineering/NoiseEngine\n", - "9 ---> https://github.com/mathjax/MathJax-src\n", - "5 ---> https://github.com/IFCA/keystone-voms\n", - "3 ---> https://github.com/zfit/zfit-physics\n", - "3 ---> https://github.com/abhi1693/yii2-system-info\n", - "3 ---> https://github.com/harmslab/pytc\n", - "3 ---> https://github.com/biosustain/pyrcos\n", - "3 ---> https://github.com/CNRGH/contatester\n", - "3 ---> https://github.com/pcko1/Deep-Drug-Coder\n", - "3 ---> https://github.com/gree-gorey/rusclasp\n", - "3 ---> https://github.com/chartes/deucalion-model-lasla\n", - "9 ---> https://github.com/zero323/developing-data-products-shiny\n", - "9 ---> https://github.com/etnbrd/flx-example\n", - "7 ---> https://github.com/dalmia/siren\n", - "9 ---> https://github.com/sanshu/protaeljs\n", - "5 ---> https://github.com/dev-cafe/autocmake\n", - "5 ---> https://github.com/whitemech/LTLf2DFA\n", - "3 ---> https://github.com/SanneHoeken/HEEM-Data-Extractions\n", - "5 ---> https://github.com/cayolopesbc/eco-data-toolkit\n", - "3 ---> https://github.com/fliem/cpr\n", - "7 ---> https://github.com/Capitains/Hook-Worker\n", - "5 ---> https://github.com/OSSOS/liborbfit\n", - "3 ---> https://github.com/r9y9/nnmnkwii\n", - "7 ---> https://github.com/rdmorganiser/rdmo\n", - "9 ---> https://github.com/karimamufidah/karimamufidah.github.io\n", - "7 ---> https://github.com/assafZaritskyLab/IRM-Spreading-Dynamics\n", - "3 ---> https://github.com/paudetseis/PlateCurie\n", - "3 ---> https://github.com/cyclops-community/tensorbackends\n", - "3 ---> https://github.com/astrofle/CRRLpy\n", - "3 ---> https://github.com/stanford-futuredata/Willump\n", - "6 ---> https://github.com/petebrew/fhaes\n", - "2 ---> https://github.com/tferr/hIPNAT\n", - "7 ---> https://github.com/cescalara/minieuso_cpu\n", - "3 ---> https://github.com/phiweger/zoo\n", - "3 ---> https://github.com/shenlab-sinai/region_analysis\n", - "5 ---> https://github.com/duncanmmacleod/requests-ecp\n", - "9 ---> https://github.com/biasmv/pv\n", - "3 ---> https://github.com/podondra/bt-spectraldl\n", - "3 ---> https://github.com/ubermag/micromagnetictests\n", - "3 ---> https://github.com/amunozj/magnetograph_2HMI_converter\n", - "3 ---> https://github.com/r9y9/pysptk\n", - "3 ---> https://github.com/michaelaye/venim\n", - "6 ---> https://github.com/justinnk/bss-simulation-study\n", - "9 ---> https://github.com/LDflex/LDflex\n", - "3 ---> https://github.com/FAST-HEP/fast-carpenter\n", - "3 ---> https://github.com/lpwgroup/torsiondrive\n", - "7 ---> https://github.com/CCS-Lab/easyml\n", - "3 ---> https://github.com/datajoint/datajoint-python\n", - "3 ---> https://github.com/hallamlab/mlLGPR\n", - "3 ---> https://github.com/cmbant/CosmoMC\n", - "3 ---> https://github.com/lukasValentin/OBIA4RTM\n", - "6 ---> https://github.com/bowsersenior/itu_codes\n", - "3 ---> https://github.com/loostrum/darc\n", - "3 ---> https://github.com/sdorkenw/MeshParty\n", - "3 ---> https://github.com/RadioAstronomySoftwareGroup/pyuvsim\n", - "9 ---> https://github.com/cggh/panoptes\n", - "5 ---> https://github.com/experimaestro/datamaestro\n", - "6 ---> https://github.com/ruby-rdf/rdf\n", - "5 ---> https://github.com/ARGOeu/argo-api-authn\n", - "1 ---> https://github.com/NBISweden/workshop_omics_integration\n", - "5 ---> https://github.com/PyThaiNLP/Thai-Text-Generator\n", - "3 ---> https://github.com/aditya95sriram/td-slim\n", - "3 ---> https://github.com/geoopt/geoopt\n", - "3 ---> https://github.com/jswoboda/ISRSpectrum\n", - "3 ---> https://github.com/jonschwenk/RivGraph\n", - "3 ---> https://github.com/thoppe/Encyclopedia-of-Finite-Graphs\n", - "3 ---> https://github.com/Ry-C123/LazyPSF\n", - "9 ---> https://github.com/bionode/bionode-sra\n", - "3 ---> https://github.com/tjof2/ctrwfractal\n", - "3 ---> https://github.com/MatthewBCooke/Pathfinder\n", - "3 ---> https://github.com/connectomicslab/connectomemapper3\n", - "3 ---> https://github.com/rpep/fmmgen\n", - "7 ---> https://github.com/bionode/bionode-bbi\n", - "3 ---> https://github.com/griffin-h/superphot\n", - "9 ---> https://github.com/neuroscout/neuroscout\n", - "7 ---> https://github.com/tsamsonov/generalize-dem\n", - "6 ---> https://github.com/comodide/CoModIDE\n", - "3 ---> https://github.com/cscully-allison/Materia\n", - "6 ---> https://github.com/dnet-team/dnet-basic-aggregator\n", - "3 ---> https://github.com/tschaume/ccsgp_get_started\n", - "3 ---> https://github.com/discos/discos-backend\n", - "3 ---> https://github.com/wmayner/pyemd\n", - "3 ---> https://github.com/drsteve/PyForecastTools\n", - "4 ---> https://github.com/nickk124/RCR\n", - "3 ---> https://github.com/rmsolgi/geneticalgorithm\n", - "3 ---> https://github.com/mmhs013/pyMannKendall\n", - "6 ---> https://github.com/fusion-jena/abecto\n", - "3 ---> https://github.com/TerrainBento/terrainbento\n", - "3 ---> https://github.com/mwaskom/seaborn\n", - "3 ---> https://github.com/florafauna/optimParallel-python\n", - "3 ---> https://github.com/pietrobarbiero/evofs\n", - "3 ---> https://github.com/IsaacCorley/pytorch-enhance\n", - "3 ---> https://github.com/ecell/ecell4\n", - "3 ---> https://github.com/mirnylab/bioframe\n", - "3 ---> https://github.com/dean0x7d/pybinding\n", - "3 ---> https://github.com/janmtl/pypsych\n", - "3 ---> https://github.com/lcharleux/abapy\n", - "1 ---> https://github.com/pyhf/neos\n", - "7 ---> https://github.com/CiTR/djland\n", - "3 ---> https://github.com/nuest/ten-simple-rules-dockerfiles\n", - "3 ---> https://github.com/OpenSourceEconomics/ruspy\n", - "6 ---> https://github.com/ameyaKetkar/TypeChangeMiner\n", - "3 ---> https://github.com/lingfeiwang/normalisr\n", - "3 ---> https://github.com/ShuhuaGao/geppy\n", - "5 ---> https://github.com/bgruening/galaxy_ie_helpers\n", - "5 ---> https://github.com/pyvideo/data\n", - "3 ---> https://github.com/azedarach/matrix-factorization-case-studies\n", - "5 ---> https://github.com/driplineorg/dripline-python\n", - "3 ---> https://github.com/LoLab-VU/Gleipnir\n", - "3 ---> https://github.com/uwmadison-chm/scorify\n", - "9 ---> https://github.com/NESCent/fcdb-api\n", - "3 ---> https://github.com/csu-hmc/GaitAnalysisToolKit\n", - "7 ---> https://github.com/bakery-cg2at/bakery\n", - "3 ---> https://github.com/radical-cybertools/radical.synapse\n", - "3 ---> https://github.com/MaineKuehn/usim\n", - "6 ---> https://github.com/ag-gipp/FormulaCloudData\n", - "3 ---> https://github.com/astrom-tom/dfitspy\n", - "9 ---> https://github.com/SP7-Ritmare/EDI-NG_client\n", - "5 ---> https://github.com/jona-sassenhagen/statfail\n", - "3 ---> https://github.com/spacetelescope/jwql\n", - "3 ---> https://github.com/ePSIC-DLS/ParticleSpy\n", - "3 ---> https://github.com/N3PDF/pineappl\n", - "6 ---> https://github.com/rinde/vanLon17-JAAMAS-code\n", - "5 ---> https://github.com/pitthsls/pycounter\n", - "3 ---> https://github.com/hippylib/hippylib\n", - "3 ---> https://github.com/felixriese/CNN-SoilTextureClassification\n", - "3 ---> https://github.com/IQuOD/wodpy\n", - "3 ---> https://github.com/ahendriksen/msd_pytorch\n", - "9 ---> https://github.com/tobysmith568/TestEnv\n", - "6 ---> https://github.com/lucasberent/ds\n", - "3 ---> https://github.com/sgoldenlab/simba\n", - "7 ---> https://github.com/jonathanmorgan/django_config\n", - "9 ---> https://github.com/IbrahimTanyalcin/RafX\n", - "3 ---> https://github.com/mdolab/adflow\n", - "7 ---> https://github.com/Phylu/csd\n", - "9 ---> https://github.com/ebmdatalab/trialstracker\n", - "6 ---> https://github.com/datapoet/hubminer\n", - "2 ---> https://github.com/midas-isg/PITT-SEIR-model\n", - "9 ---> https://github.com/zakandrewking/escher\n", - "9 ---> https://github.com/EMAPS/climaps-platform\n", - "3 ---> https://github.com/OpenChemistry/tomviz\n", - "9 ---> https://github.com/yeeking/evosynth\n", - "6 ---> https://github.com/rinde/vanLon16-EJOR-code\n", - "4 ---> https://github.com/biowdl/QC\n", - "1 ---> https://github.com/intelaligent/tctb\n", - "6 ---> https://github.com/rinde/RinLog\n", - "3 ---> https://github.com/sertansenturk/seyiranalyzer\n", - "3 ---> https://github.com/sertansenturk/alignednotemodel\n", - "3 ---> https://github.com/miklos1/dijitso\n", - "2 ---> https://github.com/smart-facility/cognicity-reports-twitter\n", - "9 ---> https://github.com/speckleworks/SpeckleServer\n", - "3 ---> https://github.com/schwemro/diag-eff\n", - "7 ---> https://github.com/jacobwindsor/MetabMaster\n", - "3 ---> https://github.com/NLeSC/mcfly\n", - "3 ---> https://github.com/hahnec/plenopticam\n", - "3 ---> https://github.com/ICB-DCM/AMICI\n", - "3 ---> https://github.com/kundajelab/abstention\n", - "9 ---> https://github.com/qPRC/qPRC\n", - "9 ---> https://github.com/ecds/readux\n", - "5 ---> https://github.com/cemac/COMET_VolcDB\n", - "3 ---> https://github.com/transientlunatic/otter\n", - "3 ---> https://github.com/dftlibs/xcfun\n", - "5 ---> https://github.com/IKNL/vantage6\n", - "8 ---> https://github.com/PhiliPdB/treedepth-exact\n", - "5 ---> https://github.com/deniederhut/weather_report\n", - "4 ---> https://github.com/biowdl/structural-variantcalling\n", - "3 ---> https://github.com/kikuchipy/kikuchipy\n", - "4 ---> https://github.com/LispTO/llthw\n", - "9 ---> https://github.com/cfe-lab/Kive\n", - "3 ---> https://github.com/gpauloski/kfac_pytorch\n", - "3 ---> https://github.com/materialsproject/pymatgen\n", - "3 ---> https://github.com/douglasdavis/pygram11\n", - "3 ---> https://github.com/jrkerns/pylinac\n", - "6 ---> https://github.com/dvasilen/Hive-XML-SerDe\n", - "7 ---> https://github.com/rubenarslan/formr.org\n", - "5 ---> https://github.com/yannforget/pylandsat\n", - "6 ---> https://github.com/gousiosg/pullreqs\n", - "1 ---> https://github.com/kantale/MutationInfo\n", - "3 ---> https://github.com/kdberends/coral\n", - "3 ---> https://github.com/llondon6/positive\n", - "5 ---> https://github.com/josecastillolema/mini-nfv\n", - "7 ---> https://github.com/driehle/emobility-search-engine\n", - "3 ---> https://github.com/LiyrAstroph/CDNest\n", - "3 ---> https://github.com/pysal/giddy\n", - "3 ---> https://github.com/LeeBergstrand/BackBLAST_Reciprocal_BLAST\n", - "3 ---> https://github.com/JanaLasser/salt-polygons-are-caused-by-convection\n", - "3 ---> https://github.com/mediawiki-utilities/python-mwreverts\n", - "3 ---> https://github.com/rbnvrw/semtracking\n", - "3 ---> https://github.com/coin-or/GrUMPy\n", - "3 ---> https://github.com/nist-ionstorage/pdq2\n", - "3 ---> https://github.com/TLCFEM/suanPan\n", - "3 ---> https://github.com/dlilien/ImpDAR\n", - "3 ---> https://github.com/ihrke/pypillometry\n", - "3 ---> https://github.com/willpearse/stalkless\n", - "6 ---> https://github.com/mmhss/sstrong-webhook\n", - "8 ---> https://github.com/RobotExMachina/Machina.NET\n", - "7 ---> https://github.com/tripal/private_biodata\n", - "9 ---> https://github.com/brown-ccv/neuro-task-starter\n", - "3 ---> https://github.com/FractalMedia/wheresmunna\n", - "3 ---> https://github.com/vivekbhr/scRIApipe\n", - "3 ---> https://github.com/coin-or/pulp\n", - "3 ---> https://github.com/Titan-C/slaveparticles\n", - "6 ---> https://github.com/GlobalNamesArchitecture/gn_crossmap\n", - "5 ---> https://github.com/indigo-dc/DEEPaaS\n", - "9 ---> https://github.com/densitymodelling/dsmextra\n", - "7 ---> https://github.com/SandstoneHPC/sandstone-spawner\n", - "5 ---> https://github.com/ENCODE-DCC/atac-seq-pipeline\n", - "3 ---> https://github.com/pnuehrenberg/multiviewtracks\n", - "5 ---> https://github.com/cerndb/dist-keras\n", - "7 ---> https://github.com/CESNET/proxystatistics-simplesamlphp-module\n", - "5 ---> https://github.com/MatterMiners/cobald\n", - "9 ---> https://github.com/asherpasha/Araport_GeneSlider\n", - "3 ---> https://github.com/matthewfeickert/IRIS-HEP-2020-Poster-Session\n", - "3 ---> https://github.com/r4ecology/nctoolkit\n", - "3 ---> https://github.com/transientlunatic/heron\n", - "3 ---> https://github.com/capaulson/pyKriging\n", - "3 ---> https://github.com/VlachosGroup/jl_spectra_2_structure\n", - "7 ---> https://github.com/NCBI-Hackathons/Structural_Variant_Comparison\n", - "3 ---> https://github.com/wradlib/wradlib\n", - "3 ---> https://github.com/CICE-Consortium/CICE\n", - "3 ---> https://github.com/sherpa/sherpa\n", - "3 ---> https://github.com/toros-astro/astroalign\n", - "3 ---> https://github.com/bootphon/ABXpy\n", - "9 ---> https://github.com/HuckleyLab/phyto-mhw\n", - "3 ---> https://github.com/pdxgx/neoepiscope\n", - "3 ---> https://github.com/danforthcenter/plantcv\n", - "3 ---> https://github.com/jkitchin/pycse\n", - "3 ---> https://github.com/rraadd88/rohan\n", - "3 ---> https://github.com/compas-dev/compas_fea\n", - "5 ---> https://github.com/Remdeht/ia_detector\n", - "3 ---> https://github.com/justagist/panda_simulator\n", - "3 ---> https://github.com/stemtool/stemtool\n", - "3 ---> https://github.com/mkoeppe/sage-numerical-interactive-mip\n", - "3 ---> https://github.com/Nu-AI/Livid-About-COVID\n", - "3 ---> https://github.com/PyLorentz/PyLorentz\n", - "7 ---> https://github.com/firedrakeproject/loopy\n", - "3 ---> https://github.com/ctsit/dxster\n", - "7 ---> https://github.com/bodkan/archaic-ychr\n", - "3 ---> https://github.com/PhysicsOfMobility/ridesharing_topology_dependence\n", - "3 ---> https://github.com/SuperKam91/twentyoneflow\n", - "5 ---> https://github.com/gwpy/gwosc\n", - "3 ---> https://github.com/duartegroup/cgbind\n", - "3 ---> https://github.com/raphaelvallat/pingouin\n", - "3 ---> https://github.com/pnlbwh/dMRIharmonization\n", - "5 ---> https://github.com/choderalab/assaytools\n", - "3 ---> https://github.com/cryotools/cosipy\n", - "3 ---> https://github.com/N3PDF/vegasflow\n", - "3 ---> https://github.com/althonos/pronto\n", - "3 ---> https://github.com/nipy/nipype\n", - "5 ---> https://github.com/sgrieve/sinuosity\n", - "3 ---> https://github.com/boivinalex/permittivitycalc\n", - "3 ---> https://github.com/BlueBrain/NeuroR\n", - "3 ---> https://github.com/Curtin-Open-Knowledge-Initiative/institutional-oa-evaluation-2020\n", - "3 ---> https://github.com/dgasmith/opt_einsum\n", - "3 ---> https://github.com/knutankv/koma\n", - "3 ---> https://github.com/foerstner-lab/READemption\n", - "3 ---> https://github.com/matthiaskoenig/fbc_curation\n", - "9 ---> https://github.com/dmitriz/cpsfy\n", - "3 ---> https://github.com/sdey135/rtapylysis\n", - "3 ---> https://github.com/CICE-Consortium/Icepack\n", - "3 ---> https://github.com/Nikoleta-v3/blackbook\n", - "7 ---> https://github.com/daniel-dpk/distorted-motsfinder-public\n", - "3 ---> https://github.com/StevenGolovkine/FDApy\n", - "3 ---> https://github.com/Leinadj/CREAM\n", - "3 ---> https://github.com/wjlei1990/spaceweight\n", - "3 ---> https://github.com/genomematt/AmBiVErT\n", - "9 ---> https://github.com/InsightSoftwareConsortium/itk-js\n", - "6 ---> https://github.com/owlcollab/expression-materializing-reasoner\n", - "3 ---> https://github.com/PEtab-dev/PEtab\n", - "3 ---> https://github.com/ziatdinovmax/GPim\n", - "3 ---> https://github.com/gwappa/fitting2d\n", - "5 ---> https://github.com/aeonium/fakedatacite\n", - "3 ---> https://github.com/boolsi/boolsi\n", - "3 ---> https://github.com/TomMonks/forecast-tools\n", - "4 ---> https://github.com/biowdl/tasks\n", - "3 ---> https://github.com/holoviz/hvplot\n", - "3 ---> https://github.com/mathjax/MathJax\n", - "5 ---> https://github.com/gwu-libraries/sfm-utils\n", - "3 ---> https://github.com/ci-group/revolve\n", - "3 ---> https://github.com/matthiaskoenig/sbmlsim\n", - "3 ---> https://github.com/biobakery/phylophlan\n", - "9 ---> https://github.com/rodighiero/COVID-19\n", - "7 ---> https://github.com/qzhu2017/PyXtal\n", - "3 ---> https://github.com/pnlbwh/multi-shell-dMRIharmonization\n", - "3 ---> https://github.com/loostrum/arts_tools\n", - "3 ---> https://github.com/jboynyc/textnets\n", - "3 ---> https://github.com/python-adaptive/adaptive\n", - "3 ---> https://github.com/nfsi-canada/OBStools\n", - "5 ---> https://github.com/tikk3r/lofar-grid-hpccloud\n", - "6 ---> https://github.com/governit/GovernIT\n", - "3 ---> https://github.com/nestordemeure/tabularGP\n", - "3 ---> https://github.com/AstraZeneca-NGS/disambiguate\n", - "3 ---> https://github.com/dgilford/pyPI\n", - "3 ---> https://github.com/Jacob-yen/LEMON\n", - "3 ---> https://github.com/tasoc/photometry\n", - "6 ---> https://github.com/qbicsoftware/omero-client-lib\n", - "3 ---> https://github.com/ASaiM/group_humann2_uniref_abundances_to_GO\n", - "3 ---> https://github.com/natashabatalha/virga\n", - "7 ---> https://github.com/lightonphiri/etd_autoclassifier\n", - "6 ---> https://github.com/ncrncornell/ced2ar\n", - "2 ---> https://github.com/clij/clij\n", - "3 ---> https://github.com/castelao/oceansdb\n", - "3 ---> https://github.com/conorwalsh/doat\n", - "3 ---> https://github.com/lweasel/piquant\n", - "3 ---> https://github.com/marinang/SimProd\n", - "7 ---> https://github.com/ishahid/django-gdm\n", - "9 ---> https://github.com/darribas/gds16\n", - "3 ---> https://github.com/calliope-project/calliope\n", - "6 ---> https://github.com/rockt/SETH\n", - "1 ---> https://github.com/zih-a35/trinityvm\n", - "1 ---> https://github.com/MRChemSoft/mrchem\n", - "3 ---> https://github.com/ehthiede/EMUS\n", - "3 ---> https://github.com/caiostringari/pywavelearn\n", - "9 ---> https://github.com/GeriLife/wellbeing\n", - "3 ---> https://github.com/aboucaud/pypher\n", - "3 ---> https://github.com/niosh-mining/obsplus\n", - "9 ---> https://github.com/scienceai/neocortex\n", - "5 ---> https://github.com/MPAS-Dev/MPAS-Analysis\n", - "3 ---> https://github.com/ralna/ElementSchur\n", - "3 ---> https://github.com/bdestombe/flopymetascript\n", - "3 ---> https://github.com/scikit-hep/awkward-array\n", - "5 ---> https://github.com/jonathansick/padova\n", - "3 ---> https://github.com/gwpy/gwsumm\n", - "3 ---> https://github.com/saullocastro/panels\n", - "6 ---> https://github.com/EHadoux/aptimizer\n", - "5 ---> https://github.com/mchoji/wtg-seal\n", - "3 ---> https://github.com/apetros/pyeplan\n", - "5 ---> https://github.com/Molmed/checkQC\n", - "5 ---> https://github.com/similitude/netlogo-sample-simmer\n", - "3 ---> https://github.com/castelao/CoTeDe\n", - "3 ---> https://github.com/matt-graham/mici\n", - "3 ---> https://github.com/donia-lab/MetaBGC\n", - "3 ---> https://github.com/nschloe/accupy\n", - "3 ---> https://github.com/KitwareMedical/SlicerITKUltrasound\n", - "3 ---> https://github.com/scities/marble\n", - "8 ---> https://github.com/hshsl-training/outreach-toolkit\n", - "9 ---> https://github.com/hyperwell/gateway\n", - "3 ---> https://github.com/tjof2/pgure-svt\n", - "3 ---> https://github.com/dfm/python-fsps\n", - "7 ---> https://github.com/kevindoyle/geoscience-first-authorship\n", - "6 ---> https://github.com/amuslija/fbd-complexity-tool\n", - "3 ---> https://github.com/N3PDF/evolutionary_keras\n", - "7 ---> https://github.com/fabfab1/EnCAB\n", - "3 ---> https://github.com/muammar/ml4chem\n", - "3 ---> https://github.com/fepegar/unet\n", - "5 ---> https://github.com/rtidatascience/django-postgres-stats\n", - "3 ---> https://github.com/esm-tools/esm_tools\n", - "6 ---> https://github.com/cwi-swat/bacata\n", - "6 ---> https://github.com/Sentimentron/PRJ9081\n", - "3 ---> https://github.com/hema-ted/pyzfs\n", - "3 ---> https://github.com/vitkl/orthologsBioMART\n", - "3 ---> https://github.com/davidrpugh/pyCollocation\n", - "5 ---> https://github.com/sbaltes/dblp-retriever\n", - "1 ---> https://github.com/vsoch/gridtest\n", - "6 ---> https://github.com/meteoinfo/MeteoInfo\n", - "3 ---> https://github.com/tcompa/anneal\n", - "3 ---> https://github.com/pansism/downscale-satelliteLST\n", - "3 ---> https://github.com/pyspeckit/pyspeckit\n", - "3 ---> https://github.com/TAMU-CPT/PAUSE\n", - "3 ---> https://github.com/mosdef-hub/forcefield_perfluoroethers\n", - "3 ---> https://github.com/dimazest/fowler.corpora\n", - "9 ---> https://github.com/a-callahan/MechWolf_Pull\n", - "3 ---> https://github.com/sami2py/sami2py\n", - "5 ---> https://github.com/gwu-libraries/sfm-weibo-harvester\n", - "6 ---> https://github.com/sojamo/oscp5\n", - "3 ---> https://github.com/OllyButters/puma\n", - "3 ---> https://github.com/aplowman/atomistic\n", - "3 ---> https://github.com/guaix-ucm/pyemir\n", - "3 ---> https://github.com/biosustain/croissance\n", - "3 ---> https://github.com/linhd-postdata/averell\n", - "6 ---> https://github.com/gbif/gbif-api\n", - "3 ---> https://github.com/kalyanpi4/pySW\n", - "1 ---> https://github.com/pitmonticone/Torino-Lione\n", - "3 ---> https://github.com/dave-heslop74/vMF_Specimens\n", - "3 ---> https://github.com/hollenstein/maspy\n", - "3 ---> https://github.com/wiai/xcdskd\n", - "6 ---> https://github.com/Ayllonbe/gsan\n", - "3 ---> https://github.com/romoreira/EdgeComputingSlice\n", - "3 ---> https://github.com/pysal/segregation\n", - "6 ---> https://github.com/ALIADA/aliada-tool\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3 ---> https://github.com/JordiBolibar/ALPGM\n", - "3 ---> https://github.com/keyinst/keypy\n", - "3 ---> https://github.com/has2k1/scikit-misc\n", - "7 ---> https://github.com/PedroMat8/micropy\n", - "7 ---> https://github.com/clld/glottolog3\n", - "6 ---> https://github.com/stain/ro-combine-archive\n", - "3 ---> https://github.com/BEAST-Fitting/beast\n", - "3 ---> https://github.com/fireshape/fireshape\n", - "3 ---> https://github.com/jsh9/python-plot-utilities\n", - "7 ---> https://github.com/hibernator11/AprediendoJava\n", - "3 ---> https://github.com/FlamTeam/flamedisx\n", - "3 ---> https://github.com/ihmeuw-msca/ODEOPT\n", - "3 ---> https://github.com/dmentipl/plonk\n", - "4 ---> https://github.com/HSF/phoenix\n", - "3 ---> https://github.com/haraldschilly/panobbgo\n", - "7 ---> https://github.com/mtinti/PIG-A\n", - "2 ---> https://github.com/TRACMASS/tracmass\n", - "3 ---> https://github.com/coneoproject/COFFEE\n", - "1 ---> https://github.com/oblassers/dmap-mockups\n", - "3 ---> https://github.com/bioFAM/MOFA2\n", - "3 ---> https://github.com/pytroll/pyresample\n", - "3 ---> https://github.com/FATSLiM/fatslim\n", - "3 ---> https://github.com/astropenguin/azely\n", - "3 ---> https://github.com/debsankha/flownetpy\n", - "3 ---> https://github.com/lyx12311/Astraea\n", - "3 ---> https://github.com/npielawski/pytorch_tiramisu\n", - "7 ---> https://github.com/clld/tsammalex\n", - "6 ---> https://github.com/postnathalie/WallTalk\n", - "3 ---> https://github.com/TUW-GEO/smecv-grid\n", - "5 ---> https://github.com/echevemaster/fedora-college\n", - "9 ---> https://github.com/ropensci/lingtypology\n", - "6 ---> https://github.com/vivo-project/VIVO\n", - "7 ---> https://github.com/deephdc/schema4deep\n", - "3 ---> https://github.com/nist-ionstorage/electrode\n", - "7 ---> https://github.com/opannekoucke/pdenetgen\n", - "3 ---> https://github.com/lingpy/word-tree-paper\n", - "6 ---> https://github.com/RBVI/CyAnimator\n", - "3 ---> https://github.com/fsenf/proj.nawdex_analysis\n", - "7 ---> https://github.com/RDFLib/pyrdfa3\n", - "3 ---> https://github.com/mwcraig/reducer\n", - "3 ---> https://github.com/lcharleux/hardness\n", - "3 ---> https://github.com/pisa-engine/pisa\n", - "3 ---> https://github.com/rjw57/starman\n", - "3 ---> https://github.com/dewiedem/calcopp\n", - "3 ---> https://github.com/rstoneback/OMMBV\n", - "3 ---> https://github.com/mfherbst/asedftk\n", - "8 ---> https://github.com/Colectica/ddiregistry\n", - "3 ---> https://github.com/CyberDataLab/AuthCode\n", - "3 ---> https://github.com/imageio/imageio\n", - "3 ---> https://github.com/masseyr/geosoupML\n", - "3 ---> https://github.com/r9y9/pyreaper\n", - "3 ---> https://github.com/JDRomano2/ASAP2\n", - "3 ---> https://github.com/josephhardinee/PyDSD\n", - "7 ---> https://github.com/filips123/MonologPHPMailer\n", - "3 ---> https://github.com/Spine-project/Spine-Database-API\n", - "3 ---> https://github.com/GeoStat-Framework/ogs5py\n", - "3 ---> https://github.com/Z-Zheng/SimpleCV\n", - "3 ---> https://github.com/angelmtenor/RL-ROBOT\n", - "7 ---> https://github.com/Sreyan88/Fatigue-Detection-using-Deep-Learning\n", - "3 ---> https://github.com/stefanch/sGDML\n", - "4 ---> https://github.com/machawk1/warcreate\n", - "3 ---> https://github.com/materialsvirtuallab/monty\n", - "3 ---> https://github.com/kgullikson88/Telluric-Fitter\n", - "3 ---> https://github.com/Urban-Meteorology-Reading/SUEWS\n", - "3 ---> https://github.com/serazing/xscale\n", - "3 ---> https://github.com/pauleve/mpbn\n", - "3 ---> https://github.com/ericmjl/flu-gibson\n", - "9 ---> https://github.com/MoritzStefaner/ach-ingen-zell\n", - "5 ---> https://github.com/MAGIC-nexus/nis-backend\n", - "3 ---> https://github.com/pycalphad/scheil\n", - "5 ---> https://github.com/vanheeringen-lab/genomepy\n", - "3 ---> https://github.com/deparkes/OOMMFTools\n", - "3 ---> https://github.com/sarisabban/RamaNet\n", - "3 ---> https://github.com/nano-sippe/dispersion\n", - "3 ---> https://github.com/hallamlab/pathway2vec\n", - "3 ---> https://github.com/SCM-NV/nano-qmflows\n", - "3 ---> https://github.com/bburan/NeuroBehavior\n", - "1 ---> https://github.com/PhenixCollaboration/web\n", - "3 ---> https://github.com/Bubblbu/crawling-framework\n", - "5 ---> https://github.com/smarr/ReBench\n", - "3 ---> https://github.com/Alerovere/Paleo-SL-utilities\n", - "3 ---> https://github.com/TUDelft-CITG/OpenCLSim\n", - "3 ---> https://github.com/RMeli/spyrmsd\n", - "2 ---> https://github.com/dejac001/RealGas\n", - "6 ---> https://github.com/SciCrunch/resource_disambiguator\n", - "3 ---> https://github.com/rraadd88/htsimaging\n", - "3 ---> https://github.com/etiennebresciani/wellradpy\n", - "3 ---> https://github.com/blsqr/paramspace\n", - "3 ---> https://github.com/FInAT/FInAT\n", - "3 ---> https://github.com/hovo1990/GROM\n", - "3 ---> https://github.com/scikit-learn/scikit-learn\n", - "3 ---> https://github.com/covid-lncc/pydemic\n", - "3 ---> https://github.com/pvlib/pvlib-python\n", - "6 ---> https://github.com/phenoscape/phenoday-reasoning-paper\n", - "3 ---> https://github.com/norawebbwilliams/images_as_data\n", - "7 ---> https://github.com/filips123/ZeroFramePy\n", - "6 ---> https://github.com/sisinflab-swot/ldp-coap-framework\n", - "3 ---> https://github.com/pablormier/yabox\n", - "6 ---> https://github.com/TomDemeranville/orcid-update-java\n", - "3 ---> https://github.com/pysal/region\n", - "6 ---> https://github.com/yogo/VOEIS\n", - "3 ---> https://github.com/krassowski/data-vault\n", - "4 ---> https://github.com/ENCODE-DCC/croo\n", - "3 ---> https://github.com/jaisenbe58r/MLearner\n", - "3 ---> https://github.com/dave-heslop74/vMF_Sites\n", - "3 ---> https://github.com/biomedia-mira/blast-ct\n", - "5 ---> https://github.com/NREL/bifacial_radiance\n", - "3 ---> https://github.com/kundajelab/deeplift\n", - "3 ---> https://github.com/embodied-computation-group/systole\n", - "1 ---> https://github.com/terraref/terraref.github.io\n", - "3 ---> https://github.com/astorfi/TensorFlow-World\n", - "3 ---> https://github.com/TheLartians/Expresso\n", - "9 ---> https://github.com/bionode/fasta-parser\n", - "3 ---> https://github.com/UCL/scikit-surgeryfred\n", - "3 ---> https://github.com/neurolib-dev/neurolib\n", - "9 ---> https://github.com/hyperwell/playground\n", - "3 ---> https://github.com/pnlbwh/SlicerDiffusionQC\n", - "3 ---> https://github.com/CORE-GATECH-GROUP/serpent-tools\n", - "3 ---> https://github.com/morganjwilliams/pyrolite-meltsutil\n", - "9 ---> https://github.com/rcfduarte/nmsat\n", - "6 ---> https://github.com/midas-isg/PITT-Anthrax-model\n", - "3 ---> https://github.com/gmiaslab/pyiomica\n", - "3 ---> https://github.com/MarcoMuellner/SMURFS\n", - "3 ---> https://github.com/MrLogarithm/pe-pc-datasets-interface\n", - "3 ---> https://github.com/raamana/neuropredict\n", - "3 ---> https://github.com/bartongroup/2passtools\n", - "3 ---> https://github.com/earthserver-eu/INSPIRE-notebooks\n", - "6 ---> https://github.com/aderidder/iCRFGenerator\n", - "7 ---> https://github.com/jfal027/Moodify\n", - "6 ---> https://github.com/jyrkioraskari/OnlineMvdXMLChecker\n", - "3 ---> https://github.com/rjleveque/ptha_rog\n", - "3 ---> https://github.com/GeoStat-Framework/pentapy\n", - "5 ---> https://github.com/GhostofGoes/ADLES\n", - "3 ---> https://github.com/castelao/pyWOA\n", - "3 ---> https://github.com/pynbody/pynbody\n", - "3 ---> https://github.com/MicroPasts/magicMountain\n", - "5 ---> https://github.com/intake/intake-esm\n", - "3 ---> https://github.com/harnesscloud/2015-07-15-feltham\n", - "3 ---> https://github.com/hfsf/sloth\n", - "6 ---> https://github.com/histogrammar/histogrammar-scala\n", - "7 ---> https://github.com/LandscapeGeoinformatics/EstSoil-EH_sw_supplement\n", - "3 ---> https://github.com/chienchi/amplicon_coverage_plot\n", - "3 ---> https://github.com/cmohl2013/permutation_test\n", - "3 ---> https://github.com/mrtommyb/ktransit\n", - "6 ---> https://github.com/midas-isg/digital-commons\n", - "5 ---> https://github.com/hipster-philology/greek-lemmatization-data\n", - "3 ---> https://github.com/soil-physics-okstate/automated_soil_moisture_mapping\n", - "3 ---> https://github.com/QInfer/python-qinfer\n", - "3 ---> https://github.com/inodb/sufam\n", - "6 ---> https://github.com/LiberalHD/gudagudaACG\n", - "3 ---> https://github.com/bihealth/scelvis\n", - "8 ---> https://github.com/SommerEngineering/Encrypter\n", - "1 ---> https://github.com/CellMigStandOrg/Tracks\n", - "3 ---> https://github.com/dr-rodriguez/AstrodbWeb\n", - "3 ---> https://github.com/iamdamion/grepCIRCLE\n", - "3 ---> https://github.com/Olllom/lettuce\n", - "3 ---> https://github.com/bjpop/lynch_gatk\n", - "3 ---> https://github.com/jGaboardi/pp2n\n", - "9 ---> https://github.com/atrisovic/weather-panel.github.io\n", - "7 ---> https://github.com/arXiv/arxiv-browse\n", - "9 ---> https://github.com/clarity-h2020/map-component\n", - "5 ---> https://github.com/samapriya/geeup\n", - "5 ---> https://github.com/fphammerle/freesurfer-stats\n", - "3 ---> https://github.com/Lagostra/exprimo\n", - "3 ---> https://github.com/kweis/acronym\n", - "9 ---> https://github.com/iomega/zenodo-upload\n", - "3 ---> https://github.com/mirca/maoud\n", - "3 ---> https://github.com/castelao/maud\n", - "3 ---> https://github.com/cwfparsonson/soa_driving\n", - "3 ---> https://github.com/luphysics/PyMODAlib\n", - "6 ---> https://github.com/piazentin/ksets\n", - "5 ---> https://github.com/tgbugs/inferno\n", - "3 ---> https://github.com/jGaboardi/non-duplicated-intersects\n", - "3 ---> https://github.com/rochefort-lab/fissa\n", - "3 ---> https://github.com/qutip/qutip\n", - "9 ---> https://github.com/RomainBey/stratified-cross-validation\n", - "3 ---> https://github.com/XENON1T/pax\n", - "3 ---> https://github.com/indralab/adeft\n", - "3 ---> https://github.com/polsys/ennemi\n", - "3 ---> https://github.com/gmierz/pupil-lib\n", - "3 ---> https://github.com/macs3-project/MACS\n", - "5 ---> https://github.com/NLeSC/lokum\n", - "3 ---> https://github.com/efirvida/python-gearbox\n", - "5 ---> https://github.com/SuLab/genewikiworld\n", - "5 ---> https://github.com/samapriya/Planet-Pipeline-Shell\n", - "6 ---> https://github.com/smd-faizan/CySpanningTree\n", - "3 ---> https://github.com/Unidata/cftime\n", - "3 ---> https://github.com/weecology/DeepForest\n", - "3 ---> https://github.com/datreant/datreant\n", - "3 ---> https://github.com/Svdvoort/PREDICTFastr\n", - "3 ---> https://github.com/qcscine/utilities\n", - "3 ---> https://github.com/martibosch/urban-footprinter\n", - "3 ---> https://github.com/fa-me/ratter\n", - "3 ---> https://github.com/impact27/WF_NTP\n", - "3 ---> https://github.com/Eomys/pyleecan\n", - "5 ---> https://github.com/oeg-upm/morph-csv\n", - "6 ---> https://github.com/javadch/quis\n", - "7 ---> https://github.com/pear2/Cache_SHM\n", - "6 ---> https://github.com/scijava/scijava-common\n", - "3 ---> https://github.com/USNavalResearchLaboratory/SNOPROP\n", - "3 ---> https://github.com/bbfrederick/picachooser\n", - "3 ---> https://github.com/GilesStrong/HiggsML_Lumin\n", - "3 ---> https://github.com/GooglingTheCancerGenome/sv-callers\n", - "6 ---> https://github.com/jgreener64/pdb-benchmarks\n", - "7 ---> https://github.com/shh-dlce/python-nexus\n", - "3 ---> https://github.com/NickleDave/searchstims\n", - "9 ---> https://github.com/opencv/cvat\n", - "6 ---> https://github.com/scholarslab/prism\n", - "3 ---> https://github.com/pyoceans/python-seawater\n", - "3 ---> https://github.com/olgabot/sj2psi\n", - "3 ---> https://github.com/malvikasharan/APRICOT\n", - "3 ---> https://github.com/raamana/confounds\n", - "3 ---> https://github.com/mrkrd/matlab_wrapper\n", - "6 ---> https://github.com/thorstenwagner/ij-blob\n", - "3 ---> https://github.com/michaelosthege/pyrff\n", - "7 ---> https://github.com/ODM2/ODM2DataSharingPortal\n", - "3 ---> https://github.com/hameye/MARCIA\n", - "3 ---> https://github.com/eyelovedata/sentimentemotionanalysis\n", - "3 ---> https://github.com/Swiss-Polar-Institute/pyantarctica\n", - "3 ---> https://github.com/cgre-aachen/gempy\n", - "3 ---> https://github.com/alexandrebarachant/pyRiemann\n", - "3 ---> https://github.com/yt-project/unyt\n", - "2 ---> https://github.com/bonej-org/BoneJ2\n", - "3 ---> https://github.com/ConorMacBride/mcalf\n", - "3 ---> https://github.com/widdowquinn/pyADHoRe\n", - "3 ---> https://github.com/valdergallo/data-importer\n", - "3 ---> https://github.com/saketkc/pysradb\n", - "3 ---> https://github.com/jeeberhardt/visualize\n", - "3 ---> https://github.com/hsharrison/experimentator\n", - "3 ---> https://github.com/nudomarinero/wquantiles\n", - "7 ---> https://github.com/davidbradway/Visualizing-Scholars-At-Duke-2017\n", - "3 ---> https://github.com/sepandhaghighi/findip\n", - "3 ---> https://github.com/md-lab-tools/lab-tools\n", - "2 ---> https://github.com/fiji/KymographBuilder\n", - "3 ---> https://github.com/YaserJaradeh/JarvisQA\n", - "6 ---> https://github.com/PBR/Marker2Sequence\n", - "3 ---> https://github.com/DesignEngrLab/fmdtools\n", - "7 ---> https://github.com/dkalisch/morgenstadtDB\n", - "3 ---> https://github.com/has2k1/mizani\n", - "3 ---> https://github.com/super-resolution/lineprofiler\n", - "3 ---> https://github.com/junaidmalik09/fastonn\n", - "3 ---> https://github.com/mzabrams/fars-cleaner\n", - "3 ---> https://github.com/fat-forensics/fat-forensics\n", - "3 ---> https://github.com/RPGroup-PBoC/chann_cap\n", - "5 ---> https://github.com/lascivaroma/forcellini-lemmas\n", - "7 ---> https://github.com/akxen/tps-parameterisation\n", - "3 ---> https://github.com/Davidelanz/quantum-robot\n", - "7 ---> https://github.com/SandstoneHPC/sandstone-slurm-assist\n", - "3 ---> https://github.com/applied-bioinformatics/An-Introduction-To-Applied-Bioinformatics\n", - "3 ---> https://github.com/aliFrancis/mars-crater-catalogue\n", - "3 ---> https://github.com/jcvasquezc/AEspeech\n", - "3 ---> https://github.com/oemof/oemof-solph\n", - "3 ---> https://github.com/kutaslab/fitgrid\n", - "6 ---> https://github.com/MCZbase/PreCapture\n", - "7 ---> https://github.com/tgwizard/sexymp-data\n", - "7 ---> https://github.com/semplea/characters-meta\n", - "6 ---> https://github.com/edwardcapriolo/filecrush\n", - "9 ---> https://github.com/smart-facility/cognicity-floodsensor\n", - "1 ---> https://github.com/lerkoah/ComplexBehaviorDetector\n", - "7 ---> https://github.com/evoldoers/wtfgenes\n", - "3 ---> https://github.com/nstarman/amuse_util\n", - "3 ---> https://github.com/yhaddad/Heppi\n", - "7 ---> https://github.com/janantala/speech-synthesis\n", - "3 ---> https://github.com/wjladams/pyanp\n", - "3 ---> https://github.com/seva100/optic-nerve-cnn\n", - "9 ---> https://github.com/vibbits/phyd3\n", - "6 ---> https://github.com/miledrousset/opentheso\n", - "5 ---> https://github.com/VDBWRAIR/ngs_mapper\n", - "2 ---> https://github.com/clij/clij-docs\n", - "3 ---> https://github.com/lpfann/fri\n", - "3 ---> https://github.com/seisman/HinetPy\n", - "5 ---> https://github.com/JonathanReeve/text-matcher\n", - "3 ---> https://github.com/csdms/bmi-python\n", - "3 ---> https://github.com/NaturalHistoryMuseum/revile\n", - "7 ---> https://github.com/ishahid/django-blogg\n", - "8 ---> https://github.com/SommerEngineering/Ed25519\n", - "3 ---> https://github.com/xuanxu/intergalactic\n", - "3 ---> https://github.com/PyPSA/PyPSA\n", - "3 ---> https://github.com/NickleDave/vak\n", - "3 ---> https://github.com/gtonkinhill/panaroo\n", - "3 ---> https://github.com/CMLPlatform/pycirk\n", - "6 ---> https://github.com/globalbioticinteractions/nomer\n", - "4 ---> https://github.com/dwhieb/Nuuchahnulth\n", - "3 ---> https://github.com/TUW-GEO/ecmwf_models\n", - "6 ---> https://github.com/urmi-21/MetaOmGraph\n", - "3 ---> https://github.com/bfieldtools/bfieldtools\n", - "3 ---> https://github.com/pedroernesto/HippoNetworkUnit\n", - "3 ---> https://github.com/zwicker-group/py-pde\n", - "3 ---> https://github.com/NeuralEnsemble/PyNN\n", - "5 ---> https://github.com/juliema/aTRAM\n", - "3 ---> https://github.com/GrzegorzMikaAGH/Towards-adaptivity-via-a-new-discrepancy-principle-for-Poisson-inverse-problems\n", - "3 ---> https://github.com/HTenkanen/pyrosm\n", - "3 ---> https://github.com/kjappelbaum/colorjeopardy\n", - "3 ---> https://github.com/OSUmageed/pyHeatTransfer\n", - "3 ---> https://github.com/olety/TIMLinUCB\n", - "9 ---> https://github.com/gcube-team/gcube-releases\n", - "3 ---> https://github.com/r9y9/pyopenjtalk\n", - "6 ---> https://github.com/altmetric/aho_corasick_matcher\n", - "3 ---> https://github.com/Edric-Matwiejew/QSW_MPI\n", - "9 ---> https://github.com/xieguigang/Data.GIS\n", - "3 ---> https://github.com/scikit-hep/hepstats\n", - "3 ---> https://github.com/elainehoml/GMM_Image_Quality\n", - "3 ---> https://github.com/mikahama/uralicNLP\n", - "9 ---> https://github.com/blobtoolkit/viewer\n", - "5 ---> https://github.com/e-VRO/frvcpy\n", - "5 ---> https://github.com/openeventdata/mordecai\n", - "3 ---> https://github.com/ssepulveda/RTGraph\n", - "3 ---> https://github.com/eWaterCycle/grpc4bmi\n", - "5 ---> https://github.com/msmexplorer/msmexplorer-d3\n", - "3 ---> https://github.com/bjodah/chempy\n", - "3 ---> https://github.com/chjacob-tubs/pyadf-releases\n", - "3 ---> https://github.com/Nikeshbajaj/spkit\n", - "3 ---> https://github.com/wright-group/WrightSim\n", - "3 ---> https://github.com/Curtin-Timescales-of-Mineral-Systems/UPb-Unmixer\n", - "3 ---> https://github.com/pietrobarbiero/dbgen\n", - "7 ---> https://github.com/larslau/DETECT\n", - "5 ---> https://github.com/edwardoughton/itmlogic\n", - "3 ---> https://github.com/tychotatitscheff/duc-sph\n", - "3 ---> https://github.com/impact27/diffusion_device\n", - "3 ---> https://github.com/williamjameshandley/fgivenx\n", - "5 ---> https://github.com/gregtucker/grain_hills\n", - "8 ---> https://github.com/holoviz/geoviews\n", - "3 ---> https://github.com/SoftwareDevEngResearch/CAML\n", - "3 ---> https://github.com/cyTVDN/cyTVDN\n", - "3 ---> https://github.com/birnstiel/two-pop-py\n", - "6 ---> https://github.com/DECLARE-Project/fastpan\n", - "3 ---> https://github.com/reneshbedre/bioinfokit\n", - "3 ---> https://github.com/INM-6/hybridLFPy\n", - "3 ---> https://github.com/caglorithm/mopet\n", - "6 ---> https://github.com/felicitia/EventExtractor\n", - "3 ---> https://github.com/molpopgen/fwdpy11\n", - "5 ---> https://github.com/jacobwindsor/pubchem-ranker\n", - "3 ---> https://github.com/ENCODE-DCC/caper\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3 ---> https://github.com/colomoto/colomoto-jupyter\n", - "3 ---> https://github.com/nicolas-chaulet/torch-points-kernels\n", - "3 ---> https://github.com/MicroPasts/transcribing-WGS\n", - "5 ---> https://github.com/samapriya/Planet-GEE-Pipeline-GUI\n", - "5 ---> https://github.com/similitude/h2-world-simmer\n", - "3 ---> https://github.com/anthony-nouy/tensap\n", - "3 ---> https://github.com/ancklo/ChaosMagPy\n", - "3 ---> https://github.com/mvdh7/calkulate\n", - "3 ---> https://github.com/arviz-devs/arviz\n", - "2 ---> https://github.com/clij/clij-core\n", - "3 ---> https://github.com/saverymax/qdriven-chiqa-summarization\n", - "3 ---> https://github.com/jhidding/sustainability\n", - "3 ---> https://github.com/arif-zaman/network_probing\n", - "3 ---> https://github.com/janpipek/pydiq\n", - "3 ---> https://github.com/posterior/goftests\n", - "3 ---> https://github.com/zarr-developers/zarr-python\n", - "6 ---> https://github.com/marco-ka/semantic-annotation-writer\n", - "6 ---> https://github.com/medusa-project/databank\n", - "9 ---> https://github.com/schema-app/schema\n", - "3 ---> https://github.com/ulmo-dev/ulmo\n", - "5 ---> https://github.com/kuchaale/wcd_2020\n", - "3 ---> https://github.com/uwmadison-chm/masterfile\n", - "3 ---> https://github.com/jeeberhardt/unrolr\n", - "6 ---> https://github.com/Lane-Library/wiki-extract\n", - "3 ---> https://github.com/pydicom/pynetdicom\n", - "6 ---> https://github.com/NLeSC/fairdatapoint\n", - "3 ---> https://github.com/ilyasst/pydictoolkit\n", - "3 ---> https://github.com/NLESC-JCER/QMCTorch\n", - "3 ---> https://github.com/AthenaEPI/dmipy\n", - "5 ---> https://github.com/ISA-tools/nmrml2isa\n", - "6 ---> https://github.com/usethesource/capsule\n", - "5 ---> https://github.com/minzastro/unidam\n", - "3 ---> https://github.com/environmentalscience/essm\n", - "7 ---> https://github.com/afnogueira/datasetsaner2017\n", - "3 ---> https://github.com/raysect/source\n", - "7 ---> https://github.com/ivco19/brooks\n", - "3 ---> https://github.com/mattbv/lidartf\n", - "3 ---> https://github.com/ricoms/gpam_stats\n", - "9 ---> https://github.com/Capitains/Sparrow\n", - "3 ---> https://github.com/hpparvi/PyDE\n", - "3 ---> https://github.com/molbiodiv/Blackbird\n", - "3 ---> https://github.com/adrn/thejoker\n", - "6 ---> https://github.com/davidenunes/context-permeability\n", - "3 ---> https://github.com/akxen/rep-gep\n", - "3 ---> https://github.com/joergdietrich/NFW\n", - "7 ---> https://github.com/sandyherho/tutorial_xarray\n", - "5 ---> https://github.com/deniederhut/PyTeX\n", - "3 ---> https://github.com/interaction-lab/MoveToCode\n", - "3 ---> https://github.com/FilipeMaia/afnumpy\n", - "3 ---> https://github.com/nextgenusfs/amptk\n", - "3 ---> https://github.com/Qiskit/qiskit\n", - "3 ---> https://github.com/CU-Denver-UQ/LUQ\n", - "3 ---> https://github.com/casimp/lightct\n", - "3 ---> https://github.com/joostjor/random-graphs\n", - "3 ---> https://github.com/sbonaretti/pyKNEEr\n", - "3 ---> https://github.com/DataMedSci/pymchelper\n", - "3 ---> https://github.com/simonvh/pita\n", - "3 ---> https://github.com/Socrats/EGTTools\n", - "2 ---> https://github.com/ihmwg/python-ihm\n", - "3 ---> https://github.com/AlessioZanga/PyEEGLab\n", - "3 ---> https://github.com/samuelstjean/autodmri\n", - "9 ---> https://github.com/filips123/ZeroFrameJS\n", - "6 ---> https://github.com/Tyler-Yates/AestheticFractals\n", - "2 ---> https://github.com/fmalmeida/ngs-preprocess\n", - "3 ---> https://github.com/junhyeokahn/tf_rbdl\n", - "3 ---> https://github.com/Samreay/ChainConsumer\n", - "3 ---> https://github.com/JoshuaE1/supervised-classification-SSH-publications\n", - "3 ---> https://github.com/syhw/DTW_Cython\n", - "3 ---> https://github.com/cerebunit/cerebunit\n", - "3 ---> https://github.com/clebsonpy/HidroComp\n", - "6 ---> https://github.com/Terradue/dcs-insar-roipac\n", - "3 ---> https://github.com/drcassar/viscosity-graybox-nn\n", - "3 ---> https://github.com/MAVENSDC/PyTplot\n", - "7 ---> https://github.com/EricAlcaide/MiniFold\n", - "3 ---> https://github.com/CognitiveComputationLab/ccobra\n", - "8 ---> https://github.com/holoviz/colorcet\n", - "3 ---> https://github.com/jpvantassel/hvsrpy\n", - "9 ---> https://github.com/georgeOsdDev/longo\n", - "5 ---> https://github.com/unicus-skmk/test\n", - "3 ---> https://github.com/DTUComputeStatisticsAndDataAnalysis/MBPLS\n", - "3 ---> https://github.com/hyungjun/gtool\n", - "7 ---> https://github.com/UofS-Pulse-Binfo/nd_genotypes\n", - "3 ---> https://github.com/michaelaye/pyciss\n", - "3 ---> https://github.com/genomematt/pylazybam\n", - "3 ---> https://github.com/arkottke/pygmm\n", - "9 ---> https://github.com/evanodell/ukpolice\n", - "3 ---> https://github.com/kotori-y/Scopy\n", - "3 ---> https://github.com/gsantoni/ccCluster\n", - "3 ---> https://github.com/iancze/MPoL\n", - "3 ---> https://github.com/jacobo-diaz/aneupy\n", - "6 ---> https://github.com/j-stone/cog-tasks\n", - "5 ---> https://github.com/broyson/Locust-streaming\n", - "3 ---> https://github.com/rougier/numpy-100\n", - "5 ---> https://github.com/castelao/supportdata\n", - "3 ---> https://github.com/napsternxg/TwitterNER\n", - "3 ---> https://github.com/DomBennett/TaxonNamesResolver\n", - "5 ---> https://github.com/lucaspuvis/SAM\n", - "7 ---> https://github.com/caltechlibrary/handprint\n", - "6 ---> https://github.com/unipept/unipept-cli\n", - "3 ---> https://github.com/griffithlab/pVACtools\n", - "5 ---> https://github.com/MAGIC-nexus/nis-python-client\n", - "3 ---> https://github.com/spacetelescope/jwst-fgs-countrate\n", - "6 ---> https://github.com/skp703/RainInterpolator\n", - "3 ---> https://github.com/pysal/spvcm\n", - "3 ---> https://github.com/CKrawczyk/densityplot\n", - "3 ---> https://github.com/Abe404/root_painter\n", - "7 ---> https://github.com/freeknijweide/autoencoder-pdb-cleaning\n", - "3 ---> https://github.com/reegis/deflex\n", - "3 ---> https://github.com/DCAN-Labs/nhp-abcd-bids-pipeline\n", - "3 ---> https://github.com/MechMicroMan/DefDAP\n", - "3 ---> https://github.com/Climdyn/qgs\n", - "6 ---> https://github.com/anil88/population-origin-calculator\n", - "9 ---> https://github.com/AlgolLLC/phonetop\n", - "3 ---> https://github.com/jdmoorman/kaczmarz-algorithms\n", - "3 ---> https://github.com/qzhu2017/PyXtal_FF\n", - "9 ---> https://github.com/rodighiero/DH2019\n", - "3 ---> https://github.com/ioos/erddapy\n", - "3 ---> https://github.com/bjorntsv/tempmom\n", - "3 ---> https://github.com/ARM-DOE/ACT\n", - "5 ---> https://github.com/tvwenger/millennium-tap-query\n", - "6 ---> https://github.com/3D-e-Chem/knime-klifs\n", - "5 ---> https://github.com/harnesscloud/nova-docker\n", - "7 ---> https://github.com/Clinical-Genomics/chanjo\n", - "6 ---> https://github.com/globalbioticinteractions/elton\n", - "6 ---> https://github.com/felicitia/TestBenchmark-Java-client\n", - "7 ---> https://github.com/butcer0/found-diagnosis-network\n", - "3 ---> https://github.com/radtorch/radtorch\n", - "3 ---> https://github.com/UT-CHG/PolyADCIRC\n", - "1 ---> https://github.com/parsa-epfl/qflex\n", - "3 ---> https://github.com/martibosch/detectree\n", - "9 ---> https://github.com/nawrs/nawrs\n", - "6 ---> https://github.com/arfon/metamatter\n", - "5 ---> https://github.com/linsalrob/PPPF\n", - "3 ---> https://github.com/peckhams/topoflow\n", - "3 ---> https://github.com/mekman/recon\n", - "3 ---> https://github.com/petl-developers/petl\n", - "6 ---> https://github.com/piyush82/expression-evaluator\n", - "3 ---> https://github.com/MAVENSDC/cdflib\n", - "5 ---> https://github.com/acocac/MTLCC-MODIS-GCP\n", - "6 ---> https://github.com/nomencurator/taxonaut\n", - "3 ---> https://github.com/jw156605/MATCHER\n", - "3 ---> https://github.com/vprusso/toqito\n", - "3 ---> https://github.com/abhi1693/yii2-config\n", - "3 ---> https://github.com/scikit-hep/uproot-methods\n", - "7 ---> https://github.com/JustinGOSSES/predictatops\n", - "3 ---> https://github.com/ThomasRieutord/kabl\n", - "3 ---> https://github.com/pastas/pastas\n", - "5 ---> https://github.com/lingpy/workflow-paper\n", - "3 ---> https://github.com/tomwallis/PsyUtils\n", - "3 ---> https://github.com/adrn/gala\n", - "3 ---> https://github.com/kinnala/scikit-fem\n", - "3 ---> https://github.com/yatiml/yatiml\n", - "3 ---> https://github.com/ZFTurbo/Weighted-Boxes-Fusion\n", - "6 ---> https://github.com/willpearse/data_frame\n", - "6 ---> https://github.com/jameshowison/softcite\n", - "3 ---> https://github.com/clauswilke/PeptideBuilder\n", - "7 ---> https://github.com/GatorSense/HyperspectralAnalysisIntroduction\n", - "3 ---> https://github.com/MultithreadCorner/Hydra\n", - "6 ---> https://github.com/mgiorgio/comet-utilities\n", - "7 ---> https://github.com/specpose/stopeight\n", - "5 ---> https://github.com/MIC-DKFZ/cmdint\n", - "3 ---> https://github.com/pysat/pysatMadrigal\n", - "3 ---> https://github.com/berenslab/pr_bc_connectivity\n", - "3 ---> https://github.com/helioforecast/Predstorm\n", - "9 ---> https://github.com/datproject/dat\n", - "3 ---> https://github.com/TUW-GEO/ease_grid\n", - "3 ---> https://github.com/hrtlacek/faustTools\n", - "3 ---> https://github.com/Abe404/segmentation_of_roots_in_soil_with_unet\n", - "5 ---> https://github.com/ctreffe/alfred\n", - "6 ---> https://github.com/myGrid/ruby-zip-container\n", - "3 ---> https://github.com/ECSIM/pem-dataset1\n", - "7 ---> https://github.com/hasantayyar/doi-tools\n", - "3 ---> https://github.com/perryuu/managpu\n", - "3 ---> https://github.com/IceCubeOpenSource/ASTERIA\n", - "6 ---> https://github.com/jeremyf/orcid_album_cover\n", - "3 ---> https://github.com/josemiotto/pylevy\n", - "1 ---> https://github.com/JolleJolles/pirecorder\n", - "3 ---> https://github.com/mdolab/pygeo\n", - "3 ---> https://github.com/TUW-GEO/rt1\n", - "3 ---> https://github.com/AnyBody-Research-Group/AnyPyTools\n", - "3 ---> https://github.com/Yefee/xMCA\n", - "3 ---> https://github.com/rlworkgroup/garage\n", - "3 ---> https://github.com/screensinthewild/screenbase_unity_slideshow\n", - "6 ---> https://github.com/theblackunknown/creative-ecosystems\n", - "3 ---> https://github.com/simpeg/discretize\n", - "7 ---> https://github.com/tactcomplabs/xbgas-tools\n", - "3 ---> https://github.com/LRCFS/GSR_Paper\n", - "3 ---> https://github.com/soft-matter/trackpy\n", - "3 ---> https://github.com/jrleeman/biaxtools\n", - "3 ---> https://github.com/JaGeo/PaulingPublication\n", - "4 ---> https://github.com/tobysmith568/License-Sorter\n", - "7 ---> https://github.com/samik1986/ML_Semantic_Segmenation_NMI\n", - "3 ---> https://github.com/multiscale/ymmsl-python\n", - "3 ---> https://github.com/anitagraser/movingpandas\n", - "3 ---> https://github.com/fls-bioinformatics-core/RnaChipIntegrator\n", - "3 ---> https://github.com/bionet/ted.python\n", - "2 ---> https://github.com/thorstenwagner/ij-trackmate-findmaxima\n", - "3 ---> https://github.com/NHERI-SimCenter/pelicun\n", - "5 ---> https://github.com/hibernator11/AprendiendoPython\n", - "3 ---> https://github.com/danieljfarrell/pvtrace\n", - "3 ---> https://github.com/neuroscout/neuroscout-cli\n", - "5 ---> https://github.com/MichaelMauderer/Gazer\n", - "6 ---> https://github.com/FedUni/caliko\n", - "3 ---> https://github.com/vcutrona/elasticpedia\n", - "6 ---> https://github.com/aleksandarsibincic/ExcelAudit\n", - "7 ---> https://github.com/aldnav/abempy\n", - "3 ---> https://github.com/spectrochempy/spectrochempy\n", - "3 ---> https://github.com/isi-nmr/bruker2bart\n", - "3 ---> https://github.com/HobnobMancer/PhD_Project_Scripts\n", - "3 ---> https://github.com/drcassar/glasspy\n", - "3 ---> https://github.com/rieder/MASC\n", - "7 ---> https://github.com/oblassers/tuw-servicebroker\n", - "3 ---> https://github.com/Nelson-Gon/pyautocv\n", - "3 ---> https://github.com/jajcayn/pygpso\n", - "5 ---> https://github.com/Craig-Robson/postgres_spatial_join_areas\n", - "7 ---> https://github.com/MAGIC-nexus/nis-graph-diagrams\n", - "6 ---> https://github.com/silviodc/Gazetteer\n", - "3 ---> https://github.com/alchemistry/alchemlyb\n", - "6 ---> https://github.com/timtroendle/energy-agents\n", - "3 ---> https://github.com/xgcm/xgcm\n", - "3 ---> https://github.com/mheikenfeld/wrfcube\n", - "6 ---> https://github.com/sojamo/midimapper\n", - "3 ---> https://github.com/datreant/MDSynthesis\n", - "3 ---> https://github.com/UNSW-CEEM/NEMOSIS\n", - "3 ---> https://github.com/KeplerGO/K2fov\n", - "3 ---> https://github.com/atorras1618/PerMaViss\n", - "3 ---> https://github.com/tubiana/TTClust\n", - "3 ---> https://github.com/matt-long/xpersist\n", - "3 ---> https://github.com/bast/smeshing\n", - "5 ---> https://github.com/Scifabric/pybossa\n", - "3 ---> https://github.com/ds-wizard/docs\n", - "3 ---> https://github.com/abelcarreras/phonolammps\n", - "3 ---> https://github.com/jason-zl190/sisr_medical\n", - "3 ---> https://github.com/mdshw5/pyfaidx\n", - "3 ---> https://github.com/wiebket/delprocess\n", - "3 ---> https://github.com/holoviz/datashader\n", - "3 ---> https://github.com/ISA-tools/mzml2isa\n", - "5 ---> https://github.com/ajefweiss/HelioSat\n", - "3 ---> https://github.com/houghb/savvy\n", - "7 ---> https://github.com/fnl/gnamed\n", - "3 ---> https://github.com/jjgomera/iapws\n", - "6 ---> https://github.com/dicom/rtp-connect\n", - "5 ---> https://github.com/moonso/genmod\n", - "3 ---> https://github.com/zafarali/emdp\n", - "3 ---> https://github.com/phydev/trajpy\n", - "3 ---> https://github.com/IMMM-SFA/im3py\n", - "5 ---> https://github.com/yadage/yadage-schemas\n", - "5 ---> https://github.com/karenadam/Mixed-Bandlimited-Time-Encoding\n", - "3 ---> https://github.com/spacetelescope/gwcs\n", - "3 ---> https://github.com/mkjung99/pyc3dserver\n", - "3 ---> https://github.com/reegis/reegis\n", - "3 ---> https://github.com/kimlab/GPyM\n", - "3 ---> https://github.com/woutergins/satlas\n", - "3 ---> https://github.com/lachhebo/pyclustertend\n", - "3 ---> https://github.com/wiebket/delretrieve\n", - "4 ---> https://github.com/digitallinguistics/transliterate\n", - "3 ---> https://github.com/nlesc-nano/Nano-Utils\n", - "3 ---> https://github.com/oemof/oemof-thermal\n", - "3 ---> https://github.com/LRydin/MFDFA\n", - "7 ---> https://github.com/Flowminder/FlowKit\n", - "3 ---> https://github.com/linhd-postdata/desir\n", - "3 ---> https://github.com/DLR-SC/gitlab2prov\n", - "3 ---> https://github.com/openearth/aeolis-python\n", - "9 ---> https://github.com/Lonero-Team/Decentralized-Internet\n", - "7 ---> https://github.com/LegoStormtroopr/django-spaghetti-and-meatballs\n", - "5 ---> https://github.com/smarie/python-azureml-client\n", - "3 ---> https://github.com/NREL/floris\n", - "7 ---> https://github.com/ADicksonLab/wepy\n", - "3 ---> https://github.com/M4I-nanoscopy/tpx3-event-localisation\n", - "6 ---> https://github.com/myGrid/ruby-ucf\n", - "3 ---> https://github.com/andsor/pyfssa\n", - "3 ---> https://github.com/arkottke/pykoom\n", - "5 ---> https://github.com/tardis-sn/tardis\n", - "3 ---> https://github.com/IaPCS/gmsh-exodus-converter\n", - "3 ---> https://github.com/atait/lytest\n", - "3 ---> https://github.com/ocsmit/rindcalc\n", - "8 ---> https://github.com/mpostol/TP\n", - "9 ---> https://github.com/ElektraInitiative/libelektra\n", - "3 ---> https://github.com/will-rowe/groot\n", - "7 ---> https://github.com/bexis/Module_LUI\n", - "3 ---> https://github.com/benjaminrose/MC-Age\n", - "7 ---> https://github.com/SSW-DataLab/randomizer\n", - "3 ---> https://github.com/FowlerLab/Enrich2\n", - "9 ---> https://github.com/Andros-Spica/PhD-defense\n", - "3 ---> https://github.com/SirSharpest/NarrowEscapeSimulator\n", - "3 ---> https://github.com/annotation/tutorials\n", - "3 ---> https://github.com/RDFLib/OWL-RL\n", - "7 ---> https://github.com/RPGroup-PBoC/vdj_recombination\n", - "7 ---> https://github.com/carpyncho/carpyncho\n", - "3 ---> https://github.com/jpvantassel/sigpropy\n", - "5 ---> https://github.com/camelot-project/frontend\n", - "3 ---> https://github.com/cggh/scikit-allel\n", - "3 ---> https://github.com/kundajelab/seqdataloader\n", - "7 ---> https://github.com/ubccr/xdmod\n", - "3 ---> https://github.com/TomasBeuzen/pybeach\n", - "9 ---> https://github.com/prevwong/craft.js\n", - "3 ---> https://github.com/CovingtonResearchGroup/olm\n", - "3 ---> https://github.com/zykls/whynot\n", - "7 ---> https://github.com/DLR-RM/RAFCON\n", - "3 ---> https://github.com/hpparvi/PyTransit\n", - "3 ---> https://github.com/BigDataBiology/GMGC-mapper\n", - "5 ---> https://github.com/andycasey/ads\n", - "9 ---> https://github.com/darribas/wmn\n", - "5 ---> https://github.com/caltechlibrary/holdit\n", - "3 ---> https://github.com/AMReX-Astro/Castro\n", - "3 ---> https://github.com/greglucas/bezpy\n", - "2 ---> https://github.com/RCHG/FunFAN\n", - "3 ---> https://github.com/geek-yang/META\n", - "6 ---> https://github.com/Sentimentron/Nebraska-public\n", - "3 ---> https://github.com/jkibele/OpticalRS\n", - "4 ---> https://github.com/jupiterbak/FAPSDemoOPCUAServer2\n", - "3 ---> https://github.com/seandavi/ngCGH\n", - "3 ---> https://github.com/fraserw/trippy\n", - "3 ---> https://github.com/SainsburyWellcomeCentre/lasagna\n", - "4 ---> https://github.com/ufz/ogs\n", - "3 ---> https://github.com/libsemigroups/libsemigroups\n", - "5 ---> https://github.com/IDEES-Rouen/Flight-Scrapping\n", - "3 ---> https://github.com/AshKelly/pyquad\n", - "3 ---> https://github.com/jolespin/soothsayer\n", - "3 ---> https://github.com/kklmn/xrt\n", - "3 ---> https://github.com/beringresearch/ivis\n", - "3 ---> https://github.com/mdolab/pyspline\n", - "3 ---> https://github.com/thieunguyen5991/opfunu\n", - "8 ---> https://github.com/fmannhardt/pddp\n", - "3 ---> https://github.com/gwpy/gwpy\n", - "3 ---> https://github.com/pyvista/pyvista\n", - "5 ---> https://github.com/arcolife/scholarec\n", - "9 ---> https://github.com/NUStreaming/acm-mmsys-2020-grand-challenge\n", - "3 ---> https://github.com/adamewing/tebreak\n", - "5 ---> https://github.com/papis/papis\n", - "3 ---> https://github.com/wlad111/small_probs\n", - "3 ---> https://github.com/slimgroup/ServerlessImagingAWS\n", - "3 ---> https://github.com/danielbmmatos/Reduced-Model-of-Shear-Building\n", - "3 ---> https://github.com/biocore/qiime\n", - "5 ---> https://github.com/aretha-hep/mprtect\n", - "9 ---> https://github.com/bionode/bionode-template\n", - "3 ---> https://github.com/SebastianEggert/OpenWorkstation\n", - "3 ---> https://github.com/pyscf/pyscf\n", - "3 ---> https://github.com/GijsMulders/epos\n", - "5 ---> https://github.com/castelao/PyAVISO\n", - "6 ---> https://github.com/korpling/ANNIS\n", - "6 ---> https://github.com/sayounara/Green_training\n", - "9 ---> https://github.com/WikiWatershed/model-my-watershed\n", - "3 ---> https://github.com/aymara/lima\n", - "5 ---> https://github.com/xieguigang/ManhattanPlot\n", - "6 ---> https://github.com/thorstenwagner/TraJ\n", - "9 ---> https://github.com/sealuzh/lightweight-effectiveness\n", - "9 ---> https://github.com/phiresky/backchannel-prediction\n", - "5 ---> https://github.com/labexp/LibreScan\n", - "3 ---> https://github.com/jdmoorman/laptools\n", - "3 ---> https://github.com/krassowski/drug-disease-profile-matching\n", - "9 ---> https://github.com/allucas/allucas.github.io\n", - "3 ---> https://github.com/BradMcDanel/term-revealing\n", - "3 ---> https://github.com/silx-kit/pyFAI\n", - "3 ---> https://github.com/scipy-lectures/scipy-lecture-notes\n", - "3 ---> https://github.com/ornlneutronimaging/NEUIT\n", - "3 ---> https://github.com/kgullikson88/General\n", - "3 ---> https://github.com/BristolTopGroup/DailyPythonScripts\n", - "3 ---> https://github.com/redcap-tools/PyCap\n", - "6 ---> https://github.com/dgarijo/Widoco\n", - "6 ---> https://github.com/PecanProject/bety\n", - "9 ---> https://github.com/AABoyles/MicrobeTrace\n", - "4 ---> https://github.com/supercollider/supercollider\n", - "3 ---> https://github.com/linsalrob/PhiSpy\n", - "7 ---> https://github.com/Koushikphy/Interactive_Data_Editor\n", - "3 ---> https://github.com/keichi/mpEDM\n", - "7 ---> https://github.com/cldf-clts/pyclts\n", - "3 ---> https://github.com/TEB-model/teb\n", - "3 ---> https://github.com/comic/evalutils\n", - "7 ---> https://github.com/suryabaiarava/liferay-examples\n", - "3 ---> https://github.com/opencobra/cobratoolbox\n", - "3 ---> https://github.com/dtscalibration/python-dts-calibration\n", - "3 ---> https://github.com/eqcorrscan/EQcorrscan\n", - "3 ---> https://github.com/scikit-hep/decaylanguage\n", - "9 ---> https://github.com/OpenGeoscience/geojs\n", - "3 ---> https://github.com/PyThaiNLP/pythainlp\n", - "3 ---> https://github.com/TUW-GEO/ascat\n", - "6 ---> https://github.com/rvanheest/feedback4s\n", - "3 ---> https://github.com/screensinthewild/screenbase_instantiated_slideshow\n", - "3 ---> https://github.com/AMReX-Astro/MAESTROeX\n", - "3 ---> https://github.com/christianjauregui/famafrench\n", - "7 ---> https://github.com/TBroTeam/TBro\n", - "7 ---> https://github.com/mattbit/active-network-er\n", - "3 ---> https://github.com/timetag/ETA\n", - "3 ---> https://github.com/stephankramer/assess\n", - "6 ---> https://github.com/DataFusion4NetBio/Paper16-SCODE\n", - "9 ---> https://github.com/CDAT/jupyter-vcdat\n", - "3 ---> https://github.com/jorvlan/open-visualizations\n", - "3 ---> https://github.com/lsa-pucrs/acerta-abide\n", - "3 ---> https://github.com/particle-physics-playground/playground\n", - "3 ---> https://github.com/krischer/hypoDDpy\n", - "3 ---> https://github.com/jankrepl/deepdow\n", - "3 ---> https://github.com/weijias-opensource/acc\n", - "3 ---> https://github.com/sam-nayak/SynthNet\n", - "3 ---> https://github.com/laserkelvin/PySpecTools\n", - "5 ---> https://github.com/nithyanandan/AstroUtils\n", - "3 ---> https://github.com/tactcomplabs/xbgas-llvm\n", - "3 ---> https://github.com/mdolab/pyoptsparse\n", - "3 ---> https://github.com/tholoien/empiriciSN\n", - "3 ---> https://github.com/FUSED-Wind/fusedwind\n", - "3 ---> https://github.com/sam-greenwood/taco_vis\n", - "6 ---> https://github.com/lifs-tools/jmzTab-m\n", - "3 ---> https://github.com/JannisHoch/pcrglobwb_utils\n", - "3 ---> https://github.com/hep-lbdl/CaloGAN\n", - "7 ---> https://github.com/epiviz/Metaviz\n", - "3 ---> https://github.com/bbfrederick/rapidtide\n", - "3 ---> https://github.com/pnlbwh/conversion\n", - "9 ---> https://github.com/butcer0/SequenceOne\n", - "3 ---> https://github.com/LinkedEarth/Pyleoclim_util\n", - "3 ---> https://github.com/IMAGINE-Consortium/imagine\n", - "3 ---> https://github.com/glm-tools/pyglmnet\n", - "3 ---> https://github.com/aburrell/aacgmv2\n", - "3 ---> https://github.com/sncosmo/sncosmo\n", - "9 ---> https://github.com/InsightSoftwareConsortium/itkwidgets\n", - "3 ---> https://github.com/ICB-DCM/pyPESTO\n", - "3 ---> https://github.com/lballabio/QuantLib-SWIG\n", - "3 ---> https://github.com/SoftwareDevEngResearch/RigidFoilSimulator\n", - "3 ---> https://github.com/samuelstjean/dpr\n", - "5 ---> https://github.com/interrogator/corpkit\n", - "7 ---> https://github.com/gwu-libraries/sfm-ui\n", - "5 ---> https://github.com/tyson-swetnam/porder\n", - "1 ---> https://github.com/sabgaby/sabgaby\n", - "3 ---> https://github.com/panisson/pymobility\n", - "9 ---> https://github.com/ryanpeek/mapping-in-R-workshop\n", - "3 ---> https://github.com/lewisacidic/scikit-chem\n", - "4 ---> https://github.com/GerardBalaoro/jQuery-Tourer\n", - "6 ---> https://github.com/KnowledgeCaptureAndDiscovery/DISK\n", - "3 ---> https://github.com/RTIInternational/gobbli\n", - "3 ---> https://github.com/fabriziocosta/GraphLearn\n", - "3 ---> https://github.com/solvebio/veppy\n", - "3 ---> https://github.com/diku-dk/futhark\n", - "9 ---> https://github.com/kks32-slides/2016-berkeley\n", - "6 ---> https://github.com/SeqWare/oozie-sge\n", - "3 ---> https://github.com/kristianfoerster/melodist\n", - "9 ---> https://github.com/midas-isg/epicasemap\n", - "3 ---> https://github.com/BristolTopGroup/NTupleProduction\n", - "3 ---> https://github.com/kuchaale/X-regression\n", - "9 ---> https://github.com/dockstore/dockstore-ui2\n", - "3 ---> https://github.com/abhi1693/yii2-sms\n", - "6 ---> https://github.com/NLeSC/eEcology-Classification\n", - "3 ---> https://github.com/jdidion/atropos\n", - "3 ---> https://github.com/KBRI-Neuroinformatics/WGAN-for-RNASeq-analysis\n", - "3 ---> https://github.com/PinkShnack/TEMUL\n", - "9 ---> https://github.com/rOpenGov/eurostat\n", - "3 ---> https://github.com/rock-learning/pytransform3d\n", - "3 ---> https://github.com/matthiaskoenig/sbmlutils\n", - "3 ---> https://github.com/PennLINC/aslprep\n", - "3 ---> https://github.com/tamacgregor/structure_factor_tools\n", - "3 ---> https://github.com/kgullikson88/gullikson-scripts\n", - "3 ---> https://github.com/jacirrone/OutPredict\n", - "6 ---> https://github.com/shiyy123/FCDetector\n", - "2 ---> https://github.com/fmi-faim/fmi-trackmate-addons\n", - "7 ---> https://github.com/biocaddie/WG3-MetadataSpecifications\n", - "3 ---> https://github.com/habi/Zebra-Fish-Gills\n", - "5 ---> https://github.com/ga4gh/tool-registry-validator\n", - "3 ---> https://github.com/sagemath/sage\n", - "7 ---> https://github.com/4DNucleome/PartSeg\n", - "7 ---> https://github.com/priestoferis/animal-behaviour-analysis-2020\n", - "6 ---> https://github.com/mayconbordin/streaminer\n", - "1 ---> https://github.com/ctsit/redcap_external_module_development_guide\n", - "9 ---> https://github.com/joshje/drawpath\n", - "7 ---> https://github.com/BeckResearchLab/USP-inhibition\n", - "9 ---> https://github.com/bio-ontology-research-group/DDIEM\n", - "7 ---> https://github.com/fvalka/atc-reinforcement-learning\n", - "3 ---> https://github.com/kb-press/ndsplines\n", - "5 ---> https://github.com/agnsal/BlocksBot\n", - "3 ---> https://github.com/benmaier/COVID19CaseNumberModel\n", - "3 ---> https://github.com/uweschmitt/emzed2\n", - "9 ---> https://github.com/prajankya/Lidar-Robot\n", - "3 ---> https://github.com/AAROC/DevOps\n", - "3 ---> https://github.com/ybayle/Scyland3D\n", - "3 ---> https://github.com/jswhit/pygrib\n", - "3 ---> https://github.com/PTC-CMC/McCabeGroup\n", - "7 ---> https://github.com/bdw/GridKit\n", - "1 ---> https://github.com/feelpp/feelpp\n", - "3 ---> https://github.com/seclab-ucr/UBITect\n", - "5 ---> https://github.com/SuLab/scheduled-bots\n", - "3 ---> https://github.com/mjlaine/eppes\n", - "3 ---> https://github.com/alpha-xone/xbbg\n", - "3 ---> https://github.com/IA-Cardiologia-husa/VHD_NLP\n", - "7 ---> https://github.com/ahamilton144/hamilton-2020-managing-financial-risk-tradeoffs-for-hydropower\n", - "9 ---> https://github.com/MonashBioinformaticsPlatform/laxy\n", - "3 ---> https://github.com/Ptrskay3/PySprint\n", - "3 ---> https://github.com/gaojun0816/code_access_finder\n", - "9 ---> https://github.com/LinkedDataFragments/Server.js\n", - "9 ---> https://github.com/lgsvl/simulator\n", - "3 ---> https://github.com/foerstner-lab/GRADitude\n", - "3 ---> https://github.com/BritishMuseumDH/britishMuseumFacesDetection\n", - "3 ---> https://github.com/mattpitkin/psrqpy\n", - "3 ---> https://github.com/cbirdferrer/collatrix\n", - "3 ---> https://github.com/spacetelescope/pysiaf\n", - "3 ---> https://github.com/jag1g13/pycgtool\n", - "9 ---> https://github.com/jtmccr1/figtreejs-react\n", - "5 ---> https://github.com/vedantchandra/wdtools\n", - "3 ---> https://github.com/ericleasemorgan/reader\n", - "9 ---> https://github.com/AbhinavMir/Decentralized-Journalism-Using-Ethereum\n", - "7 ---> https://github.com/juliolugo96/ula-lang\n", - "3 ---> https://github.com/CountESS-Project/fqfa\n", - "1 ---> https://github.com/reflectivity/reflectivity.github.io\n", - "6 ---> https://github.com/vuw-sim-stia/TICJ\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "5 ---> https://github.com/tudelft3d/bag3d\n", - "6 ---> https://github.com/cyverse-gis/suas-metadata\n", - "5 ---> https://github.com/mwcraig/msumastro\n", - "7 ---> https://github.com/ctsit/qipr_approver\n", - "7 ---> https://github.com/Caltech-IPAC/Montage\n", - "3 ---> https://github.com/emtpb/pyfds\n", - "6 ---> https://github.com/DennisRippinger/spade\n", - "5 ---> https://github.com/Chilipp/psyplot_old\n", - "9 ---> https://github.com/UNCG-DAISY/Coastal-Image-Labeler\n", - "7 ---> https://github.com/jiemakel/aether\n", - "3 ---> https://github.com/chrisdjscott/Atoman\n", - "9 ---> https://github.com/cosmo-epfl/chemiscope\n", - "5 ---> https://github.com/spcl/dace\n", - "3 ---> https://github.com/CardiacModelling/nonlinear-time-dependent-leak\n", - "3 ---> https://github.com/templateflow/python-client\n", - "3 ---> https://github.com/redmod-team/profit\n", - "3 ---> https://github.com/pavolgaj/ObsPlanner\n", - "3 ---> https://github.com/nick-youngblut/MGSIM\n", - "6 ---> https://github.com/fcproj/agrotagger\n", - "7 ---> https://github.com/epiviz/epiviz\n", - "9 ---> https://github.com/filips123/EthAvatar.JS\n", - "6 ---> https://github.com/quadrama/DramaNLP\n", - "9 ---> https://github.com/Kitware/itk-vtk-viewer\n", - "7 ---> https://github.com/academic/thesaurus-manager\n", - "6 ---> https://github.com/milaboratory/mixcr\n", - "7 ---> https://github.com/Fu-PusH/statement-finder\n", - "3 ---> https://github.com/openmc-dev/openmc\n", - "3 ---> https://github.com/brelsford/topology\n", - "5 ---> https://github.com/thela/django_log_to_telegram\n", - "3 ---> https://github.com/cigroup-ol/metaopt\n", - "3 ---> https://github.com/lucananni93/CTCF_Spatial_Patterns\n", - "3 ---> https://github.com/stfbnc/fathon\n", - "3 ---> https://github.com/prisms-center/CASMcode\n", - "3 ---> https://github.com/ccd-utexas/binstarsolver\n", - "5 ---> https://github.com/wallissoncarvalho/HidroData\n", - "3 ---> https://github.com/XPRESSyourself/XPRESSplot\n", - "3 ---> https://github.com/airr-community/airr-standards\n", - "3 ---> https://github.com/joaomcteixeira/taurenmd\n", - "3 ---> https://github.com/jyhmiinlin/pynufft\n", - "3 ---> https://github.com/atrisovic/econ-data-policy\n", - "7 ---> https://github.com/DPBayes/DP-cross-silo-federated-learning\n", - "3 ---> https://github.com/statsmodels/statsmodels\n", - "6 ---> https://github.com/SciGraph/SciGraph\n", - "3 ---> https://github.com/giannisdoukas/ipython2cwl\n", - "3 ---> https://github.com/Neurita/pypes\n", - "3 ---> https://github.com/pesummary/pesummary\n", - "6 ---> https://github.com/nilsreiter/CorefAnnotator\n", - "7 ---> https://github.com/tripal/tripal_galaxy\n", - "7 ---> https://github.com/hipster-philology/protogenie\n", - "3 ---> https://github.com/PGijsbers/gama\n", - "5 ---> https://github.com/collab-uniba/personality\n", - "5 ---> https://github.com/sertansenturk/makammusicbrainz\n", - "4 ---> https://github.com/biowdl/germline-DNA\n", - "7 ---> https://github.com/CLARIAH/grlc\n", - "3 ---> https://github.com/openvax/isovar\n", - "7 ---> https://github.com/iimog/wikidata-game-flower-color\n", - "3 ---> https://github.com/seawander/nmf_imaging\n", - "3 ---> https://github.com/GiulioRossetti/cdlib\n", - "3 ---> https://github.com/neuhofmo/RecBlast\n", - "3 ---> https://github.com/cyverse-vice/jupyterlab-scipy\n", - "1 ---> https://github.com/UWDIRECT/UWDIRECT.github.io\n", - "3 ---> https://github.com/CoffeaTeam/coffea\n", - "6 ---> https://github.com/Rothamsted/knetminer\n", - "3 ---> https://github.com/multipaths/DiffuPath\n", - "3 ---> https://github.com/matplotlib/mpl-probscale\n", - "3 ---> https://github.com/richardjgowers/GCMCbenchmarks\n", - "5 ---> https://github.com/daft-dev/daft\n", - "9 ---> https://github.com/arose/ngl\n", - "3 ---> https://github.com/fa-me/spotlob\n", - "3 ---> https://github.com/thompsonsed/pycoalescence\n", - "9 ---> https://github.com/sdss/marvin\n", - "3 ---> https://github.com/brmather/pycurious\n", - "3 ---> https://github.com/MHKiT-Software/MHKiT-MATLAB\n", - "9 ---> https://github.com/sigsep/sigsep-mus-2018-website\n", - "3 ---> https://github.com/amusecode/amuse\n", - "9 ---> https://github.com/bwbohl/introduction-to-mei\n", - "9 ---> https://github.com/JaneliaSciComp/SharkViewer\n", - "3 ---> https://github.com/KeplerGO/lightkurve\n", - "3 ---> https://github.com/transientlunatic/gravpy\n", - "3 ---> https://github.com/astroufsc/chimera\n", - "9 ---> https://github.com/cogan-shimizu-wsu/ExperimentAnnotationTracker\n", - "3 ---> https://github.com/jenojp/extractacy\n", - "9 ---> https://github.com/aaronSig/rainforest-rhythms\n", - "3 ---> https://github.com/valentina-s/time-series-nmf\n", - "3 ---> https://github.com/Nikronic/Optimized-MDVRP\n", - "3 ---> https://github.com/pr-omethe-us/PyTeCK\n", - "5 ---> https://github.com/bumps/bumps\n", - "3 ---> https://github.com/jtempkin/enhanced_sampling_toolkit\n", - "7 ---> https://github.com/automatedskip/homerent.io\n", - "3 ---> https://github.com/a-slide/NanoCount\n", - "3 ---> https://github.com/NLeSC/dask-cassandra-loader\n", - "8 ---> https://github.com/explosion/spaCy\n", - "9 ---> https://github.com/mjuez/TFM2016_Analisis-Visual-Revisiones-Codigo\n", - "6 ---> https://github.com/owlcollab/owltools\n", - "6 ---> https://github.com/mmhss/sstrong-import\n", - "3 ---> https://github.com/I2Cvb/retinopathy\n", - "9 ---> https://github.com/sgsaenger/vipster\n", - "3 ---> https://github.com/SHDShim/PeakPo\n", - "3 ---> https://github.com/rangeetpan/decomposeDNNintoModules\n", - "3 ---> https://github.com/InsightSoftwareConsortium/ITKColorNormalization\n", - "3 ---> https://github.com/coin-or/Dip\n", - "9 ---> https://github.com/Thales1330/PSP\n", - "3 ---> https://github.com/fepegar/torchio\n", - "3 ---> https://github.com/phenoscape/phenoscape-owl-tools\n", - "5 ---> https://github.com/htcondor/htcondor-ce\n", - "3 ---> https://github.com/hugadams/pyparty\n", - "5 ---> https://github.com/NLeSC/baklava\n", - "7 ---> https://github.com/howardyclo/grammar-pattern\n", - "9 ---> https://github.com/ufbmi/mdc_search\n", - "7 ---> https://github.com/aplowman/first-principles-zr-grain-boundaries\n", - "7 ---> https://github.com/dlozeve/tda-networks\n", - "3 ---> https://github.com/mustakcsecuet/COIN-Attacks\n", - "5 ---> https://github.com/LargerPanda/ceph\n", - "3 ---> https://github.com/glukicov/ML_GPU\n", - "3 ---> https://github.com/devitocodes/devito\n", - "3 ---> https://github.com/pnlbwh/TBSS\n", - "3 ---> https://github.com/scipy/scipy\n", - "3 ---> https://github.com/DiamondLightSource/SuRVoS\n", - "3 ---> https://github.com/wri/restoration-mapper\n", - "3 ---> https://github.com/ICB-DCM/tumor2d\n", - "3 ---> https://github.com/sertansenturk/symbtrdataextractor\n", - "7 ---> https://github.com/chrisma/ScrumLint\n", - "3 ---> https://github.com/TheoryInPractice/BEAVr\n", - "7 ---> https://github.com/jloveric/high-order-layers\n", - "3 ---> https://github.com/jcreinhold/selfsupervised3d\n", - "3 ---> https://github.com/mlp6/fem\n", - "3 ---> https://github.com/Eden-Kramer-Lab/replay_trajectory_classification\n", - "3 ---> https://github.com/nschloe/colorio\n", - "3 ---> https://github.com/tsalo/convert-eprime\n", - "3 ---> https://github.com/projectglow/glow\n", - "3 ---> https://github.com/FRidh/scintillations\n", - "3 ---> https://github.com/pitt-rnel/perceptmapper\n", - "7 ---> https://github.com/carnisj/bcdi\n", - "3 ---> https://github.com/pysal/esda\n", - "3 ---> https://github.com/pedropro/TACO\n", - "5 ---> https://github.com/nkratzke/twista\n", - "3 ---> https://github.com/MicroPasts/egyptExplorationSocietyBuhen\n", - "3 ---> https://github.com/Lasagne/Lasagne\n", - "9 ---> https://github.com/Andros-Spica/EMAC-Angourakis-et-al-2019\n", - "4 ---> https://github.com/fg-inet/DASH-streaming-setup\n", - "3 ---> https://github.com/JiaweiZhuang/xESMF\n", - "3 ---> https://github.com/astrorama/SourceXtractorPlusPlus\n", - "3 ---> https://github.com/ssec/sift\n", - "5 ---> https://github.com/IMMM-SFA/proxymod\n", - "5 ---> https://github.com/bgruening/docker-galaxy-stable\n", - "3 ---> https://github.com/reflectometry/refl1d\n", - "3 ---> https://github.com/napari/napari\n", - "3 ---> https://github.com/sgrieve/spatial_efd\n", - "3 ---> https://github.com/genn-team/genn\n", - "3 ---> https://github.com/AxFoundation/strax\n", - "3 ---> https://github.com/pofatu/pypofatu\n", - "3 ---> https://github.com/bsc-mem/UEPREDICT\n", - "6 ---> https://github.com/Smart-Contract-Modelling-uOttawa/Symboleo-Compliance-Checker\n", - "3 ---> https://github.com/smarie/python-spawny\n", - "3 ---> https://github.com/usnistgov/jarvis\n", - "3 ---> https://github.com/diana-hep/carl\n", - "5 ---> https://github.com/PTB-PSt1/PyDynamic\n", - "3 ---> https://github.com/mne-tools/mne-python\n", - "4 ---> https://github.com/mlbernauer/drugstandards\n", - "3 ---> https://github.com/kundajelab/kerasAC\n", - "7 ---> https://github.com/felicitia/TestAnalyzer\n", - "7 ---> https://github.com/sshilpika/error-log-analysis\n", - "3 ---> https://github.com/dhermes/bezier\n", - "3 ---> https://github.com/sphinx-gallery/sphinx-gallery\n", - "3 ---> https://github.com/pysal/pysal\n", - "3 ---> https://github.com/numericalalgorithmsgroup/pybobyqa\n", - "3 ---> https://github.com/PyNIPT/pynipt\n", - "3 ---> https://github.com/jesford/cluster-lensing\n", - "3 ---> https://github.com/cosanlab/nltools\n", - "9 ---> https://github.com/plantinformatics/pretzel\n", - "3 ---> https://github.com/ryanpdwyer/1605-phasekick\n", - "7 ---> https://github.com/NatLibFi/Skosmos\n", - "7 ---> https://github.com/jcchiba/GANSta\n", - "7 ---> https://github.com/chembience/chembience\n", - "3 ---> https://github.com/Quantum-TII/qprime\n", - "9 ---> https://github.com/OpenKnowledgeMaps/Headstart\n", - "3 ---> https://github.com/radnut/amc\n", - "3 ---> https://github.com/omuse-geoscience/omuse\n", - "6 ---> https://github.com/klugem/watchdog\n", - "3 ---> https://github.com/nils-wisiol/pypuf\n", - "3 ---> https://github.com/ladisk/pyDIC\n", - "3 ---> https://github.com/easyDiffraction/easyDiffraction\n", - "3 ---> https://github.com/pauleve/pint\n", - "3 ---> https://github.com/e5k/TephraProb\n", - "2 ---> https://github.com/fmalmeida/bacannot\n", - "3 ---> https://github.com/delph-in/pydmrs\n", - "3 ---> https://github.com/GenericMappingTools/pygmt\n", - "4 ---> https://github.com/pymedphys/pymedphys\n", - "3 ---> https://github.com/anuprulez/galaxy_tool_recommendation\n", - "3 ---> https://github.com/BMKEG/sciDT-pipeline\n", - "9 ---> https://github.com/Irstea/otolithe\n", - "3 ---> https://github.com/hugovk/pypistats\n", - "3 ---> https://github.com/single-cell-genetics/vireo\n", - "9 ---> https://github.com/bionode/bionode\n", - "3 ---> https://github.com/Edric-Matwiejew/QuOp_MPI\n", - "9 ---> https://github.com/evanodell/parlitools\n", - "3 ---> https://github.com/steven-murray/hankel\n", - "5 ---> https://github.com/guillochon/MOSFiT\n", - "5 ---> https://github.com/lascivaroma/priapeia\n", - "3 ---> https://github.com/vahtras/loprop\n", - "3 ---> https://github.com/pv8/noipy\n", - "3 ---> https://github.com/MAfarrag/Hapi\n", - "3 ---> https://github.com/monteirotorres/ProtCHOIR\n", - "2 ---> https://github.com/dejac001/adsorption_isotherm_fitting\n", - "3 ---> https://github.com/GilesStrong/lumin\n", - "4 ---> https://github.com/worldsensing/xyz-iot-monitoring\n", - "6 ---> https://github.com/rcsb/ciftools-java\n", - "3 ---> https://github.com/cgre-aachen/pynoddy\n", - "3 ---> https://github.com/bashtage/linearmodels\n", - "3 ---> https://github.com/pygae/galgebra\n", - "7 ---> https://github.com/SandstoneHPC/sandstone-ide\n", - "3 ---> https://github.com/darothen/pyrcel\n", - "5 ---> https://github.com/DD-DeCaF/id-mapper\n", - "7 ---> https://github.com/Colectica/curation\n", - "5 ---> https://github.com/harnesscloud/harness-resource-manager\n", - "7 ---> https://github.com/huggingface/transformers\n", - "3 ---> https://github.com/stadelmanma/netl-ap-map-flow\n", - "3 ---> https://github.com/jl-wynen/isle\n", - "9 ---> https://github.com/rodighiero/DH2020\n", - "6 ---> https://github.com/scalaris-team/scalaris\n", - "5 ---> https://github.com/FEEprojects/plantower\n", - "3 ---> https://github.com/aibasel/pyperplan\n", - "3 ---> https://github.com/theboocock/NGaDNAP\n", - "6 ---> https://github.com/DeathStar3/symfinder\n", - "3 ---> https://github.com/AdmiralenOla/Scoary\n", - "3 ---> https://github.com/NickleDave/visual-search-nets\n", - "3 ---> https://github.com/dhondta/AppmemDumper\n", - "3 ---> https://github.com/scikit-hep/boost-histogram\n", - "7 ---> https://github.com/vsoch/askci\n", - "7 ---> https://github.com/boutiques/boutiques\n", - "3 ---> https://github.com/nansencenter/nansat\n", - "3 ---> https://github.com/cdanielmachado/reframed\n", - "3 ---> https://github.com/LightForm-group/matflow\n", - "5 ---> https://github.com/Capitains/Hook\n", - "3 ---> https://github.com/arokem/ISBI2015\n", - "3 ---> https://github.com/a-slide/NanoSnake\n", - "7 ---> https://github.com/laplizard/infoplot\n", - "3 ---> https://github.com/hugadams/PAME\n", - "3 ---> https://github.com/torressa/cspy\n", - "3 ---> https://github.com/ConservationInternational/trends.earth\n", - "3 ---> https://github.com/OpenChemistry/avogadrolibs\n", - "3 ---> https://github.com/ondrolexa/pywerami\n", - "9 ---> https://github.com/Sulstice/datacity\n", - "5 ---> https://github.com/bootphon/phonemizer\n", - "3 ---> https://github.com/chrisgorgo/alleninf\n", - "6 ---> https://github.com/opentox/lazar-rest\n", - "6 ---> https://github.com/SeqWare/seqware\n", - "3 ---> https://github.com/msmbuilder/osprey\n", - "5 ---> https://github.com/urschrei/CDP\n", - "7 ---> https://github.com/comic/grand-challenge.org\n", - "3 ---> https://github.com/roland-wallner/dss2020-ex1\n", - "3 ---> https://github.com/tasoc/corrections\n", - "9 ---> https://github.com/lucasberent/mapleDocs\n", - "5 ---> https://github.com/bakirtzisg/cybok-cli\n", - "3 ---> https://github.com/SuperElastix/SimpleElastix\n", - "3 ---> https://github.com/fsherry/bilevelmri\n", - "5 ---> https://github.com/USEPA/standardizedinventories\n", - "3 ---> https://github.com/ilogue/niprov\n", - "5 ---> https://github.com/kundajelab/atac_dnase_pipelines\n", - "3 ---> https://github.com/ktmeaton/NCBImeta\n", - "9 ---> https://github.com/University-of-Potsdam-MM/Reflect.UP\n", - "3 ---> https://github.com/mdolab/OpenAeroStruct\n", - "7 ---> https://github.com/amcpherson/remixt\n", - "3 ---> https://github.com/fbpic/fbpic\n", - "6 ---> https://github.com/sjcross/MIA\n", - "3 ---> https://github.com/RiceMunk/omnifit\n", - "9 ---> https://github.com/cronelab/bci2000web\n", - "3 ---> https://github.com/epigen/crop-seq\n", - "3 ---> https://github.com/rholson1/peyecoder\n", - "3 ---> https://github.com/dmnfarrell/pandastable\n", - "3 ---> https://github.com/YeoLab/flotilla\n", - "3 ---> https://github.com/amisr/flipchem\n", - "6 ---> https://github.com/TGAC/brassica\n", - "3 ---> https://github.com/silx-kit/fabio\n", - "3 ---> https://github.com/numericalalgorithmsgroup/dfols\n", - "1 ---> https://github.com/zeeguu-ecosystem/Zeeguu-API\n", - "7 ---> https://github.com/AVAuco/ssd_head_keras\n", - "5 ---> https://github.com/PRIMAVERA-H2020/primavera-dmt\n", - "3 ---> https://github.com/MartinMalyMM/pairef\n", - "3 ---> https://github.com/ImperialCollegeLondon/covid19model\n", - "3 ---> https://github.com/BrkRaw/bruker\n", - "6 ---> https://github.com/oicr-gsi/shesmu\n", - "7 ---> https://github.com/coderdj/emo\n", - "3 ---> https://github.com/ladisk/DyS\n", - "3 ---> https://github.com/Quasars/orange-spectroscopy\n", - "5 ---> https://github.com/WorldVistA/VistA\n", - "7 ---> https://github.com/faroit/CountNet\n", - "3 ---> https://github.com/HHTpy/HHTpywrapper\n", - "6 ---> https://github.com/constantinpape/z5\n", - "5 ---> https://github.com/samapriya/hdxpop\n", - "3 ---> https://github.com/pik-copan/pycopancore\n", - "3 ---> https://github.com/MARLEY-MC/marley\n", - "3 ---> https://github.com/garrettwrong/cuTWED\n", - "7 ---> https://github.com/greenape/mknotebooks\n", - "7 ---> https://github.com/bbglab/muts-needle-plot\n", - "3 ---> https://github.com/NickleDave/crowsetta\n", - "6 ---> https://github.com/ISA-tools/stato\n", - "3 ---> https://github.com/LJMUAstroecology/flirpy\n", - "3 ---> https://github.com/OntoElect/Code\n", - "6 ---> https://github.com/diging/giles-eco-cepheus\n", - "3 ---> https://github.com/scikit-hep/mplhep\n", - "3 ---> https://github.com/alimanfoo/vcfnp\n", - "3 ---> https://github.com/bjodah/finitediff\n", - "3 ---> https://github.com/pysit/pysit\n", - "5 ---> https://github.com/observingClouds/eurec4a_snd\n", - "3 ---> https://github.com/colloidlab/ccc-calculator\n", - "3 ---> https://github.com/elihuihms/itcsimlib\n", - "1 ---> https://github.com/tigefa4u/tigefa4u.github.io\n", - "5 ---> https://github.com/dvolgyes/zenodo_get\n", - "3 ---> https://github.com/alexander-rossner/dh-researchtool-landscape\n", - "7 ---> https://github.com/pylayers/pylayers\n", - "6 ---> https://github.com/alexrashed/eval_rest\n", - "3 ---> https://github.com/jovo/PyGraphStat\n", - "6 ---> https://github.com/dannyboscan/angular-and-rails\n", - "7 ---> https://github.com/Aletechdev/ava\n", - "3 ---> https://github.com/annotation/text-fabric\n", - "3 ---> https://github.com/ksmet1977/luxpy\n", - "6 ---> https://github.com/thorstenwagner/spie-photonics-europe-2016\n", - "3 ---> https://github.com/root-project/root\n", - "6 ---> https://github.com/slimsuite/SLiMScape\n", - "3 ---> https://github.com/AlanLoh/nenupy\n", - "3 ---> https://github.com/waterlandlab/CluBCpG\n", - "6 ---> https://github.com/diging/citesphere-importer\n", - "5 ---> https://github.com/OpenDroneMap/ODM\n", - "3 ---> https://github.com/openrsp/openrsp\n", - "9 ---> https://github.com/AliTVTeam/AliTV\n", - "3 ---> https://github.com/Finn-Lab/EukCC\n", - "1 ---> https://github.com/amlalejini/ALife-2020--SignalGP-Genetic-Regulation\n", - "6 ---> https://github.com/rinde/RinECJ\n", - "5 ---> https://github.com/spacetelescope/drizzlepac\n", - "5 ---> https://github.com/smoh/gaia-comoving-stars\n", - "3 ---> https://github.com/ckrapu/sprcom\n", - "6 ---> https://github.com/Terradue/rOpenSearch\n", - "9 ---> https://github.com/essepuntato/rash\n", - "3 ---> https://github.com/pygridtools/gridmap\n", - "5 ---> https://github.com/dftlibs/numgrid\n", - "6 ---> https://github.com/sckott/serrano\n", - "5 ---> https://github.com/snewhouse/exotic-dna-ngs\n", - "4 ---> https://github.com/numenta/gridcodingrange\n", - "7 ---> https://github.com/KWB-R/fakin\n", - "5 ---> https://github.com/fpavogt/fcmaker\n", - "9 ---> https://github.com/falafeljan/recogito-user-testing\n", - "3 ---> https://github.com/CalebBell/fluids\n", - "3 ---> https://github.com/ImperialCollegeLondon/acoustics-db\n", - "9 ---> https://github.com/mfroeling/QMRITools\n", - "5 ---> https://github.com/tqbl/ood_audio\n", - "9 ---> https://github.com/delphi-hub/delphi-webapp\n", - "3 ---> https://github.com/taishi-i/nagisa\n", - "3 ---> https://github.com/slimgroup/Azure2019\n", - "7 ---> https://github.com/afilipanog/afilipanog.github.io\n", - "5 ---> https://github.com/samapriya/Sat-Pipeline-CLI\n", - "6 ---> https://github.com/shah314/graphcoloring\n", - "3 ---> https://github.com/YeoLab/gscripts\n", - "1 ---> https://github.com/FitzwilliamMuseum/ahrc-linking-islands\n", - "3 ---> https://github.com/cern-fts/webfts\n", - "3 ---> https://github.com/brinkmanlab/feature_merge\n", - "9 ---> https://github.com/dohalloran/phylo-node\n", - "3 ---> https://github.com/IMTtugraz/PyQMRI\n", - "3 ---> https://github.com/openearth/aeolis\n", - "5 ---> https://github.com/obreitwi/py-veer\n", - "3 ---> https://github.com/InsightSoftwareConsortium/ITKElastix\n", - "4 ---> https://github.com/meijer-jeroen/contingent-evolution-2020\n", - "3 ---> https://github.com/pandera-dev/pandera\n", - "5 ---> https://github.com/cheshire3/cheshire3\n", - "5 ---> https://github.com/ludwig-burtscher/invenio-with-provenance\n", - "6 ---> https://github.com/CeON/CERMINE\n", - "3 ---> https://github.com/mjiUST/VasNet\n", - "6 ---> https://github.com/scleveland/NADV\n", - "6 ---> https://github.com/nextcloud/android\n", - "3 ---> https://github.com/neurodata/mvlearn\n", - "3 ---> https://github.com/TUM-CPN/CropTypes\n", - "6 ---> https://github.com/BMKEG/UimaBioC\n", - "4 ---> https://github.com/jbathmann/pyMANGA\n", - "3 ---> https://github.com/THzbiophotonics/Fit-TDS\n", - "6 ---> https://github.com/ICGC-TCGA-PanCancer/OxoGWrapperWorkflow\n", - "3 ---> https://github.com/franknu/cgmodsel\n", - "3 ---> https://github.com/openpathsampling/openpathsampling\n", - "5 ---> https://github.com/Teichlab/cellphonedb\n", - "7 ---> https://github.com/pear2/Net_Transmitter\n", - "3 ---> https://github.com/oslocyclotronlab/ompy\n", - "3 ---> https://github.com/GooglingTheCancerGenome/sv-gen\n", - "3 ---> https://github.com/benmontet/f3\n", - "3 ---> https://github.com/rubbs14/CSP-Analyzer\n", - "1 ---> https://github.com/hugomilan/tlmbht\n", - "9 ---> https://github.com/GRIFFINCollaboration/beamCompanionExplorer\n", - "5 ---> https://github.com/arnikz/PIQMIe\n", - "3 ---> https://github.com/SuperDARN/pydarn\n", - "6 ---> https://github.com/CharafeddineMechalikh/PureEdgeSim\n", - "9 ---> https://github.com/Andros-Spica/Postdocs-Angourakis-2019\n", - "8 ---> https://github.com/austindrenski/AD.PartialEquilibriumApi\n", - "3 ---> https://github.com/LightForm-group/xrdfit\n", - "3 ---> https://github.com/spcl/stencilflow\n", - "3 ---> https://github.com/kdmurray91/libqcpp\n", - "3 ---> https://github.com/nipy/nibabel\n", - "3 ---> https://github.com/openearth/flamingo\n", - "9 ---> https://github.com/ARGOeu/poem-2\n", - "1 ---> https://github.com/HelioML/HelioML\n", - "3 ---> https://github.com/SwissTPH/TBRU_serialTB\n", - "9 ---> https://github.com/liminoid/liminoid-react\n", - "3 ---> https://github.com/HaroldMills/Vesper\n", - "5 ---> https://github.com/iterative/dvc\n", - "3 ---> https://github.com/ultralytics/yolov5\n", - "3 ---> https://github.com/spa-networks/hpa\n", - "5 ---> https://github.com/PX4/Firmware\n", - "8 ---> https://github.com/speckleworks/SpeckleRhino\n", - "3 ---> https://github.com/alan-turing-institute/sktime\n", - "3 ---> https://github.com/Phlya/coolpuppy\n", - "9 ---> https://github.com/sigsep/website\n", - "3 ---> https://github.com/dejac001/distillation\n", - "5 ---> https://github.com/simeonreusch/ztffps\n", - "7 ---> https://github.com/django-salesforce/django-salesforce\n", - "7 ---> https://github.com/jellis18/PAL2\n", - "9 ---> https://github.com/rsa-tools/rsat-code\n", - "9 ---> https://github.com/tompollard/phd_thesis_markdown\n", - "3 ---> https://github.com/fpavogt/pyqz\n", - "7 ---> https://github.com/fnl/medic\n", - "3 ---> https://github.com/SciTools/iris\n", - "7 ---> https://github.com/neglectos/dockerhub_analysis\n", - "5 ---> https://github.com/mosdef-hub/foyer\n", - "9 ---> https://github.com/calipho-sib/feature-viewer\n", - "7 ---> https://github.com/academic/vipa\n", - "3 ---> https://github.com/IndexedConv/IndexedConv\n", - "3 ---> https://github.com/VlachosGroup/openmkm\n", - "3 ---> https://github.com/nipype/pydra\n", - "9 ---> https://github.com/sherlock-clustering/Sherlock_DiVE\n", - "3 ---> https://github.com/datalad/datalad\n", - "3 ---> https://github.com/asreview/asreview-covid19\n", - "7 ---> https://github.com/mikahama/akusanat\n", - "7 ---> https://github.com/laderast/ready_for_r_site\n", - "6 ---> https://github.com/GlobalNamesArchitecture/taxamatch_rb\n", - "5 ---> https://github.com/adbar/htmldate\n", - "3 ---> https://github.com/jonescompneurolab/hnn\n", - "5 ---> https://github.com/iross/km_indexer\n", - "3 ---> https://github.com/jameslyons/python_speech_features\n", - "5 ---> https://github.com/biolink/biolink-model\n", - "3 ---> https://github.com/x10-lang/x10\n", - "3 ---> https://github.com/MicroPasts/projectAndvariLOD\n", - "3 ---> https://github.com/griffin-h/lightcurve_fitting\n", - "3 ---> https://github.com/lanl/VizAly-Foresight\n", - "9 ---> https://github.com/cytoscape/cytoscape.js-cxtmenu\n", - "7 ---> https://github.com/BrennerG/DS1\n", - "3 ---> https://github.com/KitwareMedical/HASI\n", - "6 ---> https://github.com/SELAB-AA/arvue-platform\n", - "3 ---> https://github.com/rjfarmer/gfort2py\n", - "5 ---> https://github.com/danhey/maelstrom\n", - "9 ---> https://github.com/lewisacidic/synergy-maps\n", - "3 ---> https://github.com/KamilSJaron/smudgeplot\n", - "3 ---> https://github.com/zfit/zfit\n", - "3 ---> https://github.com/arkottke/pykooh\n", - "7 ---> https://github.com/gvoysey/corti\n", - "9 ---> https://github.com/bongadi/ARV-Predictor-OngadiB\n", - "6 ---> https://github.com/aquariumbio/aquarium\n", - "3 ---> https://github.com/appukuttan-shailesh/morphounit\n", - "6 ---> https://github.com/mbari-media-management/vars-avfoundation\n", - "6 ---> https://github.com/phon-ca/phon\n", - "1 ---> https://github.com/kbroman/AdvData\n", - "3 ---> https://github.com/insilichem/gaudiview\n", - "3 ---> https://github.com/bdhammel/least-squares-ellipse-fitting\n", - "9 ---> https://github.com/matthiaskoenig/pkdb\n", - "6 ---> https://github.com/manoelcampos/cloudsim-plus\n", - "3 ---> https://github.com/pystruct/pystruct\n", - "5 ---> https://github.com/mozillazg/phrase-pinyin-data\n", - "4 ---> https://github.com/pabloaaf/Factor-TranscriptionCaseStudy\n", - "3 ---> https://github.com/PonteIneptique/archives_org_latin_toolkit\n", - "3 ---> https://github.com/GeoStat-Framework/welltestpy\n", - "3 ---> https://github.com/guaix-ucm/numina\n", - "3 ---> https://github.com/mariogeiger/se3cnn\n", - "9 ---> https://github.com/craws/OpenAtlas\n", - "3 ---> https://github.com/sjvrijn/mf2\n", - "4 ---> https://github.com/docable/docable\n", - "6 ---> https://github.com/qbicsoftware/projectwizard-portlet\n", - "3 ---> https://github.com/DuttonLab/kvasir\n", - "3 ---> https://github.com/SolarArbiter/solarforecastarbiter-core\n", - "5 ---> https://github.com/duecredit/duecredit\n", - "3 ---> https://github.com/epiviz/epivizFileParser\n", - "3 ---> https://github.com/Accenture/AmpliGraph\n", - "6 ---> https://github.com/dockstore/dockstore\n", - "9 ---> https://github.com/jacobwindsor/kaavio-showdown\n", - "7 ---> https://github.com/julemai/EEE-DA\n", - "3 ---> https://github.com/materialsproject/custodian\n", - "3 ---> https://github.com/Samreay/Pippin\n", - "3 ---> https://github.com/DeepRank/deeprank\n", - "9 ---> https://github.com/bionode/bionode-ncbi\n", - "3 ---> https://github.com/leonardo-calcagno/covid19model_latam\n", - "3 ---> https://github.com/openvax/varcode\n", - "6 ---> https://github.com/nilsreiter/uima-util\n", - "5 ---> https://github.com/pybel/pybel\n", - "3 ---> https://github.com/hitliaomq/ELASTIC3rd\n", - "3 ---> https://github.com/portugueslab/stytra\n", - "3 ---> https://github.com/abhi1693/yii2-app-advanced-startup-kit\n", - "3 ---> https://github.com/steelelab-delft/stlabutils\n", - "3 ---> https://github.com/aouinizied/nfstream\n", - "3 ---> https://github.com/holgern/pyedflib\n", - "3 ---> https://github.com/pysal/mapclassify\n", - "3 ---> https://github.com/bastibe/MAPS-Scripts\n", - "3 ---> https://github.com/ICB-DCM/parPE\n", - "3 ---> https://github.com/newville/wxmplot\n", - "3 ---> https://github.com/jirikuncar/eelap\n", - "5 ---> https://github.com/giganticode/codeprep\n", - "3 ---> https://github.com/raphaelvallat/yasa\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "6 ---> https://github.com/JonnyDaenen/Gumbo\n", - "3 ---> https://github.com/BENR0/textory\n", - "3 ---> https://github.com/architecture-building-systems/CityEnergyAnalyst\n", - "3 ---> https://github.com/quexiang/STWR\n", - "1 ---> https://github.com/underworldcode/underworld2\n", - "3 ---> https://github.com/TerrainBento/umami\n", - "3 ---> https://github.com/FedericoGarza/covidmx\n", - "3 ---> https://github.com/SimonGreenhill/phylogemetric\n", - "3 ---> https://github.com/earthlab/matplotcheck\n", - "3 ---> https://github.com/landlab/landlab\n", - "3 ---> https://github.com/saltastro/pyhrs\n", - "3 ---> https://github.com/MRCIEU/MELODI-Presto\n", - "3 ---> https://github.com/kundajelab/tfmodisco\n", - "4 ---> https://github.com/jupiterbak/FAPSDemoOPCUAServer0\n", - "3 ---> https://github.com/hugadams/scikit-spectra\n", - "3 ---> https://github.com/YeoLab/clipper\n", - "3 ---> https://github.com/Confareneoclassico/Irrigation_Model\n", - "3 ---> https://github.com/mmaelicke/soil-moisture-dynamics-companion-code\n", - "3 ---> https://github.com/rscottweekly/processPKPD\n", - "3 ---> https://github.com/empymod/emg3d\n", - "3 ---> https://github.com/coin-or/rbfopt\n", - "5 ---> https://github.com/VForWaTer/metacatalog\n", - "6 ---> https://github.com/piyush82/iot-simulator\n", - "3 ---> https://github.com/rabroughton/QUAD\n", - "3 ---> https://github.com/biocore/qurro\n", - "7 ---> https://github.com/streamreasoning/rsplib\n", - "9 ---> https://github.com/NLeSC/nlesc-serverless-boilerplate\n", - "3 ---> https://github.com/lanl/CLAMR\n", - "3 ---> https://github.com/matiscke/lcps\n", - "3 ---> https://github.com/jdavidrcamacho/tedi\n", - "4 ---> https://github.com/jupiterbak/FAPSDemoOPCUAServer\n", - "5 ---> https://github.com/Fraternalilab/POPScomp\n", - "3 ---> https://github.com/DeepLearnPhysics/larcv3\n", - "3 ---> https://github.com/wangz10/text-classification\n", - "7 ---> https://github.com/NLeSC/docker-couch-admin\n", - "7 ---> https://github.com/cs-education/sysbuild\n", - "3 ---> https://github.com/nkeim/philatracks\n", - "3 ---> https://github.com/Qiskit/qiskit-terra\n", - "3 ---> https://github.com/mdolab/dafoam\n", - "7 ---> https://github.com/mikel-egana-aranguren/SADI-Galaxy-Docker\n", - "3 ---> https://github.com/JakeBlackmore/Diatomic-Py\n", - "5 ---> https://github.com/arXiv/arxiv-search\n", - "9 ---> https://github.com/Princeton-CDH/mep-django\n", - "3 ---> https://github.com/thesketh/pygen-structures\n", - "3 ---> https://github.com/paudetseis/RfPy\n", - "3 ---> https://github.com/maxibor/sourcepredict\n", - "3 ---> https://github.com/SNLComputation/compadre\n", - "9 ---> https://github.com/SmartAPI/smartAPI-editor\n", - "3 ---> https://github.com/felixriese/hyperspectral-processing\n", - "3 ---> https://github.com/briandconnelly/hankshaweffect\n", - "3 ---> https://github.com/Starlink/starlink\n", - "7 ---> https://github.com/acdh-oeaw/apis-core\n", - "9 ---> https://github.com/chaoss/augur\n", - "6 ---> https://github.com/thiagotts/CloudReports\n", - "3 ---> https://github.com/gijzelaerr/kliko\n", - "3 ---> https://github.com/chrisjsewell/ipymd\n", - "3 ---> https://github.com/evolaemp/svmcc\n", - "9 ---> https://github.com/njss/SpaceTimeCube3D\n", - "6 ---> https://github.com/lagotto/lagotto\n", - "6 ---> https://github.com/CloudBindle/youxia\n", - "3 ---> https://github.com/AA-ALERT/psrdada-python\n", - "3 ---> https://github.com/joyeuxnoel8/GAME\n", - "3 ---> https://github.com/refnx/refnx\n", - "9 ---> https://github.com/plertvilai/IPAX\n", - "3 ---> https://github.com/ikkebr/PyBozoCrack\n", - "9 ---> https://github.com/MicroPasts/MicroPasts-pybossa-theme\n", - "3 ---> https://github.com/chkoar/vfi\n", - "3 ---> https://github.com/evalf/nutils\n", - "3 ---> https://github.com/ESCOMP/CTSM\n", - "3 ---> https://github.com/daler/erythroid-genes\n", - "1 ---> https://github.com/hdcaicyt/La-Argentina-Manuscrita\n", - "7 ---> https://github.com/peterpeterp/atlantic_ace_seasonal_forecast\n", - "3 ---> https://github.com/USNavalResearchLaboratory/zernike\n", - "3 ---> https://github.com/MarouaJaoua/life-expectancy-analysis-and-prediction\n", - "6 ---> https://github.com/hcadavid/TimeWarpScheduleLibrary\n", - "7 ---> https://github.com/bihealth/sodar_core\n", - "3 ---> https://github.com/cmbant/CAMB\n", - "5 ---> https://github.com/SolarArbiter/solarforecastarbiter-dashboard\n", - "3 ---> https://github.com/ilent2/ott\n", - "3 ---> https://github.com/Phlya/adjustText\n", - "3 ---> https://github.com/UmbertoGostoli/Simulation-for-Scottish-Gov\n", - "9 ---> https://github.com/fzyukio/koe\n", - "5 ---> https://github.com/ewels/MultiQC\n", - "6 ---> https://github.com/gbif/registry\n", - "7 ---> https://github.com/quicklizard99/cheddar\n", - "3 ---> https://github.com/ggventurini/python-deltasigma\n", - "5 ---> https://github.com/moonso/stranger\n", - "3 ---> https://github.com/qcscine/sparrow\n", - "9 ---> https://github.com/smart-facility/petajakarta-web\n", - "3 ---> https://github.com/sakoho81/miplib\n", - "3 ---> https://github.com/nstarman/starkplot\n", - "7 ---> https://github.com/passaH2O/GeoFlood\n", - "3 ---> https://github.com/thompsonsed/pycoalescence_examples\n", - "7 ---> https://github.com/horizon-institute/artmaps-azure\n", - "3 ---> https://github.com/Unidata/MetPy\n", - "6 ---> https://github.com/miso-lims/miso-lims\n", - "7 ---> https://github.com/theosysbio/gene-expression-models\n", - "1 ---> https://github.com/TuringLang/Turing.jl\n", - "3 ---> https://github.com/sertansenturk/alignedpitchfilter\n", - "9 ---> https://github.com/cytoscape/cytoscape.js-euler\n", - "3 ---> https://github.com/sbonaretti/cart_segm_liter_map\n", - "1 ---> https://github.com/gchure/phd\n", - "6 ---> https://github.com/korpling/pepper\n", - "3 ---> https://github.com/sdomanskyi/DigitalCellSorter\n", - "3 ---> https://github.com/PaulHancock/Aegean\n", - "3 ---> https://github.com/casperdcl/brainweb\n", - "3 ---> https://github.com/deeptools/deepTools\n", - "3 ---> https://github.com/ofionnad/radiowinds\n", - "3 ---> https://github.com/hail-is/hail\n", - "3 ---> https://github.com/coin-or/python-mip\n", - "3 ---> https://github.com/FRidh/auraliser\n", - "7 ---> https://github.com/Amber-MD/pytraj\n", - "3 ---> https://github.com/glukicov/alignTrack\n", - "7 ---> https://github.com/starschema/COVID-19-data\n", - "3 ---> https://github.com/clcr/pyeo\n", - "3 ---> https://github.com/TUW-GEO/yeoda\n", - "7 ---> https://github.com/spacetx/starfish\n", - "7 ---> https://github.com/dapperstats/salvage\n", - "3 ---> https://github.com/matplotlib/matplotlib\n", - "3 ---> https://github.com/DLR-SC/prov-db-connector\n", - "3 ---> https://github.com/MicroPasts/egyptExplorationSociety\n", - "3 ---> https://github.com/badlands-model/badlands\n", - "1 ---> https://github.com/AAROC/CODE-RADE\n", - "3 ---> https://github.com/BBN-Q/macrospin_gpu\n", - "3 ---> https://github.com/SciTools/cf-units\n", - "9 ---> https://github.com/macarthur-lab/seqr\n", - "5 ---> https://github.com/gwastro/pycbc\n", - "3 ---> https://github.com/sahilm89/lhsmdu\n", - "3 ---> https://github.com/nfsi-canada/OrientPy\n", - "3 ---> https://github.com/ai-se/perfect-repo\n", - "3 ---> https://github.com/cojacoo/rootwater\n", - "3 ---> https://github.com/multiscale/muscle3\n", - "3 ---> https://github.com/proycon/gecco\n", - "3 ---> https://github.com/USGS-Astrogeology/autocnet\n", - "3 ---> https://github.com/oemof/tespy\n", - "3 ---> https://github.com/pdfo/pdfo\n", - "3 ---> https://github.com/louisabraham/fastnode2vec\n", - "5 ---> https://github.com/poliastro/poliastro\n", - "3 ---> https://github.com/stabix/stabix\n", - "7 ---> https://github.com/TonyKaravasilev/CryptoManana\n", - "3 ---> https://github.com/EpistasisLab/tpot\n", - "3 ---> https://github.com/bird-house/finch\n", - "1 ---> https://github.com/PCMDI/cmor3_documentation\n", - "3 ---> https://github.com/epiasini/pymuvr\n", - "3 ---> https://github.com/jkguiang/tuda\n", - "7 ---> https://github.com/TiKeil/perturbations-for-2d-data\n", - "3 ---> https://github.com/MJOLNIRPackage/MJOLNIR\n", - "3 ---> https://github.com/EducationalTestingService/rsmtool\n", - "3 ---> https://github.com/mpschr/mutex\n", - "9 ---> https://github.com/openearth/wpsbuilder\n", - "3 ---> https://github.com/preprocessed-connectomes-project/quality-assessment-protocol\n", - "5 ---> https://github.com/LucMarechal/Soft-Robotics-Materials-Database\n", - "9 ---> https://github.com/ufbmi/mdc_api\n", - "9 ---> https://github.com/Andros-Spica/CDAL-Angourakis-2019\n", - "3 ---> https://github.com/sappelhoff/eeg_positions\n", - "6 ---> https://github.com/CERNatschool/LUCIDITY\n", - "3 ---> https://github.com/glubbdubdrib/lazygrid\n", - "3 ---> https://github.com/KnowledgeCaptureAndDiscovery/somef\n", - "3 ---> https://github.com/ESMValGroup/ESMValCore\n", - "3 ---> https://github.com/castelao/pyrings\n", - "6 ---> https://github.com/myGrid/t2-server-gem\n", - "3 ---> https://github.com/casperdcl/git-fame\n", - "1 ---> https://github.com/gge-ucd/wRangling-Ecology\n", - "7 ---> https://github.com/SysBioChalmers/yeast-GEM\n", - "3 ---> https://github.com/by256/rdfpy\n", - "7 ---> https://github.com/FNNDSC/ChRIS_ultron_backEnd\n", - "6 ---> https://github.com/cmorty/realsim\n", - "9 ---> https://github.com/Andros-Spica/TIPC2-Angourakis-Graham-2018\n", - "3 ---> https://github.com/rigetti/pyquil\n", - "6 ---> https://github.com/antlr/codebuff\n", - "6 ---> https://github.com/vdenotaris/spring-boot-security-saml-sample\n", - "9 ---> https://github.com/ci-for-research/zenodo\n", - "9 ---> https://github.com/laduplessis/SARS-CoV-2_Guangdong_genomic_epidemiology\n", - "7 ---> https://github.com/sealuzh/cd-linter-artifacts\n", - "2 ---> https://github.com/clij/clij-ops\n", - "3 ---> https://github.com/bmcage/odes\n", - "3 ---> https://github.com/ryanvarley/ExoData\n", - "5 ---> https://github.com/poppy-project/pypot\n", - "3 ---> https://github.com/NLeSC/cptm\n", - "9 ---> https://github.com/ivanhercaz/research\n", - "3 ---> https://github.com/dib-lab/sourmash\n", - "5 ---> https://github.com/PecanProject/pecan\n", - "2 ---> https://github.com/thorstenwagner/ij-particlesizer\n", - "0 ---> https://github.com/ctsit/redi-dropper-client\n", - "3 ---> https://github.com/juseg/absplots\n", - "3 ---> https://github.com/tolliob/PhasePortrait\n", - "3 ---> https://github.com/gtaylor/python-colormath\n", - "3 ---> https://github.com/SoftwareDevEngResearch/PyFAT\n", - "3 ---> https://github.com/ComputationalRadiationPhysics/mallocMC\n", - "5 ---> https://github.com/Arabidopsis-Information-Portal/adama\n", - "4 ---> https://github.com/biowdl/RNA-seq\n", - "3 ---> https://github.com/RPGroup-PBoC/RNAseq_SortSeq\n", - "5 ---> https://github.com/mensBash/DataStewardship\n", - "5 ---> https://github.com/thetisproject/thetis\n", - "9 ---> https://github.com/nismod/smif\n", - "9 ---> https://github.com/mgndolan/phagesdb\n", - "3 ---> https://github.com/rajeshrinet/pystokes\n", - "3 ---> https://github.com/alan-turing-institute/azure_usage_v1\n", - "9 ---> https://github.com/rdfjs/N3.js\n", - "3 ---> https://github.com/s-utkarsh/convex\n", - "3 ---> https://github.com/docmanny/RecSearch\n", - "7 ---> https://github.com/BenediktKleppmann/TreeOfKnowledge\n", - "3 ---> https://github.com/fanatichuman/ZOOMIEv1.0\n", - "3 ---> https://github.com/subangstrom/usetemServers\n", - "6 ---> https://github.com/bio-guoda/preston\n", - "9 ---> https://github.com/molstar/molstar\n", - "3 ---> https://github.com/philrosenfield/core_overshoot_clusters\n", - "3 ---> https://github.com/a-slide/pycoQC\n", - "3 ---> https://github.com/Epistimio/orion\n", - "3 ---> https://github.com/tholoien/XDGMM\n", - "3 ---> https://github.com/PyTorchLightning/pytorch-lightning\n", - "6 ---> https://github.com/fusion-jena/CoMerger\n", - "3 ---> https://github.com/collectionslab/Omniscribe\n", - "3 ---> https://github.com/cohenlabUNC/clpipe\n", - "3 ---> https://github.com/harpolea/r3d2\n", - "6 ---> https://github.com/peterbanda/coel\n", - "3 ---> https://github.com/Xilinx/brevitas\n", - "4 ---> https://github.com/aulasoftwarelibre/taller-de-git\n", - "3 ---> https://github.com/ornlneutronimaging/iBeatles\n", - "5 ---> https://github.com/dennissergeev/arke\n", - "3 ---> https://github.com/awickert/GRLP\n", - "9 ---> https://github.com/na399/VAST-Challenge-2019-MC1\n", - "3 ---> https://github.com/schmelling/reciprocal_BLAST\n", - "3 ---> https://github.com/diana-hep/madminer\n", - "3 ---> https://github.com/fmorenopino/HeterogeneousHMM\n", - "3 ---> https://github.com/dslfaithdev/SocialCrawler\n", - "7 ---> https://github.com/AndrewIOM/global-pollen-project\n", - "3 ---> https://github.com/PySCeS/pysces\n", - "3 ---> https://github.com/DamCB/tyssue\n", - "5 ---> https://github.com/lsmo-epfl/discover-curated-cofs\n", - "7 ---> https://github.com/caltechlibrary/eprints2bags\n", - "5 ---> https://github.com/proycon/foliapy\n", - "5 ---> https://github.com/bird-house/twitcher\n", - "5 ---> https://github.com/ganga-devs/ganga\n", - "6 ---> https://github.com/kotik-coder/PULsE\n", - "5 ---> https://github.com/mozillazg/pinyin-data\n", - "3 ---> https://github.com/MicroPasts/EgyptExplorationSocBuhenPottery\n", - "3 ---> https://github.com/luispedro/imread\n", - "2 ---> https://github.com/PCMSolver/pcmsolver\n", - "6 ---> https://github.com/klout/brickhouse\n", - "9 ---> https://github.com/Dash-Industry-Forum/dash.js\n", - "3 ---> https://github.com/ProjectDrawdown/spatial-aez\n", - "9 ---> https://github.com/cytoscape/cytoscape.js-popper\n", - "5 ---> https://github.com/ecohealthalliance/pubcrawler\n", - "3 ---> https://github.com/underworldcode/stripy\n", - "3 ---> https://github.com/pycroscopy/pyUSID\n", - "3 ---> https://github.com/jjnp/dss20-ue1\n", - "5 ---> https://github.com/pytroll/satpy\n", - "6 ---> https://github.com/psambit9791/jDSP\n", - "3 ---> https://github.com/pypeit/PypeIt\n", - "3 ---> https://github.com/MPI-Dortmund/sphire_classes_autoselect\n", - "3 ---> https://github.com/PaulScotti/educortex\n", - "2 ---> https://github.com/adaerr/pendent-drop\n", - "3 ---> https://github.com/simpeg-research/Astic-2020-JointInversion\n", - "6 ---> https://github.com/cgvwzq/polca\n", - "6 ---> https://github.com/davidenunes/jnetwork\n", - "5 ---> https://github.com/dbbs-lab/glia\n", - "3 ---> https://github.com/KarrLab/paper_2018_curr_opin_sys_biol\n", - "9 ---> https://github.com/RADAR-base/RADAR-Questionnaire\n", - "3 ---> https://github.com/DIRACGrid/DIRACOS\n", - "9 ---> https://github.com/nichtich/wikidata-taxonomy\n", - "9 ---> https://github.com/Kitware/vtk-js\n", - "3 ---> https://github.com/tanghaibao/goatools\n", - "5 ---> https://github.com/clld/clld\n", - "9 ---> https://github.com/tdurieux/Travis-Listener\n", - "3 ---> https://github.com/scivision/LCPFCT\n", - "5 ---> https://github.com/dr-rodriguez/Kinematics-App\n", - "3 ---> https://github.com/starkiller-astro/Microphysics\n", - "3 ---> https://github.com/Parallel-in-Time/PyPinT\n", - "3 ---> https://github.com/ufz/ogs-data\n", - "3 ---> https://github.com/vlouf/dealias\n", - "6 ---> https://github.com/RMLio/rmlmapper-java\n", - "3 ---> https://github.com/pysal/splot\n", - "7 ---> https://github.com/SuLab/Wikidata-phenomizer\n", - "3 ---> https://github.com/jaredsampson/pymolprobity\n", - "3 ---> https://github.com/casimp/pyxe\n", - "3 ---> https://github.com/imodpasteur/pySPIRALTAP\n", - "9 ---> https://github.com/ufbmi/mdc_meter\n", - "3 ---> https://github.com/spectralpython/spectral\n", - "3 ---> https://github.com/openvax/pyensembl\n", - "5 ---> https://github.com/SMRUCC/GCModeller\n", - "3 ---> https://github.com/DyogenIBENS/SCORPIOS\n", - "9 ---> https://github.com/benchoufi/DocChain\n", - "3 ---> https://github.com/krassowski/complex-upset\n", - "6 ---> https://github.com/d-tear/SIAL\n", - "3 ---> https://github.com/arkottke/pyrvt\n", - "3 ---> https://github.com/jensdebruijn/Multimodal-flood-tweet-classification\n", - "3 ---> https://github.com/let-unimi/liblet\n", - "3 ---> https://github.com/scikit-learn-contrib/hdbscan\n", - "3 ---> https://github.com/arichar6/turbopy\n", - "3 ---> https://github.com/SystemsGenetics/GEMmaker\n", - "0 ---> https://github.com/CentreForCorpusResearch/clic\n", - "5 ---> https://github.com/benbovy/xarray-simlab\n", - "9 ---> https://github.com/Zettlr/Zettlr\n", - "3 ---> https://github.com/coreylammie/MemTorch\n", - "6 ---> https://github.com/milaboratory/mitools\n", - "6 ---> https://github.com/faustusdotbe/topic-modeling-tool-FR\n", - "9 ---> https://github.com/RADAR-base/ManagementPortal\n", - "5 ---> https://github.com/DocNow/twarc\n", - "5 ---> https://github.com/samapriya/gee_asset_manager_addon\n", - "3 ---> https://github.com/moorepants/DynamicistToolKit\n", - "3 ---> https://github.com/Clinical-Genomics/scout\n", - "3 ---> https://github.com/nschloe/pygmsh\n", - "3 ---> https://github.com/varungohil/Generalizing-Lottery-Tickets\n", - "6 ---> https://github.com/powerpak/pathogendb-pipeline\n", - "5 ---> https://github.com/Capitains/HookTest\n", - "9 ---> https://github.com/chanzuckerberg/cellxgene\n", - "3 ---> https://github.com/nf-core/tools\n", - "3 ---> https://github.com/ListerLab/TEPID\n", - "3 ---> https://github.com/fishstamp82/moltools\n", - "9 ---> https://github.com/University-of-Potsdam-MM/Mobile.UP\n", - "3 ---> https://github.com/blueskyjunkie/timetools\n", - "6 ---> https://github.com/biojava/biojava\n", - "3 ---> https://github.com/resal81/PyTopol\n", - "4 ---> https://github.com/digitallinguistics/word-aligner\n", - "3 ---> https://github.com/MITgcm/gcmfaces\n", - "3 ---> https://github.com/thompson318/scikit-surgery-sphere-fitting\n", - "4 ---> https://github.com/feelpp/book.feelpp.org\n", - "3 ---> https://github.com/brwnj/umitools\n", - "6 ---> https://github.com/IvanPaez/Proact\n", - "3 ---> https://github.com/poneill/formosa\n", - "3 ---> https://github.com/yabata/pyrenn\n", - "3 ---> https://github.com/TeamMacLean/redpatch\n", - "7 ---> https://github.com/pear2/Net_RouterOS\n", - "3 ---> https://github.com/rjw57/freenect2-python\n", - "3 ---> https://github.com/mvdh7/teos10\n", - "6 ---> https://github.com/SymbioticLab/tensorflow-salus\n", - "6 ---> https://github.com/LukasEttel/YoshikoStandalone\n", - "7 ---> https://github.com/JULIELab/MEmoLon\n", - "3 ---> https://github.com/fwitte/fluprodia\n", - "5 ---> https://github.com/openstreams/wflow\n", - "7 ---> https://github.com/sand-ci/TRACe-ExploRer-TRACER\n", - "6 ---> https://github.com/ISA-tools/NanoMaton\n", - "9 ---> https://github.com/DukeLearningInnovation/muser\n", - "6 ---> https://github.com/luosolo/OAiZer\n", - "3 ---> https://github.com/abrahamnunes/fitr\n", - "3 ---> https://github.com/jmbr/committor\n", - "3 ---> https://github.com/eEcoLiDAR/laserchicken\n", - "1 ---> https://github.com/feelpp/toolbox\n", - "3 ---> https://github.com/dfm/celerite\n", - "3 ---> https://github.com/buddhi1980/mandelbulber2\n", - "6 ---> https://github.com/DECLARE-Project/palladio-headless\n", - "5 ---> https://github.com/hudcondr/Digital-preservation---sports-trackers-for-Strava\n", - "3 ---> https://github.com/ultralytics/flickr_scraper\n", - "3 ---> https://github.com/ctuning/ck-env\n", - "1 ---> https://github.com/dyskurs/bel.esperanto\n", - "5 ---> https://github.com/lmjohns3/theanets\n", - "9 ---> https://github.com/fablabbcn/smartcitizen-kit-21\n", - "8 ---> https://github.com/eeditiones/shakespeare\n", - "7 ---> https://github.com/ivco19/epyRba\n", - "9 ---> https://github.com/Andros-Spica/ENE-Angourakis-et-al-2019\n", - "3 ---> https://github.com/rjfarmer/mesaplot\n", - "3 ---> https://github.com/tjof2/robustpca\n", - "3 ---> https://github.com/zerothi/sisl\n", - "3 ---> https://github.com/ChiaraBonacchi/MaryRose\n", - "6 ---> https://github.com/claudioatzori/dnet-gdup\n", - "3 ---> https://github.com/quantling/pyndl\n", - "3 ---> https://github.com/FAST-HEP/fast-flow\n", - "3 ---> https://github.com/pysat/pysatMissions\n", - "3 ---> https://github.com/kinnala/kirchhoff-nitsche-ex3\n", - "7 ---> https://github.com/GMOD/Apollo\n", - "6 ---> https://github.com/brics-dev/brics\n", - "6 ---> https://github.com/cismet/cids-custom-sudplan-linz\n", - "3 ---> https://github.com/theia-dev/molani\n", - "9 ---> https://github.com/planetserver/webclient-neo\n", - "3 ---> https://github.com/djgagne/lorenz_gan\n", - "3 ---> https://github.com/mmcauliffe/Conch-sounds\n", - "3 ---> https://github.com/pandas-dev/pandas\n", - "3 ---> https://github.com/dvav/dgeclust\n", - "3 ---> https://github.com/bjmorgan/vasppy\n", - "3 ---> https://github.com/has2k1/plotnine\n", - "3 ---> https://github.com/churchill-lab/gbrs\n", - "2 ---> https://github.com/salilab/imp\n", - "5 ---> https://github.com/NLeSC/eEcology-Annotation-WS\n", - "3 ---> https://github.com/pygeo/pycmbs\n", - "3 ---> https://github.com/Barski-lab/cwl-airflow\n", - "3 ---> https://github.com/prisae/fftlog\n", - "7 ---> https://github.com/DigitalPreservationTuWien2017/dp-task3\n", - "5 ---> https://github.com/biolink/biolink-api\n", - "5 ---> https://github.com/yadage/packtivity\n", - "3 ---> https://github.com/fact-project/aict-tools\n", - "3 ---> https://github.com/proycon/tscan\n", - "1 ---> https://github.com/mattam82/Coq-Equations\n", - "3 ---> https://github.com/datalad/datalad-osf\n", - "3 ---> https://github.com/paradoxysm/EMGanalysis\n", - "3 ---> https://github.com/dparks1134/DBB\n", - "3 ---> https://github.com/mikahama/haracat\n", - "3 ---> https://github.com/brainiak/brainiak\n", - "5 ---> https://github.com/AtkinsGroup/TransmissionPairs\n", - "5 ---> https://github.com/samapriya/spotifind\n", - "3 ---> https://github.com/jaj42/GraPhysio\n", - "3 ---> https://github.com/TUD-RST/pycartan\n", - "3 ---> https://github.com/ghammad/pyActigraphy\n", - "7 ---> https://github.com/ebmdatalab/fdaaa_trends\n", - "3 ---> https://github.com/python-visualization/folium\n", - "3 ---> https://github.com/didillysquat/SymPortal_framework\n", - "9 ---> https://github.com/galaxyproject/SARS-CoV-2\n", - "3 ---> https://github.com/SMTorg/smt\n", - "3 ---> https://github.com/bnpy/bnpy\n", - "3 ---> https://github.com/alielhassouni/heartsteps-gaussian-generative-model\n", - "3 ---> https://github.com/rileyhales/geomatics\n", - "9 ---> https://github.com/smart-facility/cognicity-server\n", - "5 ---> https://github.com/smarie/python-pytest-cases\n", - "3 ---> https://github.com/tum-camp/survival-support-vector-machine\n", - "5 ---> https://github.com/Capitains/MyCapytain\n", - "7 ---> https://github.com/rasmuse/subnational-p-budgets\n", - "3 ---> https://github.com/kimmo1019/Roundtrip\n", - "3 ---> https://github.com/nighres/nighres\n", - "3 ---> https://github.com/Swiss-Polar-Institute/wind-speed-correction\n", - "3 ---> https://github.com/rmarkello/abagen\n", - "8 ---> https://github.com/ApirsAL/GeoReVi\n", - "3 ---> https://github.com/mdolab/baseclasses\n", - "7 ---> https://github.com/dams-mcda/Dams-MCDA\n", - "3 ---> https://github.com/LinuNils/TMC_reproduced\n", - "3 ---> https://github.com/alan-turing-institute/TCPDBench\n", - "3 ---> https://github.com/churchill-lab/emase\n", - "3 ---> https://github.com/pyspec/pyspec\n", - "9 ---> https://github.com/FelixHenninger/lab.js\n", - "9 ---> https://github.com/sonjageorgievska/CClusTera\n", - "3 ---> https://github.com/mrkrd/cochlea\n", - "7 ---> https://github.com/juy/setting\n", - "3 ---> https://github.com/swartn/cmipdata\n", - "7 ---> https://github.com/simetenn/uncertainpy\n", - "9 ---> https://github.com/liminoid/liminoid-cli\n", - "9 ---> https://github.com/ben-aaron188/netanos\n", - "3 ---> https://github.com/timtroendle/urban-occupants-paper\n", - "5 ---> https://github.com/openshs/openshs\n", - "3 ---> https://github.com/silx-kit/silx\n", - "9 ---> https://github.com/Duke-GCB/iMADS\n", - "3 ---> https://github.com/ecuracosta/Modeling_the_spatiotemporal_control_of_cell_cycle_acceleration\n", - "5 ---> https://github.com/aoelen/Survey-table-importer\n", - "5 ---> https://github.com/nasa/RHEAS\n", - "3 ---> https://github.com/1313e/PRISM\n", - "3 ---> https://github.com/COSMIC-PopSynth/COSMIC\n", - "3 ---> https://github.com/Mykrobe-tools/mykrobe\n", - "5 ---> https://github.com/keflavich/APEX_CMZ_H2CO\n", - "6 ---> https://github.com/datacite/omniauth-orcid\n", - "3 ---> https://github.com/clelange/cds_paper_bot\n", - "3 ---> https://github.com/lifs-tools/pygoslin\n", - "3 ---> https://github.com/sblunt/orbitize\n", - "7 ---> https://github.com/holoviz/panel\n", - "2 ---> https://github.com/fiji/Trainable_Segmentation\n", - "3 ---> https://github.com/SymbioticLab/Salus\n", - "5 ---> https://github.com/uw-cryo/skysat_stereo\n", - "3 ---> https://github.com/NaturalHistoryMuseum/inselect\n", - "3 ---> https://github.com/ishomam/high-cycle-fatigue-tool\n", - "5 ---> https://github.com/gwu-libraries/TweetSets\n", - "2 ---> https://github.com/smart-facility/cognicity-reports\n", - "7 ---> https://github.com/randlab/geocv\n", - "6 ---> https://github.com/stain/profilechecker\n", - "3 ---> https://github.com/JasperBoom/caltha\n", - "4 ---> https://github.com/Karel-Kroeze/adaptive-hypothesis-grammars\n", - "9 ---> https://github.com/michael-pagan/Netflix-Analysis\n", - "3 ---> https://github.com/Auerilas/ecopy\n", - "3 ---> https://github.com/nadavbra/pwas\n", - "3 ---> https://github.com/orbingol/NURBS-Python\n", - "3 ---> https://github.com/MStarmans91/GISTRadiomics\n", - "3 ---> https://github.com/seankmartin/NeuroChaT\n", - "7 ---> https://github.com/gossi/docblock\n", - "6 ---> https://github.com/byu-vv-lab/mercury\n", - "3 ---> https://github.com/zfit/phasespace\n", - "3 ---> https://github.com/jswoboda/GeoDataPython\n", - "3 ---> https://github.com/datalad/datalad-neuroimaging\n", - "6 ---> https://github.com/schxslt/schxslt\n", - "3 ---> https://github.com/christianbrodbeck/Eelbrain\n", - "5 ---> https://github.com/VHellendoorn/ICLR20-Great\n", - "5 ---> https://github.com/kutaslab/merp2tbl\n", - "3 ---> https://github.com/pytransitions/transitions\n", - "3 ---> https://github.com/JoshuaDull/Text-Recognition-Introduction\n", - "6 ---> https://github.com/lejon/PartiallyCollapsedLDA\n", - "3 ---> https://github.com/Sulstice/global-chem\n", - "7 ---> https://github.com/glottolog/pyglottolog\n", - "3 ---> https://github.com/SebastianBocquet/MiraTitanHMFemulator\n", - "3 ---> https://github.com/LanguageMachines/PICCL\n", - "8 ---> https://github.com/CCMi-FIT/ontouml-csharp-utils\n", - "3 ---> https://github.com/j-i-l/pyAlluv\n", - "3 ---> https://github.com/ypriverol/cubascience\n", - "5 ---> https://github.com/pc2/HPCC_FPGA\n", - "3 ---> https://github.com/rrwick/Minipolish\n", - "5 ---> https://github.com/dftlibs/xcint\n", - "5 ---> https://github.com/pyvideo/pyvideo\n", - "5 ---> https://github.com/WIPACrepo/file_catalog\n", - "3 ---> https://github.com/Helveg/patch\n", - "7 ---> https://github.com/par12005/TPPS\n", - "5 ---> https://github.com/NixtonM/srsmp\n", - "4 ---> https://github.com/onnovalkering/brane\n", - "3 ---> https://github.com/pygae/clifford\n", - "3 ---> https://github.com/Ajax23/PoreMS\n", - "7 ---> https://github.com/Met4FoF/Code\n", - "3 ---> https://github.com/cwru-pat/macro_lightning\n", - "6 ---> https://github.com/phillima/asniffer\n", - "3 ---> https://github.com/timothydmorton/isochrones\n", - "3 ---> https://github.com/USEPA/IO-Model-Builder\n", - "3 ---> https://github.com/UF-OCR/ocr-summary-accrual\n", - "7 ---> https://github.com/toniher/mediawiki-BioDB\n", - "6 ---> https://github.com/ncsa/OA4MP\n", - "5 ---> https://github.com/jensleitloff/CNN-Sentinel\n", - "6 ---> https://github.com/meraki-analytics/orianna\n", - "8 ---> https://github.com/WormieCorp/Localization.AspNetCore.TagHelpers\n", - "3 ---> https://github.com/mikahama/natas\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3 ---> https://github.com/meyer-lab/ps-growth-model\n", - "3 ---> https://github.com/Guillawme/localres\n", - "6 ---> https://github.com/saeg/asm-defuse\n", - "3 ---> https://github.com/alejandrobll/py-sphviewer\n", - "3 ---> https://github.com/BioSTEAMDevelopmentGroup/thermosteam\n", - "3 ---> https://github.com/TUDelft-CITG/OpenTNSim\n", - "3 ---> https://github.com/IceCubeOpenSource/flarestack\n", - "3 ---> https://github.com/timm/bnbad\n", - "3 ---> https://github.com/zhinst/zhinst-toolkit\n", - "5 ---> https://github.com/ngs-mstb/micgent\n", - "3 ---> https://github.com/rbardaji/mooda\n", - "5 ---> https://github.com/pytube/data\n", - "3 ---> https://github.com/VlachosGroup/pQUAD\n", - "3 ---> https://github.com/MicroPasts/maryrose-bell\n", - "3 ---> https://github.com/drs-m/mrtrix3\n", - "3 ---> https://github.com/eyurtsev/FlowCytometryTools\n", - "3 ---> https://github.com/mirnylab/cooler\n", - "3 ---> https://github.com/choderalab/alchemy\n", - "3 ---> https://github.com/Nikoleta-v3/meta-analysis-of-prisoners-dilemma-tournaments\n", - "7 ---> https://github.com/villevaara/dhum-topic-gutfin\n", - "3 ---> https://github.com/natashabatalha/picaso\n", - "3 ---> https://github.com/delira-dev/delira\n", - "7 ---> https://github.com/philip-mach/herd-immunity\n", - "9 ---> https://github.com/Alan-Cha/graphql-complexity-paper-artifact\n", - "3 ---> https://github.com/Becksteinlab/propkatraj\n", - "3 ---> https://github.com/3DGenomes/TADbit\n", - "3 ---> https://github.com/TariqAHassan/BioVida\n", - "3 ---> https://github.com/dxm447/stemtool\n", - "5 ---> https://github.com/Emma926/paradnn\n", - "3 ---> https://github.com/gcunhase/AnnotatedMV-PreProcessing\n", - "4 ---> https://github.com/liminoid/liminoid-mdx\n", - "3 ---> https://github.com/Ouranosinc/raven\n", - "5 ---> https://github.com/scities/patterns-of-segregation\n", - "3 ---> https://github.com/pkienzle/periodictable\n", - "4 ---> https://github.com/biowdl/expression-quantification\n", - "3 ---> https://github.com/dokester/BayesicFitting\n", - "7 ---> https://github.com/fphammerle/freesurfer-volume-reader\n", - "2 ---> https://github.com/fmalmeida/MpGAP\n", - "7 ---> https://github.com/collaborative-open-plant-omics/COPO\n", - "3 ---> https://github.com/OrderN/CONQUEST-release\n", - "3 ---> https://github.com/chemfiles/chemfiles\n", - "5 ---> https://github.com/camillescott/goetia\n", - "3 ---> https://github.com/Charestlab/pyrsa\n", - "3 ---> https://github.com/wannaphong/thai-ner\n", - "7 ---> https://github.com/cylc/cylc-flow\n", - "3 ---> https://github.com/krassowski/gsea-api\n", - "3 ---> https://github.com/UW-Hydro/RVIC\n", - "3 ---> https://github.com/stefanbringuier/NaivePolyCrys\n", - "3 ---> https://github.com/harmslab/pytc-gui\n", - "3 ---> https://github.com/maurov/xraysloth\n", - "3 ---> https://github.com/genicam/harvesters\n", - "3 ---> https://github.com/EC-Earth/ece2cmor3\n", - "9 ---> https://github.com/rodighiero/Affinity-Map\n", - "9 ---> https://github.com/trtcrd/SLIM\n", - "3 ---> https://github.com/MTG/SymbTr-extras\n", - "6 ---> https://github.com/midas-isg/object-serializer\n", - "5 ---> https://github.com/caltechlibrary/microarchiver\n", - "3 ---> https://github.com/UCL/scikit-surgeryvtk\n", - "3 ---> https://github.com/XanaduAI/thewalrus\n", - "3 ---> https://github.com/common-workflow-language/cwltool\n", - "5 ---> https://github.com/exoplanet-dev/exoplanet\n", - "7 ---> https://github.com/genenetwork/genenetwork2\n", - "3 ---> https://github.com/dftd4/dftd4\n", - "3 ---> https://github.com/hesselberthlab/modmap\n", - "3 ---> https://github.com/nkarasiak/MuseoToolBox\n", - "3 ---> https://github.com/timtroendle/pytus2000\n", - "3 ---> https://github.com/mdolab/multipoint\n", - "3 ---> https://github.com/matthiaskoenig/libsbgn-python\n", - "9 ---> https://github.com/mrc-ide/squire_js\n", - "6 ---> https://github.com/sotorrent/posthistory-extractor\n", - "3 ---> https://github.com/FAST-HEP/fast-plotter\n", - "3 ---> https://github.com/tresoldi/dafsa\n", - "3 ---> https://github.com/alphatwirl/alphatwirl\n", - "3 ---> https://github.com/nipy/heudiconv\n", - "6 ---> https://github.com/CESNET/perun\n", - "3 ---> https://github.com/RBhupi/PyREClass\n", - "3 ---> https://github.com/jrafolsr/opeg-green-solvent\n", - "3 ---> https://github.com/tomminylander/cloning-simulator\n", - "7 ---> https://github.com/moschlar/SAUCE\n", - "3 ---> https://github.com/astrom-tom/loots\n", - "9 ---> https://github.com/ericmandel/js9\n", - "3 ---> https://github.com/empymod/empymod\n", - "1 ---> https://github.com/MRChemSoft/mrcpp\n", - "3 ---> https://github.com/QuantumPackage/qp2\n", - "3 ---> https://github.com/johannfaouzi/pyts\n", - "5 ---> https://github.com/duncanmmacleod/ciecplib\n", - "5 ---> https://github.com/matthiasweiss/runtastic-strava-migrate\n", - "3 ---> https://github.com/carpyncho/carpyncho-py\n", - "4 ---> https://github.com/thomas-crane/networking-project\n", - "3 ---> https://github.com/bab2min/tomotopy\n", - "6 ---> https://github.com/ace-design/cosmic\n", - "3 ---> https://github.com/FaustinCarter/scraps\n", - "7 ---> https://github.com/tripal/tripal\n", - "3 ---> https://github.com/SCCAF/sccaf\n", - "3 ---> https://github.com/src-d/minhashcuda\n", - "6 ---> https://github.com/ebimodeling/ghgvc\n", - "3 ---> https://github.com/NERSC/pytokio\n", - "6 ---> https://github.com/KnowledgeCaptureAndDiscovery/OBA\n", - "3 ---> https://github.com/praveen-palanisamy/macad-gym\n", - "5 ---> https://github.com/dimazest/poultry\n", - "3 ---> https://github.com/waterlandlab/PReLIM\n", - "3 ---> https://github.com/felixriese/alpaca-processing\n", - "9 ---> https://github.com/ocean-data-qc/ocean-data-qc\n", - "3 ---> https://github.com/lmfit/lmfit-py\n", - "3 ---> https://github.com/masseyr/eehelper\n", - "6 ---> https://github.com/diging/virtual-spaces-2.0\n", - "3 ---> https://github.com/SISPO-developers/sispo\n", - "3 ---> https://github.com/rbutleriii/Clinotator\n", - "9 ---> https://github.com/sosy-lab/benchexec\n", - "3 ---> https://github.com/Nikronic/CoarseNet\n", - "3 ---> https://github.com/IDSIA/sacred\n", - "3 ---> https://github.com/GeoStat-Framework/GSTools\n", - "9 ---> https://github.com/camomile-project/camomile-server\n", - "3 ---> https://github.com/weecology/macroecotools\n", - "3 ---> https://github.com/nlesc-nano/AssertionLib\n", - "5 ---> https://github.com/pnnl/ripples\n", - "3 ---> https://github.com/dreamtools/dreamtools\n", - "3 ---> https://github.com/DeepRank/pdb2sql\n", - "9 ---> https://github.com/zebateira/rama-spotify\n", - "7 ---> https://github.com/qutech/qupulse\n", - "9 ---> https://github.com/eWaterCycle/Cesium-NcWMS\n", - "9 ---> https://github.com/CMLPlatform/ramascene\n", - "7 ---> https://github.com/filips123/ConfigWriter\n", - "9 ---> https://github.com/schimatos/schimatos.org\n", - "3 ---> https://github.com/ALSETLab/Nordic44-Nordpool\n", - "5 ---> https://github.com/NCAR/wrf_hydro_nwm_public\n", - "3 ---> https://github.com/frandorr/PROBA-V-3DWDSR\n", - "3 ---> https://github.com/chrisdembia/yeadon\n", - "5 ---> https://github.com/open-editions/corpus-joyce-ulysses-tei\n", - "1 ---> https://github.com/AAROC/hackfest-site\n", - "3 ---> https://github.com/amirsani/pySharpeRratio\n", - "3 ---> https://github.com/CINPLA/RippleNet\n", - "7 ---> https://github.com/karkirowle/oral_cancer_analysis\n", - "3 ---> https://github.com/brisskit-uol/onyx-install-procedures\n", - "3 ---> https://github.com/llondon6/nrutils_dev\n", - "9 ---> https://github.com/Andros-Spica/EAA2018_simulation\n", - "5 ---> https://github.com/GeneDx/phenopy\n", - "6 ---> https://github.com/andremann/MoniQ\n", - "7 ---> https://github.com/jupyter/nbgrader\n", - "3 ---> https://github.com/GeoStat-Framework/PyKrige\n", - "5 ---> https://github.com/orlade/microsimmer\n", - "6 ---> https://github.com/ideaconsult/appdomain\n", - "3 ---> https://github.com/irgroup/sigir2020-measure-reproducibility\n", - "3 ---> https://github.com/mikekestemont/chivalric_diversity\n", - "3 ---> https://github.com/CosmologyTaskForce/PhysicsResearchSurvivalManual\n", - "3 ---> https://github.com/dbischof90/optimal_extreme_value_portfolios\n", - "3 ---> https://github.com/ComputationalRadiationPhysics/picongpu\n", - "3 ---> https://github.com/DorianDepriester/MTEX2Gmsh\n", - "3 ---> https://github.com/MStarmans91/WORC\n", - "3 ---> https://github.com/colomoto/pyMaBoSS\n", - "3 ---> https://github.com/lktsui/carbon_xs_gui\n", - "3 ---> https://github.com/severin-lemaignan/pyrobots\n", - "7 ---> https://github.com/casmlab/twitter_user_collector\n", - "7 ---> https://github.com/QCoDeS/Qcodes\n", - "3 ---> https://github.com/kusterlab/MasterSpectrum\n", - "3 ---> https://github.com/TUW-GEO/smap_io\n", - "7 ---> https://github.com/neurodata/ndstore\n", - "3 ---> https://github.com/isi-nmr/brukerapi-python\n", - "3 ---> https://github.com/pysal/tobler\n", - "6 ---> https://github.com/mbdemoraes/moafs\n", - "5 ---> https://github.com/gbv/kos-registry\n", - "3 ---> https://github.com/callat-qcd/espressodb\n", - "3 ---> https://github.com/longavailable/adaptive-curvefitting\n", - "3 ---> https://github.com/LUMC/pytest-workflow\n", - "3 ---> https://github.com/cta-observatory/ctapipe\n", - "3 ---> https://github.com/SystemsGenetics/pynome\n", - "3 ---> https://github.com/openvax/mhctools\n", - "6 ---> https://github.com/alexvoronov/geonetworking\n", - "3 ---> https://github.com/Dioptas/Dioptas\n", - "5 ---> https://github.com/shbhuk/barycorrpy\n", - "3 ---> https://github.com/vanheeringen-lab/ANANSE\n", - "3 ---> https://github.com/mazlo/lodcc\n", - "9 ---> https://github.com/LDflex/LDflex-Comunica\n", - "6 ---> https://github.com/nicysneiros/SemMatcher\n", - "3 ---> https://github.com/pace-gt/PACE-ProvBench\n", - "3 ---> https://github.com/spirali/rsds\n", - "5 ---> https://github.com/UNCG-DAISY/psi-collect\n", - "3 ---> https://github.com/gmbrandt/xwavecal\n", - "3 ---> https://github.com/Fuminides/Fancy_aggregations\n", - "3 ---> https://github.com/rootpy/rootpy\n", - "7 ---> https://github.com/Social-Evolution-and-Behavior/anTraX\n", - "3 ---> https://github.com/seasite-project/Offsite\n", - "3 ---> https://github.com/emsec/hal\n", - "5 ---> https://github.com/SolarArbiter/solarforecastarbiter-api\n", - "7 ---> https://github.com/VIDA-NYU/reproserver\n", - "3 ---> https://github.com/Crompulence/cpl-library\n", - "3 ---> https://github.com/KeplerGO/kadenza\n", - "3 ---> https://github.com/MarinManuel/Huh_et_al_2020\n", - "3 ---> https://github.com/JasperHG90/sleepsimR-documentation\n", - "4 ---> https://github.com/OPEnSLab-OSU/SlideSentinel\n", - "7 ---> https://github.com/TeamRegio/EpiRegioDB\n", - "7 ---> https://github.com/Aetf/tf_benchmarks\n", - "5 ---> https://github.com/HypothesisWorks/hypothesis\n", - "3 ---> https://github.com/astrom-tom/catscii\n", - "3 ---> https://github.com/NESTCollaboration/nestpy\n", - "3 ---> https://github.com/remyleone/makesense\n", - "3 ---> https://github.com/OSOceanAcoustics/echopype\n", - "3 ---> https://github.com/California-Planet-Search/radvel\n", - "5 ---> https://github.com/vangorden/OUR2D2\n", - "3 ---> https://github.com/jpvantassel/swprepost\n", - "3 ---> https://github.com/SanPen/GridCal\n", - "7 ---> https://github.com/INVEST-flagship/Randomized-picture-rating-tool-for-surveys\n", - "3 ---> https://github.com/BioSTEAMDevelopmentGroup/biosteam\n", - "3 ---> https://github.com/o2r-project/geoextent\n", - "6 ---> https://github.com/locked-fg/JFeatureLib\n", - "3 ---> https://github.com/bastula/dicompyler\n", - "9 ---> https://github.com/research-software-directory/research-software-directory\n", - "3 ---> https://github.com/mast-group/OpenVocabCodeNLM\n", - "3 ---> https://github.com/SystemsGenetics/KINC\n", - "3 ---> https://github.com/darothen/py-mie\n", - "3 ---> https://github.com/PySEE/home\n", - "3 ---> https://github.com/mfherbst/cvs-relaxation-scripts\n", - "5 ---> https://github.com/ctsit/research-subject-mapper\n", - "7 ---> https://github.com/havok2063/boolean_parser\n", - "3 ---> https://github.com/DTUWindEnergy/TOPFARM\n", - "3 ---> https://github.com/halfak/deltas\n", - "3 ---> https://github.com/srmnitc/pyscal\n", - "3 ---> https://github.com/Parallel-in-Time/pySDC\n", - "3 ---> https://github.com/kjappelbaum/permutationplotter\n", - "5 ---> https://github.com/ESMValGroup/ESMValTool\n", - "8 ---> https://github.com/lacinoire/chunk-retrieval-replication\n", - "3 ---> https://github.com/rahul-gohil/GFKT\n", - "4 ---> https://github.com/Edirom/WeGA-WebApp\n", - "7 ---> https://github.com/NYUCCL/psiTurk\n", - "6 ---> https://github.com/SP7-Ritmare/EDI-NG_server\n", - "3 ---> https://github.com/abhi1693/yii2-enum\n", - "6 ---> https://github.com/rinde/pdptw-dataset-generator\n", - "7 ---> https://github.com/CambridgeSemiticsLab/BH_time_collocations\n", - "9 ---> https://github.com/erwinkendo/polaruob\n", - "6 ---> https://github.com/geneontology/obographs\n", - "8 ---> https://github.com/speckleworks/SpeckleCore\n", - "3 ---> https://github.com/rjw57/videosequence\n", - "3 ---> https://github.com/tylerjereddy/diffusion_analysis_MD_simulations\n", - "3 ---> https://github.com/luphysics/PyMODA\n", - "3 ---> https://github.com/NatLibFi/Annif\n", - "5 ---> https://github.com/adbar/trafilatura\n", - "3 ---> https://github.com/ForeverZyh/DEBAR\n", - "3 ---> https://github.com/danchubb/CanVar\n", - "3 ---> https://github.com/JonathonMSmith/growin\n", - "3 ---> https://github.com/SoftwareDevEngResearch/flexWecDesignOpt\n", - "3 ---> https://github.com/RubenImhoff/Large_Sample_Nowcasting_Evaluation\n", - "6 ---> https://github.com/TreeCmp/TreeCmpWEB\n", - "3 ---> https://github.com/TaufiqHassan/acccmip6\n", - "3 ---> https://github.com/clsb/miles\n", - "3 ---> https://github.com/kip-hart/MicroStructPy\n", - "3 ---> https://github.com/hls-fpga-machine-learning/hls4ml\n", - "4 ---> https://github.com/biowdl/BamMetrics\n", - "3 ---> https://github.com/cwida/duckdb\n", - "3 ---> https://github.com/FREVA-CLINT/climatereconstructionAI\n", - "8 ---> https://github.com/CESEL/RelationalGit\n", - "3 ---> https://github.com/ComplexNetTSP/Simulation-Files-for-Large-Scale-Model-for-Information-Dissemination-with-Device-to-Device\n", - "3 ---> https://github.com/tresoldi/distfeat\n", - "3 ---> https://github.com/ceholden/TSTools\n", - "3 ---> https://github.com/riga/law\n", - "3 ---> https://github.com/castelao/seabird\n", - "8 ---> https://github.com/MrShoenel/git-density\n", - "5 ---> https://github.com/ufz/ogs-container-maker\n", - "3 ---> https://github.com/ADicksonLab/mastic\n", - "3 ---> https://github.com/rasbt/mlxtend\n", - "6 ---> https://github.com/VIDA-NYU/domain-discovery-d4\n", - "3 ---> https://github.com/SUNCAT-Center/CatLearn\n", - "3 ---> https://github.com/fastread/src\n", - "7 ---> https://github.com/lanecodes/cymod\n", - "3 ---> https://github.com/mancellin/capytaine\n", - "2 ---> https://github.com/tferr/Scripts\n", - "3 ---> https://github.com/ostwalprasad/LGNpy\n", - "5 ---> https://github.com/AstraZeneca-NGS/simple_sv_annotation\n", - "9 ---> https://github.com/sept08/WebToys\n", - "3 ---> https://github.com/JiaweiZhuang/ipm_util\n", - "3 ---> https://github.com/SynthSys/pyOmeroUpload\n", - "3 ---> https://github.com/adamewing/tldr\n", - "4 ---> https://github.com/JustinGOSSES/wellio.js\n", - "3 ---> https://github.com/purdue-cap/DryadSynth\n", - "8 ---> https://github.com/ph463/Gygax\n", - "6 ---> https://github.com/mayconbordin/cdr-gen\n", - "3 ---> https://github.com/Axelrod-Python/Axelrod\n", - "3 ---> https://github.com/MIPT-Oulu/solt\n", - "5 ---> https://github.com/hibernator11/notebook-texts-metadata\n", - "6 ---> https://github.com/nismod/transport\n", - "3 ---> https://github.com/scikit-hep/uproot\n", - "3 ---> https://github.com/alan-turing-institute/CROP\n", - "3 ---> https://github.com/cmusatyalab/openface\n", - "6 ---> https://github.com/blahah/transrate\n", - "3 ---> https://github.com/1313e/CMasher\n", - "3 ---> https://github.com/stonerlab/Stoner-PythonCode\n", - "3 ---> https://github.com/netneurolab/markello_ppmisnf\n", - "3 ---> https://github.com/jobovy/galpy\n", - "3 ---> https://github.com/LABSN/tdtpy\n", - "3 ---> https://github.com/tknapen/FIRDeconvolution\n", - "7 ---> https://github.com/jongablop/MinervaLab\n", - "4 ---> https://github.com/clarity-h2020/data-management-plan\n", - "3 ---> https://github.com/kashyapchhatbar/CLASHChimeras\n", - "5 ---> https://github.com/pzeidler89/MUSEpack\n", - "3 ---> https://github.com/tofaquih/imputation_of_untargeted_metabolites\n", - "3 ---> https://github.com/sebastientourbier/multiscalebrainparcellator\n", - "3 ---> https://github.com/hammurabi-dev/hammurabiX\n", - "9 ---> https://github.com/comses/comses.net\n", - "3 ---> https://github.com/ultralytics/yolov3\n", - "7 ---> https://github.com/clld/concepticon\n", - "3 ---> https://github.com/epigen/cll-chromatin\n", - "1 ---> https://github.com/sagemathinc/cocalc_tutorial\n", - "3 ---> https://github.com/paddy-seismic/retreat\n", - "3 ---> https://github.com/geoschem/gcpy\n", - "3 ---> https://github.com/NickSwainston/mwa_search\n", - "1 ---> https://github.com/dhimmel/gene-ontology\n", - "3 ---> https://github.com/lmarti/nsgaiii\n", - "6 ---> https://github.com/sbmlteam/jsbml\n", - "3 ---> https://github.com/ankahira/chainermnx\n", - "3 ---> https://github.com/CalebBell/fpi\n", - "3 ---> https://github.com/gplepage/corrfitter\n", - "5 ---> https://github.com/ADicksonLab/geomm\n", - "3 ---> https://github.com/pycroscopy/pycroscopy\n", - "3 ---> https://github.com/bioasp/iggy\n", - "3 ---> https://github.com/TUW-GEO/smos\n", - "3 ---> https://github.com/SynthSys/OMEROConnect\n", - "6 ---> https://github.com/jaclaes/SPMM2015\n", - "7 ---> https://github.com/FNNDSC/ChRIS_store\n", - "3 ---> https://github.com/hpparvi/KeplerJC\n", - "3 ---> https://github.com/neurodata/graspy\n", - "3 ---> https://github.com/bast/polygons\n", - "3 ---> https://github.com/MatthewReid854/reliability\n", - "3 ---> https://github.com/greenelab/DAPS\n", - "3 ---> https://github.com/merijn/Belewitte\n", - "1 ---> https://github.com/HexaPlant/pixeldragon\n", - "3 ---> https://github.com/sertansenturk/ahenkidentifier\n", - "3 ---> https://github.com/bss116/citygenerator\n", - "3 ---> https://github.com/jeffbass/imagezmq\n", - "9 ---> https://github.com/njss/Sense.me\n", - "3 ---> https://github.com/materialsvirtuallab/pyhull\n", - "3 ---> https://github.com/alexnaoki/LHC_Hidroweb\n", - "5 ---> https://github.com/UCATLAS/xAODAnaHelpers\n", - "3 ---> https://github.com/rhiever/MarkovNetwork\n", - "3 ---> https://github.com/dvalters/caesarplotlib\n", - "3 ---> https://github.com/pyproj4/pyproj\n", - "7 ---> https://github.com/clld/csd\n", - "7 ---> https://github.com/colbyj/bride-of-frankensystem\n", - "3 ---> https://github.com/SainsburyWellcomeCentre/cellfinder\n", - "3 ---> https://github.com/pySRURGS/pyGOURGS\n", - "7 ---> https://github.com/acdh-oeaw/4dpuzzle\n", - "3 ---> https://github.com/kinnala/kirchhoff-nitsche-ex2\n", - "3 ---> https://github.com/petl-developers/petlx\n", - "3 ---> https://github.com/mmcauliffe/Pyraat\n", - "6 ---> https://github.com/plt-tud/r43ples\n", - "3 ---> https://github.com/EducationalTestingService/skll\n", - "3 ---> https://github.com/RadioAstronomySoftwareGroup/pyuvdata\n", - "3 ---> https://github.com/jfnavarro/st_pipeline\n", - "3 ---> https://github.com/Neuroinflab/PyMICE\n", - "1 ---> https://github.com/pythoninchemistry/intro_python_chemists\n", - "3 ---> https://github.com/OpenPIV/openpiv-python\n", - "6 ---> https://github.com/mbari-media-management/vcr4j\n", - "3 ---> https://github.com/dpizetta/wavy\n", - "7 ---> https://github.com/arman2/equal_public\n", - "3 ---> https://github.com/gher-ulg/Diva-Workshops\n", - "3 ---> https://github.com/pydata/xarray\n", - "3 ---> https://github.com/transientlunatic/elk\n", - "3 ---> https://github.com/qcscine/readuct\n", - "7 ---> https://github.com/RDFLib/pymicrodata\n", - "3 ---> https://github.com/sbmlteam/libCombine\n", - "9 ---> https://github.com/encompasslabs/mcsdss-watermark\n", - "3 ---> https://github.com/OGGM/oggm\n", - "5 ---> https://github.com/tdwg/dwc\n", - "3 ---> https://github.com/NeuralEnsemble/elephant\n", - "3 ---> https://github.com/agporto/ml-morph\n", - "3 ---> https://github.com/SeismicSource/sourcespec\n", - "3 ---> https://github.com/tensorwerk/hangar-py\n", - "3 ---> https://github.com/virgesmith/humanleague\n", - "3 ---> https://github.com/lebedov/scikit-cuda\n", - "6 ---> https://github.com/mbari-media-management/vars-query\n", - "9 ---> https://github.com/jpdias/node-red-contrib-self-healing\n", - "3 ---> https://github.com/snastase/isc-tutorial\n", - "2 ---> https://github.com/smart-facility/cognicity-reports-qlue\n", - "3 ---> https://github.com/simpeg-research/kang-2019-3D-aem\n", - "3 ---> https://github.com/appetrosyan/LCDM-NS\n", - "5 ---> https://github.com/asergiobranco/ArchNet\n", - "3 ---> https://github.com/DistrictDataLabs/yellowbrick\n", - "5 ---> https://github.com/enolfc/d4science-galaxy-authn\n", - "3 ---> https://github.com/pyGSTio/pyGSTi\n", - "2 ---> https://github.com/smart-facility/cognicity-reports-floodgauge\n", - "3 ---> https://github.com/miguelfp/ibmos\n", - "3 ---> https://github.com/DanPorter/Dans_Diffraction\n", - "3 ---> https://github.com/CexyNature/Crabspy\n", - "3 ---> https://github.com/ismrmrd/ismrmrd-python\n", - "3 ---> https://github.com/kkmann/sample-size-calculation-under-uncertainty\n", - "3 ---> https://github.com/kingjr/ecoggui\n", - "3 ---> https://github.com/OP2/PyOP2\n", - "5 ---> https://github.com/cgat-developers/cgat-core\n", - "3 ---> https://github.com/pnlbwh/luigi-pnlpipe\n", - "9 ---> https://github.com/dzhw/metadatamanagement\n", - "1 ---> https://github.com/mastrogeppetto/OCCI4IOT\n", - "3 ---> https://github.com/scivision/fortran-submodule\n", - "3 ---> https://github.com/librosa/librosa\n", - "3 ---> https://github.com/morganjwilliams/pyrolite\n", - "9 ---> https://github.com/planetserver/ps2-www-client\n", - "3 ---> https://github.com/MDAnalysis/RotamerConvolveMD\n", - "3 ---> https://github.com/psu-inversion/atmospheric-inverse-methods-for-flux-optimization\n", - "5 ---> https://github.com/enolfc/d4scienceauth\n", - "3 ---> https://github.com/yoavram/Sid\n", - "6 ---> https://github.com/ISOBlue/isoblue-android\n", - "3 ---> https://github.com/bio2bel/bio2bel\n", - "5 ---> https://github.com/CDAT/ci-bots\n", - "9 ---> https://github.com/ropensci/stplanr\n", - "9 ---> https://github.com/digitallinguistics/app\n", - "7 ---> https://github.com/blokhin/genealogical-trees\n", - "3 ---> https://github.com/hannes-brt/hebel\n", - "3 ---> https://github.com/mcs07/CIRpy\n", - "4 ---> https://github.com/tobysmith568/Generate-License-File\n", - "7 ---> https://github.com/HBLL-Collection-Development/omeka-s-any-cloud\n", - "7 ---> https://github.com/dgnest/foottrial\n", - "3 ---> https://github.com/neuropsychology/NeuroKit\n", - "3 ---> https://github.com/makgyver/rectorch\n", - "3 ---> https://github.com/Continvvm/continuum\n", - "3 ---> https://github.com/mdolab/pyhyp\n", - "3 ---> https://github.com/timothydmorton/exosyspop\n", - "3 ---> https://github.com/WGUNDERWOOD/motifcluster\n", - "6 ---> https://github.com/egonw/ops4j\n", - "3 ---> https://github.com/SebBuchelt/georef_webcam\n", - "5 ---> https://github.com/dimazest/google-ngram-downloader\n", - "3 ---> https://github.com/mmadsen/seriationct\n", - "2 ---> https://github.com/thorstenwagner/ij-shape-smoothing\n", - "3 ---> https://github.com/prisae/pyfftlog\n", - "3 ---> https://github.com/koszullab/hicstuff\n", - "3 ---> https://github.com/TUW-GEO/gldas\n", - "3 ---> https://github.com/martinfleis/momepy\n", - "6 ---> https://github.com/alamar/microbe\n", - "3 ---> https://github.com/romain-jacob/TTW-Artifacts\n", - "9 ---> https://github.com/netsage-project/netsage-pipeline\n", - "3 ---> https://github.com/krischer/pyflex\n", - "7 ---> https://github.com/cheeseywhiz/cheeseywhiz\n", - "2 ---> https://github.com/NeuPhysics/neutrino\n", - "1 ---> https://github.com/astrojs/fitsjs\n", - "6 ---> https://github.com/arbox/shalmaneser\n", - "5 ---> https://github.com/keflavich/pyradex\n", - "3 ---> https://github.com/alphatwirl/mantichora\n", - "3 ---> https://github.com/pysal/spreg\n", - "3 ---> https://github.com/dmey/minimal-dx\n", - "3 ---> https://github.com/dftlibs/xcauto\n", - "5 ---> https://github.com/kizniche/Mycodo\n", - "3 ---> https://github.com/lmcinnes/umap\n", - "3 ---> https://github.com/flowersteam/explauto\n", - "3 ---> https://github.com/malkayo/AiRL\n", - "9 ---> https://github.com/liminoid/liminoid-js\n", - "3 ---> https://github.com/llambourne/isoenzymes_flux_balance\n", - "5 ---> https://github.com/davidhin/stringmatching\n", - "3 ---> https://github.com/maxplanck-ie/snakepipes\n", - "3 ---> https://github.com/titipata/pubmed_parser\n", - "3 ---> https://github.com/inodb/revmut\n", - "3 ---> https://github.com/LASER-UMASS/CausalTesting_ICSE20\n", - "3 ---> https://github.com/bcbio/bcbio-nextgen\n", - "3 ---> https://github.com/coin-or/CyLP\n", - "3 ---> https://github.com/SciTools/cartopy\n", - "9 ---> https://github.com/Jollyfant/PMAG2\n", - "3 ---> https://github.com/AlBi-HHU/homo-edit-distance\n", - "3 ---> https://github.com/atmtools/typhon\n", - "3 ---> https://github.com/benvanwerkhoven/kernel_tuner\n", - "6 ---> https://github.com/myGrid/ruby-ro-bundle\n", - "1 ---> https://github.com/juoceano/lecture_figures\n", - "3 ---> https://github.com/briandconnelly/nicheconstruct\n", - "3 ---> https://github.com/deeptools/HiCExplorer\n", - "7 ---> https://github.com/mmalekzadeh/privacy-preserving-bandits\n", - "6 ---> https://github.com/jjnp/dss-ue2\n", - "3 ---> https://github.com/jsh9/PySeismoSoil\n", - "3 ---> https://github.com/wiheto/teneto\n", - "3 ---> https://github.com/CamDavidsonPilon/lifetimes\n", - "3 ---> https://github.com/meelgroup/baital\n", - "5 ---> https://github.com/harnesscloud/bqwm\n", - "3 ---> https://github.com/apcamargo/tspex\n", - "3 ---> https://github.com/a-slide/pycoMeth\n", - "3 ---> https://github.com/RoberAgro/nurbspy\n", - "3 ---> https://github.com/ralph-group/pymeasure\n", - "7 ---> https://github.com/TrapperTeam/Trapper\n", - "3 ---> https://github.com/sertansenturk/tomato\n", - "3 ---> https://github.com/oscarbranson/carbspec\n", - "9 ---> https://github.com/rodighiero/AIUCD2020\n", - "3 ---> https://github.com/michaelaye/planet4\n", - "3 ---> https://github.com/mcs07/PubChemPy\n", - "3 ---> https://github.com/kyleniemeyer/mech_util\n", - "3 ---> https://github.com/nathandunn/galaxy-monarch-integration\n", - "3 ---> https://github.com/pyoceans/python-ctd\n", - "3 ---> https://github.com/sebhenri/HyWF\n", - "7 ---> https://github.com/MatthijsKaminski/AnalyzeTool\n", - "5 ---> https://github.com/mila-iqia/blocks\n", - "3 ---> https://github.com/vnmabus/dcor\n", - "3 ---> https://github.com/ejhumphrey/optimus\n", - "3 ---> https://github.com/Kaleidophon/token2index\n", - "5 ---> https://github.com/gchrupala/visually-grounded-speech\n", - "3 ---> https://github.com/dhhagan/opcsim\n", - "3 ---> https://github.com/kipoi/kipoiseq\n", - "3 ---> https://github.com/pnlbwh/freesurfer-analysis\n", - "3 ---> https://github.com/mpastell/CowLog\n", - "6 ---> https://github.com/TGAC/RAMPART\n", - "6 ---> https://github.com/repseqio/repseqio\n", - "8 ---> https://github.com/liminoid/liminoid\n", - "0 ---> https://github.com/SotosTsepe/invenio-madmp\n", - "6 ---> https://github.com/russianwordnet/yarn\n", - "3 ---> https://github.com/ihmeuw/vivarium_conic_lsff\n", - "3 ---> https://github.com/CMA-ES/pycma\n", - "3 ---> https://github.com/FAST-HEP/fast-curator\n", - "3 ---> https://github.com/erdc/AutoRoutePy\n", - "3 ---> https://github.com/kjappelbaum/oximachinetool\n", - "6 ---> https://github.com/ameyaKetkar/SimpleTypeChangeMiner\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "5 ---> https://github.com/rvhonorato/cazy-parser\n", - "3 ---> https://github.com/CrystalMei/ProvBuild\n", - "7 ---> https://github.com/stoqs/stoqs\n", - "3 ---> https://github.com/jamesrhester/PyFormatTransformer\n", - "3 ---> https://github.com/mirnylab/cooltools\n", - "3 ---> https://github.com/maxibor/adrsm\n", - "2 ---> https://github.com/thorstenwagner/ij-shape-filter\n", - "5 ---> https://github.com/cemac/SWIFTDB\n", - "3 ---> https://github.com/minimalparts/nonce2vec\n", - "3 ---> https://github.com/sepandhaghighi/pyrgg\n", - "8 ---> https://github.com/xBimTeam/XbimEssentials\n", - "9 ---> https://github.com/bionode/bionode-fasta\n", - "4 ---> https://github.com/chembl/FPSim2\n", - "7 ---> https://github.com/WIPACrepo/iceprod\n", - "3 ---> https://github.com/smarsland/AviaNZ\n", - "9 ---> https://github.com/chasemc/IDBacApp\n", - "7 ---> https://github.com/metomi/rose\n", - "3 ---> https://github.com/dune-community/dune-gdt\n", - "3 ---> https://github.com/LEAF-BoiseState/janus\n", - "3 ---> https://github.com/mmbajo/PROBA-V\n", - "3 ---> https://github.com/koszullab/instaGRAAL\n", - "3 ---> https://github.com/clincolnoz/WorldBank_WDI_Visulization\n", - "6 ---> https://github.com/lifs-tools/jmzTab-m-webapp\n", - "3 ---> https://github.com/thieunguyen5991/mealpy\n", - "3 ---> https://github.com/sepandhaghighi/pycm\n", - "9 ---> https://github.com/fruchtfolge/client\n", - "9 ---> https://github.com/newcastle-living-lab/living-lab\n", - "3 ---> https://github.com/waqasbhatti/astrobase\n", - "3 ---> https://github.com/TECH-UB-24-Programming-DS-Spring-2020/notebooks\n", - "3 ---> https://github.com/hidrokit/hidrokit\n", - "3 ---> https://github.com/biosustain/gnomic\n", - "3 ---> https://github.com/digicademy/AskMoreXtension\n", - "3 ---> https://github.com/jnicoleoliveira/SPECData\n", - "3 ---> https://github.com/glotzerlab/signac-flow\n", - "5 ---> https://github.com/erdc/spt_compute\n", - "3 ---> https://github.com/maayane/PhotoManip\n", - "9 ---> https://github.com/ufbmi/mdc_tree\n", - "3 ---> https://github.com/VlachosGroup/vunits\n", - "3 ---> https://github.com/rhshah/iCallSV\n", - "3 ---> https://github.com/widdowquinn/SI_Holmes_etal_2020\n", - "3 ---> https://github.com/vemomoto/vemomoto\n", - "5 ---> https://github.com/nschloe/tikzplotlib\n", - "7 ---> https://github.com/msmbuilder/msmbuilder\n", - "3 ---> https://github.com/dmolina/shadeils\n", - "5 ---> https://github.com/spacetelescope/mirage\n", - "5 ---> https://github.com/dpla/ingestion\n", - "9 ---> https://github.com/bigbadcrad/PUFFIN\n", - "3 ---> https://github.com/Ouranosinc/xclim\n", - "5 ---> https://github.com/erdc/spt_dataset_manager\n", - "7 ---> https://github.com/jhrmnn/pyberny\n", - "7 ---> https://github.com/scharom16/evolutionary-nas-with-performance-estimation\n", - "3 ---> https://github.com/timm/shape\n", - "3 ---> https://github.com/JulianKarlBauer/mechkit\n", - "5 ---> https://github.com/gher-ulg/DINCAE\n", - "9 ---> https://github.com/eweitz/ideogram\n", - "6 ---> https://github.com/rinde/vanLon17-GPEM-code\n", - "7 ---> https://github.com/NESCent/dplace\n", - "3 ---> https://github.com/kkmann/optimal-binary-two-stage-designs\n", - "3 ---> https://github.com/pyoceans/python-oceans\n", - "3 ---> https://github.com/DiamondLightSource/Opt-ID\n", - "3 ---> https://github.com/salvadorgarciamunoz/kipet\n", - "3 ---> https://github.com/JasperHG90/sleepsimR-api\n", - "3 ---> https://github.com/njsmith/zs\n", - "6 ---> https://github.com/cicirello/JavaPermutationTools\n", - "3 ---> https://github.com/AndrewAnnex/SpiceyPy\n", - "6 ---> https://github.com/CESNET/perun-mitreid\n", - "3 ---> https://github.com/choderalab/itctools\n", - "7 ---> https://github.com/vpasumarthi/PyCD\n", - "6 ---> https://github.com/jiemakel/seco-hfst\n", - "4 ---> https://github.com/digitallinguistics/spec\n", - "3 ---> https://github.com/philippkraft/cmf\n", - "8 ---> https://github.com/fo-am/mongoose-2000\n", - "3 ---> https://github.com/snowformatics/macrobot\n", - "9 ---> https://github.com/kach/nearley\n", - "9 ---> https://github.com/direwolf/direwolf-app\n", - "6 ---> https://github.com/infraling/atomic\n", - "5 ---> https://github.com/samapriya/plantpy\n", - "3 ---> https://github.com/KatyBrown/CIAlign\n", - "3 ---> https://github.com/iteal/wormpose\n", - "3 ---> https://github.com/felixriese/susi\n", - "5 ---> https://github.com/proycon/codemetapy\n", - "3 ---> https://github.com/eblur/dust\n", - "3 ---> https://github.com/BioMoDeL/aesop\n", - "3 ---> https://github.com/bashtage/randomgen\n", - "3 ---> https://github.com/UT-CHG/BET\n", - "9 ---> https://github.com/bids-standard/bids-validator\n", - "7 ---> https://github.com/concepticon/pynorare\n", - "3 ---> https://github.com/nipy/PySurfer\n", - "3 ---> https://github.com/jeffreyruffolo/lamprey_rs_neuron_parameter_exploration\n", - "5 ---> https://github.com/harnesscloud/irm-nova\n", - "3 ---> https://github.com/obachem/kmc2\n", - "4 ---> https://github.com/biowdl/gatk-preprocess\n", - "3 ---> https://github.com/beOn/cili\n", - "9 ---> https://github.com/trendscenter/coinstac\n", - "7 ---> https://github.com/kuechenrole/antarctic_melting\n", - "3 ---> https://github.com/saketkc/moca\n", - "3 ---> https://github.com/PBR/MQ2\n", - "6 ---> https://github.com/ijpb/MorphoLibJ\n", - "3 ---> https://github.com/tesera/pygypsy\n", - "3 ---> https://github.com/ml-evs/ilustrado\n", - "3 ---> https://github.com/DeepRank/iScore\n", - "3 ---> https://github.com/fastscape-lem/fastscape\n", - "6 ---> https://github.com/yogo/sapphire\n", - "3 ---> https://github.com/BlueBrain/MorphIO\n", - "3 ---> https://github.com/bashtage/arch\n", - "3 ---> https://github.com/vsoch/TtoZ\n", - "3 ---> https://github.com/miurahr/pykakasi\n", - "3 ---> https://github.com/dalejn/cleanBib\n", - "3 ---> https://github.com/fail2ban/fail2ban\n", - "3 ---> https://github.com/mih/gumpdata\n", - "3 ---> https://github.com/compas-dev/compas_fab\n", - "3 ---> https://github.com/steelelab-delft/stlab\n", - "3 ---> https://github.com/mozillazg/python-pinyin\n", - "3 ---> https://github.com/aestimosolver/aestimo\n", - "3 ---> https://github.com/PyMVPA/PyMVPA\n", - "3 ---> https://github.com/eljost/pysisyphus\n", - "3 ---> https://github.com/mikahama/murre\n", - "9 ---> https://github.com/sbalci/clinicopathological\n", - "6 ---> https://github.com/arselzer/HTQueryOptimizer\n", - "3 ---> https://github.com/phenomecentre/ISTOCSY\n", - "5 ---> https://github.com/BerkeleyPhotonicsGenerator/BPG\n", - "3 ---> https://github.com/shiny-data-scientist/webscrap_pract_1\n", - "5 ---> https://github.com/GeoscienceAustralia/tcrm\n", - "3 ---> https://github.com/dputhier/pygtftk\n", - "3 ---> https://github.com/michaelaye/iuvs\n", - "3 ---> https://github.com/discsim/frank\n", - "3 ---> https://github.com/dguijo/TSOC\n" - ] - } - ], - "source": [ - "# make inference (cluster) for each repo\n", - "print('inference :')\n", - "topic_dict = {}\n", - "for e, values in enumerate(lda_model.inference(corpus)[0]):\n", - " topic_val = 0\n", - " topic_id = 0\n", - " for tid, val in enumerate(values):\n", - " if val > topic_val:\n", - " topic_val = val\n", - " topic_id = tid\n", - " \n", - " topic_dict[topic_id] = topic_dict.get(topic_id,[])\n", - " topic_dict[topic_id].append(rep_list[e])\n", - " print(topic_id, '--->', rep_list[e])" - ] - }, - { - "cell_type": "code", - "execution_count": 65, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{3: ['https://github.com/AgriculturalModelExchangeInitiative/Crop2ML',\n", - " 'https://github.com/hlgirard/CrystalML',\n", - " 'https://github.com/houghb/ligpy',\n", - " 'https://github.com/oschwengers/referenceseeker',\n", - " 'https://github.com/LPDI-EPFL/trivalent_cocktail',\n", - " 'https://github.com/CIRA-Pulsars-and-Transients-Group/vcstools',\n", - " 'https://github.com/usc-isi-i2/kgtk',\n", - " 'https://github.com/garciagenrique/template_project_escape',\n", - " 'https://github.com/williamjameshandley/anesthetic',\n", - " 'https://github.com/yardencsGitHub/tweetynet',\n", - " 'https://github.com/jagalindo/A-Python-QX-implementation',\n", - " 'https://github.com/jbkinney/mavenn',\n", - " 'https://github.com/GeoCode-polymtl/Seis_float16',\n", - " 'https://github.com/sebp/scikit-survival',\n", - " 'https://github.com/Biophotonics-COMI/flimview',\n", - " 'https://github.com/joshspeagle/brutus',\n", - " 'https://github.com/TDAmeritrade/stumpy',\n", - " 'https://github.com/habi/acinar-analysis',\n", - " 'https://github.com/mbernste/hypothesis-driven-SRA-queries',\n", - " 'https://github.com/maxscheurer/cppe',\n", - " 'https://github.com/Sung-Huan/ANNOgesic',\n", - " 'https://github.com/gauteh/ibcao_py',\n", - " 'https://github.com/mmhs013/pyHomogeneity',\n", - " 'https://github.com/bukhsh/oats',\n", - " 'https://github.com/mukil/pmic',\n", - " 'https://github.com/pySTEPS/pysteps',\n", - " 'https://github.com/groupeLIAMG/ttcr',\n", - " 'https://github.com/oujago/NumpyDL',\n", - " 'https://github.com/deniederhut/niacin',\n", - " 'https://github.com/ZurichNLP/xstance',\n", - " 'https://github.com/raotnameh/End-to-end-E2E-Named-Entity-Recognition-from-English-Speech',\n", - " 'https://github.com/danielrd6/ifscube',\n", - " 'https://github.com/esteinig/sketchy',\n", - " 'https://github.com/opium-sh/prl',\n", - " 'https://github.com/LFPy/LFPy',\n", - " 'https://github.com/1QB-Information-Technologies/COOL',\n", - " 'https://github.com/morpheus-project/morpheus',\n", - " 'https://github.com/leal26/AeroPy',\n", - " 'https://github.com/arose/nglview',\n", - " 'https://github.com/jpgill86/neurotic',\n", - " 'https://github.com/bertrandcz/CrocO_toolbox',\n", - " 'https://github.com/andsor/gridjug',\n", - " 'https://github.com/stfxecutables/empyricalRMT',\n", - " 'https://github.com/wmayner/pyphi',\n", - " 'https://github.com/pysal/spaghetti',\n", - " 'https://github.com/brisskit-uol/i2b2-install-procedures',\n", - " 'https://github.com/bast/runtest',\n", - " 'https://github.com/VarIr/scikit-hubness',\n", - " 'https://github.com/wright-group/WrightTools',\n", - " 'https://github.com/CamDavidsonPilon/lifelines',\n", - " 'https://github.com/tpall/pynodo',\n", - " 'https://github.com/rmkoesterer/uga',\n", - " 'https://github.com/GoekeLab/xpore',\n", - " 'https://github.com/ml-evs/matador',\n", - " 'https://github.com/stefsmeets/instamatic',\n", - " 'https://github.com/danxhuber/isoclassify',\n", - " 'https://github.com/proycon/colibri-core',\n", - " 'https://github.com/alielhassouni/rl-multi-agent-simulation-for-e-health',\n", - " 'https://github.com/amueller/patsylearn',\n", - " 'https://github.com/lacava/few',\n", - " 'https://github.com/mheikenfeld/ramscube',\n", - " 'https://github.com/python-pillow/Pillow',\n", - " 'https://github.com/Silmathoron/NNGT',\n", - " 'https://github.com/ariercole/Cambridge_COVID-19_ICU',\n", - " 'https://github.com/matthiasweiss/dsue1-2020s',\n", - " 'https://github.com/jenojp/negspacy',\n", - " 'https://github.com/MartinPdS/OCT_calibration',\n", - " 'https://github.com/cmsopendata-finland/kurssimateriaali',\n", - " 'https://github.com/HERA-Team/librarian',\n", - " 'https://github.com/tkralphs/CuPPy',\n", - " 'https://github.com/r9y9/pylibfreenect2',\n", - " 'https://github.com/arm61/uravu',\n", - " 'https://github.com/acoular/acoular',\n", - " 'https://github.com/underworldcode/UWGeodynamics',\n", - " 'https://github.com/sherbold/autorank',\n", - " 'https://github.com/CENER-EPR/OWAbench',\n", - " 'https://github.com/tempdata73/tic-tac-toe',\n", - " 'https://github.com/catalyst-cooperative/pudl',\n", - " 'https://github.com/TUDelft-CITG/OpenTISim',\n", - " 'https://github.com/martinlackner/abcvoting',\n", - " 'https://github.com/pv/fimport',\n", - " 'https://github.com/nextgenusfs/funannotate',\n", - " 'https://github.com/cmccoy/ighutil',\n", - " 'https://github.com/AOtools/aotools',\n", - " 'https://github.com/weecology/retriever',\n", - " 'https://github.com/mdolab/idwarp',\n", - " 'https://github.com/davidrpugh/pyAM',\n", - " 'https://github.com/N3PDF/yadism',\n", - " 'https://github.com/JohannesBuchner/snowline',\n", - " 'https://github.com/pychebfun/pychebfun',\n", - " 'https://github.com/mmadsen/ctmixtures',\n", - " 'https://github.com/coin-or/GiMPy',\n", - " 'https://github.com/hibernator11/notebook-lod-libraries',\n", - " 'https://github.com/muammar/heisenberg',\n", - " 'https://github.com/spex-xray/pyspextools',\n", - " 'https://github.com/csdms/pymt',\n", - " 'https://github.com/santiago1234/MZT-rna-stability',\n", - " 'https://github.com/sehero/lua',\n", - " 'https://github.com/qmlcode/qml',\n", - " 'https://github.com/dmyersturnbull/tyrannosaurus',\n", - " 'https://github.com/alcantarar/dryft',\n", - " 'https://github.com/DaniloZZZ/Qensor',\n", - " 'https://github.com/MaayanLab/Zika-RNAseq-Pipeline',\n", - " 'https://github.com/pyReef-model/RADWave',\n", - " 'https://github.com/src-d/kmcuda',\n", - " 'https://github.com/perrygeo/pyimpute',\n", - " 'https://github.com/toshas/torch-fidelity',\n", - " 'https://github.com/SasView/sasview',\n", - " 'https://github.com/zfit/zfit-physics',\n", - " 'https://github.com/abhi1693/yii2-system-info',\n", - " 'https://github.com/harmslab/pytc',\n", - " 'https://github.com/biosustain/pyrcos',\n", - " 'https://github.com/CNRGH/contatester',\n", - " 'https://github.com/pcko1/Deep-Drug-Coder',\n", - " 'https://github.com/gree-gorey/rusclasp',\n", - " 'https://github.com/chartes/deucalion-model-lasla',\n", - " 'https://github.com/SanneHoeken/HEEM-Data-Extractions',\n", - " 'https://github.com/fliem/cpr',\n", - " 'https://github.com/r9y9/nnmnkwii',\n", - " 'https://github.com/paudetseis/PlateCurie',\n", - " 'https://github.com/cyclops-community/tensorbackends',\n", - " 'https://github.com/astrofle/CRRLpy',\n", - " 'https://github.com/stanford-futuredata/Willump',\n", - " 'https://github.com/phiweger/zoo',\n", - " 'https://github.com/shenlab-sinai/region_analysis',\n", - " 'https://github.com/podondra/bt-spectraldl',\n", - " 'https://github.com/ubermag/micromagnetictests',\n", - " 'https://github.com/amunozj/magnetograph_2HMI_converter',\n", - " 'https://github.com/r9y9/pysptk',\n", - " 'https://github.com/michaelaye/venim',\n", - " 'https://github.com/FAST-HEP/fast-carpenter',\n", - " 'https://github.com/lpwgroup/torsiondrive',\n", - " 'https://github.com/datajoint/datajoint-python',\n", - " 'https://github.com/hallamlab/mlLGPR',\n", - " 'https://github.com/cmbant/CosmoMC',\n", - " 'https://github.com/lukasValentin/OBIA4RTM',\n", - " 'https://github.com/loostrum/darc',\n", - " 'https://github.com/sdorkenw/MeshParty',\n", - " 'https://github.com/RadioAstronomySoftwareGroup/pyuvsim',\n", - " 'https://github.com/aditya95sriram/td-slim',\n", - " 'https://github.com/geoopt/geoopt',\n", - " 'https://github.com/jswoboda/ISRSpectrum',\n", - " 'https://github.com/jonschwenk/RivGraph',\n", - " 'https://github.com/thoppe/Encyclopedia-of-Finite-Graphs',\n", - " 'https://github.com/Ry-C123/LazyPSF',\n", - " 'https://github.com/tjof2/ctrwfractal',\n", - " 'https://github.com/MatthewBCooke/Pathfinder',\n", - " 'https://github.com/connectomicslab/connectomemapper3',\n", - " 'https://github.com/rpep/fmmgen',\n", - " 'https://github.com/griffin-h/superphot',\n", - " 'https://github.com/cscully-allison/Materia',\n", - " 'https://github.com/tschaume/ccsgp_get_started',\n", - " 'https://github.com/discos/discos-backend',\n", - " 'https://github.com/wmayner/pyemd',\n", - " 'https://github.com/drsteve/PyForecastTools',\n", - " 'https://github.com/rmsolgi/geneticalgorithm',\n", - " 'https://github.com/mmhs013/pyMannKendall',\n", - " 'https://github.com/TerrainBento/terrainbento',\n", - " 'https://github.com/mwaskom/seaborn',\n", - " 'https://github.com/florafauna/optimParallel-python',\n", - " 'https://github.com/pietrobarbiero/evofs',\n", - " 'https://github.com/IsaacCorley/pytorch-enhance',\n", - " 'https://github.com/ecell/ecell4',\n", - " 'https://github.com/mirnylab/bioframe',\n", - " 'https://github.com/dean0x7d/pybinding',\n", - " 'https://github.com/janmtl/pypsych',\n", - " 'https://github.com/lcharleux/abapy',\n", - " 'https://github.com/nuest/ten-simple-rules-dockerfiles',\n", - " 'https://github.com/OpenSourceEconomics/ruspy',\n", - " 'https://github.com/lingfeiwang/normalisr',\n", - " 'https://github.com/ShuhuaGao/geppy',\n", - " 'https://github.com/azedarach/matrix-factorization-case-studies',\n", - " 'https://github.com/LoLab-VU/Gleipnir',\n", - " 'https://github.com/uwmadison-chm/scorify',\n", - " 'https://github.com/csu-hmc/GaitAnalysisToolKit',\n", - " 'https://github.com/radical-cybertools/radical.synapse',\n", - " 'https://github.com/MaineKuehn/usim',\n", - " 'https://github.com/astrom-tom/dfitspy',\n", - " 'https://github.com/spacetelescope/jwql',\n", - " 'https://github.com/ePSIC-DLS/ParticleSpy',\n", - " 'https://github.com/N3PDF/pineappl',\n", - " 'https://github.com/hippylib/hippylib',\n", - " 'https://github.com/felixriese/CNN-SoilTextureClassification',\n", - " 'https://github.com/IQuOD/wodpy',\n", - " 'https://github.com/ahendriksen/msd_pytorch',\n", - " 'https://github.com/sgoldenlab/simba',\n", - " 'https://github.com/mdolab/adflow',\n", - " 'https://github.com/OpenChemistry/tomviz',\n", - " 'https://github.com/sertansenturk/seyiranalyzer',\n", - " 'https://github.com/sertansenturk/alignednotemodel',\n", - " 'https://github.com/miklos1/dijitso',\n", - " 'https://github.com/schwemro/diag-eff',\n", - " 'https://github.com/NLeSC/mcfly',\n", - " 'https://github.com/hahnec/plenopticam',\n", - " 'https://github.com/ICB-DCM/AMICI',\n", - " 'https://github.com/kundajelab/abstention',\n", - " 'https://github.com/transientlunatic/otter',\n", - " 'https://github.com/dftlibs/xcfun',\n", - " 'https://github.com/kikuchipy/kikuchipy',\n", - " 'https://github.com/gpauloski/kfac_pytorch',\n", - " 'https://github.com/materialsproject/pymatgen',\n", - " 'https://github.com/douglasdavis/pygram11',\n", - " 'https://github.com/jrkerns/pylinac',\n", - " 'https://github.com/kdberends/coral',\n", - " 'https://github.com/llondon6/positive',\n", - " 'https://github.com/LiyrAstroph/CDNest',\n", - " 'https://github.com/pysal/giddy',\n", - " 'https://github.com/LeeBergstrand/BackBLAST_Reciprocal_BLAST',\n", - " 'https://github.com/JanaLasser/salt-polygons-are-caused-by-convection',\n", - " 'https://github.com/mediawiki-utilities/python-mwreverts',\n", - " 'https://github.com/rbnvrw/semtracking',\n", - " 'https://github.com/coin-or/GrUMPy',\n", - " 'https://github.com/nist-ionstorage/pdq2',\n", - " 'https://github.com/TLCFEM/suanPan',\n", - " 'https://github.com/dlilien/ImpDAR',\n", - " 'https://github.com/ihrke/pypillometry',\n", - " 'https://github.com/willpearse/stalkless',\n", - " 'https://github.com/FractalMedia/wheresmunna',\n", - " 'https://github.com/vivekbhr/scRIApipe',\n", - " 'https://github.com/coin-or/pulp',\n", - " 'https://github.com/Titan-C/slaveparticles',\n", - " 'https://github.com/pnuehrenberg/multiviewtracks',\n", - " 'https://github.com/matthewfeickert/IRIS-HEP-2020-Poster-Session',\n", - " 'https://github.com/r4ecology/nctoolkit',\n", - " 'https://github.com/transientlunatic/heron',\n", - " 'https://github.com/capaulson/pyKriging',\n", - " 'https://github.com/VlachosGroup/jl_spectra_2_structure',\n", - " 'https://github.com/wradlib/wradlib',\n", - " 'https://github.com/CICE-Consortium/CICE',\n", - " 'https://github.com/sherpa/sherpa',\n", - " 'https://github.com/toros-astro/astroalign',\n", - " 'https://github.com/bootphon/ABXpy',\n", - " 'https://github.com/pdxgx/neoepiscope',\n", - " 'https://github.com/danforthcenter/plantcv',\n", - " 'https://github.com/jkitchin/pycse',\n", - " 'https://github.com/rraadd88/rohan',\n", - " 'https://github.com/compas-dev/compas_fea',\n", - " 'https://github.com/justagist/panda_simulator',\n", - " 'https://github.com/stemtool/stemtool',\n", - " 'https://github.com/mkoeppe/sage-numerical-interactive-mip',\n", - " 'https://github.com/Nu-AI/Livid-About-COVID',\n", - " 'https://github.com/PyLorentz/PyLorentz',\n", - " 'https://github.com/ctsit/dxster',\n", - " 'https://github.com/PhysicsOfMobility/ridesharing_topology_dependence',\n", - " 'https://github.com/SuperKam91/twentyoneflow',\n", - " 'https://github.com/duartegroup/cgbind',\n", - " 'https://github.com/raphaelvallat/pingouin',\n", - " 'https://github.com/pnlbwh/dMRIharmonization',\n", - " 'https://github.com/cryotools/cosipy',\n", - " 'https://github.com/N3PDF/vegasflow',\n", - " 'https://github.com/althonos/pronto',\n", - " 'https://github.com/nipy/nipype',\n", - " 'https://github.com/boivinalex/permittivitycalc',\n", - " 'https://github.com/BlueBrain/NeuroR',\n", - " 'https://github.com/Curtin-Open-Knowledge-Initiative/institutional-oa-evaluation-2020',\n", - " 'https://github.com/dgasmith/opt_einsum',\n", - " 'https://github.com/knutankv/koma',\n", - " 'https://github.com/foerstner-lab/READemption',\n", - " 'https://github.com/matthiaskoenig/fbc_curation',\n", - " 'https://github.com/sdey135/rtapylysis',\n", - " 'https://github.com/CICE-Consortium/Icepack',\n", - " 'https://github.com/Nikoleta-v3/blackbook',\n", - " 'https://github.com/StevenGolovkine/FDApy',\n", - " 'https://github.com/Leinadj/CREAM',\n", - " 'https://github.com/wjlei1990/spaceweight',\n", - " 'https://github.com/genomematt/AmBiVErT',\n", - " 'https://github.com/PEtab-dev/PEtab',\n", - " 'https://github.com/ziatdinovmax/GPim',\n", - " 'https://github.com/gwappa/fitting2d',\n", - " 'https://github.com/boolsi/boolsi',\n", - " 'https://github.com/TomMonks/forecast-tools',\n", - " 'https://github.com/holoviz/hvplot',\n", - " 'https://github.com/mathjax/MathJax',\n", - " 'https://github.com/ci-group/revolve',\n", - " 'https://github.com/matthiaskoenig/sbmlsim',\n", - " 'https://github.com/biobakery/phylophlan',\n", - " 'https://github.com/pnlbwh/multi-shell-dMRIharmonization',\n", - " 'https://github.com/loostrum/arts_tools',\n", - " 'https://github.com/jboynyc/textnets',\n", - " 'https://github.com/python-adaptive/adaptive',\n", - " 'https://github.com/nfsi-canada/OBStools',\n", - " 'https://github.com/nestordemeure/tabularGP',\n", - " 'https://github.com/AstraZeneca-NGS/disambiguate',\n", - " 'https://github.com/dgilford/pyPI',\n", - " 'https://github.com/Jacob-yen/LEMON',\n", - " 'https://github.com/tasoc/photometry',\n", - " 'https://github.com/ASaiM/group_humann2_uniref_abundances_to_GO',\n", - " 'https://github.com/natashabatalha/virga',\n", - " 'https://github.com/castelao/oceansdb',\n", - " 'https://github.com/conorwalsh/doat',\n", - " 'https://github.com/lweasel/piquant',\n", - " 'https://github.com/marinang/SimProd',\n", - " 'https://github.com/calliope-project/calliope',\n", - " 'https://github.com/ehthiede/EMUS',\n", - " 'https://github.com/caiostringari/pywavelearn',\n", - " 'https://github.com/aboucaud/pypher',\n", - " 'https://github.com/niosh-mining/obsplus',\n", - " 'https://github.com/ralna/ElementSchur',\n", - " 'https://github.com/bdestombe/flopymetascript',\n", - " 'https://github.com/scikit-hep/awkward-array',\n", - " 'https://github.com/gwpy/gwsumm',\n", - " 'https://github.com/saullocastro/panels',\n", - " 'https://github.com/apetros/pyeplan',\n", - " 'https://github.com/castelao/CoTeDe',\n", - " 'https://github.com/matt-graham/mici',\n", - " 'https://github.com/donia-lab/MetaBGC',\n", - " 'https://github.com/nschloe/accupy',\n", - " 'https://github.com/KitwareMedical/SlicerITKUltrasound',\n", - " 'https://github.com/scities/marble',\n", - " 'https://github.com/tjof2/pgure-svt',\n", - " 'https://github.com/dfm/python-fsps',\n", - " 'https://github.com/N3PDF/evolutionary_keras',\n", - " 'https://github.com/muammar/ml4chem',\n", - " 'https://github.com/fepegar/unet',\n", - " 'https://github.com/esm-tools/esm_tools',\n", - " 'https://github.com/hema-ted/pyzfs',\n", - " 'https://github.com/vitkl/orthologsBioMART',\n", - " 'https://github.com/davidrpugh/pyCollocation',\n", - " 'https://github.com/tcompa/anneal',\n", - " 'https://github.com/pansism/downscale-satelliteLST',\n", - " 'https://github.com/pyspeckit/pyspeckit',\n", - " 'https://github.com/TAMU-CPT/PAUSE',\n", - " 'https://github.com/mosdef-hub/forcefield_perfluoroethers',\n", - " 'https://github.com/dimazest/fowler.corpora',\n", - " 'https://github.com/sami2py/sami2py',\n", - " 'https://github.com/OllyButters/puma',\n", - " 'https://github.com/aplowman/atomistic',\n", - " 'https://github.com/guaix-ucm/pyemir',\n", - " 'https://github.com/biosustain/croissance',\n", - " 'https://github.com/linhd-postdata/averell',\n", - " 'https://github.com/kalyanpi4/pySW',\n", - " 'https://github.com/dave-heslop74/vMF_Specimens',\n", - " 'https://github.com/hollenstein/maspy',\n", - " 'https://github.com/wiai/xcdskd',\n", - " 'https://github.com/romoreira/EdgeComputingSlice',\n", - " 'https://github.com/pysal/segregation',\n", - " 'https://github.com/JordiBolibar/ALPGM',\n", - " 'https://github.com/keyinst/keypy',\n", - " 'https://github.com/has2k1/scikit-misc',\n", - " 'https://github.com/BEAST-Fitting/beast',\n", - " 'https://github.com/fireshape/fireshape',\n", - " 'https://github.com/jsh9/python-plot-utilities',\n", - " 'https://github.com/FlamTeam/flamedisx',\n", - " 'https://github.com/ihmeuw-msca/ODEOPT',\n", - " 'https://github.com/dmentipl/plonk',\n", - " 'https://github.com/haraldschilly/panobbgo',\n", - " 'https://github.com/coneoproject/COFFEE',\n", - " 'https://github.com/bioFAM/MOFA2',\n", - " 'https://github.com/pytroll/pyresample',\n", - " 'https://github.com/FATSLiM/fatslim',\n", - " 'https://github.com/astropenguin/azely',\n", - " 'https://github.com/debsankha/flownetpy',\n", - " 'https://github.com/lyx12311/Astraea',\n", - " 'https://github.com/npielawski/pytorch_tiramisu',\n", - " 'https://github.com/TUW-GEO/smecv-grid',\n", - " 'https://github.com/nist-ionstorage/electrode',\n", - " 'https://github.com/lingpy/word-tree-paper',\n", - " 'https://github.com/fsenf/proj.nawdex_analysis',\n", - " 'https://github.com/mwcraig/reducer',\n", - " 'https://github.com/lcharleux/hardness',\n", - " 'https://github.com/pisa-engine/pisa',\n", - " 'https://github.com/rjw57/starman',\n", - " 'https://github.com/dewiedem/calcopp',\n", - " 'https://github.com/rstoneback/OMMBV',\n", - " 'https://github.com/mfherbst/asedftk',\n", - " 'https://github.com/CyberDataLab/AuthCode',\n", - " 'https://github.com/imageio/imageio',\n", - " 'https://github.com/masseyr/geosoupML',\n", - " 'https://github.com/r9y9/pyreaper',\n", - " 'https://github.com/JDRomano2/ASAP2',\n", - " 'https://github.com/josephhardinee/PyDSD',\n", - " 'https://github.com/Spine-project/Spine-Database-API',\n", - " 'https://github.com/GeoStat-Framework/ogs5py',\n", - " 'https://github.com/Z-Zheng/SimpleCV',\n", - " 'https://github.com/angelmtenor/RL-ROBOT',\n", - " 'https://github.com/stefanch/sGDML',\n", - " 'https://github.com/materialsvirtuallab/monty',\n", - " 'https://github.com/kgullikson88/Telluric-Fitter',\n", - " 'https://github.com/Urban-Meteorology-Reading/SUEWS',\n", - " 'https://github.com/serazing/xscale',\n", - " 'https://github.com/pauleve/mpbn',\n", - " 'https://github.com/ericmjl/flu-gibson',\n", - " 'https://github.com/pycalphad/scheil',\n", - " 'https://github.com/deparkes/OOMMFTools',\n", - " 'https://github.com/sarisabban/RamaNet',\n", - " 'https://github.com/nano-sippe/dispersion',\n", - " 'https://github.com/hallamlab/pathway2vec',\n", - " 'https://github.com/SCM-NV/nano-qmflows',\n", - " 'https://github.com/bburan/NeuroBehavior',\n", - " 'https://github.com/Bubblbu/crawling-framework',\n", - " 'https://github.com/Alerovere/Paleo-SL-utilities',\n", - " 'https://github.com/TUDelft-CITG/OpenCLSim',\n", - " 'https://github.com/RMeli/spyrmsd',\n", - " 'https://github.com/rraadd88/htsimaging',\n", - " 'https://github.com/etiennebresciani/wellradpy',\n", - " 'https://github.com/blsqr/paramspace',\n", - " 'https://github.com/FInAT/FInAT',\n", - " 'https://github.com/hovo1990/GROM',\n", - " 'https://github.com/scikit-learn/scikit-learn',\n", - " 'https://github.com/covid-lncc/pydemic',\n", - " 'https://github.com/pvlib/pvlib-python',\n", - " 'https://github.com/norawebbwilliams/images_as_data',\n", - " 'https://github.com/pablormier/yabox',\n", - " 'https://github.com/pysal/region',\n", - " 'https://github.com/krassowski/data-vault',\n", - " 'https://github.com/jaisenbe58r/MLearner',\n", - " 'https://github.com/dave-heslop74/vMF_Sites',\n", - " 'https://github.com/biomedia-mira/blast-ct',\n", - " 'https://github.com/kundajelab/deeplift',\n", - " 'https://github.com/embodied-computation-group/systole',\n", - " 'https://github.com/astorfi/TensorFlow-World',\n", - " 'https://github.com/TheLartians/Expresso',\n", - " 'https://github.com/UCL/scikit-surgeryfred',\n", - " 'https://github.com/neurolib-dev/neurolib',\n", - " 'https://github.com/pnlbwh/SlicerDiffusionQC',\n", - " 'https://github.com/CORE-GATECH-GROUP/serpent-tools',\n", - " 'https://github.com/morganjwilliams/pyrolite-meltsutil',\n", - " 'https://github.com/gmiaslab/pyiomica',\n", - " 'https://github.com/MarcoMuellner/SMURFS',\n", - " 'https://github.com/MrLogarithm/pe-pc-datasets-interface',\n", - " 'https://github.com/raamana/neuropredict',\n", - " 'https://github.com/bartongroup/2passtools',\n", - " 'https://github.com/earthserver-eu/INSPIRE-notebooks',\n", - " 'https://github.com/rjleveque/ptha_rog',\n", - " 'https://github.com/GeoStat-Framework/pentapy',\n", - " 'https://github.com/castelao/pyWOA',\n", - " 'https://github.com/pynbody/pynbody',\n", - " 'https://github.com/MicroPasts/magicMountain',\n", - " 'https://github.com/harnesscloud/2015-07-15-feltham',\n", - " 'https://github.com/hfsf/sloth',\n", - " 'https://github.com/chienchi/amplicon_coverage_plot',\n", - " 'https://github.com/cmohl2013/permutation_test',\n", - " 'https://github.com/mrtommyb/ktransit',\n", - " 'https://github.com/soil-physics-okstate/automated_soil_moisture_mapping',\n", - " 'https://github.com/QInfer/python-qinfer',\n", - " 'https://github.com/inodb/sufam',\n", - " 'https://github.com/bihealth/scelvis',\n", - " 'https://github.com/dr-rodriguez/AstrodbWeb',\n", - " 'https://github.com/iamdamion/grepCIRCLE',\n", - " 'https://github.com/Olllom/lettuce',\n", - " 'https://github.com/bjpop/lynch_gatk',\n", - " 'https://github.com/jGaboardi/pp2n',\n", - " 'https://github.com/Lagostra/exprimo',\n", - " 'https://github.com/kweis/acronym',\n", - " 'https://github.com/mirca/maoud',\n", - " 'https://github.com/castelao/maud',\n", - " 'https://github.com/cwfparsonson/soa_driving',\n", - " 'https://github.com/luphysics/PyMODAlib',\n", - " 'https://github.com/jGaboardi/non-duplicated-intersects',\n", - " 'https://github.com/rochefort-lab/fissa',\n", - " 'https://github.com/qutip/qutip',\n", - " 'https://github.com/XENON1T/pax',\n", - " 'https://github.com/indralab/adeft',\n", - " 'https://github.com/polsys/ennemi',\n", - " 'https://github.com/gmierz/pupil-lib',\n", - " 'https://github.com/macs3-project/MACS',\n", - " 'https://github.com/efirvida/python-gearbox',\n", - " 'https://github.com/Unidata/cftime',\n", - " 'https://github.com/weecology/DeepForest',\n", - " 'https://github.com/datreant/datreant',\n", - " 'https://github.com/Svdvoort/PREDICTFastr',\n", - " 'https://github.com/qcscine/utilities',\n", - " 'https://github.com/martibosch/urban-footprinter',\n", - " 'https://github.com/fa-me/ratter',\n", - " 'https://github.com/impact27/WF_NTP',\n", - " 'https://github.com/Eomys/pyleecan',\n", - " 'https://github.com/USNavalResearchLaboratory/SNOPROP',\n", - " 'https://github.com/bbfrederick/picachooser',\n", - " 'https://github.com/GilesStrong/HiggsML_Lumin',\n", - " 'https://github.com/GooglingTheCancerGenome/sv-callers',\n", - " 'https://github.com/NickleDave/searchstims',\n", - " 'https://github.com/pyoceans/python-seawater',\n", - " 'https://github.com/olgabot/sj2psi',\n", - " 'https://github.com/malvikasharan/APRICOT',\n", - " 'https://github.com/raamana/confounds',\n", - " 'https://github.com/mrkrd/matlab_wrapper',\n", - " 'https://github.com/michaelosthege/pyrff',\n", - " 'https://github.com/hameye/MARCIA',\n", - " 'https://github.com/eyelovedata/sentimentemotionanalysis',\n", - " 'https://github.com/Swiss-Polar-Institute/pyantarctica',\n", - " 'https://github.com/cgre-aachen/gempy',\n", - " 'https://github.com/alexandrebarachant/pyRiemann',\n", - " 'https://github.com/yt-project/unyt',\n", - " 'https://github.com/ConorMacBride/mcalf',\n", - " 'https://github.com/widdowquinn/pyADHoRe',\n", - " 'https://github.com/valdergallo/data-importer',\n", - " 'https://github.com/saketkc/pysradb',\n", - " 'https://github.com/jeeberhardt/visualize',\n", - " 'https://github.com/hsharrison/experimentator',\n", - " 'https://github.com/nudomarinero/wquantiles',\n", - " 'https://github.com/sepandhaghighi/findip',\n", - " 'https://github.com/md-lab-tools/lab-tools',\n", - " 'https://github.com/YaserJaradeh/JarvisQA',\n", - " 'https://github.com/DesignEngrLab/fmdtools',\n", - " 'https://github.com/has2k1/mizani',\n", - " 'https://github.com/super-resolution/lineprofiler',\n", - " 'https://github.com/junaidmalik09/fastonn',\n", - " 'https://github.com/mzabrams/fars-cleaner',\n", - " 'https://github.com/fat-forensics/fat-forensics',\n", - " 'https://github.com/RPGroup-PBoC/chann_cap',\n", - " 'https://github.com/Davidelanz/quantum-robot',\n", - " 'https://github.com/applied-bioinformatics/An-Introduction-To-Applied-Bioinformatics',\n", - " 'https://github.com/aliFrancis/mars-crater-catalogue',\n", - " 'https://github.com/jcvasquezc/AEspeech',\n", - " 'https://github.com/oemof/oemof-solph',\n", - " 'https://github.com/kutaslab/fitgrid',\n", - " 'https://github.com/nstarman/amuse_util',\n", - " 'https://github.com/yhaddad/Heppi',\n", - " 'https://github.com/wjladams/pyanp',\n", - " 'https://github.com/seva100/optic-nerve-cnn',\n", - " 'https://github.com/lpfann/fri',\n", - " 'https://github.com/seisman/HinetPy',\n", - " 'https://github.com/csdms/bmi-python',\n", - " 'https://github.com/NaturalHistoryMuseum/revile',\n", - " 'https://github.com/xuanxu/intergalactic',\n", - " 'https://github.com/PyPSA/PyPSA',\n", - " 'https://github.com/NickleDave/vak',\n", - " 'https://github.com/gtonkinhill/panaroo',\n", - " 'https://github.com/CMLPlatform/pycirk',\n", - " 'https://github.com/TUW-GEO/ecmwf_models',\n", - " 'https://github.com/bfieldtools/bfieldtools',\n", - " 'https://github.com/pedroernesto/HippoNetworkUnit',\n", - " 'https://github.com/zwicker-group/py-pde',\n", - " 'https://github.com/NeuralEnsemble/PyNN',\n", - " 'https://github.com/GrzegorzMikaAGH/Towards-adaptivity-via-a-new-discrepancy-principle-for-Poisson-inverse-problems',\n", - " 'https://github.com/HTenkanen/pyrosm',\n", - " 'https://github.com/kjappelbaum/colorjeopardy',\n", - " 'https://github.com/OSUmageed/pyHeatTransfer',\n", - " 'https://github.com/olety/TIMLinUCB',\n", - " 'https://github.com/r9y9/pyopenjtalk',\n", - " 'https://github.com/Edric-Matwiejew/QSW_MPI',\n", - " 'https://github.com/scikit-hep/hepstats',\n", - " 'https://github.com/elainehoml/GMM_Image_Quality',\n", - " 'https://github.com/mikahama/uralicNLP',\n", - " 'https://github.com/ssepulveda/RTGraph',\n", - " 'https://github.com/eWaterCycle/grpc4bmi',\n", - " 'https://github.com/bjodah/chempy',\n", - " 'https://github.com/chjacob-tubs/pyadf-releases',\n", - " 'https://github.com/Nikeshbajaj/spkit',\n", - " 'https://github.com/wright-group/WrightSim',\n", - " 'https://github.com/Curtin-Timescales-of-Mineral-Systems/UPb-Unmixer',\n", - " 'https://github.com/pietrobarbiero/dbgen',\n", - " 'https://github.com/tychotatitscheff/duc-sph',\n", - " 'https://github.com/impact27/diffusion_device',\n", - " 'https://github.com/williamjameshandley/fgivenx',\n", - " 'https://github.com/SoftwareDevEngResearch/CAML',\n", - " 'https://github.com/cyTVDN/cyTVDN',\n", - " 'https://github.com/birnstiel/two-pop-py',\n", - " 'https://github.com/reneshbedre/bioinfokit',\n", - " 'https://github.com/INM-6/hybridLFPy',\n", - " 'https://github.com/caglorithm/mopet',\n", - " 'https://github.com/molpopgen/fwdpy11',\n", - " 'https://github.com/ENCODE-DCC/caper',\n", - " 'https://github.com/colomoto/colomoto-jupyter',\n", - " 'https://github.com/nicolas-chaulet/torch-points-kernels',\n", - " 'https://github.com/MicroPasts/transcribing-WGS',\n", - " 'https://github.com/anthony-nouy/tensap',\n", - " 'https://github.com/ancklo/ChaosMagPy',\n", - " 'https://github.com/mvdh7/calkulate',\n", - " 'https://github.com/arviz-devs/arviz',\n", - " 'https://github.com/saverymax/qdriven-chiqa-summarization',\n", - " 'https://github.com/jhidding/sustainability',\n", - " 'https://github.com/arif-zaman/network_probing',\n", - " 'https://github.com/janpipek/pydiq',\n", - " 'https://github.com/posterior/goftests',\n", - " 'https://github.com/zarr-developers/zarr-python',\n", - " 'https://github.com/ulmo-dev/ulmo',\n", - " 'https://github.com/uwmadison-chm/masterfile',\n", - " 'https://github.com/jeeberhardt/unrolr',\n", - " 'https://github.com/pydicom/pynetdicom',\n", - " 'https://github.com/ilyasst/pydictoolkit',\n", - " 'https://github.com/NLESC-JCER/QMCTorch',\n", - " 'https://github.com/AthenaEPI/dmipy',\n", - " 'https://github.com/environmentalscience/essm',\n", - " 'https://github.com/raysect/source',\n", - " 'https://github.com/mattbv/lidartf',\n", - " 'https://github.com/ricoms/gpam_stats',\n", - " 'https://github.com/hpparvi/PyDE',\n", - " 'https://github.com/molbiodiv/Blackbird',\n", - " 'https://github.com/adrn/thejoker',\n", - " 'https://github.com/akxen/rep-gep',\n", - " 'https://github.com/joergdietrich/NFW',\n", - " 'https://github.com/interaction-lab/MoveToCode',\n", - " 'https://github.com/FilipeMaia/afnumpy',\n", - " 'https://github.com/nextgenusfs/amptk',\n", - " 'https://github.com/Qiskit/qiskit',\n", - " 'https://github.com/CU-Denver-UQ/LUQ',\n", - " 'https://github.com/casimp/lightct',\n", - " 'https://github.com/joostjor/random-graphs',\n", - " 'https://github.com/sbonaretti/pyKNEEr',\n", - " 'https://github.com/DataMedSci/pymchelper',\n", - " 'https://github.com/simonvh/pita',\n", - " 'https://github.com/Socrats/EGTTools',\n", - " 'https://github.com/AlessioZanga/PyEEGLab',\n", - " 'https://github.com/samuelstjean/autodmri',\n", - " 'https://github.com/junhyeokahn/tf_rbdl',\n", - " 'https://github.com/Samreay/ChainConsumer',\n", - " 'https://github.com/JoshuaE1/supervised-classification-SSH-publications',\n", - " 'https://github.com/syhw/DTW_Cython',\n", - " 'https://github.com/cerebunit/cerebunit',\n", - " 'https://github.com/clebsonpy/HidroComp',\n", - " 'https://github.com/drcassar/viscosity-graybox-nn',\n", - " 'https://github.com/MAVENSDC/PyTplot',\n", - " 'https://github.com/CognitiveComputationLab/ccobra',\n", - " 'https://github.com/jpvantassel/hvsrpy',\n", - " 'https://github.com/DTUComputeStatisticsAndDataAnalysis/MBPLS',\n", - " 'https://github.com/hyungjun/gtool',\n", - " 'https://github.com/michaelaye/pyciss',\n", - " 'https://github.com/genomematt/pylazybam',\n", - " 'https://github.com/arkottke/pygmm',\n", - " 'https://github.com/kotori-y/Scopy',\n", - " 'https://github.com/gsantoni/ccCluster',\n", - " 'https://github.com/iancze/MPoL',\n", - " 'https://github.com/jacobo-diaz/aneupy',\n", - " 'https://github.com/rougier/numpy-100',\n", - " 'https://github.com/napsternxg/TwitterNER',\n", - " 'https://github.com/DomBennett/TaxonNamesResolver',\n", - " 'https://github.com/griffithlab/pVACtools',\n", - " 'https://github.com/spacetelescope/jwst-fgs-countrate',\n", - " 'https://github.com/pysal/spvcm',\n", - " 'https://github.com/CKrawczyk/densityplot',\n", - " 'https://github.com/Abe404/root_painter',\n", - " 'https://github.com/reegis/deflex',\n", - " 'https://github.com/DCAN-Labs/nhp-abcd-bids-pipeline',\n", - " 'https://github.com/MechMicroMan/DefDAP',\n", - " 'https://github.com/Climdyn/qgs',\n", - " 'https://github.com/jdmoorman/kaczmarz-algorithms',\n", - " 'https://github.com/qzhu2017/PyXtal_FF',\n", - " 'https://github.com/ioos/erddapy',\n", - " 'https://github.com/bjorntsv/tempmom',\n", - " 'https://github.com/ARM-DOE/ACT',\n", - " 'https://github.com/radtorch/radtorch',\n", - " 'https://github.com/UT-CHG/PolyADCIRC',\n", - " 'https://github.com/martibosch/detectree',\n", - " 'https://github.com/peckhams/topoflow',\n", - " 'https://github.com/mekman/recon',\n", - " 'https://github.com/petl-developers/petl',\n", - " 'https://github.com/MAVENSDC/cdflib',\n", - " 'https://github.com/jw156605/MATCHER',\n", - " 'https://github.com/vprusso/toqito',\n", - " 'https://github.com/abhi1693/yii2-config',\n", - " 'https://github.com/scikit-hep/uproot-methods',\n", - " 'https://github.com/ThomasRieutord/kabl',\n", - " 'https://github.com/pastas/pastas',\n", - " 'https://github.com/tomwallis/PsyUtils',\n", - " 'https://github.com/adrn/gala',\n", - " 'https://github.com/kinnala/scikit-fem',\n", - " 'https://github.com/yatiml/yatiml',\n", - " 'https://github.com/ZFTurbo/Weighted-Boxes-Fusion',\n", - " 'https://github.com/clauswilke/PeptideBuilder',\n", - " 'https://github.com/MultithreadCorner/Hydra',\n", - " 'https://github.com/pysat/pysatMadrigal',\n", - " 'https://github.com/berenslab/pr_bc_connectivity',\n", - " 'https://github.com/helioforecast/Predstorm',\n", - " 'https://github.com/TUW-GEO/ease_grid',\n", - " 'https://github.com/hrtlacek/faustTools',\n", - " 'https://github.com/Abe404/segmentation_of_roots_in_soil_with_unet',\n", - " 'https://github.com/ECSIM/pem-dataset1',\n", - " 'https://github.com/perryuu/managpu',\n", - " 'https://github.com/IceCubeOpenSource/ASTERIA',\n", - " 'https://github.com/josemiotto/pylevy',\n", - " 'https://github.com/mdolab/pygeo',\n", - " 'https://github.com/TUW-GEO/rt1',\n", - " 'https://github.com/AnyBody-Research-Group/AnyPyTools',\n", - " 'https://github.com/Yefee/xMCA',\n", - " 'https://github.com/rlworkgroup/garage',\n", - " 'https://github.com/screensinthewild/screenbase_unity_slideshow',\n", - " 'https://github.com/simpeg/discretize',\n", - " 'https://github.com/LRCFS/GSR_Paper',\n", - " 'https://github.com/soft-matter/trackpy',\n", - " 'https://github.com/jrleeman/biaxtools',\n", - " 'https://github.com/JaGeo/PaulingPublication',\n", - " 'https://github.com/multiscale/ymmsl-python',\n", - " 'https://github.com/anitagraser/movingpandas',\n", - " 'https://github.com/fls-bioinformatics-core/RnaChipIntegrator',\n", - " 'https://github.com/bionet/ted.python',\n", - " 'https://github.com/NHERI-SimCenter/pelicun',\n", - " 'https://github.com/danieljfarrell/pvtrace',\n", - " 'https://github.com/neuroscout/neuroscout-cli',\n", - " 'https://github.com/vcutrona/elasticpedia',\n", - " 'https://github.com/spectrochempy/spectrochempy',\n", - " 'https://github.com/isi-nmr/bruker2bart',\n", - " 'https://github.com/HobnobMancer/PhD_Project_Scripts',\n", - " 'https://github.com/drcassar/glasspy',\n", - " 'https://github.com/rieder/MASC',\n", - " 'https://github.com/Nelson-Gon/pyautocv',\n", - " 'https://github.com/jajcayn/pygpso',\n", - " 'https://github.com/alchemistry/alchemlyb',\n", - " 'https://github.com/xgcm/xgcm',\n", - " 'https://github.com/mheikenfeld/wrfcube',\n", - " 'https://github.com/datreant/MDSynthesis',\n", - " 'https://github.com/UNSW-CEEM/NEMOSIS',\n", - " 'https://github.com/KeplerGO/K2fov',\n", - " 'https://github.com/atorras1618/PerMaViss',\n", - " 'https://github.com/tubiana/TTClust',\n", - " 'https://github.com/matt-long/xpersist',\n", - " 'https://github.com/bast/smeshing',\n", - " 'https://github.com/ds-wizard/docs',\n", - " 'https://github.com/abelcarreras/phonolammps',\n", - " 'https://github.com/jason-zl190/sisr_medical',\n", - " 'https://github.com/mdshw5/pyfaidx',\n", - " 'https://github.com/wiebket/delprocess',\n", - " 'https://github.com/holoviz/datashader',\n", - " 'https://github.com/ISA-tools/mzml2isa',\n", - " 'https://github.com/houghb/savvy',\n", - " 'https://github.com/jjgomera/iapws',\n", - " 'https://github.com/zafarali/emdp',\n", - " 'https://github.com/phydev/trajpy',\n", - " 'https://github.com/IMMM-SFA/im3py',\n", - " 'https://github.com/spacetelescope/gwcs',\n", - " 'https://github.com/mkjung99/pyc3dserver',\n", - " 'https://github.com/reegis/reegis',\n", - " 'https://github.com/kimlab/GPyM',\n", - " 'https://github.com/woutergins/satlas',\n", - " 'https://github.com/lachhebo/pyclustertend',\n", - " 'https://github.com/wiebket/delretrieve',\n", - " 'https://github.com/nlesc-nano/Nano-Utils',\n", - " 'https://github.com/oemof/oemof-thermal',\n", - " 'https://github.com/LRydin/MFDFA',\n", - " 'https://github.com/linhd-postdata/desir',\n", - " 'https://github.com/DLR-SC/gitlab2prov',\n", - " 'https://github.com/openearth/aeolis-python',\n", - " 'https://github.com/NREL/floris',\n", - " 'https://github.com/M4I-nanoscopy/tpx3-event-localisation',\n", - " 'https://github.com/andsor/pyfssa',\n", - " 'https://github.com/arkottke/pykoom',\n", - " 'https://github.com/IaPCS/gmsh-exodus-converter',\n", - " 'https://github.com/atait/lytest',\n", - " 'https://github.com/ocsmit/rindcalc',\n", - " 'https://github.com/will-rowe/groot',\n", - " 'https://github.com/benjaminrose/MC-Age',\n", - " 'https://github.com/FowlerLab/Enrich2',\n", - " 'https://github.com/SirSharpest/NarrowEscapeSimulator',\n", - " 'https://github.com/annotation/tutorials',\n", - " 'https://github.com/RDFLib/OWL-RL',\n", - " 'https://github.com/jpvantassel/sigpropy',\n", - " 'https://github.com/cggh/scikit-allel',\n", - " 'https://github.com/kundajelab/seqdataloader',\n", - " 'https://github.com/TomasBeuzen/pybeach',\n", - " 'https://github.com/CovingtonResearchGroup/olm',\n", - " 'https://github.com/zykls/whynot',\n", - " 'https://github.com/hpparvi/PyTransit',\n", - " 'https://github.com/BigDataBiology/GMGC-mapper',\n", - " 'https://github.com/AMReX-Astro/Castro',\n", - " 'https://github.com/greglucas/bezpy',\n", - " 'https://github.com/geek-yang/META',\n", - " 'https://github.com/jkibele/OpticalRS',\n", - " 'https://github.com/seandavi/ngCGH',\n", - " 'https://github.com/fraserw/trippy',\n", - " 'https://github.com/SainsburyWellcomeCentre/lasagna',\n", - " 'https://github.com/libsemigroups/libsemigroups',\n", - " 'https://github.com/AshKelly/pyquad',\n", - " 'https://github.com/jolespin/soothsayer',\n", - " 'https://github.com/kklmn/xrt',\n", - " 'https://github.com/beringresearch/ivis',\n", - " 'https://github.com/mdolab/pyspline',\n", - " 'https://github.com/thieunguyen5991/opfunu',\n", - " 'https://github.com/gwpy/gwpy',\n", - " 'https://github.com/pyvista/pyvista',\n", - " 'https://github.com/adamewing/tebreak',\n", - " 'https://github.com/wlad111/small_probs',\n", - " 'https://github.com/slimgroup/ServerlessImagingAWS',\n", - " 'https://github.com/danielbmmatos/Reduced-Model-of-Shear-Building',\n", - " 'https://github.com/biocore/qiime',\n", - " 'https://github.com/SebastianEggert/OpenWorkstation',\n", - " 'https://github.com/pyscf/pyscf',\n", - " 'https://github.com/GijsMulders/epos',\n", - " 'https://github.com/aymara/lima',\n", - " 'https://github.com/jdmoorman/laptools',\n", - " 'https://github.com/krassowski/drug-disease-profile-matching',\n", - " 'https://github.com/BradMcDanel/term-revealing',\n", - " 'https://github.com/silx-kit/pyFAI',\n", - " 'https://github.com/scipy-lectures/scipy-lecture-notes',\n", - " 'https://github.com/ornlneutronimaging/NEUIT',\n", - " 'https://github.com/kgullikson88/General',\n", - " 'https://github.com/BristolTopGroup/DailyPythonScripts',\n", - " 'https://github.com/redcap-tools/PyCap',\n", - " 'https://github.com/linsalrob/PhiSpy',\n", - " 'https://github.com/keichi/mpEDM',\n", - " 'https://github.com/TEB-model/teb',\n", - " 'https://github.com/comic/evalutils',\n", - " 'https://github.com/opencobra/cobratoolbox',\n", - " 'https://github.com/dtscalibration/python-dts-calibration',\n", - " 'https://github.com/eqcorrscan/EQcorrscan',\n", - " 'https://github.com/scikit-hep/decaylanguage',\n", - " 'https://github.com/PyThaiNLP/pythainlp',\n", - " 'https://github.com/TUW-GEO/ascat',\n", - " 'https://github.com/screensinthewild/screenbase_instantiated_slideshow',\n", - " 'https://github.com/AMReX-Astro/MAESTROeX',\n", - " 'https://github.com/christianjauregui/famafrench',\n", - " 'https://github.com/timetag/ETA',\n", - " 'https://github.com/stephankramer/assess',\n", - " 'https://github.com/jorvlan/open-visualizations',\n", - " 'https://github.com/lsa-pucrs/acerta-abide',\n", - " 'https://github.com/particle-physics-playground/playground',\n", - " 'https://github.com/krischer/hypoDDpy',\n", - " 'https://github.com/jankrepl/deepdow',\n", - " 'https://github.com/weijias-opensource/acc',\n", - " 'https://github.com/sam-nayak/SynthNet',\n", - " 'https://github.com/laserkelvin/PySpecTools',\n", - " 'https://github.com/tactcomplabs/xbgas-llvm',\n", - " 'https://github.com/mdolab/pyoptsparse',\n", - " 'https://github.com/tholoien/empiriciSN',\n", - " 'https://github.com/FUSED-Wind/fusedwind',\n", - " 'https://github.com/sam-greenwood/taco_vis',\n", - " 'https://github.com/JannisHoch/pcrglobwb_utils',\n", - " 'https://github.com/hep-lbdl/CaloGAN',\n", - " 'https://github.com/bbfrederick/rapidtide',\n", - " 'https://github.com/pnlbwh/conversion',\n", - " 'https://github.com/LinkedEarth/Pyleoclim_util',\n", - " 'https://github.com/IMAGINE-Consortium/imagine',\n", - " 'https://github.com/glm-tools/pyglmnet',\n", - " 'https://github.com/aburrell/aacgmv2',\n", - " 'https://github.com/sncosmo/sncosmo',\n", - " 'https://github.com/ICB-DCM/pyPESTO',\n", - " 'https://github.com/lballabio/QuantLib-SWIG',\n", - " 'https://github.com/SoftwareDevEngResearch/RigidFoilSimulator',\n", - " 'https://github.com/samuelstjean/dpr',\n", - " 'https://github.com/panisson/pymobility',\n", - " 'https://github.com/lewisacidic/scikit-chem',\n", - " 'https://github.com/RTIInternational/gobbli',\n", - " 'https://github.com/fabriziocosta/GraphLearn',\n", - " 'https://github.com/solvebio/veppy',\n", - " 'https://github.com/diku-dk/futhark',\n", - " 'https://github.com/kristianfoerster/melodist',\n", - " 'https://github.com/BristolTopGroup/NTupleProduction',\n", - " 'https://github.com/kuchaale/X-regression',\n", - " 'https://github.com/abhi1693/yii2-sms',\n", - " 'https://github.com/jdidion/atropos',\n", - " 'https://github.com/KBRI-Neuroinformatics/WGAN-for-RNASeq-analysis',\n", - " 'https://github.com/PinkShnack/TEMUL',\n", - " 'https://github.com/rock-learning/pytransform3d',\n", - " 'https://github.com/matthiaskoenig/sbmlutils',\n", - " 'https://github.com/PennLINC/aslprep',\n", - " 'https://github.com/tamacgregor/structure_factor_tools',\n", - " 'https://github.com/kgullikson88/gullikson-scripts',\n", - " 'https://github.com/jacirrone/OutPredict',\n", - " 'https://github.com/habi/Zebra-Fish-Gills',\n", - " 'https://github.com/sagemath/sage',\n", - " 'https://github.com/kb-press/ndsplines',\n", - " 'https://github.com/benmaier/COVID19CaseNumberModel',\n", - " 'https://github.com/uweschmitt/emzed2',\n", - " 'https://github.com/AAROC/DevOps',\n", - " 'https://github.com/ybayle/Scyland3D',\n", - " 'https://github.com/jswhit/pygrib',\n", - " 'https://github.com/PTC-CMC/McCabeGroup',\n", - " 'https://github.com/seclab-ucr/UBITect',\n", - " 'https://github.com/mjlaine/eppes',\n", - " 'https://github.com/alpha-xone/xbbg',\n", - " 'https://github.com/IA-Cardiologia-husa/VHD_NLP',\n", - " 'https://github.com/Ptrskay3/PySprint',\n", - " 'https://github.com/gaojun0816/code_access_finder',\n", - " 'https://github.com/foerstner-lab/GRADitude',\n", - " 'https://github.com/BritishMuseumDH/britishMuseumFacesDetection',\n", - " 'https://github.com/mattpitkin/psrqpy',\n", - " 'https://github.com/cbirdferrer/collatrix',\n", - " 'https://github.com/spacetelescope/pysiaf',\n", - " 'https://github.com/jag1g13/pycgtool',\n", - " 'https://github.com/ericleasemorgan/reader',\n", - " 'https://github.com/CountESS-Project/fqfa',\n", - " 'https://github.com/emtpb/pyfds',\n", - " 'https://github.com/chrisdjscott/Atoman',\n", - " 'https://github.com/CardiacModelling/nonlinear-time-dependent-leak',\n", - " 'https://github.com/templateflow/python-client',\n", - " 'https://github.com/redmod-team/profit',\n", - " 'https://github.com/pavolgaj/ObsPlanner',\n", - " 'https://github.com/nick-youngblut/MGSIM',\n", - " 'https://github.com/openmc-dev/openmc',\n", - " 'https://github.com/brelsford/topology',\n", - " 'https://github.com/cigroup-ol/metaopt',\n", - " 'https://github.com/lucananni93/CTCF_Spatial_Patterns',\n", - " 'https://github.com/stfbnc/fathon',\n", - " 'https://github.com/prisms-center/CASMcode',\n", - " 'https://github.com/ccd-utexas/binstarsolver',\n", - " 'https://github.com/XPRESSyourself/XPRESSplot',\n", - " 'https://github.com/airr-community/airr-standards',\n", - " 'https://github.com/joaomcteixeira/taurenmd',\n", - " 'https://github.com/jyhmiinlin/pynufft',\n", - " 'https://github.com/atrisovic/econ-data-policy',\n", - " 'https://github.com/statsmodels/statsmodels',\n", - " 'https://github.com/giannisdoukas/ipython2cwl',\n", - " 'https://github.com/Neurita/pypes',\n", - " 'https://github.com/pesummary/pesummary',\n", - " 'https://github.com/PGijsbers/gama',\n", - " 'https://github.com/openvax/isovar',\n", - " 'https://github.com/seawander/nmf_imaging',\n", - " 'https://github.com/GiulioRossetti/cdlib',\n", - " 'https://github.com/neuhofmo/RecBlast',\n", - " 'https://github.com/cyverse-vice/jupyterlab-scipy',\n", - " 'https://github.com/CoffeaTeam/coffea',\n", - " 'https://github.com/multipaths/DiffuPath',\n", - " 'https://github.com/matplotlib/mpl-probscale',\n", - " 'https://github.com/richardjgowers/GCMCbenchmarks',\n", - " 'https://github.com/fa-me/spotlob',\n", - " 'https://github.com/thompsonsed/pycoalescence',\n", - " 'https://github.com/brmather/pycurious',\n", - " 'https://github.com/MHKiT-Software/MHKiT-MATLAB',\n", - " 'https://github.com/amusecode/amuse',\n", - " 'https://github.com/KeplerGO/lightkurve',\n", - " 'https://github.com/transientlunatic/gravpy',\n", - " 'https://github.com/astroufsc/chimera',\n", - " 'https://github.com/jenojp/extractacy',\n", - " 'https://github.com/valentina-s/time-series-nmf',\n", - " 'https://github.com/Nikronic/Optimized-MDVRP',\n", - " 'https://github.com/pr-omethe-us/PyTeCK',\n", - " 'https://github.com/jtempkin/enhanced_sampling_toolkit',\n", - " 'https://github.com/a-slide/NanoCount',\n", - " 'https://github.com/NLeSC/dask-cassandra-loader',\n", - " 'https://github.com/I2Cvb/retinopathy',\n", - " 'https://github.com/SHDShim/PeakPo',\n", - " 'https://github.com/rangeetpan/decomposeDNNintoModules',\n", - " 'https://github.com/InsightSoftwareConsortium/ITKColorNormalization',\n", - " 'https://github.com/coin-or/Dip',\n", - " 'https://github.com/fepegar/torchio',\n", - " 'https://github.com/phenoscape/phenoscape-owl-tools',\n", - " 'https://github.com/hugadams/pyparty',\n", - " 'https://github.com/mustakcsecuet/COIN-Attacks',\n", - " 'https://github.com/glukicov/ML_GPU',\n", - " 'https://github.com/devitocodes/devito',\n", - " 'https://github.com/pnlbwh/TBSS',\n", - " 'https://github.com/scipy/scipy',\n", - " 'https://github.com/DiamondLightSource/SuRVoS',\n", - " 'https://github.com/wri/restoration-mapper',\n", - " 'https://github.com/ICB-DCM/tumor2d',\n", - " 'https://github.com/sertansenturk/symbtrdataextractor',\n", - " 'https://github.com/TheoryInPractice/BEAVr',\n", - " 'https://github.com/jcreinhold/selfsupervised3d',\n", - " 'https://github.com/mlp6/fem',\n", - " 'https://github.com/Eden-Kramer-Lab/replay_trajectory_classification',\n", - " 'https://github.com/nschloe/colorio',\n", - " 'https://github.com/tsalo/convert-eprime',\n", - " 'https://github.com/projectglow/glow',\n", - " 'https://github.com/FRidh/scintillations',\n", - " 'https://github.com/pitt-rnel/perceptmapper',\n", - " 'https://github.com/pysal/esda',\n", - " 'https://github.com/pedropro/TACO',\n", - " 'https://github.com/MicroPasts/egyptExplorationSocietyBuhen',\n", - " 'https://github.com/Lasagne/Lasagne',\n", - " 'https://github.com/JiaweiZhuang/xESMF',\n", - " 'https://github.com/astrorama/SourceXtractorPlusPlus',\n", - " 'https://github.com/ssec/sift',\n", - " 'https://github.com/reflectometry/refl1d',\n", - " 'https://github.com/napari/napari',\n", - " 'https://github.com/sgrieve/spatial_efd',\n", - " 'https://github.com/genn-team/genn',\n", - " 'https://github.com/AxFoundation/strax',\n", - " 'https://github.com/pofatu/pypofatu',\n", - " 'https://github.com/bsc-mem/UEPREDICT',\n", - " 'https://github.com/smarie/python-spawny',\n", - " 'https://github.com/usnistgov/jarvis',\n", - " 'https://github.com/diana-hep/carl',\n", - " 'https://github.com/mne-tools/mne-python',\n", - " 'https://github.com/kundajelab/kerasAC',\n", - " 'https://github.com/dhermes/bezier',\n", - " 'https://github.com/sphinx-gallery/sphinx-gallery',\n", - " 'https://github.com/pysal/pysal',\n", - " 'https://github.com/numericalalgorithmsgroup/pybobyqa',\n", - " 'https://github.com/PyNIPT/pynipt',\n", - " 'https://github.com/jesford/cluster-lensing',\n", - " 'https://github.com/cosanlab/nltools',\n", - " 'https://github.com/ryanpdwyer/1605-phasekick',\n", - " 'https://github.com/Quantum-TII/qprime',\n", - " 'https://github.com/radnut/amc',\n", - " 'https://github.com/omuse-geoscience/omuse',\n", - " 'https://github.com/nils-wisiol/pypuf',\n", - " 'https://github.com/ladisk/pyDIC',\n", - " 'https://github.com/easyDiffraction/easyDiffraction',\n", - " 'https://github.com/pauleve/pint',\n", - " 'https://github.com/e5k/TephraProb',\n", - " 'https://github.com/delph-in/pydmrs',\n", - " 'https://github.com/GenericMappingTools/pygmt',\n", - " 'https://github.com/anuprulez/galaxy_tool_recommendation',\n", - " 'https://github.com/BMKEG/sciDT-pipeline',\n", - " 'https://github.com/hugovk/pypistats',\n", - " 'https://github.com/single-cell-genetics/vireo',\n", - " 'https://github.com/Edric-Matwiejew/QuOp_MPI',\n", - " 'https://github.com/steven-murray/hankel',\n", - " 'https://github.com/vahtras/loprop',\n", - " 'https://github.com/pv8/noipy',\n", - " 'https://github.com/MAfarrag/Hapi',\n", - " 'https://github.com/monteirotorres/ProtCHOIR',\n", - " 'https://github.com/GilesStrong/lumin',\n", - " 'https://github.com/cgre-aachen/pynoddy',\n", - " 'https://github.com/bashtage/linearmodels',\n", - " 'https://github.com/pygae/galgebra',\n", - " 'https://github.com/darothen/pyrcel',\n", - " 'https://github.com/stadelmanma/netl-ap-map-flow',\n", - " 'https://github.com/jl-wynen/isle',\n", - " 'https://github.com/aibasel/pyperplan',\n", - " 'https://github.com/theboocock/NGaDNAP',\n", - " 'https://github.com/AdmiralenOla/Scoary',\n", - " 'https://github.com/NickleDave/visual-search-nets',\n", - " 'https://github.com/dhondta/AppmemDumper',\n", - " 'https://github.com/scikit-hep/boost-histogram',\n", - " 'https://github.com/nansencenter/nansat',\n", - " 'https://github.com/cdanielmachado/reframed',\n", - " 'https://github.com/LightForm-group/matflow',\n", - " 'https://github.com/arokem/ISBI2015',\n", - " 'https://github.com/a-slide/NanoSnake',\n", - " 'https://github.com/hugadams/PAME',\n", - " ...],\n", - " 5: ['https://github.com/natcap/natgeo-dams',\n", - " 'https://github.com/similitude/sumo-simmer',\n", - " 'https://github.com/indralab/pybiopax',\n", - " 'https://github.com/clincolnoz/maDMP-rocrates-maDMP',\n", - " 'https://github.com/dragoon/kilogram',\n", - " 'https://github.com/proycon/clam',\n", - " 'https://github.com/PTB-PSt1/time-series-metadata',\n", - " 'https://github.com/SDM-TIB/SDM-RDFizer',\n", - " 'https://github.com/smartbugs/smartbugs',\n", - " 'https://github.com/smarie/python-autoclass',\n", - " 'https://github.com/olivettigroup/article-downloader',\n", - " 'https://github.com/hipster-philology/nlp-pie-taggers',\n", - " 'https://github.com/kylemede/ExoSOFT',\n", - " 'https://github.com/wateraccounting/IHEWAcollect',\n", - " 'https://github.com/sepandhaghighi/qpage',\n", - " 'https://github.com/intermine/intermine',\n", - " 'https://github.com/IFCA/keystone-voms',\n", - " 'https://github.com/dev-cafe/autocmake',\n", - " 'https://github.com/whitemech/LTLf2DFA',\n", - " 'https://github.com/cayolopesbc/eco-data-toolkit',\n", - " 'https://github.com/OSSOS/liborbfit',\n", - " 'https://github.com/duncanmmacleod/requests-ecp',\n", - " 'https://github.com/experimaestro/datamaestro',\n", - " 'https://github.com/ARGOeu/argo-api-authn',\n", - " 'https://github.com/PyThaiNLP/Thai-Text-Generator',\n", - " 'https://github.com/bgruening/galaxy_ie_helpers',\n", - " 'https://github.com/pyvideo/data',\n", - " 'https://github.com/driplineorg/dripline-python',\n", - " 'https://github.com/jona-sassenhagen/statfail',\n", - " 'https://github.com/pitthsls/pycounter',\n", - " 'https://github.com/cemac/COMET_VolcDB',\n", - " 'https://github.com/IKNL/vantage6',\n", - " 'https://github.com/deniederhut/weather_report',\n", - " 'https://github.com/yannforget/pylandsat',\n", - " 'https://github.com/josecastillolema/mini-nfv',\n", - " 'https://github.com/indigo-dc/DEEPaaS',\n", - " 'https://github.com/ENCODE-DCC/atac-seq-pipeline',\n", - " 'https://github.com/cerndb/dist-keras',\n", - " 'https://github.com/MatterMiners/cobald',\n", - " 'https://github.com/Remdeht/ia_detector',\n", - " 'https://github.com/gwpy/gwosc',\n", - " 'https://github.com/choderalab/assaytools',\n", - " 'https://github.com/sgrieve/sinuosity',\n", - " 'https://github.com/aeonium/fakedatacite',\n", - " 'https://github.com/gwu-libraries/sfm-utils',\n", - " 'https://github.com/tikk3r/lofar-grid-hpccloud',\n", - " 'https://github.com/MPAS-Dev/MPAS-Analysis',\n", - " 'https://github.com/jonathansick/padova',\n", - " 'https://github.com/mchoji/wtg-seal',\n", - " 'https://github.com/Molmed/checkQC',\n", - " 'https://github.com/similitude/netlogo-sample-simmer',\n", - " 'https://github.com/rtidatascience/django-postgres-stats',\n", - " 'https://github.com/sbaltes/dblp-retriever',\n", - " 'https://github.com/gwu-libraries/sfm-weibo-harvester',\n", - " 'https://github.com/echevemaster/fedora-college',\n", - " 'https://github.com/MAGIC-nexus/nis-backend',\n", - " 'https://github.com/vanheeringen-lab/genomepy',\n", - " 'https://github.com/smarr/ReBench',\n", - " 'https://github.com/NREL/bifacial_radiance',\n", - " 'https://github.com/GhostofGoes/ADLES',\n", - " 'https://github.com/intake/intake-esm',\n", - " 'https://github.com/hipster-philology/greek-lemmatization-data',\n", - " 'https://github.com/samapriya/geeup',\n", - " 'https://github.com/fphammerle/freesurfer-stats',\n", - " 'https://github.com/tgbugs/inferno',\n", - " 'https://github.com/NLeSC/lokum',\n", - " 'https://github.com/SuLab/genewikiworld',\n", - " 'https://github.com/samapriya/Planet-Pipeline-Shell',\n", - " 'https://github.com/oeg-upm/morph-csv',\n", - " 'https://github.com/lascivaroma/forcellini-lemmas',\n", - " 'https://github.com/VDBWRAIR/ngs_mapper',\n", - " 'https://github.com/JonathanReeve/text-matcher',\n", - " 'https://github.com/juliema/aTRAM',\n", - " 'https://github.com/e-VRO/frvcpy',\n", - " 'https://github.com/openeventdata/mordecai',\n", - " 'https://github.com/msmexplorer/msmexplorer-d3',\n", - " 'https://github.com/edwardoughton/itmlogic',\n", - " 'https://github.com/gregtucker/grain_hills',\n", - " 'https://github.com/jacobwindsor/pubchem-ranker',\n", - " 'https://github.com/samapriya/Planet-GEE-Pipeline-GUI',\n", - " 'https://github.com/similitude/h2-world-simmer',\n", - " 'https://github.com/kuchaale/wcd_2020',\n", - " 'https://github.com/ISA-tools/nmrml2isa',\n", - " 'https://github.com/minzastro/unidam',\n", - " 'https://github.com/deniederhut/PyTeX',\n", - " 'https://github.com/unicus-skmk/test',\n", - " 'https://github.com/broyson/Locust-streaming',\n", - " 'https://github.com/castelao/supportdata',\n", - " 'https://github.com/lucaspuvis/SAM',\n", - " 'https://github.com/MAGIC-nexus/nis-python-client',\n", - " 'https://github.com/tvwenger/millennium-tap-query',\n", - " 'https://github.com/harnesscloud/nova-docker',\n", - " 'https://github.com/linsalrob/PPPF',\n", - " 'https://github.com/acocac/MTLCC-MODIS-GCP',\n", - " 'https://github.com/lingpy/workflow-paper',\n", - " 'https://github.com/MIC-DKFZ/cmdint',\n", - " 'https://github.com/ctreffe/alfred',\n", - " 'https://github.com/hibernator11/AprendiendoPython',\n", - " 'https://github.com/MichaelMauderer/Gazer',\n", - " 'https://github.com/Craig-Robson/postgres_spatial_join_areas',\n", - " 'https://github.com/Scifabric/pybossa',\n", - " 'https://github.com/ajefweiss/HelioSat',\n", - " 'https://github.com/moonso/genmod',\n", - " 'https://github.com/yadage/yadage-schemas',\n", - " 'https://github.com/karenadam/Mixed-Bandlimited-Time-Encoding',\n", - " 'https://github.com/smarie/python-azureml-client',\n", - " 'https://github.com/tardis-sn/tardis',\n", - " 'https://github.com/camelot-project/frontend',\n", - " 'https://github.com/andycasey/ads',\n", - " 'https://github.com/caltechlibrary/holdit',\n", - " 'https://github.com/IDEES-Rouen/Flight-Scrapping',\n", - " 'https://github.com/arcolife/scholarec',\n", - " 'https://github.com/papis/papis',\n", - " 'https://github.com/aretha-hep/mprtect',\n", - " 'https://github.com/castelao/PyAVISO',\n", - " 'https://github.com/xieguigang/ManhattanPlot',\n", - " 'https://github.com/labexp/LibreScan',\n", - " 'https://github.com/nithyanandan/AstroUtils',\n", - " 'https://github.com/interrogator/corpkit',\n", - " 'https://github.com/tyson-swetnam/porder',\n", - " 'https://github.com/ga4gh/tool-registry-validator',\n", - " 'https://github.com/agnsal/BlocksBot',\n", - " 'https://github.com/SuLab/scheduled-bots',\n", - " 'https://github.com/vedantchandra/wdtools',\n", - " 'https://github.com/tudelft3d/bag3d',\n", - " 'https://github.com/mwcraig/msumastro',\n", - " 'https://github.com/Chilipp/psyplot_old',\n", - " 'https://github.com/spcl/dace',\n", - " 'https://github.com/thela/django_log_to_telegram',\n", - " 'https://github.com/wallissoncarvalho/HidroData',\n", - " 'https://github.com/collab-uniba/personality',\n", - " 'https://github.com/sertansenturk/makammusicbrainz',\n", - " 'https://github.com/daft-dev/daft',\n", - " 'https://github.com/bumps/bumps',\n", - " 'https://github.com/htcondor/htcondor-ce',\n", - " 'https://github.com/NLeSC/baklava',\n", - " 'https://github.com/LargerPanda/ceph',\n", - " 'https://github.com/nkratzke/twista',\n", - " 'https://github.com/IMMM-SFA/proxymod',\n", - " 'https://github.com/bgruening/docker-galaxy-stable',\n", - " 'https://github.com/PTB-PSt1/PyDynamic',\n", - " 'https://github.com/guillochon/MOSFiT',\n", - " 'https://github.com/lascivaroma/priapeia',\n", - " 'https://github.com/DD-DeCaF/id-mapper',\n", - " 'https://github.com/harnesscloud/harness-resource-manager',\n", - " 'https://github.com/FEEprojects/plantower',\n", - " 'https://github.com/Capitains/Hook',\n", - " 'https://github.com/bootphon/phonemizer',\n", - " 'https://github.com/urschrei/CDP',\n", - " 'https://github.com/bakirtzisg/cybok-cli',\n", - " 'https://github.com/USEPA/standardizedinventories',\n", - " 'https://github.com/kundajelab/atac_dnase_pipelines',\n", - " 'https://github.com/PRIMAVERA-H2020/primavera-dmt',\n", - " 'https://github.com/WorldVistA/VistA',\n", - " 'https://github.com/samapriya/hdxpop',\n", - " 'https://github.com/observingClouds/eurec4a_snd',\n", - " 'https://github.com/dvolgyes/zenodo_get',\n", - " 'https://github.com/OpenDroneMap/ODM',\n", - " 'https://github.com/spacetelescope/drizzlepac',\n", - " 'https://github.com/smoh/gaia-comoving-stars',\n", - " 'https://github.com/dftlibs/numgrid',\n", - " 'https://github.com/snewhouse/exotic-dna-ngs',\n", - " 'https://github.com/fpavogt/fcmaker',\n", - " 'https://github.com/tqbl/ood_audio',\n", - " 'https://github.com/samapriya/Sat-Pipeline-CLI',\n", - " 'https://github.com/obreitwi/py-veer',\n", - " 'https://github.com/cheshire3/cheshire3',\n", - " 'https://github.com/ludwig-burtscher/invenio-with-provenance',\n", - " 'https://github.com/Teichlab/cellphonedb',\n", - " 'https://github.com/arnikz/PIQMIe',\n", - " 'https://github.com/iterative/dvc',\n", - " 'https://github.com/PX4/Firmware',\n", - " 'https://github.com/simeonreusch/ztffps',\n", - " 'https://github.com/mosdef-hub/foyer',\n", - " 'https://github.com/adbar/htmldate',\n", - " 'https://github.com/iross/km_indexer',\n", - " 'https://github.com/biolink/biolink-model',\n", - " 'https://github.com/danhey/maelstrom',\n", - " 'https://github.com/mozillazg/phrase-pinyin-data',\n", - " 'https://github.com/duecredit/duecredit',\n", - " 'https://github.com/pybel/pybel',\n", - " 'https://github.com/giganticode/codeprep',\n", - " 'https://github.com/VForWaTer/metacatalog',\n", - " 'https://github.com/Fraternalilab/POPScomp',\n", - " 'https://github.com/arXiv/arxiv-search',\n", - " 'https://github.com/SolarArbiter/solarforecastarbiter-dashboard',\n", - " 'https://github.com/ewels/MultiQC',\n", - " 'https://github.com/moonso/stranger',\n", - " 'https://github.com/gwastro/pycbc',\n", - " 'https://github.com/poliastro/poliastro',\n", - " 'https://github.com/LucMarechal/Soft-Robotics-Materials-Database',\n", - " 'https://github.com/poppy-project/pypot',\n", - " 'https://github.com/PecanProject/pecan',\n", - " 'https://github.com/Arabidopsis-Information-Portal/adama',\n", - " 'https://github.com/mensBash/DataStewardship',\n", - " 'https://github.com/thetisproject/thetis',\n", - " 'https://github.com/dennissergeev/arke',\n", - " 'https://github.com/lsmo-epfl/discover-curated-cofs',\n", - " 'https://github.com/proycon/foliapy',\n", - " 'https://github.com/bird-house/twitcher',\n", - " 'https://github.com/ganga-devs/ganga',\n", - " 'https://github.com/mozillazg/pinyin-data',\n", - " 'https://github.com/ecohealthalliance/pubcrawler',\n", - " 'https://github.com/pytroll/satpy',\n", - " 'https://github.com/dbbs-lab/glia',\n", - " 'https://github.com/clld/clld',\n", - " 'https://github.com/dr-rodriguez/Kinematics-App',\n", - " 'https://github.com/SMRUCC/GCModeller',\n", - " 'https://github.com/benbovy/xarray-simlab',\n", - " 'https://github.com/DocNow/twarc',\n", - " 'https://github.com/samapriya/gee_asset_manager_addon',\n", - " 'https://github.com/Capitains/HookTest',\n", - " 'https://github.com/openstreams/wflow',\n", - " 'https://github.com/hudcondr/Digital-preservation---sports-trackers-for-Strava',\n", - " 'https://github.com/lmjohns3/theanets',\n", - " 'https://github.com/NLeSC/eEcology-Annotation-WS',\n", - " 'https://github.com/biolink/biolink-api',\n", - " 'https://github.com/yadage/packtivity',\n", - " 'https://github.com/AtkinsGroup/TransmissionPairs',\n", - " 'https://github.com/samapriya/spotifind',\n", - " 'https://github.com/smarie/python-pytest-cases',\n", - " 'https://github.com/Capitains/MyCapytain',\n", - " 'https://github.com/openshs/openshs',\n", - " 'https://github.com/aoelen/Survey-table-importer',\n", - " 'https://github.com/nasa/RHEAS',\n", - " 'https://github.com/keflavich/APEX_CMZ_H2CO',\n", - " 'https://github.com/uw-cryo/skysat_stereo',\n", - " 'https://github.com/gwu-libraries/TweetSets',\n", - " 'https://github.com/VHellendoorn/ICLR20-Great',\n", - " 'https://github.com/kutaslab/merp2tbl',\n", - " 'https://github.com/pc2/HPCC_FPGA',\n", - " 'https://github.com/dftlibs/xcint',\n", - " 'https://github.com/pyvideo/pyvideo',\n", - " 'https://github.com/WIPACrepo/file_catalog',\n", - " 'https://github.com/NixtonM/srsmp',\n", - " 'https://github.com/jensleitloff/CNN-Sentinel',\n", - " 'https://github.com/ngs-mstb/micgent',\n", - " 'https://github.com/pytube/data',\n", - " 'https://github.com/Emma926/paradnn',\n", - " 'https://github.com/scities/patterns-of-segregation',\n", - " 'https://github.com/camillescott/goetia',\n", - " 'https://github.com/caltechlibrary/microarchiver',\n", - " 'https://github.com/exoplanet-dev/exoplanet',\n", - " 'https://github.com/duncanmmacleod/ciecplib',\n", - " 'https://github.com/matthiasweiss/runtastic-strava-migrate',\n", - " 'https://github.com/dimazest/poultry',\n", - " 'https://github.com/pnnl/ripples',\n", - " 'https://github.com/NCAR/wrf_hydro_nwm_public',\n", - " 'https://github.com/open-editions/corpus-joyce-ulysses-tei',\n", - " 'https://github.com/GeneDx/phenopy',\n", - " 'https://github.com/orlade/microsimmer',\n", - " 'https://github.com/gbv/kos-registry',\n", - " 'https://github.com/shbhuk/barycorrpy',\n", - " 'https://github.com/UNCG-DAISY/psi-collect',\n", - " 'https://github.com/SolarArbiter/solarforecastarbiter-api',\n", - " 'https://github.com/HypothesisWorks/hypothesis',\n", - " 'https://github.com/vangorden/OUR2D2',\n", - " 'https://github.com/ctsit/research-subject-mapper',\n", - " 'https://github.com/ESMValGroup/ESMValTool',\n", - " 'https://github.com/adbar/trafilatura',\n", - " 'https://github.com/ufz/ogs-container-maker',\n", - " 'https://github.com/AstraZeneca-NGS/simple_sv_annotation',\n", - " 'https://github.com/hibernator11/notebook-texts-metadata',\n", - " 'https://github.com/pzeidler89/MUSEpack',\n", - " 'https://github.com/ADicksonLab/geomm',\n", - " 'https://github.com/UCATLAS/xAODAnaHelpers',\n", - " 'https://github.com/tdwg/dwc',\n", - " 'https://github.com/asergiobranco/ArchNet',\n", - " 'https://github.com/enolfc/d4science-galaxy-authn',\n", - " 'https://github.com/cgat-developers/cgat-core',\n", - " 'https://github.com/enolfc/d4scienceauth',\n", - " 'https://github.com/CDAT/ci-bots',\n", - " 'https://github.com/dimazest/google-ngram-downloader',\n", - " 'https://github.com/keflavich/pyradex',\n", - " 'https://github.com/kizniche/Mycodo',\n", - " 'https://github.com/davidhin/stringmatching',\n", - " 'https://github.com/harnesscloud/bqwm',\n", - " 'https://github.com/mila-iqia/blocks',\n", - " 'https://github.com/gchrupala/visually-grounded-speech',\n", - " 'https://github.com/rvhonorato/cazy-parser',\n", - " 'https://github.com/cemac/SWIFTDB',\n", - " 'https://github.com/erdc/spt_compute',\n", - " 'https://github.com/nschloe/tikzplotlib',\n", - " 'https://github.com/spacetelescope/mirage',\n", - " 'https://github.com/dpla/ingestion',\n", - " 'https://github.com/erdc/spt_dataset_manager',\n", - " 'https://github.com/gher-ulg/DINCAE',\n", - " 'https://github.com/samapriya/plantpy',\n", - " 'https://github.com/proycon/codemetapy',\n", - " 'https://github.com/harnesscloud/irm-nova',\n", - " 'https://github.com/BerkeleyPhotonicsGenerator/BPG',\n", - " 'https://github.com/GeoscienceAustralia/tcrm'],\n", - " 2: ['https://github.com/gwu-libraries/sfm-docker',\n", - " 'https://github.com/dejac001/MCFlow',\n", - " 'https://github.com/tferr/hIPNAT',\n", - " 'https://github.com/midas-isg/PITT-SEIR-model',\n", - " 'https://github.com/smart-facility/cognicity-reports-twitter',\n", - " 'https://github.com/clij/clij',\n", - " 'https://github.com/TRACMASS/tracmass',\n", - " 'https://github.com/dejac001/RealGas',\n", - " 'https://github.com/bonej-org/BoneJ2',\n", - " 'https://github.com/fiji/KymographBuilder',\n", - " 'https://github.com/clij/clij-docs',\n", - " 'https://github.com/clij/clij-core',\n", - " 'https://github.com/ihmwg/python-ihm',\n", - " 'https://github.com/fmalmeida/ngs-preprocess',\n", - " 'https://github.com/thorstenwagner/ij-trackmate-findmaxima',\n", - " 'https://github.com/RCHG/FunFAN',\n", - " 'https://github.com/fmi-faim/fmi-trackmate-addons',\n", - " 'https://github.com/fmalmeida/bacannot',\n", - " 'https://github.com/dejac001/adsorption_isotherm_fitting',\n", - " 'https://github.com/clij/clij-ops',\n", - " 'https://github.com/thorstenwagner/ij-particlesizer',\n", - " 'https://github.com/PCMSolver/pcmsolver',\n", - " 'https://github.com/adaerr/pendent-drop',\n", - " 'https://github.com/salilab/imp',\n", - " 'https://github.com/fiji/Trainable_Segmentation',\n", - " 'https://github.com/smart-facility/cognicity-reports',\n", - " 'https://github.com/fmalmeida/MpGAP',\n", - " 'https://github.com/tferr/Scripts',\n", - " 'https://github.com/smart-facility/cognicity-reports-qlue',\n", - " 'https://github.com/smart-facility/cognicity-reports-floodgauge',\n", - " 'https://github.com/thorstenwagner/ij-shape-smoothing',\n", - " 'https://github.com/NeuPhysics/neutrino',\n", - " 'https://github.com/thorstenwagner/ij-shape-filter'],\n", - " 6: ['https://github.com/javaparser/javaparser',\n", - " 'https://github.com/GlobalNamesArchitecture/gnresolver',\n", - " 'https://github.com/mayconbordin/storm-applications',\n", - " 'https://github.com/cerebis/shap',\n", - " 'https://github.com/thorstenwagner/ij-trajectory-classifier',\n", - " 'https://github.com/qbicsoftware/omero-client-portlet',\n", - " 'https://github.com/Yi-ran/Omnetpp',\n", - " 'https://github.com/globalbioticinteractions/globalbioticinteractions',\n", - " 'https://github.com/JDRomano2/smdb_search',\n", - " 'https://github.com/clij/clij2',\n", - " 'https://github.com/saschneider/VMV',\n", - " 'https://github.com/ltrr-arizona-edu/tellervo',\n", - " 'https://github.com/egonw/jqudt',\n", - " 'https://github.com/paberlo/FastFeatureSelection',\n", - " 'https://github.com/GlobalNamesArchitecture/gn_uuid',\n", - " 'https://github.com/wild-fire/twitter-graph-segmenter',\n", - " 'https://github.com/jfsantos/mushra-ruby-server',\n", - " 'https://github.com/petebrew/fhaes',\n", - " 'https://github.com/justinnk/bss-simulation-study',\n", - " 'https://github.com/bowsersenior/itu_codes',\n", - " 'https://github.com/ruby-rdf/rdf',\n", - " 'https://github.com/comodide/CoModIDE',\n", - " 'https://github.com/dnet-team/dnet-basic-aggregator',\n", - " 'https://github.com/fusion-jena/abecto',\n", - " 'https://github.com/ameyaKetkar/TypeChangeMiner',\n", - " 'https://github.com/ag-gipp/FormulaCloudData',\n", - " 'https://github.com/rinde/vanLon17-JAAMAS-code',\n", - " 'https://github.com/lucasberent/ds',\n", - " 'https://github.com/datapoet/hubminer',\n", - " 'https://github.com/rinde/vanLon16-EJOR-code',\n", - " 'https://github.com/rinde/RinLog',\n", - " 'https://github.com/dvasilen/Hive-XML-SerDe',\n", - " 'https://github.com/gousiosg/pullreqs',\n", - " 'https://github.com/mmhss/sstrong-webhook',\n", - " 'https://github.com/GlobalNamesArchitecture/gn_crossmap',\n", - " 'https://github.com/owlcollab/expression-materializing-reasoner',\n", - " 'https://github.com/governit/GovernIT',\n", - " 'https://github.com/qbicsoftware/omero-client-lib',\n", - " 'https://github.com/ncrncornell/ced2ar',\n", - " 'https://github.com/rockt/SETH',\n", - " 'https://github.com/EHadoux/aptimizer',\n", - " 'https://github.com/amuslija/fbd-complexity-tool',\n", - " 'https://github.com/cwi-swat/bacata',\n", - " 'https://github.com/Sentimentron/PRJ9081',\n", - " 'https://github.com/meteoinfo/MeteoInfo',\n", - " 'https://github.com/sojamo/oscp5',\n", - " 'https://github.com/gbif/gbif-api',\n", - " 'https://github.com/Ayllonbe/gsan',\n", - " 'https://github.com/ALIADA/aliada-tool',\n", - " 'https://github.com/stain/ro-combine-archive',\n", - " 'https://github.com/postnathalie/WallTalk',\n", - " 'https://github.com/vivo-project/VIVO',\n", - " 'https://github.com/RBVI/CyAnimator',\n", - " 'https://github.com/SciCrunch/resource_disambiguator',\n", - " 'https://github.com/phenoscape/phenoday-reasoning-paper',\n", - " 'https://github.com/sisinflab-swot/ldp-coap-framework',\n", - " 'https://github.com/TomDemeranville/orcid-update-java',\n", - " 'https://github.com/yogo/VOEIS',\n", - " 'https://github.com/midas-isg/PITT-Anthrax-model',\n", - " 'https://github.com/aderidder/iCRFGenerator',\n", - " 'https://github.com/jyrkioraskari/OnlineMvdXMLChecker',\n", - " 'https://github.com/histogrammar/histogrammar-scala',\n", - " 'https://github.com/midas-isg/digital-commons',\n", - " 'https://github.com/LiberalHD/gudagudaACG',\n", - " 'https://github.com/piazentin/ksets',\n", - " 'https://github.com/smd-faizan/CySpanningTree',\n", - " 'https://github.com/javadch/quis',\n", - " 'https://github.com/scijava/scijava-common',\n", - " 'https://github.com/jgreener64/pdb-benchmarks',\n", - " 'https://github.com/scholarslab/prism',\n", - " 'https://github.com/thorstenwagner/ij-blob',\n", - " 'https://github.com/PBR/Marker2Sequence',\n", - " 'https://github.com/MCZbase/PreCapture',\n", - " 'https://github.com/edwardcapriolo/filecrush',\n", - " 'https://github.com/miledrousset/opentheso',\n", - " 'https://github.com/globalbioticinteractions/nomer',\n", - " 'https://github.com/urmi-21/MetaOmGraph',\n", - " 'https://github.com/altmetric/aho_corasick_matcher',\n", - " 'https://github.com/DECLARE-Project/fastpan',\n", - " 'https://github.com/felicitia/EventExtractor',\n", - " 'https://github.com/marco-ka/semantic-annotation-writer',\n", - " 'https://github.com/medusa-project/databank',\n", - " 'https://github.com/Lane-Library/wiki-extract',\n", - " 'https://github.com/NLeSC/fairdatapoint',\n", - " 'https://github.com/usethesource/capsule',\n", - " 'https://github.com/davidenunes/context-permeability',\n", - " 'https://github.com/Tyler-Yates/AestheticFractals',\n", - " 'https://github.com/Terradue/dcs-insar-roipac',\n", - " 'https://github.com/j-stone/cog-tasks',\n", - " 'https://github.com/unipept/unipept-cli',\n", - " 'https://github.com/skp703/RainInterpolator',\n", - " 'https://github.com/anil88/population-origin-calculator',\n", - " 'https://github.com/3D-e-Chem/knime-klifs',\n", - " 'https://github.com/globalbioticinteractions/elton',\n", - " 'https://github.com/felicitia/TestBenchmark-Java-client',\n", - " 'https://github.com/arfon/metamatter',\n", - " 'https://github.com/piyush82/expression-evaluator',\n", - " 'https://github.com/nomencurator/taxonaut',\n", - " 'https://github.com/willpearse/data_frame',\n", - " 'https://github.com/jameshowison/softcite',\n", - " 'https://github.com/mgiorgio/comet-utilities',\n", - " 'https://github.com/myGrid/ruby-zip-container',\n", - " 'https://github.com/jeremyf/orcid_album_cover',\n", - " 'https://github.com/theblackunknown/creative-ecosystems',\n", - " 'https://github.com/FedUni/caliko',\n", - " 'https://github.com/aleksandarsibincic/ExcelAudit',\n", - " 'https://github.com/silviodc/Gazetteer',\n", - " 'https://github.com/timtroendle/energy-agents',\n", - " 'https://github.com/sojamo/midimapper',\n", - " 'https://github.com/dicom/rtp-connect',\n", - " 'https://github.com/myGrid/ruby-ucf',\n", - " 'https://github.com/Sentimentron/Nebraska-public',\n", - " 'https://github.com/korpling/ANNIS',\n", - " 'https://github.com/sayounara/Green_training',\n", - " 'https://github.com/thorstenwagner/TraJ',\n", - " 'https://github.com/dgarijo/Widoco',\n", - " 'https://github.com/PecanProject/bety',\n", - " 'https://github.com/rvanheest/feedback4s',\n", - " 'https://github.com/DataFusion4NetBio/Paper16-SCODE',\n", - " 'https://github.com/lifs-tools/jmzTab-m',\n", - " 'https://github.com/KnowledgeCaptureAndDiscovery/DISK',\n", - " 'https://github.com/SeqWare/oozie-sge',\n", - " 'https://github.com/NLeSC/eEcology-Classification',\n", - " 'https://github.com/shiyy123/FCDetector',\n", - " 'https://github.com/mayconbordin/streaminer',\n", - " 'https://github.com/vuw-sim-stia/TICJ',\n", - " 'https://github.com/cyverse-gis/suas-metadata',\n", - " 'https://github.com/DennisRippinger/spade',\n", - " 'https://github.com/fcproj/agrotagger',\n", - " 'https://github.com/quadrama/DramaNLP',\n", - " 'https://github.com/milaboratory/mixcr',\n", - " 'https://github.com/SciGraph/SciGraph',\n", - " 'https://github.com/nilsreiter/CorefAnnotator',\n", - " 'https://github.com/Rothamsted/knetminer',\n", - " 'https://github.com/owlcollab/owltools',\n", - " 'https://github.com/mmhss/sstrong-import',\n", - " 'https://github.com/Smart-Contract-Modelling-uOttawa/Symboleo-Compliance-Checker',\n", - " 'https://github.com/klugem/watchdog',\n", - " 'https://github.com/rcsb/ciftools-java',\n", - " 'https://github.com/scalaris-team/scalaris',\n", - " 'https://github.com/DeathStar3/symfinder',\n", - " 'https://github.com/opentox/lazar-rest',\n", - " 'https://github.com/SeqWare/seqware',\n", - " 'https://github.com/sjcross/MIA',\n", - " 'https://github.com/TGAC/brassica',\n", - " 'https://github.com/oicr-gsi/shesmu',\n", - " 'https://github.com/constantinpape/z5',\n", - " 'https://github.com/ISA-tools/stato',\n", - " 'https://github.com/diging/giles-eco-cepheus',\n", - " 'https://github.com/alexrashed/eval_rest',\n", - " 'https://github.com/dannyboscan/angular-and-rails',\n", - " 'https://github.com/thorstenwagner/spie-photonics-europe-2016',\n", - " 'https://github.com/slimsuite/SLiMScape',\n", - " 'https://github.com/diging/citesphere-importer',\n", - " 'https://github.com/rinde/RinECJ',\n", - " 'https://github.com/Terradue/rOpenSearch',\n", - " 'https://github.com/sckott/serrano',\n", - " 'https://github.com/shah314/graphcoloring',\n", - " 'https://github.com/CeON/CERMINE',\n", - " 'https://github.com/scleveland/NADV',\n", - " 'https://github.com/nextcloud/android',\n", - " 'https://github.com/BMKEG/UimaBioC',\n", - " 'https://github.com/ICGC-TCGA-PanCancer/OxoGWrapperWorkflow',\n", - " 'https://github.com/CharafeddineMechalikh/PureEdgeSim',\n", - " 'https://github.com/GlobalNamesArchitecture/taxamatch_rb',\n", - " 'https://github.com/SELAB-AA/arvue-platform',\n", - " 'https://github.com/aquariumbio/aquarium',\n", - " 'https://github.com/mbari-media-management/vars-avfoundation',\n", - " 'https://github.com/phon-ca/phon',\n", - " 'https://github.com/manoelcampos/cloudsim-plus',\n", - " 'https://github.com/qbicsoftware/projectwizard-portlet',\n", - " 'https://github.com/dockstore/dockstore',\n", - " 'https://github.com/nilsreiter/uima-util',\n", - " 'https://github.com/JonnyDaenen/Gumbo',\n", - " 'https://github.com/piyush82/iot-simulator',\n", - " 'https://github.com/thiagotts/CloudReports',\n", - " 'https://github.com/lagotto/lagotto',\n", - " 'https://github.com/CloudBindle/youxia',\n", - " 'https://github.com/hcadavid/TimeWarpScheduleLibrary',\n", - " 'https://github.com/gbif/registry',\n", - " 'https://github.com/miso-lims/miso-lims',\n", - " 'https://github.com/korpling/pepper',\n", - " 'https://github.com/CERNatschool/LUCIDITY',\n", - " 'https://github.com/myGrid/t2-server-gem',\n", - " 'https://github.com/cmorty/realsim',\n", - " 'https://github.com/antlr/codebuff',\n", - " 'https://github.com/vdenotaris/spring-boot-security-saml-sample',\n", - " 'https://github.com/bio-guoda/preston',\n", - " 'https://github.com/fusion-jena/CoMerger',\n", - " 'https://github.com/peterbanda/coel',\n", - " 'https://github.com/kotik-coder/PULsE',\n", - " 'https://github.com/klout/brickhouse',\n", - " 'https://github.com/psambit9791/jDSP',\n", - " 'https://github.com/cgvwzq/polca',\n", - " 'https://github.com/davidenunes/jnetwork',\n", - " 'https://github.com/RMLio/rmlmapper-java',\n", - " 'https://github.com/d-tear/SIAL',\n", - " 'https://github.com/milaboratory/mitools',\n", - " 'https://github.com/faustusdotbe/topic-modeling-tool-FR',\n", - " 'https://github.com/powerpak/pathogendb-pipeline',\n", - " 'https://github.com/biojava/biojava',\n", - " 'https://github.com/IvanPaez/Proact',\n", - " 'https://github.com/SymbioticLab/tensorflow-salus',\n", - " 'https://github.com/LukasEttel/YoshikoStandalone',\n", - " 'https://github.com/ISA-tools/NanoMaton',\n", - " 'https://github.com/luosolo/OAiZer',\n", - " 'https://github.com/DECLARE-Project/palladio-headless',\n", - " 'https://github.com/claudioatzori/dnet-gdup',\n", - " 'https://github.com/brics-dev/brics',\n", - " 'https://github.com/cismet/cids-custom-sudplan-linz',\n", - " 'https://github.com/datacite/omniauth-orcid',\n", - " 'https://github.com/stain/profilechecker',\n", - " 'https://github.com/byu-vv-lab/mercury',\n", - " 'https://github.com/schxslt/schxslt',\n", - " 'https://github.com/lejon/PartiallyCollapsedLDA',\n", - " 'https://github.com/phillima/asniffer',\n", - " 'https://github.com/ncsa/OA4MP',\n", - " 'https://github.com/meraki-analytics/orianna',\n", - " 'https://github.com/saeg/asm-defuse',\n", - " 'https://github.com/midas-isg/object-serializer',\n", - " 'https://github.com/sotorrent/posthistory-extractor',\n", - " 'https://github.com/CESNET/perun',\n", - " 'https://github.com/ace-design/cosmic',\n", - " 'https://github.com/ebimodeling/ghgvc',\n", - " 'https://github.com/KnowledgeCaptureAndDiscovery/OBA',\n", - " 'https://github.com/diging/virtual-spaces-2.0',\n", - " 'https://github.com/andremann/MoniQ',\n", - " 'https://github.com/ideaconsult/appdomain',\n", - " 'https://github.com/mbdemoraes/moafs',\n", - " 'https://github.com/alexvoronov/geonetworking',\n", - " 'https://github.com/nicysneiros/SemMatcher',\n", - " 'https://github.com/locked-fg/JFeatureLib',\n", - " 'https://github.com/SP7-Ritmare/EDI-NG_server',\n", - " 'https://github.com/rinde/pdptw-dataset-generator',\n", - " 'https://github.com/geneontology/obographs',\n", - " 'https://github.com/TreeCmp/TreeCmpWEB',\n", - " 'https://github.com/VIDA-NYU/domain-discovery-d4',\n", - " 'https://github.com/mayconbordin/cdr-gen',\n", - " 'https://github.com/nismod/transport',\n", - " 'https://github.com/blahah/transrate',\n", - " 'https://github.com/sbmlteam/jsbml',\n", - " 'https://github.com/jaclaes/SPMM2015',\n", - " 'https://github.com/plt-tud/r43ples',\n", - " 'https://github.com/mbari-media-management/vcr4j',\n", - " 'https://github.com/mbari-media-management/vars-query',\n", - " 'https://github.com/ISOBlue/isoblue-android',\n", - " 'https://github.com/egonw/ops4j',\n", - " 'https://github.com/alamar/microbe',\n", - " 'https://github.com/arbox/shalmaneser',\n", - " 'https://github.com/myGrid/ruby-ro-bundle',\n", - " 'https://github.com/jjnp/dss-ue2',\n", - " 'https://github.com/TGAC/RAMPART',\n", - " 'https://github.com/repseqio/repseqio',\n", - " 'https://github.com/russianwordnet/yarn',\n", - " 'https://github.com/ameyaKetkar/SimpleTypeChangeMiner',\n", - " 'https://github.com/lifs-tools/jmzTab-m-webapp',\n", - " 'https://github.com/rinde/vanLon17-GPEM-code',\n", - " 'https://github.com/cicirello/JavaPermutationTools',\n", - " 'https://github.com/CESNET/perun-mitreid',\n", - " 'https://github.com/jiemakel/seco-hfst',\n", - " 'https://github.com/infraling/atomic',\n", - " 'https://github.com/ijpb/MorphoLibJ',\n", - " 'https://github.com/yogo/sapphire',\n", - " 'https://github.com/arselzer/HTQueryOptimizer'],\n", - " 9: ['https://github.com/nevenjovanovic/treebank-polybius',\n", - " 'https://github.com/FNNDSC/ChRIS_ui',\n", - " 'https://github.com/GLAM-Workbench/te-papa-api',\n", - " 'https://github.com/CCMi-FIT/ontouml-code-generator',\n", - " 'https://github.com/diging/tethne',\n", - " 'https://github.com/xldrkp/zocurelia',\n", - " 'https://github.com/encompasslabs/encompass-aquiferium',\n", - " 'https://github.com/maikherbig/AIDeveloper',\n", - " 'https://github.com/isle-project/isle-editor',\n", - " 'https://github.com/cytoscape/cytoscape.js',\n", - " 'https://github.com/Andros-Spica/EAA2018_ceramics',\n", - " 'https://github.com/molbiodiv/biojs-io-biom',\n", - " 'https://github.com/leilaicruz/Experimental-journal-deploy',\n", - " 'https://github.com/mathjax/MathJax-src',\n", - " 'https://github.com/zero323/developing-data-products-shiny',\n", - " 'https://github.com/etnbrd/flx-example',\n", - " 'https://github.com/sanshu/protaeljs',\n", - " 'https://github.com/karimamufidah/karimamufidah.github.io',\n", - " 'https://github.com/biasmv/pv',\n", - " 'https://github.com/LDflex/LDflex',\n", - " 'https://github.com/cggh/panoptes',\n", - " 'https://github.com/bionode/bionode-sra',\n", - " 'https://github.com/neuroscout/neuroscout',\n", - " 'https://github.com/NESCent/fcdb-api',\n", - " 'https://github.com/SP7-Ritmare/EDI-NG_client',\n", - " 'https://github.com/tobysmith568/TestEnv',\n", - " 'https://github.com/IbrahimTanyalcin/RafX',\n", - " 'https://github.com/ebmdatalab/trialstracker',\n", - " 'https://github.com/zakandrewking/escher',\n", - " 'https://github.com/EMAPS/climaps-platform',\n", - " 'https://github.com/yeeking/evosynth',\n", - " 'https://github.com/speckleworks/SpeckleServer',\n", - " 'https://github.com/qPRC/qPRC',\n", - " 'https://github.com/ecds/readux',\n", - " 'https://github.com/cfe-lab/Kive',\n", - " 'https://github.com/brown-ccv/neuro-task-starter',\n", - " 'https://github.com/densitymodelling/dsmextra',\n", - " 'https://github.com/asherpasha/Araport_GeneSlider',\n", - " 'https://github.com/HuckleyLab/phyto-mhw',\n", - " 'https://github.com/dmitriz/cpsfy',\n", - " 'https://github.com/InsightSoftwareConsortium/itk-js',\n", - " 'https://github.com/rodighiero/COVID-19',\n", - " 'https://github.com/darribas/gds16',\n", - " 'https://github.com/GeriLife/wellbeing',\n", - " 'https://github.com/scienceai/neocortex',\n", - " 'https://github.com/hyperwell/gateway',\n", - " 'https://github.com/a-callahan/MechWolf_Pull',\n", - " 'https://github.com/ropensci/lingtypology',\n", - " 'https://github.com/MoritzStefaner/ach-ingen-zell',\n", - " 'https://github.com/bionode/fasta-parser',\n", - " 'https://github.com/hyperwell/playground',\n", - " 'https://github.com/rcfduarte/nmsat',\n", - " 'https://github.com/atrisovic/weather-panel.github.io',\n", - " 'https://github.com/clarity-h2020/map-component',\n", - " 'https://github.com/iomega/zenodo-upload',\n", - " 'https://github.com/RomainBey/stratified-cross-validation',\n", - " 'https://github.com/opencv/cvat',\n", - " 'https://github.com/smart-facility/cognicity-floodsensor',\n", - " 'https://github.com/vibbits/phyd3',\n", - " 'https://github.com/gcube-team/gcube-releases',\n", - " 'https://github.com/xieguigang/Data.GIS',\n", - " 'https://github.com/blobtoolkit/viewer',\n", - " 'https://github.com/schema-app/schema',\n", - " 'https://github.com/Capitains/Sparrow',\n", - " 'https://github.com/filips123/ZeroFrameJS',\n", - " 'https://github.com/georgeOsdDev/longo',\n", - " 'https://github.com/evanodell/ukpolice',\n", - " 'https://github.com/AlgolLLC/phonetop',\n", - " 'https://github.com/rodighiero/DH2019',\n", - " 'https://github.com/nawrs/nawrs',\n", - " 'https://github.com/datproject/dat',\n", - " 'https://github.com/Lonero-Team/Decentralized-Internet',\n", - " 'https://github.com/ElektraInitiative/libelektra',\n", - " 'https://github.com/Andros-Spica/PhD-defense',\n", - " 'https://github.com/prevwong/craft.js',\n", - " 'https://github.com/darribas/wmn',\n", - " 'https://github.com/NUStreaming/acm-mmsys-2020-grand-challenge',\n", - " 'https://github.com/bionode/bionode-template',\n", - " 'https://github.com/WikiWatershed/model-my-watershed',\n", - " 'https://github.com/sealuzh/lightweight-effectiveness',\n", - " 'https://github.com/phiresky/backchannel-prediction',\n", - " 'https://github.com/allucas/allucas.github.io',\n", - " 'https://github.com/AABoyles/MicrobeTrace',\n", - " 'https://github.com/OpenGeoscience/geojs',\n", - " 'https://github.com/CDAT/jupyter-vcdat',\n", - " 'https://github.com/butcer0/SequenceOne',\n", - " 'https://github.com/InsightSoftwareConsortium/itkwidgets',\n", - " 'https://github.com/ryanpeek/mapping-in-R-workshop',\n", - " 'https://github.com/kks32-slides/2016-berkeley',\n", - " 'https://github.com/midas-isg/epicasemap',\n", - " 'https://github.com/dockstore/dockstore-ui2',\n", - " 'https://github.com/rOpenGov/eurostat',\n", - " 'https://github.com/joshje/drawpath',\n", - " 'https://github.com/bio-ontology-research-group/DDIEM',\n", - " 'https://github.com/prajankya/Lidar-Robot',\n", - " 'https://github.com/MonashBioinformaticsPlatform/laxy',\n", - " 'https://github.com/LinkedDataFragments/Server.js',\n", - " 'https://github.com/lgsvl/simulator',\n", - " 'https://github.com/jtmccr1/figtreejs-react',\n", - " 'https://github.com/AbhinavMir/Decentralized-Journalism-Using-Ethereum',\n", - " 'https://github.com/UNCG-DAISY/Coastal-Image-Labeler',\n", - " 'https://github.com/cosmo-epfl/chemiscope',\n", - " 'https://github.com/filips123/EthAvatar.JS',\n", - " 'https://github.com/Kitware/itk-vtk-viewer',\n", - " 'https://github.com/arose/ngl',\n", - " 'https://github.com/sdss/marvin',\n", - " 'https://github.com/sigsep/sigsep-mus-2018-website',\n", - " 'https://github.com/bwbohl/introduction-to-mei',\n", - " 'https://github.com/JaneliaSciComp/SharkViewer',\n", - " 'https://github.com/cogan-shimizu-wsu/ExperimentAnnotationTracker',\n", - " 'https://github.com/aaronSig/rainforest-rhythms',\n", - " 'https://github.com/mjuez/TFM2016_Analisis-Visual-Revisiones-Codigo',\n", - " 'https://github.com/sgsaenger/vipster',\n", - " 'https://github.com/Thales1330/PSP',\n", - " 'https://github.com/ufbmi/mdc_search',\n", - " 'https://github.com/Andros-Spica/EMAC-Angourakis-et-al-2019',\n", - " 'https://github.com/plantinformatics/pretzel',\n", - " 'https://github.com/OpenKnowledgeMaps/Headstart',\n", - " 'https://github.com/Irstea/otolithe',\n", - " 'https://github.com/bionode/bionode',\n", - " 'https://github.com/evanodell/parlitools',\n", - " 'https://github.com/rodighiero/DH2020',\n", - " 'https://github.com/Sulstice/datacity',\n", - " 'https://github.com/lucasberent/mapleDocs',\n", - " 'https://github.com/University-of-Potsdam-MM/Reflect.UP',\n", - " 'https://github.com/cronelab/bci2000web',\n", - " 'https://github.com/AliTVTeam/AliTV',\n", - " 'https://github.com/essepuntato/rash',\n", - " 'https://github.com/falafeljan/recogito-user-testing',\n", - " 'https://github.com/mfroeling/QMRITools',\n", - " 'https://github.com/delphi-hub/delphi-webapp',\n", - " 'https://github.com/dohalloran/phylo-node',\n", - " 'https://github.com/GRIFFINCollaboration/beamCompanionExplorer',\n", - " 'https://github.com/Andros-Spica/Postdocs-Angourakis-2019',\n", - " 'https://github.com/ARGOeu/poem-2',\n", - " 'https://github.com/liminoid/liminoid-react',\n", - " 'https://github.com/sigsep/website',\n", - " 'https://github.com/rsa-tools/rsat-code',\n", - " 'https://github.com/tompollard/phd_thesis_markdown',\n", - " 'https://github.com/calipho-sib/feature-viewer',\n", - " 'https://github.com/sherlock-clustering/Sherlock_DiVE',\n", - " 'https://github.com/cytoscape/cytoscape.js-cxtmenu',\n", - " 'https://github.com/lewisacidic/synergy-maps',\n", - " 'https://github.com/bongadi/ARV-Predictor-OngadiB',\n", - " 'https://github.com/matthiaskoenig/pkdb',\n", - " 'https://github.com/craws/OpenAtlas',\n", - " 'https://github.com/jacobwindsor/kaavio-showdown',\n", - " 'https://github.com/bionode/bionode-ncbi',\n", - " 'https://github.com/NLeSC/nlesc-serverless-boilerplate',\n", - " 'https://github.com/Princeton-CDH/mep-django',\n", - " 'https://github.com/SmartAPI/smartAPI-editor',\n", - " 'https://github.com/chaoss/augur',\n", - " 'https://github.com/njss/SpaceTimeCube3D',\n", - " 'https://github.com/plertvilai/IPAX',\n", - " 'https://github.com/MicroPasts/MicroPasts-pybossa-theme',\n", - " 'https://github.com/fzyukio/koe',\n", - " 'https://github.com/smart-facility/petajakarta-web',\n", - " 'https://github.com/cytoscape/cytoscape.js-euler',\n", - " 'https://github.com/macarthur-lab/seqr',\n", - " 'https://github.com/openearth/wpsbuilder',\n", - " 'https://github.com/ufbmi/mdc_api',\n", - " 'https://github.com/Andros-Spica/CDAL-Angourakis-2019',\n", - " 'https://github.com/Andros-Spica/TIPC2-Angourakis-Graham-2018',\n", - " 'https://github.com/ci-for-research/zenodo',\n", - " 'https://github.com/laduplessis/SARS-CoV-2_Guangdong_genomic_epidemiology',\n", - " 'https://github.com/ivanhercaz/research',\n", - " 'https://github.com/nismod/smif',\n", - " 'https://github.com/mgndolan/phagesdb',\n", - " 'https://github.com/rdfjs/N3.js',\n", - " 'https://github.com/molstar/molstar',\n", - " 'https://github.com/na399/VAST-Challenge-2019-MC1',\n", - " 'https://github.com/Dash-Industry-Forum/dash.js',\n", - " 'https://github.com/cytoscape/cytoscape.js-popper',\n", - " 'https://github.com/RADAR-base/RADAR-Questionnaire',\n", - " 'https://github.com/nichtich/wikidata-taxonomy',\n", - " 'https://github.com/Kitware/vtk-js',\n", - " 'https://github.com/tdurieux/Travis-Listener',\n", - " 'https://github.com/ufbmi/mdc_meter',\n", - " 'https://github.com/benchoufi/DocChain',\n", - " 'https://github.com/Zettlr/Zettlr',\n", - " 'https://github.com/RADAR-base/ManagementPortal',\n", - " 'https://github.com/chanzuckerberg/cellxgene',\n", - " 'https://github.com/University-of-Potsdam-MM/Mobile.UP',\n", - " 'https://github.com/DukeLearningInnovation/muser',\n", - " 'https://github.com/fablabbcn/smartcitizen-kit-21',\n", - " 'https://github.com/Andros-Spica/ENE-Angourakis-et-al-2019',\n", - " 'https://github.com/planetserver/webclient-neo',\n", - " 'https://github.com/galaxyproject/SARS-CoV-2',\n", - " 'https://github.com/smart-facility/cognicity-server',\n", - " 'https://github.com/FelixHenninger/lab.js',\n", - " 'https://github.com/sonjageorgievska/CClusTera',\n", - " 'https://github.com/liminoid/liminoid-cli',\n", - " 'https://github.com/ben-aaron188/netanos',\n", - " 'https://github.com/Duke-GCB/iMADS',\n", - " 'https://github.com/michael-pagan/Netflix-Analysis',\n", - " 'https://github.com/Alan-Cha/graphql-complexity-paper-artifact',\n", - " 'https://github.com/rodighiero/Affinity-Map',\n", - " 'https://github.com/trtcrd/SLIM',\n", - " 'https://github.com/mrc-ide/squire_js',\n", - " 'https://github.com/ericmandel/js9',\n", - " 'https://github.com/ocean-data-qc/ocean-data-qc',\n", - " 'https://github.com/sosy-lab/benchexec',\n", - " 'https://github.com/camomile-project/camomile-server',\n", - " 'https://github.com/zebateira/rama-spotify',\n", - " 'https://github.com/eWaterCycle/Cesium-NcWMS',\n", - " 'https://github.com/CMLPlatform/ramascene',\n", - " 'https://github.com/schimatos/schimatos.org',\n", - " 'https://github.com/Andros-Spica/EAA2018_simulation',\n", - " 'https://github.com/LDflex/LDflex-Comunica',\n", - " 'https://github.com/research-software-directory/research-software-directory',\n", - " 'https://github.com/erwinkendo/polaruob',\n", - " 'https://github.com/sept08/WebToys',\n", - " 'https://github.com/comses/comses.net',\n", - " 'https://github.com/njss/Sense.me',\n", - " 'https://github.com/encompasslabs/mcsdss-watermark',\n", - " 'https://github.com/jpdias/node-red-contrib-self-healing',\n", - " 'https://github.com/dzhw/metadatamanagement',\n", - " 'https://github.com/planetserver/ps2-www-client',\n", - " 'https://github.com/ropensci/stplanr',\n", - " 'https://github.com/digitallinguistics/app',\n", - " 'https://github.com/netsage-project/netsage-pipeline',\n", - " 'https://github.com/liminoid/liminoid-js',\n", - " 'https://github.com/Jollyfant/PMAG2',\n", - " 'https://github.com/rodighiero/AIUCD2020',\n", - " 'https://github.com/bionode/bionode-fasta',\n", - " 'https://github.com/chasemc/IDBacApp',\n", - " 'https://github.com/fruchtfolge/client',\n", - " 'https://github.com/newcastle-living-lab/living-lab',\n", - " 'https://github.com/ufbmi/mdc_tree',\n", - " 'https://github.com/bigbadcrad/PUFFIN',\n", - " 'https://github.com/eweitz/ideogram',\n", - " 'https://github.com/kach/nearley',\n", - " 'https://github.com/direwolf/direwolf-app',\n", - " 'https://github.com/bids-standard/bids-validator',\n", - " 'https://github.com/trendscenter/coinstac',\n", - " 'https://github.com/sbalci/clinicopathological'],\n", - " 4: ['https://github.com/metomi/isodatetime',\n", - " 'https://github.com/jyrkioraskari/IFCtoLBD_OpenAPI',\n", - " 'https://github.com/digitallinguistics/scription2dlx',\n", - " 'https://github.com/RubenVerborgh/WebFundamentals',\n", - " 'https://github.com/nickk124/RCR',\n", - " 'https://github.com/biowdl/QC',\n", - " 'https://github.com/biowdl/structural-variantcalling',\n", - " 'https://github.com/LispTO/llthw',\n", - " 'https://github.com/biowdl/tasks',\n", - " 'https://github.com/HSF/phoenix',\n", - " 'https://github.com/machawk1/warcreate',\n", - " 'https://github.com/ENCODE-DCC/croo',\n", - " 'https://github.com/dwhieb/Nuuchahnulth',\n", - " 'https://github.com/tobysmith568/License-Sorter',\n", - " 'https://github.com/digitallinguistics/transliterate',\n", - " 'https://github.com/jupiterbak/FAPSDemoOPCUAServer2',\n", - " 'https://github.com/ufz/ogs',\n", - " 'https://github.com/supercollider/supercollider',\n", - " 'https://github.com/GerardBalaoro/jQuery-Tourer',\n", - " 'https://github.com/biowdl/germline-DNA',\n", - " 'https://github.com/fg-inet/DASH-streaming-setup',\n", - " 'https://github.com/mlbernauer/drugstandards',\n", - " 'https://github.com/pymedphys/pymedphys',\n", - " 'https://github.com/worldsensing/xyz-iot-monitoring',\n", - " 'https://github.com/numenta/gridcodingrange',\n", - " 'https://github.com/meijer-jeroen/contingent-evolution-2020',\n", - " 'https://github.com/jbathmann/pyMANGA',\n", - " 'https://github.com/pabloaaf/Factor-TranscriptionCaseStudy',\n", - " 'https://github.com/docable/docable',\n", - " 'https://github.com/jupiterbak/FAPSDemoOPCUAServer0',\n", - " 'https://github.com/jupiterbak/FAPSDemoOPCUAServer',\n", - " 'https://github.com/biowdl/RNA-seq',\n", - " 'https://github.com/aulasoftwarelibre/taller-de-git',\n", - " 'https://github.com/digitallinguistics/word-aligner',\n", - " 'https://github.com/feelpp/book.feelpp.org',\n", - " 'https://github.com/Karel-Kroeze/adaptive-hypothesis-grammars',\n", - " 'https://github.com/onnovalkering/brane',\n", - " 'https://github.com/liminoid/liminoid-mdx',\n", - " 'https://github.com/biowdl/expression-quantification',\n", - " 'https://github.com/thomas-crane/networking-project',\n", - " 'https://github.com/OPEnSLab-OSU/SlideSentinel',\n", - " 'https://github.com/Edirom/WeGA-WebApp',\n", - " 'https://github.com/biowdl/BamMetrics',\n", - " 'https://github.com/JustinGOSSES/wellio.js',\n", - " 'https://github.com/clarity-h2020/data-management-plan',\n", - " 'https://github.com/tobysmith568/Generate-License-File',\n", - " 'https://github.com/chembl/FPSim2',\n", - " 'https://github.com/digitallinguistics/spec',\n", - " 'https://github.com/biowdl/gatk-preprocess'],\n", - " 7: ['https://github.com/openphacts/explorer2',\n", - " 'https://github.com/KnowledgeCaptureAndDiscovery/OBA_sparql',\n", - " 'https://github.com/K3D-tools/K3D-jupyter',\n", - " 'https://github.com/firedrakeproject/firedrake',\n", - " 'https://github.com/MegaAttitude/frequency-acceptability-selection',\n", - " 'https://github.com/jiemakel/snapper',\n", - " 'https://github.com/africanmathsinitiative/R-Instat',\n", - " 'https://github.com/dmj/PicaRecord',\n", - " 'https://github.com/casmlab/facebook_group_collector',\n", - " 'https://github.com/dalmia/siren',\n", - " 'https://github.com/Capitains/Hook-Worker',\n", - " 'https://github.com/rdmorganiser/rdmo',\n", - " 'https://github.com/assafZaritskyLab/IRM-Spreading-Dynamics',\n", - " 'https://github.com/cescalara/minieuso_cpu',\n", - " 'https://github.com/CCS-Lab/easyml',\n", - " 'https://github.com/bionode/bionode-bbi',\n", - " 'https://github.com/tsamsonov/generalize-dem',\n", - " 'https://github.com/CiTR/djland',\n", - " 'https://github.com/bakery-cg2at/bakery',\n", - " 'https://github.com/jonathanmorgan/django_config',\n", - " 'https://github.com/Phylu/csd',\n", - " 'https://github.com/jacobwindsor/MetabMaster',\n", - " 'https://github.com/rubenarslan/formr.org',\n", - " 'https://github.com/driehle/emobility-search-engine',\n", - " 'https://github.com/tripal/private_biodata',\n", - " 'https://github.com/SandstoneHPC/sandstone-spawner',\n", - " 'https://github.com/CESNET/proxystatistics-simplesamlphp-module',\n", - " 'https://github.com/NCBI-Hackathons/Structural_Variant_Comparison',\n", - " 'https://github.com/firedrakeproject/loopy',\n", - " 'https://github.com/bodkan/archaic-ychr',\n", - " 'https://github.com/daniel-dpk/distorted-motsfinder-public',\n", - " 'https://github.com/qzhu2017/PyXtal',\n", - " 'https://github.com/lightonphiri/etd_autoclassifier',\n", - " 'https://github.com/ishahid/django-gdm',\n", - " 'https://github.com/kevindoyle/geoscience-first-authorship',\n", - " 'https://github.com/fabfab1/EnCAB',\n", - " 'https://github.com/PedroMat8/micropy',\n", - " 'https://github.com/clld/glottolog3',\n", - " 'https://github.com/hibernator11/AprediendoJava',\n", - " 'https://github.com/mtinti/PIG-A',\n", - " 'https://github.com/clld/tsammalex',\n", - " 'https://github.com/deephdc/schema4deep',\n", - " 'https://github.com/opannekoucke/pdenetgen',\n", - " 'https://github.com/RDFLib/pyrdfa3',\n", - " 'https://github.com/filips123/MonologPHPMailer',\n", - " 'https://github.com/Sreyan88/Fatigue-Detection-using-Deep-Learning',\n", - " 'https://github.com/filips123/ZeroFramePy',\n", - " 'https://github.com/jfal027/Moodify',\n", - " 'https://github.com/LandscapeGeoinformatics/EstSoil-EH_sw_supplement',\n", - " 'https://github.com/arXiv/arxiv-browse',\n", - " 'https://github.com/pear2/Cache_SHM',\n", - " 'https://github.com/shh-dlce/python-nexus',\n", - " 'https://github.com/ODM2/ODM2DataSharingPortal',\n", - " 'https://github.com/davidbradway/Visualizing-Scholars-At-Duke-2017',\n", - " 'https://github.com/dkalisch/morgenstadtDB',\n", - " 'https://github.com/akxen/tps-parameterisation',\n", - " 'https://github.com/SandstoneHPC/sandstone-slurm-assist',\n", - " 'https://github.com/tgwizard/sexymp-data',\n", - " 'https://github.com/semplea/characters-meta',\n", - " 'https://github.com/evoldoers/wtfgenes',\n", - " 'https://github.com/janantala/speech-synthesis',\n", - " 'https://github.com/ishahid/django-blogg',\n", - " 'https://github.com/larslau/DETECT',\n", - " 'https://github.com/afnogueira/datasetsaner2017',\n", - " 'https://github.com/ivco19/brooks',\n", - " 'https://github.com/sandyherho/tutorial_xarray',\n", - " 'https://github.com/EricAlcaide/MiniFold',\n", - " 'https://github.com/UofS-Pulse-Binfo/nd_genotypes',\n", - " 'https://github.com/caltechlibrary/handprint',\n", - " 'https://github.com/freeknijweide/autoencoder-pdb-cleaning',\n", - " 'https://github.com/Clinical-Genomics/chanjo',\n", - " 'https://github.com/butcer0/found-diagnosis-network',\n", - " 'https://github.com/JustinGOSSES/predictatops',\n", - " 'https://github.com/GatorSense/HyperspectralAnalysisIntroduction',\n", - " 'https://github.com/specpose/stopeight',\n", - " 'https://github.com/hasantayyar/doi-tools',\n", - " 'https://github.com/tactcomplabs/xbgas-tools',\n", - " 'https://github.com/samik1986/ML_Semantic_Segmenation_NMI',\n", - " 'https://github.com/aldnav/abempy',\n", - " 'https://github.com/oblassers/tuw-servicebroker',\n", - " 'https://github.com/MAGIC-nexus/nis-graph-diagrams',\n", - " 'https://github.com/fnl/gnamed',\n", - " 'https://github.com/Flowminder/FlowKit',\n", - " 'https://github.com/LegoStormtroopr/django-spaghetti-and-meatballs',\n", - " 'https://github.com/ADicksonLab/wepy',\n", - " 'https://github.com/bexis/Module_LUI',\n", - " 'https://github.com/SSW-DataLab/randomizer',\n", - " 'https://github.com/RPGroup-PBoC/vdj_recombination',\n", - " 'https://github.com/carpyncho/carpyncho',\n", - " 'https://github.com/ubccr/xdmod',\n", - " 'https://github.com/DLR-RM/RAFCON',\n", - " 'https://github.com/Koushikphy/Interactive_Data_Editor',\n", - " 'https://github.com/cldf-clts/pyclts',\n", - " 'https://github.com/suryabaiarava/liferay-examples',\n", - " 'https://github.com/TBroTeam/TBro',\n", - " 'https://github.com/mattbit/active-network-er',\n", - " 'https://github.com/epiviz/Metaviz',\n", - " 'https://github.com/gwu-libraries/sfm-ui',\n", - " 'https://github.com/biocaddie/WG3-MetadataSpecifications',\n", - " 'https://github.com/4DNucleome/PartSeg',\n", - " 'https://github.com/priestoferis/animal-behaviour-analysis-2020',\n", - " 'https://github.com/BeckResearchLab/USP-inhibition',\n", - " 'https://github.com/fvalka/atc-reinforcement-learning',\n", - " 'https://github.com/bdw/GridKit',\n", - " 'https://github.com/ahamilton144/hamilton-2020-managing-financial-risk-tradeoffs-for-hydropower',\n", - " 'https://github.com/juliolugo96/ula-lang',\n", - " 'https://github.com/ctsit/qipr_approver',\n", - " 'https://github.com/Caltech-IPAC/Montage',\n", - " 'https://github.com/jiemakel/aether',\n", - " 'https://github.com/epiviz/epiviz',\n", - " 'https://github.com/academic/thesaurus-manager',\n", - " 'https://github.com/Fu-PusH/statement-finder',\n", - " 'https://github.com/DPBayes/DP-cross-silo-federated-learning',\n", - " 'https://github.com/tripal/tripal_galaxy',\n", - " 'https://github.com/hipster-philology/protogenie',\n", - " 'https://github.com/CLARIAH/grlc',\n", - " 'https://github.com/iimog/wikidata-game-flower-color',\n", - " 'https://github.com/automatedskip/homerent.io',\n", - " 'https://github.com/howardyclo/grammar-pattern',\n", - " 'https://github.com/aplowman/first-principles-zr-grain-boundaries',\n", - " 'https://github.com/dlozeve/tda-networks',\n", - " 'https://github.com/chrisma/ScrumLint',\n", - " 'https://github.com/jloveric/high-order-layers',\n", - " 'https://github.com/carnisj/bcdi',\n", - " 'https://github.com/felicitia/TestAnalyzer',\n", - " 'https://github.com/sshilpika/error-log-analysis',\n", - " 'https://github.com/NatLibFi/Skosmos',\n", - " 'https://github.com/jcchiba/GANSta',\n", - " 'https://github.com/chembience/chembience',\n", - " 'https://github.com/SandstoneHPC/sandstone-ide',\n", - " 'https://github.com/Colectica/curation',\n", - " 'https://github.com/huggingface/transformers',\n", - " 'https://github.com/vsoch/askci',\n", - " 'https://github.com/boutiques/boutiques',\n", - " 'https://github.com/laplizard/infoplot',\n", - " 'https://github.com/comic/grand-challenge.org',\n", - " 'https://github.com/amcpherson/remixt',\n", - " 'https://github.com/AVAuco/ssd_head_keras',\n", - " 'https://github.com/coderdj/emo',\n", - " 'https://github.com/faroit/CountNet',\n", - " 'https://github.com/greenape/mknotebooks',\n", - " 'https://github.com/bbglab/muts-needle-plot',\n", - " 'https://github.com/pylayers/pylayers',\n", - " 'https://github.com/Aletechdev/ava',\n", - " 'https://github.com/KWB-R/fakin',\n", - " 'https://github.com/afilipanog/afilipanog.github.io',\n", - " 'https://github.com/pear2/Net_Transmitter',\n", - " 'https://github.com/django-salesforce/django-salesforce',\n", - " 'https://github.com/jellis18/PAL2',\n", - " 'https://github.com/fnl/medic',\n", - " 'https://github.com/neglectos/dockerhub_analysis',\n", - " 'https://github.com/academic/vipa',\n", - " 'https://github.com/mikahama/akusanat',\n", - " 'https://github.com/laderast/ready_for_r_site',\n", - " 'https://github.com/BrennerG/DS1',\n", - " 'https://github.com/gvoysey/corti',\n", - " 'https://github.com/julemai/EEE-DA',\n", - " 'https://github.com/streamreasoning/rsplib',\n", - " 'https://github.com/NLeSC/docker-couch-admin',\n", - " 'https://github.com/cs-education/sysbuild',\n", - " 'https://github.com/mikel-egana-aranguren/SADI-Galaxy-Docker',\n", - " 'https://github.com/acdh-oeaw/apis-core',\n", - " 'https://github.com/peterpeterp/atlantic_ace_seasonal_forecast',\n", - " 'https://github.com/bihealth/sodar_core',\n", - " 'https://github.com/quicklizard99/cheddar',\n", - " 'https://github.com/passaH2O/GeoFlood',\n", - " 'https://github.com/horizon-institute/artmaps-azure',\n", - " 'https://github.com/theosysbio/gene-expression-models',\n", - " 'https://github.com/Amber-MD/pytraj',\n", - " 'https://github.com/starschema/COVID-19-data',\n", - " 'https://github.com/spacetx/starfish',\n", - " 'https://github.com/dapperstats/salvage',\n", - " 'https://github.com/TonyKaravasilev/CryptoManana',\n", - " 'https://github.com/TiKeil/perturbations-for-2d-data',\n", - " 'https://github.com/SysBioChalmers/yeast-GEM',\n", - " 'https://github.com/FNNDSC/ChRIS_ultron_backEnd',\n", - " 'https://github.com/sealuzh/cd-linter-artifacts',\n", - " 'https://github.com/BenediktKleppmann/TreeOfKnowledge',\n", - " 'https://github.com/AndrewIOM/global-pollen-project',\n", - " 'https://github.com/caltechlibrary/eprints2bags',\n", - " 'https://github.com/SuLab/Wikidata-phenomizer',\n", - " 'https://github.com/pear2/Net_RouterOS',\n", - " 'https://github.com/JULIELab/MEmoLon',\n", - " 'https://github.com/sand-ci/TRACe-ExploRer-TRACER',\n", - " 'https://github.com/ivco19/epyRba',\n", - " 'https://github.com/GMOD/Apollo',\n", - " 'https://github.com/DigitalPreservationTuWien2017/dp-task3',\n", - " 'https://github.com/ebmdatalab/fdaaa_trends',\n", - " 'https://github.com/rasmuse/subnational-p-budgets',\n", - " 'https://github.com/dams-mcda/Dams-MCDA',\n", - " 'https://github.com/juy/setting',\n", - " 'https://github.com/simetenn/uncertainpy',\n", - " 'https://github.com/holoviz/panel',\n", - " 'https://github.com/randlab/geocv',\n", - " 'https://github.com/gossi/docblock',\n", - " 'https://github.com/glottolog/pyglottolog',\n", - " 'https://github.com/par12005/TPPS',\n", - " 'https://github.com/Met4FoF/Code',\n", - " 'https://github.com/toniher/mediawiki-BioDB',\n", - " 'https://github.com/villevaara/dhum-topic-gutfin',\n", - " 'https://github.com/philip-mach/herd-immunity',\n", - " 'https://github.com/fphammerle/freesurfer-volume-reader',\n", - " 'https://github.com/collaborative-open-plant-omics/COPO',\n", - " 'https://github.com/cylc/cylc-flow',\n", - " 'https://github.com/genenetwork/genenetwork2',\n", - " 'https://github.com/moschlar/SAUCE',\n", - " 'https://github.com/tripal/tripal',\n", - " 'https://github.com/qutech/qupulse',\n", - " 'https://github.com/filips123/ConfigWriter',\n", - " 'https://github.com/karkirowle/oral_cancer_analysis',\n", - " 'https://github.com/jupyter/nbgrader',\n", - " 'https://github.com/casmlab/twitter_user_collector',\n", - " 'https://github.com/QCoDeS/Qcodes',\n", - " 'https://github.com/neurodata/ndstore',\n", - " 'https://github.com/Social-Evolution-and-Behavior/anTraX',\n", - " 'https://github.com/VIDA-NYU/reproserver',\n", - " 'https://github.com/TeamRegio/EpiRegioDB',\n", - " 'https://github.com/Aetf/tf_benchmarks',\n", - " 'https://github.com/INVEST-flagship/Randomized-picture-rating-tool-for-surveys',\n", - " 'https://github.com/havok2063/boolean_parser',\n", - " 'https://github.com/NYUCCL/psiTurk',\n", - " 'https://github.com/CambridgeSemiticsLab/BH_time_collocations',\n", - " 'https://github.com/lanecodes/cymod',\n", - " 'https://github.com/jongablop/MinervaLab',\n", - " 'https://github.com/clld/concepticon',\n", - " 'https://github.com/FNNDSC/ChRIS_store',\n", - " 'https://github.com/clld/csd',\n", - " 'https://github.com/colbyj/bride-of-frankensystem',\n", - " 'https://github.com/acdh-oeaw/4dpuzzle',\n", - " 'https://github.com/arman2/equal_public',\n", - " 'https://github.com/RDFLib/pymicrodata',\n", - " 'https://github.com/blokhin/genealogical-trees',\n", - " 'https://github.com/HBLL-Collection-Development/omeka-s-any-cloud',\n", - " 'https://github.com/dgnest/foottrial',\n", - " 'https://github.com/cheeseywhiz/cheeseywhiz',\n", - " 'https://github.com/mmalekzadeh/privacy-preserving-bandits',\n", - " 'https://github.com/TrapperTeam/Trapper',\n", - " 'https://github.com/MatthijsKaminski/AnalyzeTool',\n", - " 'https://github.com/stoqs/stoqs',\n", - " 'https://github.com/WIPACrepo/iceprod',\n", - " 'https://github.com/metomi/rose',\n", - " 'https://github.com/msmbuilder/msmbuilder',\n", - " 'https://github.com/jhrmnn/pyberny',\n", - " 'https://github.com/scharom16/evolutionary-nas-with-performance-estimation',\n", - " 'https://github.com/NESCent/dplace',\n", - " 'https://github.com/vpasumarthi/PyCD',\n", - " 'https://github.com/concepticon/pynorare',\n", - " 'https://github.com/kuechenrole/antarctic_melting'],\n", - " 1: ['https://github.com/JiaxiangBU/dynamic_topic_modeling',\n", - " 'https://github.com/vboyce/Maze',\n", - " 'https://github.com/NBISweden/workshop_omics_integration',\n", - " 'https://github.com/pyhf/neos',\n", - " 'https://github.com/intelaligent/tctb',\n", - " 'https://github.com/kantale/MutationInfo',\n", - " 'https://github.com/zih-a35/trinityvm',\n", - " 'https://github.com/MRChemSoft/mrchem',\n", - " 'https://github.com/vsoch/gridtest',\n", - " 'https://github.com/pitmonticone/Torino-Lione',\n", - " 'https://github.com/oblassers/dmap-mockups',\n", - " 'https://github.com/PhenixCollaboration/web',\n", - " 'https://github.com/terraref/terraref.github.io',\n", - " 'https://github.com/CellMigStandOrg/Tracks',\n", - " 'https://github.com/lerkoah/ComplexBehaviorDetector',\n", - " 'https://github.com/parsa-epfl/qflex',\n", - " 'https://github.com/JolleJolles/pirecorder',\n", - " 'https://github.com/sabgaby/sabgaby',\n", - " 'https://github.com/ctsit/redcap_external_module_development_guide',\n", - " 'https://github.com/feelpp/feelpp',\n", - " 'https://github.com/reflectivity/reflectivity.github.io',\n", - " 'https://github.com/UWDIRECT/UWDIRECT.github.io',\n", - " 'https://github.com/zeeguu-ecosystem/Zeeguu-API',\n", - " 'https://github.com/tigefa4u/tigefa4u.github.io',\n", - " 'https://github.com/amlalejini/ALife-2020--SignalGP-Genetic-Regulation',\n", - " 'https://github.com/FitzwilliamMuseum/ahrc-linking-islands',\n", - " 'https://github.com/hugomilan/tlmbht',\n", - " 'https://github.com/HelioML/HelioML',\n", - " 'https://github.com/kbroman/AdvData',\n", - " 'https://github.com/underworldcode/underworld2',\n", - " 'https://github.com/hdcaicyt/La-Argentina-Manuscrita',\n", - " 'https://github.com/TuringLang/Turing.jl',\n", - " 'https://github.com/gchure/phd',\n", - " 'https://github.com/AAROC/CODE-RADE',\n", - " 'https://github.com/PCMDI/cmor3_documentation',\n", - " 'https://github.com/gge-ucd/wRangling-Ecology',\n", - " 'https://github.com/feelpp/toolbox',\n", - " 'https://github.com/dyskurs/bel.esperanto',\n", - " 'https://github.com/mattam82/Coq-Equations',\n", - " 'https://github.com/MRChemSoft/mrcpp',\n", - " 'https://github.com/AAROC/hackfest-site',\n", - " 'https://github.com/sagemathinc/cocalc_tutorial',\n", - " 'https://github.com/dhimmel/gene-ontology',\n", - " 'https://github.com/HexaPlant/pixeldragon',\n", - " 'https://github.com/pythoninchemistry/intro_python_chemists',\n", - " 'https://github.com/mastrogeppetto/OCCI4IOT',\n", - " 'https://github.com/astrojs/fitsjs',\n", - " 'https://github.com/juoceano/lecture_figures'],\n", - " 8: ['https://github.com/aalzubidy/ssrt',\n", - " 'https://github.com/SommerEngineering/NoiseEngine',\n", - " 'https://github.com/PhiliPdB/treedepth-exact',\n", - " 'https://github.com/RobotExMachina/Machina.NET',\n", - " 'https://github.com/hshsl-training/outreach-toolkit',\n", - " 'https://github.com/Colectica/ddiregistry',\n", - " 'https://github.com/SommerEngineering/Encrypter',\n", - " 'https://github.com/SommerEngineering/Ed25519',\n", - " 'https://github.com/holoviz/geoviews',\n", - " 'https://github.com/holoviz/colorcet',\n", - " 'https://github.com/mpostol/TP',\n", - " 'https://github.com/fmannhardt/pddp',\n", - " 'https://github.com/explosion/spaCy',\n", - " 'https://github.com/austindrenski/AD.PartialEquilibriumApi',\n", - " 'https://github.com/speckleworks/SpeckleRhino',\n", - " 'https://github.com/eeditiones/shakespeare',\n", - " 'https://github.com/ApirsAL/GeoReVi',\n", - " 'https://github.com/CCMi-FIT/ontouml-csharp-utils',\n", - " 'https://github.com/WormieCorp/Localization.AspNetCore.TagHelpers',\n", - " 'https://github.com/lacinoire/chunk-retrieval-replication',\n", - " 'https://github.com/speckleworks/SpeckleCore',\n", - " 'https://github.com/CESEL/RelationalGit',\n", - " 'https://github.com/MrShoenel/git-density',\n", - " 'https://github.com/ph463/Gygax',\n", - " 'https://github.com/liminoid/liminoid',\n", - " 'https://github.com/xBimTeam/XbimEssentials',\n", - " 'https://github.com/fo-am/mongoose-2000'],\n", - " 0: ['https://github.com/ctsit/redi-dropper-client',\n", - " 'https://github.com/CentreForCorpusResearch/clic',\n", - " 'https://github.com/SotosTsepe/invenio-madmp']}" - ] - }, - "execution_count": 65, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "topic_dict" - ] - }, - { - "cell_type": "code", - "execution_count": 55, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "# Visualize the topics\n", - "pyLDAvis.enable_notebook()\n", - "vis = pyLDAvis.gensim.prepare(lda_model, corpus, id2word)\n", - "pyLDAvis.save_html(vis, 'lda.html')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Knowledge_Graph", - "language": "python", - "name": "knowledge_graph" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.6.10" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/cluster_analysis/GMM.ipynb b/cluster_analysis/GMM.ipynb deleted file mode 100644 index 7fec515..0000000 --- a/cluster_analysis/GMM.ipynb +++ /dev/null @@ -1,6 +0,0 @@ -{ - "cells": [], - "metadata": {}, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/cluster_analysis/Kmeans.ipynb b/cluster_analysis/Kmeans.ipynb deleted file mode 100644 index 15a4f3a..0000000 --- a/cluster_analysis/Kmeans.ipynb +++ /dev/null @@ -1,3364 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 71, - "metadata": {}, - "outputs": [], - "source": [ - "import json\n", - "import numpy\n", - "import re\n", - "import os\n", - "import numpy as np\n", - "import gensim\n", - "from sklearn.cluster import KMeans\n", - "from sklearn.mixture import GaussianMixture\n", - "from sklearn.decomposition import PCA\n", - "from gensim.models import Doc2Vec" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Load data" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "repos nums: 3012\n", - "repos which have no dependency files: 0\n", - "repos with dependency files: 3012\n", - "Distinct dependency file: 15663\n", - "\n" - ] - } - ], - "source": [ - "input_file ='../data/result_13k.json'\n", - "with open(input_file) as f:\n", - " data = json.load(f)\n", - "print(f'repos nums: {len(data)}')\n", - "\n", - "need_to_remove = []\n", - "for k,v in data.items():\n", - " if 'No dependency' in v:\n", - " need_to_remove.append(k)\n", - "print(f'repos which have no dependency files: {len(need_to_remove)}')\n", - "\n", - "for k in need_to_remove:\n", - " del data[k]\n", - "print(f'repos with dependency files: {len(data)}')\n", - "\n", - "\n", - "rep_list,dep_list = [],[]\n", - "for k,v in data.items():\n", - " rep_list.append(k)\n", - " dep_list.append(v)\n", - " \n", - "dep_dict = {}\n", - "for deps in data.values():\n", - " for i in deps:\n", - " dep_dict[i] = dep_dict.get(i,0)+1\n", - "\n", - "print(f'Distinct dependency file: {len(dep_dict)}',end='\\n\\n')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Doc Embedding" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Number of repos processed: 3012\n" - ] - } - ], - "source": [ - "LabeledSentence1 = gensim.models.doc2vec.TaggedDocument\n", - "all_content_train = []\n", - "j=0\n", - "for em in dep_list:\n", - " all_content_train.append(LabeledSentence1(em,[j]))\n", - " j+=1\n", - "print('Number of repos processed: ', j)" - ] - }, - { - "cell_type": "code", - "execution_count": 33, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "array([-1.79964565e-02, 5.03193913e-03, -4.53790883e-04, 1.87546611e-02,\n", - " -1.51073653e-02, 5.29240351e-03, 4.48650261e-03, 2.58057825e-02,\n", - " 1.13107834e-03, -6.38980325e-03, -2.79571372e-03, 1.99952032e-02,\n", - " 2.62658205e-03, 4.76064906e-03, 4.58404562e-03, -6.07662369e-05,\n", - " 7.02446140e-03, 1.98998954e-02, -7.28431018e-03, 4.22686432e-03,\n", - " -3.28802108e-03, -5.35103725e-03, -1.46459450e-03, -1.33908615e-02,\n", - " 9.41152778e-03, -1.32978503e-02, -1.54262818e-02, 1.49892247e-03,\n", - " 1.08978124e-02, 3.06003058e-04, 4.98316530e-03, -1.23409079e-02,\n", - " 5.65102883e-03, 1.30524095e-02, -2.92868516e-03, -2.43495330e-02,\n", - " -1.46494880e-02, 5.42605668e-03, 1.13541055e-02, 3.10646929e-03,\n", - " 1.02343801e-02, 2.79982705e-02, 1.71133429e-02, 2.76963832e-03,\n", - " 9.40721016e-03, 2.69042440e-02, 3.44380252e-02, -1.19685614e-02,\n", - " -1.41980303e-02, -1.27371140e-02, -7.06279231e-03, -1.67051274e-02,\n", - " -1.11815361e-02, -7.37955701e-03, 1.06698144e-02, -1.98916495e-02,\n", - " -1.35318208e-02, 2.11087931e-02, -1.79498065e-02, 1.34847313e-02,\n", - " -7.40242749e-03, -4.47431859e-03, 1.05381040e-02, 6.78020669e-03,\n", - " -9.58329812e-03, 2.57188529e-02, -1.18612126e-02, 1.45738041e-02,\n", - " -3.96466441e-03, -2.96894014e-02, 2.30677822e-03, -1.24809258e-02,\n", - " 1.82314706e-03, 5.71827218e-03, -1.40258102e-02, -5.93418535e-03,\n", - " 1.42936194e-02, -1.65388435e-02, 1.34064974e-02, -1.80029515e-02,\n", - " -1.80230923e-02, 3.20543945e-02, 1.64449271e-02, -8.18505976e-03,\n", - " 1.30124204e-02, -1.04016028e-02, -1.44007578e-02, 1.54137146e-02,\n", - " 1.80506823e-03, -9.40799061e-03, 1.07408816e-03, -6.09645015e-03,\n", - " 7.13870442e-03, -2.35023797e-02, 4.53795074e-04, -4.70930059e-03,\n", - " 5.41525427e-03, 1.04896231e-02, 7.22275302e-03, -1.68804172e-02],\n", - " dtype=float32)" - ] - }, - "execution_count": 33, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "d2v_model = Doc2Vec(all_content_train, \n", - " size = 100, \n", - " window = 10, \n", - " min_count = 1, \n", - " workers=7, \n", - " dm = 1,\n", - " alpha=0.025, \n", - " min_alpha=0.001)\n", - "d2v_model.train(all_content_train, \n", - " total_examples=d2v_model.corpus_count, \n", - " epochs=10, \n", - " start_alpha=0.002, \n", - " end_alpha=-0.016)\n", - "\n", - "d2v_model[0]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Clustering - Kmeans" - ] - }, - { - "cell_type": "code", - "execution_count": 47, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/opt/anaconda3/envs/Knowledge_Graph/lib/python3.6/site-packages/ipykernel_launcher.py:2: DeprecationWarning: Call to deprecated `doctag_syn0` (Attribute will be removed in 4.0.0, use docvecs.vectors_docs instead).\n", - " \n" - ] - } - ], - "source": [ - "kmeans_model = KMeans(n_clusters=10, init='k-means++', max_iter=500) \n", - "X = kmeans_model.fit(d2v_model.docvecs.doctag_syn0)\n", - "labels=kmeans_model.labels_" - ] - }, - { - "cell_type": "code", - "execution_count": 53, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0 ---> https://github.com/AgriculturalModelExchangeInitiative/Crop2ML\n", - "0 ---> https://github.com/natcap/natgeo-dams\n", - "0 ---> https://github.com/hlgirard/CrystalML\n", - "0 ---> https://github.com/houghb/ligpy\n", - "0 ---> https://github.com/oschwengers/referenceseeker\n", - "0 ---> https://github.com/LPDI-EPFL/trivalent_cocktail\n", - "0 ---> https://github.com/CIRA-Pulsars-and-Transients-Group/vcstools\n", - "5 ---> https://github.com/usc-isi-i2/kgtk\n", - "0 ---> https://github.com/garciagenrique/template_project_escape\n", - "9 ---> https://github.com/gwu-libraries/sfm-docker\n", - "5 ---> https://github.com/javaparser/javaparser\n", - "0 ---> https://github.com/williamjameshandley/anesthetic\n", - "0 ---> https://github.com/yardencsGitHub/tweetynet\n", - "0 ---> https://github.com/jagalindo/A-Python-QX-implementation\n", - "0 ---> https://github.com/jbkinney/mavenn\n", - "9 ---> https://github.com/GeoCode-polymtl/Seis_float16\n", - "0 ---> https://github.com/sebp/scikit-survival\n", - "0 ---> https://github.com/similitude/sumo-simmer\n", - "5 ---> https://github.com/GlobalNamesArchitecture/gnresolver\n", - "9 ---> https://github.com/nevenjovanovic/treebank-polybius\n", - "0 ---> https://github.com/Biophotonics-COMI/flimview\n", - "0 ---> https://github.com/joshspeagle/brutus\n", - "5 ---> https://github.com/metomi/isodatetime\n", - "0 ---> https://github.com/indralab/pybiopax\n", - "6 ---> https://github.com/FNNDSC/ChRIS_ui\n", - "5 ---> https://github.com/openphacts/explorer2\n", - "0 ---> https://github.com/TDAmeritrade/stumpy\n", - "0 ---> https://github.com/habi/acinar-analysis\n", - "0 ---> https://github.com/mbernste/hypothesis-driven-SRA-queries\n", - "3 ---> https://github.com/JiaxiangBU/dynamic_topic_modeling\n", - "9 ---> https://github.com/KnowledgeCaptureAndDiscovery/OBA_sparql\n", - "0 ---> https://github.com/maxscheurer/cppe\n", - "0 ---> https://github.com/Sung-Huan/ANNOgesic\n", - "5 ---> https://github.com/mayconbordin/storm-applications\n", - "0 ---> https://github.com/gauteh/ibcao_py\n", - "0 ---> https://github.com/GLAM-Workbench/te-papa-api\n", - "5 ---> https://github.com/cerebis/shap\n", - "3 ---> https://github.com/K3D-tools/K3D-jupyter\n", - "9 ---> https://github.com/CCMi-FIT/ontouml-code-generator\n", - "9 ---> https://github.com/diging/tethne\n", - "0 ---> https://github.com/mmhs013/pyHomogeneity\n", - "0 ---> https://github.com/bukhsh/oats\n", - "0 ---> https://github.com/mukil/pmic\n", - "0 ---> https://github.com/pySTEPS/pysteps\n", - "0 ---> https://github.com/groupeLIAMG/ttcr\n", - "0 ---> https://github.com/oujago/NumpyDL\n", - "6 ---> https://github.com/xldrkp/zocurelia\n", - "5 ---> https://github.com/encompasslabs/encompass-aquiferium\n", - "0 ---> https://github.com/deniederhut/niacin\n", - "0 ---> https://github.com/ZurichNLP/xstance\n", - "0 ---> https://github.com/raotnameh/End-to-end-E2E-Named-Entity-Recognition-from-English-Speech\n", - "0 ---> https://github.com/clincolnoz/maDMP-rocrates-maDMP\n", - "0 ---> https://github.com/thorstenwagner/ij-trajectory-classifier\n", - "0 ---> https://github.com/danielrd6/ifscube\n", - "0 ---> https://github.com/esteinig/sketchy\n", - "9 ---> https://github.com/opium-sh/prl\n", - "9 ---> https://github.com/maikherbig/AIDeveloper\n", - "0 ---> https://github.com/LFPy/LFPy\n", - "0 ---> https://github.com/aalzubidy/ssrt\n", - "0 ---> https://github.com/1QB-Information-Technologies/COOL\n", - "0 ---> https://github.com/morpheus-project/morpheus\n", - "0 ---> https://github.com/firedrakeproject/firedrake\n", - "0 ---> https://github.com/leal26/AeroPy\n", - "9 ---> https://github.com/arose/nglview\n", - "0 ---> https://github.com/jpgill86/neurotic\n", - "5 ---> https://github.com/MegaAttitude/frequency-acceptability-selection\n", - "0 ---> https://github.com/bertrandcz/CrocO_toolbox\n", - "9 ---> https://github.com/andsor/gridjug\n", - "0 ---> https://github.com/stfxecutables/empyricalRMT\n", - "9 ---> https://github.com/wmayner/pyphi\n", - "7 ---> https://github.com/isle-project/isle-editor\n", - "6 ---> https://github.com/cytoscape/cytoscape.js\n", - "9 ---> https://github.com/dejac001/MCFlow\n", - "9 ---> https://github.com/dragoon/kilogram\n", - "9 ---> https://github.com/pysal/spaghetti\n", - "0 ---> https://github.com/brisskit-uol/i2b2-install-procedures\n", - "0 ---> https://github.com/bast/runtest\n", - "9 ---> https://github.com/VarIr/scikit-hubness\n", - "9 ---> https://github.com/qbicsoftware/omero-client-portlet\n", - "5 ---> https://github.com/jyrkioraskari/IFCtoLBD_OpenAPI\n", - "0 ---> https://github.com/wright-group/WrightTools\n", - "9 ---> https://github.com/CamDavidsonPilon/lifelines\n", - "0 ---> https://github.com/tpall/pynodo\n", - "0 ---> https://github.com/rmkoesterer/uga\n", - "0 ---> https://github.com/proycon/clam\n", - "0 ---> https://github.com/GoekeLab/xpore\n", - "9 ---> https://github.com/ml-evs/matador\n", - "0 ---> https://github.com/stefsmeets/instamatic\n", - "0 ---> https://github.com/danxhuber/isoclassify\n", - "0 ---> https://github.com/proycon/colibri-core\n", - "6 ---> https://github.com/Yi-ran/Omnetpp\n", - "0 ---> https://github.com/alielhassouni/rl-multi-agent-simulation-for-e-health\n", - "5 ---> https://github.com/PTB-PSt1/time-series-metadata\n", - "0 ---> https://github.com/amueller/patsylearn\n", - "3 ---> https://github.com/globalbioticinteractions/globalbioticinteractions\n", - "3 ---> https://github.com/jiemakel/snapper\n", - "6 ---> https://github.com/digitallinguistics/scription2dlx\n", - "0 ---> https://github.com/lacava/few\n", - "0 ---> https://github.com/mheikenfeld/ramscube\n", - "0 ---> https://github.com/python-pillow/Pillow\n", - "0 ---> https://github.com/Silmathoron/NNGT\n", - "1 ---> https://github.com/RubenVerborgh/WebFundamentals\n", - "0 ---> https://github.com/ariercole/Cambridge_COVID-19_ICU\n", - "0 ---> https://github.com/JDRomano2/smdb_search\n", - "0 ---> https://github.com/matthiasweiss/dsue1-2020s\n", - "0 ---> https://github.com/jenojp/negspacy\n", - "0 ---> https://github.com/MartinPdS/OCT_calibration\n", - "0 ---> https://github.com/cmsopendata-finland/kurssimateriaali\n", - "5 ---> https://github.com/africanmathsinitiative/R-Instat\n", - "0 ---> https://github.com/SDM-TIB/SDM-RDFizer\n", - "0 ---> https://github.com/HERA-Team/librarian\n", - "9 ---> https://github.com/tkralphs/CuPPy\n", - "0 ---> https://github.com/r9y9/pylibfreenect2\n", - "6 ---> https://github.com/dmj/PicaRecord\n", - "9 ---> https://github.com/smartbugs/smartbugs\n", - "0 ---> https://github.com/Andros-Spica/EAA2018_ceramics\n", - "0 ---> https://github.com/arm61/uravu\n", - "9 ---> https://github.com/casmlab/facebook_group_collector\n", - "3 ---> https://github.com/vboyce/Maze\n", - "0 ---> https://github.com/acoular/acoular\n", - "5 ---> https://github.com/smarie/python-autoclass\n", - "0 ---> https://github.com/underworldcode/UWGeodynamics\n", - "0 ---> https://github.com/clij/clij2\n", - "0 ---> https://github.com/sherbold/autorank\n", - "0 ---> https://github.com/saschneider/VMV\n", - "0 ---> https://github.com/CENER-EPR/OWAbench\n", - "0 ---> https://github.com/tempdata73/tic-tac-toe\n", - "1 ---> https://github.com/molbiodiv/biojs-io-biom\n", - "0 ---> https://github.com/olivettigroup/article-downloader\n", - "6 ---> https://github.com/leilaicruz/Experimental-journal-deploy\n", - "6 ---> https://github.com/ltrr-arizona-edu/tellervo\n", - "0 ---> https://github.com/egonw/jqudt\n", - "9 ---> https://github.com/catalyst-cooperative/pudl\n", - "0 ---> https://github.com/TUDelft-CITG/OpenTISim\n", - "0 ---> https://github.com/hipster-philology/nlp-pie-taggers\n", - "0 ---> https://github.com/martinlackner/abcvoting\n", - "0 ---> https://github.com/pv/fimport\n", - "0 ---> https://github.com/nextgenusfs/funannotate\n", - "0 ---> https://github.com/cmccoy/ighutil\n", - "0 ---> https://github.com/kylemede/ExoSOFT\n", - "0 ---> https://github.com/AOtools/aotools\n", - "0 ---> https://github.com/weecology/retriever\n", - "0 ---> https://github.com/mdolab/idwarp\n", - "0 ---> https://github.com/paberlo/FastFeatureSelection\n", - "0 ---> https://github.com/davidrpugh/pyAM\n", - "9 ---> https://github.com/wateraccounting/IHEWAcollect\n", - "0 ---> https://github.com/N3PDF/yadism\n", - "0 ---> https://github.com/JohannesBuchner/snowline\n", - "0 ---> https://github.com/pychebfun/pychebfun\n", - "0 ---> https://github.com/mmadsen/ctmixtures\n", - "0 ---> https://github.com/coin-or/GiMPy\n", - "0 ---> https://github.com/hibernator11/notebook-lod-libraries\n", - "0 ---> https://github.com/GlobalNamesArchitecture/gn_uuid\n", - "0 ---> https://github.com/muammar/heisenberg\n", - "0 ---> https://github.com/spex-xray/pyspextools\n", - "9 ---> https://github.com/csdms/pymt\n", - "0 ---> https://github.com/santiago1234/MZT-rna-stability\n", - "9 ---> https://github.com/sehero/lua\n", - "0 ---> https://github.com/sepandhaghighi/qpage\n", - "0 ---> https://github.com/qmlcode/qml\n", - "0 ---> https://github.com/dmyersturnbull/tyrannosaurus\n", - "5 ---> https://github.com/wild-fire/twitter-graph-segmenter\n", - "0 ---> https://github.com/alcantarar/dryft\n", - "9 ---> https://github.com/DaniloZZZ/Qensor\n", - "9 ---> https://github.com/jfsantos/mushra-ruby-server\n", - "0 ---> https://github.com/MaayanLab/Zika-RNAseq-Pipeline\n", - "0 ---> https://github.com/pyReef-model/RADWave\n", - "0 ---> https://github.com/src-d/kmcuda\n", - "0 ---> https://github.com/perrygeo/pyimpute\n", - "0 ---> https://github.com/toshas/torch-fidelity\n", - "0 ---> https://github.com/intermine/intermine\n", - "0 ---> https://github.com/SasView/sasview\n", - "0 ---> https://github.com/SommerEngineering/NoiseEngine\n", - "6 ---> https://github.com/mathjax/MathJax-src\n", - "5 ---> https://github.com/IFCA/keystone-voms\n", - "0 ---> https://github.com/zfit/zfit-physics\n", - "0 ---> https://github.com/abhi1693/yii2-system-info\n", - "0 ---> https://github.com/harmslab/pytc\n", - "0 ---> https://github.com/biosustain/pyrcos\n", - "0 ---> https://github.com/CNRGH/contatester\n", - "0 ---> https://github.com/pcko1/Deep-Drug-Coder\n", - "0 ---> https://github.com/gree-gorey/rusclasp\n", - "0 ---> https://github.com/chartes/deucalion-model-lasla\n", - "0 ---> https://github.com/zero323/developing-data-products-shiny\n", - "0 ---> https://github.com/etnbrd/flx-example\n", - "3 ---> https://github.com/dalmia/siren\n", - "9 ---> https://github.com/sanshu/protaeljs\n", - "0 ---> https://github.com/dev-cafe/autocmake\n", - "9 ---> https://github.com/whitemech/LTLf2DFA\n", - "0 ---> https://github.com/SanneHoeken/HEEM-Data-Extractions\n", - "0 ---> https://github.com/cayolopesbc/eco-data-toolkit\n", - "0 ---> https://github.com/fliem/cpr\n", - "0 ---> https://github.com/Capitains/Hook-Worker\n", - "0 ---> https://github.com/OSSOS/liborbfit\n", - "0 ---> https://github.com/r9y9/nnmnkwii\n", - "5 ---> https://github.com/rdmorganiser/rdmo\n", - "6 ---> https://github.com/karimamufidah/karimamufidah.github.io\n", - "0 ---> https://github.com/assafZaritskyLab/IRM-Spreading-Dynamics\n", - "0 ---> https://github.com/paudetseis/PlateCurie\n", - "0 ---> https://github.com/cyclops-community/tensorbackends\n", - "0 ---> https://github.com/astrofle/CRRLpy\n", - "0 ---> https://github.com/stanford-futuredata/Willump\n", - "3 ---> https://github.com/petebrew/fhaes\n", - "9 ---> https://github.com/tferr/hIPNAT\n", - "0 ---> https://github.com/cescalara/minieuso_cpu\n", - "9 ---> https://github.com/phiweger/zoo\n", - "0 ---> https://github.com/shenlab-sinai/region_analysis\n", - "0 ---> https://github.com/duncanmmacleod/requests-ecp\n", - "0 ---> https://github.com/biasmv/pv\n", - "0 ---> https://github.com/podondra/bt-spectraldl\n", - "0 ---> https://github.com/ubermag/micromagnetictests\n", - "0 ---> https://github.com/amunozj/magnetograph_2HMI_converter\n", - "0 ---> https://github.com/r9y9/pysptk\n", - "0 ---> https://github.com/michaelaye/venim\n", - "0 ---> https://github.com/justinnk/bss-simulation-study\n", - "6 ---> https://github.com/LDflex/LDflex\n", - "5 ---> https://github.com/FAST-HEP/fast-carpenter\n", - "0 ---> https://github.com/lpwgroup/torsiondrive\n", - "9 ---> https://github.com/CCS-Lab/easyml\n", - "0 ---> https://github.com/datajoint/datajoint-python\n", - "0 ---> https://github.com/hallamlab/mlLGPR\n", - "0 ---> https://github.com/cmbant/CosmoMC\n", - "9 ---> https://github.com/lukasValentin/OBIA4RTM\n", - "0 ---> https://github.com/bowsersenior/itu_codes\n", - "0 ---> https://github.com/loostrum/darc\n", - "9 ---> https://github.com/sdorkenw/MeshParty\n", - "0 ---> https://github.com/RadioAstronomySoftwareGroup/pyuvsim\n", - "7 ---> https://github.com/cggh/panoptes\n", - "9 ---> https://github.com/experimaestro/datamaestro\n", - "3 ---> https://github.com/ruby-rdf/rdf\n", - "0 ---> https://github.com/ARGOeu/argo-api-authn\n", - "0 ---> https://github.com/NBISweden/workshop_omics_integration\n", - "0 ---> https://github.com/PyThaiNLP/Thai-Text-Generator\n", - "0 ---> https://github.com/aditya95sriram/td-slim\n", - "0 ---> https://github.com/geoopt/geoopt\n", - "0 ---> https://github.com/jswoboda/ISRSpectrum\n", - "0 ---> https://github.com/jonschwenk/RivGraph\n", - "0 ---> https://github.com/thoppe/Encyclopedia-of-Finite-Graphs\n", - "0 ---> https://github.com/Ry-C123/LazyPSF\n", - "8 ---> https://github.com/bionode/bionode-sra\n", - "0 ---> https://github.com/tjof2/ctrwfractal\n", - "0 ---> https://github.com/MatthewBCooke/Pathfinder\n", - "9 ---> https://github.com/connectomicslab/connectomemapper3\n", - "0 ---> https://github.com/rpep/fmmgen\n", - "9 ---> https://github.com/bionode/bionode-bbi\n", - "0 ---> https://github.com/griffin-h/superphot\n", - "8 ---> https://github.com/neuroscout/neuroscout\n", - "0 ---> https://github.com/tsamsonov/generalize-dem\n", - "9 ---> https://github.com/comodide/CoModIDE\n", - "0 ---> https://github.com/cscully-allison/Materia\n", - "6 ---> https://github.com/dnet-team/dnet-basic-aggregator\n", - "0 ---> https://github.com/tschaume/ccsgp_get_started\n", - "0 ---> https://github.com/discos/discos-backend\n", - "0 ---> https://github.com/wmayner/pyemd\n", - "0 ---> https://github.com/drsteve/PyForecastTools\n", - "0 ---> https://github.com/nickk124/RCR\n", - "0 ---> https://github.com/rmsolgi/geneticalgorithm\n", - "0 ---> https://github.com/mmhs013/pyMannKendall\n", - "5 ---> https://github.com/fusion-jena/abecto\n", - "0 ---> https://github.com/TerrainBento/terrainbento\n", - "0 ---> https://github.com/mwaskom/seaborn\n", - "0 ---> https://github.com/florafauna/optimParallel-python\n", - "0 ---> https://github.com/pietrobarbiero/evofs\n", - "0 ---> https://github.com/IsaacCorley/pytorch-enhance\n", - "0 ---> https://github.com/ecell/ecell4\n", - "0 ---> https://github.com/mirnylab/bioframe\n", - "0 ---> https://github.com/dean0x7d/pybinding\n", - "0 ---> https://github.com/janmtl/pypsych\n", - "0 ---> https://github.com/lcharleux/abapy\n", - "3 ---> https://github.com/pyhf/neos\n", - "9 ---> https://github.com/CiTR/djland\n", - "0 ---> https://github.com/nuest/ten-simple-rules-dockerfiles\n", - "0 ---> https://github.com/OpenSourceEconomics/ruspy\n", - "3 ---> https://github.com/ameyaKetkar/TypeChangeMiner\n", - "0 ---> https://github.com/lingfeiwang/normalisr\n", - "0 ---> https://github.com/ShuhuaGao/geppy\n", - "0 ---> https://github.com/bgruening/galaxy_ie_helpers\n", - "0 ---> https://github.com/pyvideo/data\n", - "0 ---> https://github.com/azedarach/matrix-factorization-case-studies\n", - "0 ---> https://github.com/driplineorg/dripline-python\n", - "0 ---> https://github.com/LoLab-VU/Gleipnir\n", - "0 ---> https://github.com/uwmadison-chm/scorify\n", - "0 ---> https://github.com/NESCent/fcdb-api\n", - "0 ---> https://github.com/csu-hmc/GaitAnalysisToolKit\n", - "0 ---> https://github.com/bakery-cg2at/bakery\n", - "0 ---> https://github.com/radical-cybertools/radical.synapse\n", - "0 ---> https://github.com/MaineKuehn/usim\n", - "0 ---> https://github.com/ag-gipp/FormulaCloudData\n", - "0 ---> https://github.com/astrom-tom/dfitspy\n", - "0 ---> https://github.com/SP7-Ritmare/EDI-NG_client\n", - "1 ---> https://github.com/jona-sassenhagen/statfail\n", - "9 ---> https://github.com/spacetelescope/jwql\n", - "0 ---> https://github.com/ePSIC-DLS/ParticleSpy\n", - "0 ---> https://github.com/N3PDF/pineappl\n", - "9 ---> https://github.com/rinde/vanLon17-JAAMAS-code\n", - "0 ---> https://github.com/pitthsls/pycounter\n", - "0 ---> https://github.com/hippylib/hippylib\n", - "0 ---> https://github.com/felixriese/CNN-SoilTextureClassification\n", - "0 ---> https://github.com/IQuOD/wodpy\n", - "0 ---> https://github.com/ahendriksen/msd_pytorch\n", - "6 ---> https://github.com/tobysmith568/TestEnv\n", - "0 ---> https://github.com/lucasberent/ds\n", - "9 ---> https://github.com/sgoldenlab/simba\n", - "0 ---> https://github.com/jonathanmorgan/django_config\n", - "6 ---> https://github.com/IbrahimTanyalcin/RafX\n", - "0 ---> https://github.com/mdolab/adflow\n", - "9 ---> https://github.com/Phylu/csd\n", - "9 ---> https://github.com/ebmdatalab/trialstracker\n", - "3 ---> https://github.com/datapoet/hubminer\n", - "0 ---> https://github.com/midas-isg/PITT-SEIR-model\n", - "1 ---> https://github.com/zakandrewking/escher\n", - "9 ---> https://github.com/EMAPS/climaps-platform\n", - "0 ---> https://github.com/OpenChemistry/tomviz\n", - "0 ---> https://github.com/yeeking/evosynth\n", - "9 ---> https://github.com/rinde/vanLon16-EJOR-code\n", - "9 ---> https://github.com/biowdl/QC\n", - "3 ---> https://github.com/intelaligent/tctb\n", - "5 ---> https://github.com/rinde/RinLog\n", - "0 ---> https://github.com/sertansenturk/seyiranalyzer\n", - "0 ---> https://github.com/sertansenturk/alignednotemodel\n", - "0 ---> https://github.com/miklos1/dijitso\n", - "0 ---> https://github.com/smart-facility/cognicity-reports-twitter\n", - "8 ---> https://github.com/speckleworks/SpeckleServer\n", - "0 ---> https://github.com/schwemro/diag-eff\n", - "3 ---> https://github.com/jacobwindsor/MetabMaster\n", - "0 ---> https://github.com/NLeSC/mcfly\n", - "9 ---> https://github.com/hahnec/plenopticam\n", - "9 ---> https://github.com/ICB-DCM/AMICI\n", - "0 ---> https://github.com/kundajelab/abstention\n", - "5 ---> https://github.com/qPRC/qPRC\n", - "8 ---> https://github.com/ecds/readux\n", - "5 ---> https://github.com/cemac/COMET_VolcDB\n", - "0 ---> https://github.com/transientlunatic/otter\n", - "9 ---> https://github.com/dftlibs/xcfun\n", - "9 ---> https://github.com/IKNL/vantage6\n", - "9 ---> https://github.com/PhiliPdB/treedepth-exact\n", - "0 ---> https://github.com/deniederhut/weather_report\n", - "9 ---> https://github.com/biowdl/structural-variantcalling\n", - "0 ---> https://github.com/kikuchipy/kikuchipy\n", - "0 ---> https://github.com/LispTO/llthw\n", - "6 ---> https://github.com/cfe-lab/Kive\n", - "0 ---> https://github.com/gpauloski/kfac_pytorch\n", - "5 ---> https://github.com/materialsproject/pymatgen\n", - "0 ---> https://github.com/douglasdavis/pygram11\n", - "0 ---> https://github.com/jrkerns/pylinac\n", - "0 ---> https://github.com/dvasilen/Hive-XML-SerDe\n", - "3 ---> https://github.com/rubenarslan/formr.org\n", - "0 ---> https://github.com/yannforget/pylandsat\n", - "9 ---> https://github.com/gousiosg/pullreqs\n", - "9 ---> https://github.com/kantale/MutationInfo\n", - "0 ---> https://github.com/kdberends/coral\n", - "0 ---> https://github.com/llondon6/positive\n", - "0 ---> https://github.com/josecastillolema/mini-nfv\n", - "9 ---> https://github.com/driehle/emobility-search-engine\n", - "0 ---> https://github.com/LiyrAstroph/CDNest\n", - "9 ---> https://github.com/pysal/giddy\n", - "0 ---> https://github.com/LeeBergstrand/BackBLAST_Reciprocal_BLAST\n", - "0 ---> https://github.com/JanaLasser/salt-polygons-are-caused-by-convection\n", - "0 ---> https://github.com/mediawiki-utilities/python-mwreverts\n", - "0 ---> https://github.com/rbnvrw/semtracking\n", - "0 ---> https://github.com/coin-or/GrUMPy\n", - "0 ---> https://github.com/nist-ionstorage/pdq2\n", - "0 ---> https://github.com/TLCFEM/suanPan\n", - "0 ---> https://github.com/dlilien/ImpDAR\n", - "0 ---> https://github.com/ihrke/pypillometry\n", - "0 ---> https://github.com/willpearse/stalkless\n", - "0 ---> https://github.com/mmhss/sstrong-webhook\n", - "0 ---> https://github.com/RobotExMachina/Machina.NET\n", - "3 ---> https://github.com/tripal/private_biodata\n", - "5 ---> https://github.com/brown-ccv/neuro-task-starter\n", - "0 ---> https://github.com/FractalMedia/wheresmunna\n", - "0 ---> https://github.com/vivekbhr/scRIApipe\n", - "0 ---> https://github.com/coin-or/pulp\n", - "0 ---> https://github.com/Titan-C/slaveparticles\n", - "9 ---> https://github.com/GlobalNamesArchitecture/gn_crossmap\n", - "9 ---> https://github.com/indigo-dc/DEEPaaS\n", - "5 ---> https://github.com/densitymodelling/dsmextra\n", - "5 ---> https://github.com/SandstoneHPC/sandstone-spawner\n", - "6 ---> https://github.com/ENCODE-DCC/atac-seq-pipeline\n", - "0 ---> https://github.com/pnuehrenberg/multiviewtracks\n", - "0 ---> https://github.com/cerndb/dist-keras\n", - "9 ---> https://github.com/CESNET/proxystatistics-simplesamlphp-module\n", - "0 ---> https://github.com/MatterMiners/cobald\n", - "9 ---> https://github.com/asherpasha/Araport_GeneSlider\n", - "0 ---> https://github.com/matthewfeickert/IRIS-HEP-2020-Poster-Session\n", - "0 ---> https://github.com/r4ecology/nctoolkit\n", - "0 ---> https://github.com/transientlunatic/heron\n", - "0 ---> https://github.com/capaulson/pyKriging\n", - "0 ---> https://github.com/VlachosGroup/jl_spectra_2_structure\n", - "9 ---> https://github.com/NCBI-Hackathons/Structural_Variant_Comparison\n", - "0 ---> https://github.com/wradlib/wradlib\n", - "0 ---> https://github.com/CICE-Consortium/CICE\n", - "0 ---> https://github.com/sherpa/sherpa\n", - "0 ---> https://github.com/toros-astro/astroalign\n", - "0 ---> https://github.com/bootphon/ABXpy\n", - "6 ---> https://github.com/HuckleyLab/phyto-mhw\n", - "0 ---> https://github.com/pdxgx/neoepiscope\n", - "0 ---> https://github.com/danforthcenter/plantcv\n", - "0 ---> https://github.com/jkitchin/pycse\n", - "0 ---> https://github.com/rraadd88/rohan\n", - "0 ---> https://github.com/compas-dev/compas_fea\n", - "0 ---> https://github.com/Remdeht/ia_detector\n", - "0 ---> https://github.com/justagist/panda_simulator\n", - "0 ---> https://github.com/stemtool/stemtool\n", - "0 ---> https://github.com/mkoeppe/sage-numerical-interactive-mip\n", - "0 ---> https://github.com/Nu-AI/Livid-About-COVID\n", - "0 ---> https://github.com/PyLorentz/PyLorentz\n", - "9 ---> https://github.com/firedrakeproject/loopy\n", - "0 ---> https://github.com/ctsit/dxster\n", - "9 ---> https://github.com/bodkan/archaic-ychr\n", - "0 ---> https://github.com/PhysicsOfMobility/ridesharing_topology_dependence\n", - "0 ---> https://github.com/SuperKam91/twentyoneflow\n", - "0 ---> https://github.com/gwpy/gwosc\n", - "0 ---> https://github.com/duartegroup/cgbind\n", - "0 ---> https://github.com/raphaelvallat/pingouin\n", - "0 ---> https://github.com/pnlbwh/dMRIharmonization\n", - "5 ---> https://github.com/choderalab/assaytools\n", - "0 ---> https://github.com/cryotools/cosipy\n", - "0 ---> https://github.com/N3PDF/vegasflow\n", - "0 ---> https://github.com/althonos/pronto\n", - "9 ---> https://github.com/nipy/nipype\n", - "0 ---> https://github.com/sgrieve/sinuosity\n", - "0 ---> https://github.com/boivinalex/permittivitycalc\n", - "9 ---> https://github.com/BlueBrain/NeuroR\n", - "0 ---> https://github.com/Curtin-Open-Knowledge-Initiative/institutional-oa-evaluation-2020\n", - "0 ---> https://github.com/dgasmith/opt_einsum\n", - "0 ---> https://github.com/knutankv/koma\n", - "0 ---> https://github.com/foerstner-lab/READemption\n", - "0 ---> https://github.com/matthiaskoenig/fbc_curation\n", - "1 ---> https://github.com/dmitriz/cpsfy\n", - "0 ---> https://github.com/sdey135/rtapylysis\n", - "0 ---> https://github.com/CICE-Consortium/Icepack\n", - "0 ---> https://github.com/Nikoleta-v3/blackbook\n", - "9 ---> https://github.com/daniel-dpk/distorted-motsfinder-public\n", - "0 ---> https://github.com/StevenGolovkine/FDApy\n", - "0 ---> https://github.com/Leinadj/CREAM\n", - "0 ---> https://github.com/wjlei1990/spaceweight\n", - "0 ---> https://github.com/genomematt/AmBiVErT\n", - "6 ---> https://github.com/InsightSoftwareConsortium/itk-js\n", - "0 ---> https://github.com/owlcollab/expression-materializing-reasoner\n", - "0 ---> https://github.com/PEtab-dev/PEtab\n", - "0 ---> https://github.com/ziatdinovmax/GPim\n", - "0 ---> https://github.com/gwappa/fitting2d\n", - "0 ---> https://github.com/aeonium/fakedatacite\n", - "0 ---> https://github.com/boolsi/boolsi\n", - "0 ---> https://github.com/TomMonks/forecast-tools\n", - "0 ---> https://github.com/biowdl/tasks\n", - "0 ---> https://github.com/holoviz/hvplot\n", - "0 ---> https://github.com/mathjax/MathJax\n", - "0 ---> https://github.com/gwu-libraries/sfm-utils\n", - "0 ---> https://github.com/ci-group/revolve\n", - "0 ---> https://github.com/matthiaskoenig/sbmlsim\n", - "0 ---> https://github.com/biobakery/phylophlan\n", - "1 ---> https://github.com/rodighiero/COVID-19\n", - "9 ---> https://github.com/qzhu2017/PyXtal\n", - "9 ---> https://github.com/pnlbwh/multi-shell-dMRIharmonization\n", - "0 ---> https://github.com/loostrum/arts_tools\n", - "0 ---> https://github.com/jboynyc/textnets\n", - "9 ---> https://github.com/python-adaptive/adaptive\n", - "0 ---> https://github.com/nfsi-canada/OBStools\n", - "5 ---> https://github.com/tikk3r/lofar-grid-hpccloud\n", - "3 ---> https://github.com/governit/GovernIT\n", - "0 ---> https://github.com/nestordemeure/tabularGP\n", - "0 ---> https://github.com/AstraZeneca-NGS/disambiguate\n", - "0 ---> https://github.com/dgilford/pyPI\n", - "0 ---> https://github.com/Jacob-yen/LEMON\n", - "9 ---> https://github.com/tasoc/photometry\n", - "9 ---> https://github.com/qbicsoftware/omero-client-lib\n", - "0 ---> https://github.com/ASaiM/group_humann2_uniref_abundances_to_GO\n", - "0 ---> https://github.com/natashabatalha/virga\n", - "3 ---> https://github.com/lightonphiri/etd_autoclassifier\n", - "3 ---> https://github.com/ncrncornell/ced2ar\n", - "5 ---> https://github.com/clij/clij\n", - "0 ---> https://github.com/castelao/oceansdb\n", - "0 ---> https://github.com/conorwalsh/doat\n", - "0 ---> https://github.com/lweasel/piquant\n", - "0 ---> https://github.com/marinang/SimProd\n", - "0 ---> https://github.com/ishahid/django-gdm\n", - "0 ---> https://github.com/darribas/gds16\n", - "0 ---> https://github.com/calliope-project/calliope\n", - "9 ---> https://github.com/rockt/SETH\n", - "0 ---> https://github.com/zih-a35/trinityvm\n", - "5 ---> https://github.com/MRChemSoft/mrchem\n", - "0 ---> https://github.com/ehthiede/EMUS\n", - "0 ---> https://github.com/caiostringari/pywavelearn\n", - "2 ---> https://github.com/GeriLife/wellbeing\n", - "0 ---> https://github.com/aboucaud/pypher\n", - "0 ---> https://github.com/niosh-mining/obsplus\n", - "9 ---> https://github.com/scienceai/neocortex\n", - "0 ---> https://github.com/MPAS-Dev/MPAS-Analysis\n", - "0 ---> https://github.com/ralna/ElementSchur\n", - "0 ---> https://github.com/bdestombe/flopymetascript\n", - "0 ---> https://github.com/scikit-hep/awkward-array\n", - "0 ---> https://github.com/jonathansick/padova\n", - "9 ---> https://github.com/gwpy/gwsumm\n", - "0 ---> https://github.com/saullocastro/panels\n", - "9 ---> https://github.com/EHadoux/aptimizer\n", - "9 ---> https://github.com/mchoji/wtg-seal\n", - "0 ---> https://github.com/apetros/pyeplan\n", - "0 ---> https://github.com/Molmed/checkQC\n", - "0 ---> https://github.com/similitude/netlogo-sample-simmer\n", - "0 ---> https://github.com/castelao/CoTeDe\n", - "0 ---> https://github.com/matt-graham/mici\n", - "0 ---> https://github.com/donia-lab/MetaBGC\n", - "0 ---> https://github.com/nschloe/accupy\n", - "9 ---> https://github.com/KitwareMedical/SlicerITKUltrasound\n", - "0 ---> https://github.com/scities/marble\n", - "0 ---> https://github.com/hshsl-training/outreach-toolkit\n", - "2 ---> https://github.com/hyperwell/gateway\n", - "0 ---> https://github.com/tjof2/pgure-svt\n", - "0 ---> https://github.com/dfm/python-fsps\n", - "9 ---> https://github.com/kevindoyle/geoscience-first-authorship\n", - "0 ---> https://github.com/amuslija/fbd-complexity-tool\n", - "0 ---> https://github.com/N3PDF/evolutionary_keras\n", - "0 ---> https://github.com/fabfab1/EnCAB\n", - "0 ---> https://github.com/muammar/ml4chem\n", - "0 ---> https://github.com/fepegar/unet\n", - "0 ---> https://github.com/rtidatascience/django-postgres-stats\n", - "0 ---> https://github.com/esm-tools/esm_tools\n", - "9 ---> https://github.com/cwi-swat/bacata\n", - "9 ---> https://github.com/Sentimentron/PRJ9081\n", - "0 ---> https://github.com/hema-ted/pyzfs\n", - "0 ---> https://github.com/vitkl/orthologsBioMART\n", - "0 ---> https://github.com/davidrpugh/pyCollocation\n", - "0 ---> https://github.com/sbaltes/dblp-retriever\n", - "0 ---> https://github.com/vsoch/gridtest\n", - "3 ---> https://github.com/meteoinfo/MeteoInfo\n", - "0 ---> https://github.com/tcompa/anneal\n", - "0 ---> https://github.com/pansism/downscale-satelliteLST\n", - "0 ---> https://github.com/pyspeckit/pyspeckit\n", - "9 ---> https://github.com/TAMU-CPT/PAUSE\n", - "0 ---> https://github.com/mosdef-hub/forcefield_perfluoroethers\n", - "9 ---> https://github.com/dimazest/fowler.corpora\n", - "6 ---> https://github.com/a-callahan/MechWolf_Pull\n", - "0 ---> https://github.com/sami2py/sami2py\n", - "0 ---> https://github.com/gwu-libraries/sfm-weibo-harvester\n", - "0 ---> https://github.com/sojamo/oscp5\n", - "0 ---> https://github.com/OllyButters/puma\n", - "9 ---> https://github.com/aplowman/atomistic\n", - "0 ---> https://github.com/guaix-ucm/pyemir\n", - "0 ---> https://github.com/biosustain/croissance\n", - "0 ---> https://github.com/linhd-postdata/averell\n", - "9 ---> https://github.com/gbif/gbif-api\n", - "0 ---> https://github.com/kalyanpi4/pySW\n", - "0 ---> https://github.com/pitmonticone/Torino-Lione\n", - "0 ---> https://github.com/dave-heslop74/vMF_Specimens\n", - "0 ---> https://github.com/hollenstein/maspy\n", - "0 ---> https://github.com/wiai/xcdskd\n", - "5 ---> https://github.com/Ayllonbe/gsan\n", - "0 ---> https://github.com/romoreira/EdgeComputingSlice\n", - "9 ---> https://github.com/pysal/segregation\n", - "3 ---> https://github.com/ALIADA/aliada-tool\n", - "0 ---> https://github.com/JordiBolibar/ALPGM\n", - "0 ---> https://github.com/keyinst/keypy\n", - "0 ---> https://github.com/has2k1/scikit-misc\n", - "5 ---> https://github.com/PedroMat8/micropy\n", - "9 ---> https://github.com/clld/glottolog3\n", - "0 ---> https://github.com/stain/ro-combine-archive\n", - "9 ---> https://github.com/BEAST-Fitting/beast\n", - "0 ---> https://github.com/fireshape/fireshape\n", - "0 ---> https://github.com/jsh9/python-plot-utilities\n", - "9 ---> https://github.com/hibernator11/AprediendoJava\n", - "0 ---> https://github.com/FlamTeam/flamedisx\n", - "0 ---> https://github.com/ihmeuw-msca/ODEOPT\n", - "0 ---> https://github.com/dmentipl/plonk\n", - "3 ---> https://github.com/HSF/phoenix\n", - "0 ---> https://github.com/haraldschilly/panobbgo\n", - "5 ---> https://github.com/mtinti/PIG-A\n", - "9 ---> https://github.com/TRACMASS/tracmass\n", - "0 ---> https://github.com/coneoproject/COFFEE\n", - "3 ---> https://github.com/oblassers/dmap-mockups\n", - "0 ---> https://github.com/bioFAM/MOFA2\n", - "0 ---> https://github.com/pytroll/pyresample\n", - "0 ---> https://github.com/FATSLiM/fatslim\n", - "0 ---> https://github.com/astropenguin/azely\n", - "0 ---> https://github.com/debsankha/flownetpy\n", - "0 ---> https://github.com/lyx12311/Astraea\n", - "0 ---> https://github.com/npielawski/pytorch_tiramisu\n", - "9 ---> https://github.com/clld/tsammalex\n", - "3 ---> https://github.com/postnathalie/WallTalk\n", - "0 ---> https://github.com/TUW-GEO/smecv-grid\n", - "9 ---> https://github.com/echevemaster/fedora-college\n", - "3 ---> https://github.com/ropensci/lingtypology\n", - "3 ---> https://github.com/vivo-project/VIVO\n", - "0 ---> https://github.com/deephdc/schema4deep\n", - "0 ---> https://github.com/nist-ionstorage/electrode\n", - "9 ---> https://github.com/opannekoucke/pdenetgen\n", - "0 ---> https://github.com/lingpy/word-tree-paper\n", - "3 ---> https://github.com/RBVI/CyAnimator\n", - "0 ---> https://github.com/fsenf/proj.nawdex_analysis\n", - "0 ---> https://github.com/RDFLib/pyrdfa3\n", - "0 ---> https://github.com/mwcraig/reducer\n", - "0 ---> https://github.com/lcharleux/hardness\n", - "0 ---> https://github.com/pisa-engine/pisa\n", - "0 ---> https://github.com/rjw57/starman\n", - "0 ---> https://github.com/dewiedem/calcopp\n", - "0 ---> https://github.com/rstoneback/OMMBV\n", - "9 ---> https://github.com/mfherbst/asedftk\n", - "3 ---> https://github.com/Colectica/ddiregistry\n", - "0 ---> https://github.com/CyberDataLab/AuthCode\n", - "0 ---> https://github.com/imageio/imageio\n", - "0 ---> https://github.com/masseyr/geosoupML\n", - "0 ---> https://github.com/r9y9/pyreaper\n", - "0 ---> https://github.com/JDRomano2/ASAP2\n", - "0 ---> https://github.com/josephhardinee/PyDSD\n", - "9 ---> https://github.com/filips123/MonologPHPMailer\n", - "0 ---> https://github.com/Spine-project/Spine-Database-API\n", - "0 ---> https://github.com/GeoStat-Framework/ogs5py\n", - "0 ---> https://github.com/Z-Zheng/SimpleCV\n", - "0 ---> https://github.com/angelmtenor/RL-ROBOT\n", - "5 ---> https://github.com/Sreyan88/Fatigue-Detection-using-Deep-Learning\n", - "0 ---> https://github.com/stefanch/sGDML\n", - "6 ---> https://github.com/machawk1/warcreate\n", - "0 ---> https://github.com/materialsvirtuallab/monty\n", - "0 ---> https://github.com/kgullikson88/Telluric-Fitter\n", - "0 ---> https://github.com/Urban-Meteorology-Reading/SUEWS\n", - "0 ---> https://github.com/serazing/xscale\n", - "0 ---> https://github.com/pauleve/mpbn\n", - "0 ---> https://github.com/ericmjl/flu-gibson\n", - "9 ---> https://github.com/MoritzStefaner/ach-ingen-zell\n", - "3 ---> https://github.com/MAGIC-nexus/nis-backend\n", - "0 ---> https://github.com/pycalphad/scheil\n", - "0 ---> https://github.com/vanheeringen-lab/genomepy\n", - "0 ---> https://github.com/deparkes/OOMMFTools\n", - "0 ---> https://github.com/sarisabban/RamaNet\n", - "0 ---> https://github.com/nano-sippe/dispersion\n", - "9 ---> https://github.com/hallamlab/pathway2vec\n", - "0 ---> https://github.com/SCM-NV/nano-qmflows\n", - "0 ---> https://github.com/bburan/NeuroBehavior\n", - "0 ---> https://github.com/PhenixCollaboration/web\n", - "0 ---> https://github.com/Bubblbu/crawling-framework\n", - "0 ---> https://github.com/smarr/ReBench\n", - "0 ---> https://github.com/Alerovere/Paleo-SL-utilities\n", - "0 ---> https://github.com/TUDelft-CITG/OpenCLSim\n", - "0 ---> https://github.com/RMeli/spyrmsd\n", - "9 ---> https://github.com/dejac001/RealGas\n", - "3 ---> https://github.com/SciCrunch/resource_disambiguator\n", - "0 ---> https://github.com/rraadd88/htsimaging\n", - "0 ---> https://github.com/etiennebresciani/wellradpy\n", - "0 ---> https://github.com/blsqr/paramspace\n", - "0 ---> https://github.com/FInAT/FInAT\n", - "0 ---> https://github.com/hovo1990/GROM\n", - "0 ---> https://github.com/scikit-learn/scikit-learn\n", - "9 ---> https://github.com/covid-lncc/pydemic\n", - "0 ---> https://github.com/pvlib/pvlib-python\n", - "0 ---> https://github.com/phenoscape/phenoday-reasoning-paper\n", - "0 ---> https://github.com/norawebbwilliams/images_as_data\n", - "0 ---> https://github.com/filips123/ZeroFramePy\n", - "5 ---> https://github.com/sisinflab-swot/ldp-coap-framework\n", - "0 ---> https://github.com/pablormier/yabox\n", - "3 ---> https://github.com/TomDemeranville/orcid-update-java\n", - "0 ---> https://github.com/pysal/region\n", - "2 ---> https://github.com/yogo/VOEIS\n", - "0 ---> https://github.com/krassowski/data-vault\n", - "9 ---> https://github.com/ENCODE-DCC/croo\n", - "0 ---> https://github.com/jaisenbe58r/MLearner\n", - "0 ---> https://github.com/dave-heslop74/vMF_Sites\n", - "0 ---> https://github.com/biomedia-mira/blast-ct\n", - "0 ---> https://github.com/NREL/bifacial_radiance\n", - "0 ---> https://github.com/kundajelab/deeplift\n", - "0 ---> https://github.com/embodied-computation-group/systole\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "9 ---> https://github.com/terraref/terraref.github.io\n", - "0 ---> https://github.com/astorfi/TensorFlow-World\n", - "0 ---> https://github.com/TheLartians/Expresso\n", - "9 ---> https://github.com/bionode/fasta-parser\n", - "0 ---> https://github.com/UCL/scikit-surgeryfred\n", - "0 ---> https://github.com/neurolib-dev/neurolib\n", - "2 ---> https://github.com/hyperwell/playground\n", - "0 ---> https://github.com/pnlbwh/SlicerDiffusionQC\n", - "0 ---> https://github.com/CORE-GATECH-GROUP/serpent-tools\n", - "0 ---> https://github.com/morganjwilliams/pyrolite-meltsutil\n", - "8 ---> https://github.com/rcfduarte/nmsat\n", - "0 ---> https://github.com/midas-isg/PITT-Anthrax-model\n", - "0 ---> https://github.com/gmiaslab/pyiomica\n", - "9 ---> https://github.com/MarcoMuellner/SMURFS\n", - "0 ---> https://github.com/MrLogarithm/pe-pc-datasets-interface\n", - "0 ---> https://github.com/raamana/neuropredict\n", - "0 ---> https://github.com/bartongroup/2passtools\n", - "0 ---> https://github.com/earthserver-eu/INSPIRE-notebooks\n", - "0 ---> https://github.com/aderidder/iCRFGenerator\n", - "0 ---> https://github.com/jfal027/Moodify\n", - "6 ---> https://github.com/jyrkioraskari/OnlineMvdXMLChecker\n", - "0 ---> https://github.com/rjleveque/ptha_rog\n", - "0 ---> https://github.com/GeoStat-Framework/pentapy\n", - "0 ---> https://github.com/GhostofGoes/ADLES\n", - "0 ---> https://github.com/castelao/pyWOA\n", - "0 ---> https://github.com/pynbody/pynbody\n", - "0 ---> https://github.com/MicroPasts/magicMountain\n", - "9 ---> https://github.com/intake/intake-esm\n", - "0 ---> https://github.com/harnesscloud/2015-07-15-feltham\n", - "0 ---> https://github.com/hfsf/sloth\n", - "5 ---> https://github.com/histogrammar/histogrammar-scala\n", - "8 ---> https://github.com/LandscapeGeoinformatics/EstSoil-EH_sw_supplement\n", - "9 ---> https://github.com/chienchi/amplicon_coverage_plot\n", - "0 ---> https://github.com/cmohl2013/permutation_test\n", - "0 ---> https://github.com/mrtommyb/ktransit\n", - "5 ---> https://github.com/midas-isg/digital-commons\n", - "0 ---> https://github.com/hipster-philology/greek-lemmatization-data\n", - "0 ---> https://github.com/soil-physics-okstate/automated_soil_moisture_mapping\n", - "0 ---> https://github.com/QInfer/python-qinfer\n", - "0 ---> https://github.com/inodb/sufam\n", - "9 ---> https://github.com/LiberalHD/gudagudaACG\n", - "5 ---> https://github.com/bihealth/scelvis\n", - "9 ---> https://github.com/SommerEngineering/Encrypter\n", - "0 ---> https://github.com/CellMigStandOrg/Tracks\n", - "0 ---> https://github.com/dr-rodriguez/AstrodbWeb\n", - "0 ---> https://github.com/iamdamion/grepCIRCLE\n", - "0 ---> https://github.com/Olllom/lettuce\n", - "0 ---> https://github.com/bjpop/lynch_gatk\n", - "0 ---> https://github.com/jGaboardi/pp2n\n", - "2 ---> https://github.com/atrisovic/weather-panel.github.io\n", - "3 ---> https://github.com/arXiv/arxiv-browse\n", - "1 ---> https://github.com/clarity-h2020/map-component\n", - "9 ---> https://github.com/samapriya/geeup\n", - "0 ---> https://github.com/fphammerle/freesurfer-stats\n", - "0 ---> https://github.com/Lagostra/exprimo\n", - "0 ---> https://github.com/kweis/acronym\n", - "1 ---> https://github.com/iomega/zenodo-upload\n", - "0 ---> https://github.com/mirca/maoud\n", - "0 ---> https://github.com/castelao/maud\n", - "0 ---> https://github.com/cwfparsonson/soa_driving\n", - "0 ---> https://github.com/luphysics/PyMODAlib\n", - "0 ---> https://github.com/piazentin/ksets\n", - "0 ---> https://github.com/tgbugs/inferno\n", - "0 ---> https://github.com/jGaboardi/non-duplicated-intersects\n", - "0 ---> https://github.com/rochefort-lab/fissa\n", - "0 ---> https://github.com/qutip/qutip\n", - "0 ---> https://github.com/RomainBey/stratified-cross-validation\n", - "0 ---> https://github.com/XENON1T/pax\n", - "0 ---> https://github.com/indralab/adeft\n", - "0 ---> https://github.com/polsys/ennemi\n", - "0 ---> https://github.com/gmierz/pupil-lib\n", - "0 ---> https://github.com/macs3-project/MACS\n", - "0 ---> https://github.com/NLeSC/lokum\n", - "0 ---> https://github.com/efirvida/python-gearbox\n", - "0 ---> https://github.com/SuLab/genewikiworld\n", - "0 ---> https://github.com/samapriya/Planet-Pipeline-Shell\n", - "9 ---> https://github.com/smd-faizan/CySpanningTree\n", - "0 ---> https://github.com/Unidata/cftime\n", - "9 ---> https://github.com/weecology/DeepForest\n", - "0 ---> https://github.com/datreant/datreant\n", - "9 ---> https://github.com/Svdvoort/PREDICTFastr\n", - "0 ---> https://github.com/qcscine/utilities\n", - "0 ---> https://github.com/martibosch/urban-footprinter\n", - "0 ---> https://github.com/fa-me/ratter\n", - "0 ---> https://github.com/impact27/WF_NTP\n", - "9 ---> https://github.com/Eomys/pyleecan\n", - "0 ---> https://github.com/oeg-upm/morph-csv\n", - "5 ---> https://github.com/javadch/quis\n", - "0 ---> https://github.com/pear2/Cache_SHM\n", - "0 ---> https://github.com/scijava/scijava-common\n", - "0 ---> https://github.com/USNavalResearchLaboratory/SNOPROP\n", - "0 ---> https://github.com/bbfrederick/picachooser\n", - "0 ---> https://github.com/GilesStrong/HiggsML_Lumin\n", - "0 ---> https://github.com/GooglingTheCancerGenome/sv-callers\n", - "0 ---> https://github.com/jgreener64/pdb-benchmarks\n", - "9 ---> https://github.com/shh-dlce/python-nexus\n", - "0 ---> https://github.com/NickleDave/searchstims\n", - "2 ---> https://github.com/opencv/cvat\n", - "8 ---> https://github.com/scholarslab/prism\n", - "0 ---> https://github.com/pyoceans/python-seawater\n", - "0 ---> https://github.com/olgabot/sj2psi\n", - "0 ---> https://github.com/malvikasharan/APRICOT\n", - "0 ---> https://github.com/raamana/confounds\n", - "0 ---> https://github.com/mrkrd/matlab_wrapper\n", - "0 ---> https://github.com/thorstenwagner/ij-blob\n", - "0 ---> https://github.com/michaelosthege/pyrff\n", - "5 ---> https://github.com/ODM2/ODM2DataSharingPortal\n", - "0 ---> https://github.com/hameye/MARCIA\n", - "0 ---> https://github.com/eyelovedata/sentimentemotionanalysis\n", - "0 ---> https://github.com/Swiss-Polar-Institute/pyantarctica\n", - "9 ---> https://github.com/cgre-aachen/gempy\n", - "0 ---> https://github.com/alexandrebarachant/pyRiemann\n", - "0 ---> https://github.com/yt-project/unyt\n", - "3 ---> https://github.com/bonej-org/BoneJ2\n", - "0 ---> https://github.com/ConorMacBride/mcalf\n", - "0 ---> https://github.com/widdowquinn/pyADHoRe\n", - "0 ---> https://github.com/valdergallo/data-importer\n", - "0 ---> https://github.com/saketkc/pysradb\n", - "0 ---> https://github.com/jeeberhardt/visualize\n", - "0 ---> https://github.com/hsharrison/experimentator\n", - "0 ---> https://github.com/nudomarinero/wquantiles\n", - "0 ---> https://github.com/davidbradway/Visualizing-Scholars-At-Duke-2017\n", - "5 ---> https://github.com/sepandhaghighi/findip\n", - "0 ---> https://github.com/md-lab-tools/lab-tools\n", - "9 ---> https://github.com/fiji/KymographBuilder\n", - "9 ---> https://github.com/YaserJaradeh/JarvisQA\n", - "3 ---> https://github.com/PBR/Marker2Sequence\n", - "0 ---> https://github.com/DesignEngrLab/fmdtools\n", - "0 ---> https://github.com/dkalisch/morgenstadtDB\n", - "0 ---> https://github.com/has2k1/mizani\n", - "0 ---> https://github.com/super-resolution/lineprofiler\n", - "0 ---> https://github.com/junaidmalik09/fastonn\n", - "9 ---> https://github.com/mzabrams/fars-cleaner\n", - "0 ---> https://github.com/fat-forensics/fat-forensics\n", - "0 ---> https://github.com/RPGroup-PBoC/chann_cap\n", - "0 ---> https://github.com/lascivaroma/forcellini-lemmas\n", - "0 ---> https://github.com/akxen/tps-parameterisation\n", - "0 ---> https://github.com/Davidelanz/quantum-robot\n", - "0 ---> https://github.com/SandstoneHPC/sandstone-slurm-assist\n", - "0 ---> https://github.com/applied-bioinformatics/An-Introduction-To-Applied-Bioinformatics\n", - "0 ---> https://github.com/aliFrancis/mars-crater-catalogue\n", - "0 ---> https://github.com/jcvasquezc/AEspeech\n", - "0 ---> https://github.com/oemof/oemof-solph\n", - "0 ---> https://github.com/kutaslab/fitgrid\n", - "5 ---> https://github.com/MCZbase/PreCapture\n", - "9 ---> https://github.com/tgwizard/sexymp-data\n", - "5 ---> https://github.com/semplea/characters-meta\n", - "9 ---> https://github.com/edwardcapriolo/filecrush\n", - "9 ---> https://github.com/smart-facility/cognicity-floodsensor\n", - "8 ---> https://github.com/lerkoah/ComplexBehaviorDetector\n", - "5 ---> https://github.com/evoldoers/wtfgenes\n", - "0 ---> https://github.com/nstarman/amuse_util\n", - "9 ---> https://github.com/yhaddad/Heppi\n", - "9 ---> https://github.com/janantala/speech-synthesis\n", - "0 ---> https://github.com/wjladams/pyanp\n", - "0 ---> https://github.com/seva100/optic-nerve-cnn\n", - "0 ---> https://github.com/vibbits/phyd3\n", - "6 ---> https://github.com/miledrousset/opentheso\n", - "5 ---> https://github.com/VDBWRAIR/ngs_mapper\n", - "9 ---> https://github.com/clij/clij-docs\n", - "0 ---> https://github.com/lpfann/fri\n", - "0 ---> https://github.com/seisman/HinetPy\n", - "0 ---> https://github.com/JonathanReeve/text-matcher\n", - "0 ---> https://github.com/csdms/bmi-python\n", - "0 ---> https://github.com/NaturalHistoryMuseum/revile\n", - "0 ---> https://github.com/ishahid/django-blogg\n", - "9 ---> https://github.com/SommerEngineering/Ed25519\n", - "0 ---> https://github.com/xuanxu/intergalactic\n", - "0 ---> https://github.com/PyPSA/PyPSA\n", - "0 ---> https://github.com/NickleDave/vak\n", - "0 ---> https://github.com/gtonkinhill/panaroo\n", - "0 ---> https://github.com/CMLPlatform/pycirk\n", - "9 ---> https://github.com/globalbioticinteractions/nomer\n", - "3 ---> https://github.com/dwhieb/Nuuchahnulth\n", - "9 ---> https://github.com/TUW-GEO/ecmwf_models\n", - "5 ---> https://github.com/urmi-21/MetaOmGraph\n", - "9 ---> https://github.com/bfieldtools/bfieldtools\n", - "0 ---> https://github.com/pedroernesto/HippoNetworkUnit\n", - "0 ---> https://github.com/zwicker-group/py-pde\n", - "0 ---> https://github.com/NeuralEnsemble/PyNN\n", - "0 ---> https://github.com/juliema/aTRAM\n", - "0 ---> https://github.com/GrzegorzMikaAGH/Towards-adaptivity-via-a-new-discrepancy-principle-for-Poisson-inverse-problems\n", - "0 ---> https://github.com/HTenkanen/pyrosm\n", - "9 ---> https://github.com/kjappelbaum/colorjeopardy\n", - "9 ---> https://github.com/OSUmageed/pyHeatTransfer\n", - "0 ---> https://github.com/olety/TIMLinUCB\n", - "3 ---> https://github.com/gcube-team/gcube-releases\n", - "0 ---> https://github.com/r9y9/pyopenjtalk\n", - "9 ---> https://github.com/altmetric/aho_corasick_matcher\n", - "0 ---> https://github.com/Edric-Matwiejew/QSW_MPI\n", - "0 ---> https://github.com/xieguigang/Data.GIS\n", - "0 ---> https://github.com/scikit-hep/hepstats\n", - "0 ---> https://github.com/elainehoml/GMM_Image_Quality\n", - "0 ---> https://github.com/mikahama/uralicNLP\n", - "6 ---> https://github.com/blobtoolkit/viewer\n", - "0 ---> https://github.com/e-VRO/frvcpy\n", - "0 ---> https://github.com/openeventdata/mordecai\n", - "0 ---> https://github.com/ssepulveda/RTGraph\n", - "9 ---> https://github.com/eWaterCycle/grpc4bmi\n", - "9 ---> https://github.com/msmexplorer/msmexplorer-d3\n", - "0 ---> https://github.com/bjodah/chempy\n", - "0 ---> https://github.com/chjacob-tubs/pyadf-releases\n", - "0 ---> https://github.com/Nikeshbajaj/spkit\n", - "0 ---> https://github.com/wright-group/WrightSim\n", - "0 ---> https://github.com/Curtin-Timescales-of-Mineral-Systems/UPb-Unmixer\n", - "0 ---> https://github.com/pietrobarbiero/dbgen\n", - "0 ---> https://github.com/larslau/DETECT\n", - "0 ---> https://github.com/edwardoughton/itmlogic\n", - "0 ---> https://github.com/tychotatitscheff/duc-sph\n", - "0 ---> https://github.com/impact27/diffusion_device\n", - "0 ---> https://github.com/williamjameshandley/fgivenx\n", - "0 ---> https://github.com/gregtucker/grain_hills\n", - "9 ---> https://github.com/holoviz/geoviews\n", - "0 ---> https://github.com/SoftwareDevEngResearch/CAML\n", - "0 ---> https://github.com/cyTVDN/cyTVDN\n", - "0 ---> https://github.com/birnstiel/two-pop-py\n", - "0 ---> https://github.com/DECLARE-Project/fastpan\n", - "0 ---> https://github.com/reneshbedre/bioinfokit\n", - "0 ---> https://github.com/INM-6/hybridLFPy\n", - "0 ---> https://github.com/caglorithm/mopet\n", - "9 ---> https://github.com/felicitia/EventExtractor\n", - "0 ---> https://github.com/molpopgen/fwdpy11\n", - "0 ---> https://github.com/jacobwindsor/pubchem-ranker\n", - "0 ---> https://github.com/ENCODE-DCC/caper\n", - "0 ---> https://github.com/colomoto/colomoto-jupyter\n", - "0 ---> https://github.com/nicolas-chaulet/torch-points-kernels\n", - "0 ---> https://github.com/MicroPasts/transcribing-WGS\n", - "9 ---> https://github.com/samapriya/Planet-GEE-Pipeline-GUI\n", - "0 ---> https://github.com/similitude/h2-world-simmer\n", - "0 ---> https://github.com/anthony-nouy/tensap\n", - "0 ---> https://github.com/ancklo/ChaosMagPy\n", - "0 ---> https://github.com/mvdh7/calkulate\n", - "9 ---> https://github.com/arviz-devs/arviz\n", - "9 ---> https://github.com/clij/clij-core\n", - "0 ---> https://github.com/saverymax/qdriven-chiqa-summarization\n", - "0 ---> https://github.com/jhidding/sustainability\n", - "0 ---> https://github.com/arif-zaman/network_probing\n", - "0 ---> https://github.com/janpipek/pydiq\n", - "0 ---> https://github.com/posterior/goftests\n", - "9 ---> https://github.com/zarr-developers/zarr-python\n", - "3 ---> https://github.com/marco-ka/semantic-annotation-writer\n", - "4 ---> https://github.com/medusa-project/databank\n", - "1 ---> https://github.com/schema-app/schema\n", - "0 ---> https://github.com/ulmo-dev/ulmo\n", - "9 ---> https://github.com/kuchaale/wcd_2020\n", - "0 ---> https://github.com/uwmadison-chm/masterfile\n", - "0 ---> https://github.com/jeeberhardt/unrolr\n", - "9 ---> https://github.com/Lane-Library/wiki-extract\n", - "0 ---> https://github.com/pydicom/pynetdicom\n", - "5 ---> https://github.com/NLeSC/fairdatapoint\n", - "0 ---> https://github.com/ilyasst/pydictoolkit\n", - "0 ---> https://github.com/NLESC-JCER/QMCTorch\n", - "0 ---> https://github.com/AthenaEPI/dmipy\n", - "0 ---> https://github.com/ISA-tools/nmrml2isa\n", - "9 ---> https://github.com/usethesource/capsule\n", - "0 ---> https://github.com/minzastro/unidam\n", - "0 ---> https://github.com/environmentalscience/essm\n", - "9 ---> https://github.com/afnogueira/datasetsaner2017\n", - "0 ---> https://github.com/raysect/source\n", - "5 ---> https://github.com/ivco19/brooks\n", - "0 ---> https://github.com/mattbv/lidartf\n", - "0 ---> https://github.com/ricoms/gpam_stats\n", - "5 ---> https://github.com/Capitains/Sparrow\n", - "0 ---> https://github.com/hpparvi/PyDE\n", - "0 ---> https://github.com/molbiodiv/Blackbird\n", - "9 ---> https://github.com/adrn/thejoker\n", - "0 ---> https://github.com/davidenunes/context-permeability\n", - "0 ---> https://github.com/akxen/rep-gep\n", - "0 ---> https://github.com/joergdietrich/NFW\n", - "3 ---> https://github.com/sandyherho/tutorial_xarray\n", - "0 ---> https://github.com/deniederhut/PyTeX\n", - "0 ---> https://github.com/interaction-lab/MoveToCode\n", - "0 ---> https://github.com/FilipeMaia/afnumpy\n", - "0 ---> https://github.com/nextgenusfs/amptk\n", - "5 ---> https://github.com/Qiskit/qiskit\n", - "0 ---> https://github.com/CU-Denver-UQ/LUQ\n", - "0 ---> https://github.com/casimp/lightct\n", - "0 ---> https://github.com/joostjor/random-graphs\n", - "0 ---> https://github.com/sbonaretti/pyKNEEr\n", - "0 ---> https://github.com/DataMedSci/pymchelper\n", - "0 ---> https://github.com/simonvh/pita\n", - "0 ---> https://github.com/Socrats/EGTTools\n", - "0 ---> https://github.com/ihmwg/python-ihm\n", - "0 ---> https://github.com/AlessioZanga/PyEEGLab\n", - "0 ---> https://github.com/samuelstjean/autodmri\n", - "1 ---> https://github.com/filips123/ZeroFrameJS\n", - "0 ---> https://github.com/Tyler-Yates/AestheticFractals\n", - "0 ---> https://github.com/fmalmeida/ngs-preprocess\n", - "0 ---> https://github.com/junhyeokahn/tf_rbdl\n", - "0 ---> https://github.com/Samreay/ChainConsumer\n", - "0 ---> https://github.com/JoshuaE1/supervised-classification-SSH-publications\n", - "0 ---> https://github.com/syhw/DTW_Cython\n", - "0 ---> https://github.com/cerebunit/cerebunit\n", - "0 ---> https://github.com/clebsonpy/HidroComp\n", - "9 ---> https://github.com/Terradue/dcs-insar-roipac\n", - "9 ---> https://github.com/drcassar/viscosity-graybox-nn\n", - "0 ---> https://github.com/MAVENSDC/PyTplot\n", - "5 ---> https://github.com/EricAlcaide/MiniFold\n", - "0 ---> https://github.com/CognitiveComputationLab/ccobra\n", - "0 ---> https://github.com/holoviz/colorcet\n", - "0 ---> https://github.com/jpvantassel/hvsrpy\n", - "9 ---> https://github.com/georgeOsdDev/longo\n", - "0 ---> https://github.com/unicus-skmk/test\n", - "0 ---> https://github.com/DTUComputeStatisticsAndDataAnalysis/MBPLS\n", - "0 ---> https://github.com/hyungjun/gtool\n", - "3 ---> https://github.com/UofS-Pulse-Binfo/nd_genotypes\n", - "0 ---> https://github.com/michaelaye/pyciss\n", - "0 ---> https://github.com/genomematt/pylazybam\n", - "0 ---> https://github.com/arkottke/pygmm\n", - "0 ---> https://github.com/evanodell/ukpolice\n", - "9 ---> https://github.com/kotori-y/Scopy\n", - "0 ---> https://github.com/gsantoni/ccCluster\n", - "0 ---> https://github.com/iancze/MPoL\n", - "0 ---> https://github.com/jacobo-diaz/aneupy\n", - "0 ---> https://github.com/j-stone/cog-tasks\n", - "0 ---> https://github.com/broyson/Locust-streaming\n", - "0 ---> https://github.com/rougier/numpy-100\n", - "0 ---> https://github.com/castelao/supportdata\n", - "0 ---> https://github.com/napsternxg/TwitterNER\n", - "0 ---> https://github.com/DomBennett/TaxonNamesResolver\n", - "9 ---> https://github.com/lucaspuvis/SAM\n", - "5 ---> https://github.com/caltechlibrary/handprint\n", - "5 ---> https://github.com/unipept/unipept-cli\n", - "5 ---> https://github.com/griffithlab/pVACtools\n", - "0 ---> https://github.com/MAGIC-nexus/nis-python-client\n", - "0 ---> https://github.com/spacetelescope/jwst-fgs-countrate\n", - "9 ---> https://github.com/skp703/RainInterpolator\n", - "0 ---> https://github.com/pysal/spvcm\n", - "0 ---> https://github.com/CKrawczyk/densityplot\n", - "0 ---> https://github.com/Abe404/root_painter\n", - "5 ---> https://github.com/freeknijweide/autoencoder-pdb-cleaning\n", - "0 ---> https://github.com/reegis/deflex\n", - "0 ---> https://github.com/DCAN-Labs/nhp-abcd-bids-pipeline\n", - "0 ---> https://github.com/MechMicroMan/DefDAP\n", - "0 ---> https://github.com/Climdyn/qgs\n", - "9 ---> https://github.com/anil88/population-origin-calculator\n", - "0 ---> https://github.com/AlgolLLC/phonetop\n", - "0 ---> https://github.com/jdmoorman/kaczmarz-algorithms\n", - "0 ---> https://github.com/qzhu2017/PyXtal_FF\n", - "6 ---> https://github.com/rodighiero/DH2019\n", - "5 ---> https://github.com/ioos/erddapy\n", - "0 ---> https://github.com/bjorntsv/tempmom\n", - "0 ---> https://github.com/ARM-DOE/ACT\n", - "0 ---> https://github.com/tvwenger/millennium-tap-query\n", - "5 ---> https://github.com/3D-e-Chem/knime-klifs\n", - "5 ---> https://github.com/harnesscloud/nova-docker\n", - "5 ---> https://github.com/Clinical-Genomics/chanjo\n", - "0 ---> https://github.com/globalbioticinteractions/elton\n", - "0 ---> https://github.com/felicitia/TestBenchmark-Java-client\n", - "0 ---> https://github.com/butcer0/found-diagnosis-network\n", - "0 ---> https://github.com/radtorch/radtorch\n", - "0 ---> https://github.com/UT-CHG/PolyADCIRC\n", - "5 ---> https://github.com/parsa-epfl/qflex\n", - "0 ---> https://github.com/martibosch/detectree\n", - "9 ---> https://github.com/nawrs/nawrs\n", - "5 ---> https://github.com/arfon/metamatter\n", - "0 ---> https://github.com/linsalrob/PPPF\n", - "0 ---> https://github.com/peckhams/topoflow\n", - "0 ---> https://github.com/mekman/recon\n", - "9 ---> https://github.com/petl-developers/petl\n", - "0 ---> https://github.com/piyush82/expression-evaluator\n", - "0 ---> https://github.com/MAVENSDC/cdflib\n", - "0 ---> https://github.com/acocac/MTLCC-MODIS-GCP\n", - "9 ---> https://github.com/nomencurator/taxonaut\n", - "0 ---> https://github.com/jw156605/MATCHER\n", - "0 ---> https://github.com/vprusso/toqito\n", - "0 ---> https://github.com/abhi1693/yii2-config\n", - "0 ---> https://github.com/scikit-hep/uproot-methods\n", - "3 ---> https://github.com/JustinGOSSES/predictatops\n", - "0 ---> https://github.com/ThomasRieutord/kabl\n", - "0 ---> https://github.com/pastas/pastas\n", - "0 ---> https://github.com/lingpy/workflow-paper\n", - "0 ---> https://github.com/tomwallis/PsyUtils\n", - "0 ---> https://github.com/adrn/gala\n", - "0 ---> https://github.com/kinnala/scikit-fem\n", - "0 ---> https://github.com/yatiml/yatiml\n", - "0 ---> https://github.com/ZFTurbo/Weighted-Boxes-Fusion\n", - "9 ---> https://github.com/willpearse/data_frame\n", - "0 ---> https://github.com/jameshowison/softcite\n", - "0 ---> https://github.com/clauswilke/PeptideBuilder\n", - "9 ---> https://github.com/GatorSense/HyperspectralAnalysisIntroduction\n", - "0 ---> https://github.com/MultithreadCorner/Hydra\n", - "5 ---> https://github.com/mgiorgio/comet-utilities\n", - "0 ---> https://github.com/specpose/stopeight\n", - "0 ---> https://github.com/MIC-DKFZ/cmdint\n", - "0 ---> https://github.com/pysat/pysatMadrigal\n", - "0 ---> https://github.com/berenslab/pr_bc_connectivity\n", - "0 ---> https://github.com/helioforecast/Predstorm\n", - "8 ---> https://github.com/datproject/dat\n", - "0 ---> https://github.com/TUW-GEO/ease_grid\n", - "9 ---> https://github.com/hrtlacek/faustTools\n", - "0 ---> https://github.com/Abe404/segmentation_of_roots_in_soil_with_unet\n", - "0 ---> https://github.com/ctreffe/alfred\n", - "0 ---> https://github.com/myGrid/ruby-zip-container\n", - "0 ---> https://github.com/ECSIM/pem-dataset1\n", - "0 ---> https://github.com/hasantayyar/doi-tools\n", - "0 ---> https://github.com/perryuu/managpu\n", - "0 ---> https://github.com/IceCubeOpenSource/ASTERIA\n", - "0 ---> https://github.com/jeremyf/orcid_album_cover\n", - "0 ---> https://github.com/josemiotto/pylevy\n", - "9 ---> https://github.com/JolleJolles/pirecorder\n", - "0 ---> https://github.com/mdolab/pygeo\n", - "0 ---> https://github.com/TUW-GEO/rt1\n", - "0 ---> https://github.com/AnyBody-Research-Group/AnyPyTools\n", - "0 ---> https://github.com/Yefee/xMCA\n", - "9 ---> https://github.com/rlworkgroup/garage\n", - "0 ---> https://github.com/screensinthewild/screenbase_unity_slideshow\n", - "0 ---> https://github.com/theblackunknown/creative-ecosystems\n", - "0 ---> https://github.com/simpeg/discretize\n", - "0 ---> https://github.com/tactcomplabs/xbgas-tools\n", - "0 ---> https://github.com/LRCFS/GSR_Paper\n", - "0 ---> https://github.com/soft-matter/trackpy\n", - "0 ---> https://github.com/jrleeman/biaxtools\n", - "0 ---> https://github.com/JaGeo/PaulingPublication\n", - "6 ---> https://github.com/tobysmith568/License-Sorter\n", - "6 ---> https://github.com/samik1986/ML_Semantic_Segmenation_NMI\n", - "0 ---> https://github.com/multiscale/ymmsl-python\n", - "0 ---> https://github.com/anitagraser/movingpandas\n", - "0 ---> https://github.com/fls-bioinformatics-core/RnaChipIntegrator\n", - "0 ---> https://github.com/bionet/ted.python\n", - "0 ---> https://github.com/thorstenwagner/ij-trackmate-findmaxima\n", - "0 ---> https://github.com/NHERI-SimCenter/pelicun\n", - "0 ---> https://github.com/hibernator11/AprendiendoPython\n", - "0 ---> https://github.com/danieljfarrell/pvtrace\n", - "0 ---> https://github.com/neuroscout/neuroscout-cli\n", - "0 ---> https://github.com/MichaelMauderer/Gazer\n", - "0 ---> https://github.com/FedUni/caliko\n", - "0 ---> https://github.com/vcutrona/elasticpedia\n", - "9 ---> https://github.com/aleksandarsibincic/ExcelAudit\n", - "0 ---> https://github.com/aldnav/abempy\n", - "9 ---> https://github.com/spectrochempy/spectrochempy\n", - "0 ---> https://github.com/isi-nmr/bruker2bart\n", - "0 ---> https://github.com/HobnobMancer/PhD_Project_Scripts\n", - "0 ---> https://github.com/drcassar/glasspy\n", - "0 ---> https://github.com/rieder/MASC\n", - "0 ---> https://github.com/oblassers/tuw-servicebroker\n", - "0 ---> https://github.com/Nelson-Gon/pyautocv\n", - "0 ---> https://github.com/jajcayn/pygpso\n", - "0 ---> https://github.com/Craig-Robson/postgres_spatial_join_areas\n", - "5 ---> https://github.com/MAGIC-nexus/nis-graph-diagrams\n", - "9 ---> https://github.com/silviodc/Gazetteer\n", - "0 ---> https://github.com/alchemistry/alchemlyb\n", - "9 ---> https://github.com/timtroendle/energy-agents\n", - "0 ---> https://github.com/xgcm/xgcm\n", - "0 ---> https://github.com/mheikenfeld/wrfcube\n", - "0 ---> https://github.com/sojamo/midimapper\n", - "0 ---> https://github.com/datreant/MDSynthesis\n", - "0 ---> https://github.com/UNSW-CEEM/NEMOSIS\n", - "0 ---> https://github.com/KeplerGO/K2fov\n", - "0 ---> https://github.com/atorras1618/PerMaViss\n", - "0 ---> https://github.com/tubiana/TTClust\n", - "0 ---> https://github.com/matt-long/xpersist\n", - "0 ---> https://github.com/bast/smeshing\n", - "1 ---> https://github.com/Scifabric/pybossa\n", - "0 ---> https://github.com/ds-wizard/docs\n", - "0 ---> https://github.com/abelcarreras/phonolammps\n", - "0 ---> https://github.com/jason-zl190/sisr_medical\n", - "0 ---> https://github.com/mdshw5/pyfaidx\n", - "9 ---> https://github.com/wiebket/delprocess\n", - "0 ---> https://github.com/holoviz/datashader\n", - "0 ---> https://github.com/ISA-tools/mzml2isa\n", - "0 ---> https://github.com/ajefweiss/HelioSat\n", - "0 ---> https://github.com/houghb/savvy\n", - "0 ---> https://github.com/fnl/gnamed\n", - "0 ---> https://github.com/jjgomera/iapws\n", - "0 ---> https://github.com/dicom/rtp-connect\n", - "5 ---> https://github.com/moonso/genmod\n", - "0 ---> https://github.com/zafarali/emdp\n", - "0 ---> https://github.com/phydev/trajpy\n", - "0 ---> https://github.com/IMMM-SFA/im3py\n", - "0 ---> https://github.com/yadage/yadage-schemas\n", - "0 ---> https://github.com/karenadam/Mixed-Bandlimited-Time-Encoding\n", - "0 ---> https://github.com/spacetelescope/gwcs\n", - "0 ---> https://github.com/mkjung99/pyc3dserver\n", - "9 ---> https://github.com/reegis/reegis\n", - "0 ---> https://github.com/kimlab/GPyM\n", - "0 ---> https://github.com/woutergins/satlas\n", - "0 ---> https://github.com/lachhebo/pyclustertend\n", - "0 ---> https://github.com/wiebket/delretrieve\n", - "6 ---> https://github.com/digitallinguistics/transliterate\n", - "9 ---> https://github.com/nlesc-nano/Nano-Utils\n", - "0 ---> https://github.com/oemof/oemof-thermal\n", - "0 ---> https://github.com/LRydin/MFDFA\n", - "2 ---> https://github.com/Flowminder/FlowKit\n", - "0 ---> https://github.com/linhd-postdata/desir\n", - "9 ---> https://github.com/DLR-SC/gitlab2prov\n", - "0 ---> https://github.com/openearth/aeolis-python\n", - "4 ---> https://github.com/Lonero-Team/Decentralized-Internet\n", - "0 ---> https://github.com/LegoStormtroopr/django-spaghetti-and-meatballs\n", - "5 ---> https://github.com/smarie/python-azureml-client\n", - "0 ---> https://github.com/NREL/floris\n", - "3 ---> https://github.com/ADicksonLab/wepy\n", - "0 ---> https://github.com/M4I-nanoscopy/tpx3-event-localisation\n", - "0 ---> https://github.com/myGrid/ruby-ucf\n", - "0 ---> https://github.com/andsor/pyfssa\n", - "0 ---> https://github.com/arkottke/pykoom\n", - "0 ---> https://github.com/tardis-sn/tardis\n", - "0 ---> https://github.com/IaPCS/gmsh-exodus-converter\n", - "0 ---> https://github.com/atait/lytest\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "9 ---> https://github.com/ocsmit/rindcalc\n", - "6 ---> https://github.com/mpostol/TP\n", - "8 ---> https://github.com/ElektraInitiative/libelektra\n", - "0 ---> https://github.com/will-rowe/groot\n", - "3 ---> https://github.com/bexis/Module_LUI\n", - "0 ---> https://github.com/benjaminrose/MC-Age\n", - "0 ---> https://github.com/SSW-DataLab/randomizer\n", - "0 ---> https://github.com/FowlerLab/Enrich2\n", - "0 ---> https://github.com/Andros-Spica/PhD-defense\n", - "0 ---> https://github.com/SirSharpest/NarrowEscapeSimulator\n", - "0 ---> https://github.com/annotation/tutorials\n", - "0 ---> https://github.com/RDFLib/OWL-RL\n", - "0 ---> https://github.com/RPGroup-PBoC/vdj_recombination\n", - "5 ---> https://github.com/carpyncho/carpyncho\n", - "0 ---> https://github.com/jpvantassel/sigpropy\n", - "0 ---> https://github.com/camelot-project/frontend\n", - "0 ---> https://github.com/cggh/scikit-allel\n", - "9 ---> https://github.com/kundajelab/seqdataloader\n", - "8 ---> https://github.com/ubccr/xdmod\n", - "0 ---> https://github.com/TomasBeuzen/pybeach\n", - "1 ---> https://github.com/prevwong/craft.js\n", - "0 ---> https://github.com/CovingtonResearchGroup/olm\n", - "9 ---> https://github.com/zykls/whynot\n", - "5 ---> https://github.com/DLR-RM/RAFCON\n", - "0 ---> https://github.com/hpparvi/PyTransit\n", - "0 ---> https://github.com/BigDataBiology/GMGC-mapper\n", - "0 ---> https://github.com/andycasey/ads\n", - "0 ---> https://github.com/darribas/wmn\n", - "5 ---> https://github.com/caltechlibrary/holdit\n", - "0 ---> https://github.com/AMReX-Astro/Castro\n", - "0 ---> https://github.com/greglucas/bezpy\n", - "0 ---> https://github.com/RCHG/FunFAN\n", - "0 ---> https://github.com/geek-yang/META\n", - "5 ---> https://github.com/Sentimentron/Nebraska-public\n", - "0 ---> https://github.com/jkibele/OpticalRS\n", - "8 ---> https://github.com/jupiterbak/FAPSDemoOPCUAServer2\n", - "0 ---> https://github.com/seandavi/ngCGH\n", - "0 ---> https://github.com/fraserw/trippy\n", - "0 ---> https://github.com/SainsburyWellcomeCentre/lasagna\n", - "1 ---> https://github.com/ufz/ogs\n", - "0 ---> https://github.com/libsemigroups/libsemigroups\n", - "9 ---> https://github.com/IDEES-Rouen/Flight-Scrapping\n", - "0 ---> https://github.com/AshKelly/pyquad\n", - "9 ---> https://github.com/jolespin/soothsayer\n", - "0 ---> https://github.com/kklmn/xrt\n", - "0 ---> https://github.com/beringresearch/ivis\n", - "0 ---> https://github.com/mdolab/pyspline\n", - "0 ---> https://github.com/thieunguyen5991/opfunu\n", - "5 ---> https://github.com/fmannhardt/pddp\n", - "5 ---> https://github.com/gwpy/gwpy\n", - "9 ---> https://github.com/pyvista/pyvista\n", - "9 ---> https://github.com/arcolife/scholarec\n", - "3 ---> https://github.com/NUStreaming/acm-mmsys-2020-grand-challenge\n", - "0 ---> https://github.com/adamewing/tebreak\n", - "9 ---> https://github.com/papis/papis\n", - "0 ---> https://github.com/wlad111/small_probs\n", - "9 ---> https://github.com/slimgroup/ServerlessImagingAWS\n", - "0 ---> https://github.com/danielbmmatos/Reduced-Model-of-Shear-Building\n", - "5 ---> https://github.com/biocore/qiime\n", - "0 ---> https://github.com/aretha-hep/mprtect\n", - "9 ---> https://github.com/bionode/bionode-template\n", - "0 ---> https://github.com/SebastianEggert/OpenWorkstation\n", - "0 ---> https://github.com/pyscf/pyscf\n", - "0 ---> https://github.com/GijsMulders/epos\n", - "0 ---> https://github.com/castelao/PyAVISO\n", - "1 ---> https://github.com/korpling/ANNIS\n", - "0 ---> https://github.com/sayounara/Green_training\n", - "2 ---> https://github.com/WikiWatershed/model-my-watershed\n", - "0 ---> https://github.com/aymara/lima\n", - "0 ---> https://github.com/xieguigang/ManhattanPlot\n", - "0 ---> https://github.com/thorstenwagner/TraJ\n", - "7 ---> https://github.com/sealuzh/lightweight-effectiveness\n", - "2 ---> https://github.com/phiresky/backchannel-prediction\n", - "0 ---> https://github.com/labexp/LibreScan\n", - "0 ---> https://github.com/jdmoorman/laptools\n", - "5 ---> https://github.com/krassowski/drug-disease-profile-matching\n", - "9 ---> https://github.com/allucas/allucas.github.io\n", - "0 ---> https://github.com/BradMcDanel/term-revealing\n", - "9 ---> https://github.com/silx-kit/pyFAI\n", - "0 ---> https://github.com/scipy-lectures/scipy-lecture-notes\n", - "0 ---> https://github.com/ornlneutronimaging/NEUIT\n", - "9 ---> https://github.com/kgullikson88/General\n", - "0 ---> https://github.com/BristolTopGroup/DailyPythonScripts\n", - "0 ---> https://github.com/redcap-tools/PyCap\n", - "9 ---> https://github.com/dgarijo/Widoco\n", - "1 ---> https://github.com/PecanProject/bety\n", - "7 ---> https://github.com/AABoyles/MicrobeTrace\n", - "0 ---> https://github.com/supercollider/supercollider\n", - "0 ---> https://github.com/linsalrob/PhiSpy\n", - "9 ---> https://github.com/Koushikphy/Interactive_Data_Editor\n", - "0 ---> https://github.com/keichi/mpEDM\n", - "9 ---> https://github.com/cldf-clts/pyclts\n", - "0 ---> https://github.com/TEB-model/teb\n", - "0 ---> https://github.com/comic/evalutils\n", - "0 ---> https://github.com/suryabaiarava/liferay-examples\n", - "0 ---> https://github.com/opencobra/cobratoolbox\n", - "0 ---> https://github.com/dtscalibration/python-dts-calibration\n", - "9 ---> https://github.com/eqcorrscan/EQcorrscan\n", - "0 ---> https://github.com/scikit-hep/decaylanguage\n", - "6 ---> https://github.com/OpenGeoscience/geojs\n", - "0 ---> https://github.com/PyThaiNLP/pythainlp\n", - "0 ---> https://github.com/TUW-GEO/ascat\n", - "0 ---> https://github.com/rvanheest/feedback4s\n", - "0 ---> https://github.com/screensinthewild/screenbase_instantiated_slideshow\n", - "0 ---> https://github.com/AMReX-Astro/MAESTROeX\n", - "0 ---> https://github.com/christianjauregui/famafrench\n", - "1 ---> https://github.com/TBroTeam/TBro\n", - "9 ---> https://github.com/mattbit/active-network-er\n", - "9 ---> https://github.com/timetag/ETA\n", - "0 ---> https://github.com/stephankramer/assess\n", - "9 ---> https://github.com/DataFusion4NetBio/Paper16-SCODE\n", - "6 ---> https://github.com/CDAT/jupyter-vcdat\n", - "0 ---> https://github.com/jorvlan/open-visualizations\n", - "0 ---> https://github.com/lsa-pucrs/acerta-abide\n", - "0 ---> https://github.com/particle-physics-playground/playground\n", - "0 ---> https://github.com/krischer/hypoDDpy\n", - "0 ---> https://github.com/jankrepl/deepdow\n", - "0 ---> https://github.com/weijias-opensource/acc\n", - "0 ---> https://github.com/sam-nayak/SynthNet\n", - "9 ---> https://github.com/laserkelvin/PySpecTools\n", - "0 ---> https://github.com/nithyanandan/AstroUtils\n", - "5 ---> https://github.com/tactcomplabs/xbgas-llvm\n", - "0 ---> https://github.com/mdolab/pyoptsparse\n", - "0 ---> https://github.com/tholoien/empiriciSN\n", - "0 ---> https://github.com/FUSED-Wind/fusedwind\n", - "0 ---> https://github.com/sam-greenwood/taco_vis\n", - "6 ---> https://github.com/lifs-tools/jmzTab-m\n", - "0 ---> https://github.com/JannisHoch/pcrglobwb_utils\n", - "0 ---> https://github.com/hep-lbdl/CaloGAN\n", - "0 ---> https://github.com/epiviz/Metaviz\n", - "0 ---> https://github.com/bbfrederick/rapidtide\n", - "0 ---> https://github.com/pnlbwh/conversion\n", - "1 ---> https://github.com/butcer0/SequenceOne\n", - "0 ---> https://github.com/LinkedEarth/Pyleoclim_util\n", - "5 ---> https://github.com/IMAGINE-Consortium/imagine\n", - "0 ---> https://github.com/glm-tools/pyglmnet\n", - "0 ---> https://github.com/aburrell/aacgmv2\n", - "0 ---> https://github.com/sncosmo/sncosmo\n", - "1 ---> https://github.com/InsightSoftwareConsortium/itkwidgets\n", - "0 ---> https://github.com/ICB-DCM/pyPESTO\n", - "0 ---> https://github.com/lballabio/QuantLib-SWIG\n", - "0 ---> https://github.com/SoftwareDevEngResearch/RigidFoilSimulator\n", - "0 ---> https://github.com/samuelstjean/dpr\n", - "0 ---> https://github.com/interrogator/corpkit\n", - "9 ---> https://github.com/gwu-libraries/sfm-ui\n", - "9 ---> https://github.com/tyson-swetnam/porder\n", - "9 ---> https://github.com/sabgaby/sabgaby\n", - "0 ---> https://github.com/panisson/pymobility\n", - "0 ---> https://github.com/ryanpeek/mapping-in-R-workshop\n", - "0 ---> https://github.com/lewisacidic/scikit-chem\n", - "1 ---> https://github.com/GerardBalaoro/jQuery-Tourer\n", - "1 ---> https://github.com/KnowledgeCaptureAndDiscovery/DISK\n", - "5 ---> https://github.com/RTIInternational/gobbli\n", - "0 ---> https://github.com/fabriziocosta/GraphLearn\n", - "0 ---> https://github.com/solvebio/veppy\n", - "0 ---> https://github.com/diku-dk/futhark\n", - "9 ---> https://github.com/kks32-slides/2016-berkeley\n", - "0 ---> https://github.com/SeqWare/oozie-sge\n", - "0 ---> https://github.com/kristianfoerster/melodist\n", - "0 ---> https://github.com/midas-isg/epicasemap\n", - "0 ---> https://github.com/BristolTopGroup/NTupleProduction\n", - "0 ---> https://github.com/kuchaale/X-regression\n", - "8 ---> https://github.com/dockstore/dockstore-ui2\n", - "0 ---> https://github.com/abhi1693/yii2-sms\n", - "5 ---> https://github.com/NLeSC/eEcology-Classification\n", - "0 ---> https://github.com/jdidion/atropos\n", - "0 ---> https://github.com/KBRI-Neuroinformatics/WGAN-for-RNASeq-analysis\n", - "0 ---> https://github.com/PinkShnack/TEMUL\n", - "0 ---> https://github.com/rOpenGov/eurostat\n", - "0 ---> https://github.com/rock-learning/pytransform3d\n", - "0 ---> https://github.com/matthiaskoenig/sbmlutils\n", - "9 ---> https://github.com/PennLINC/aslprep\n", - "0 ---> https://github.com/tamacgregor/structure_factor_tools\n", - "9 ---> https://github.com/kgullikson88/gullikson-scripts\n", - "0 ---> https://github.com/jacirrone/OutPredict\n", - "0 ---> https://github.com/shiyy123/FCDetector\n", - "5 ---> https://github.com/fmi-faim/fmi-trackmate-addons\n", - "0 ---> https://github.com/biocaddie/WG3-MetadataSpecifications\n", - "0 ---> https://github.com/habi/Zebra-Fish-Gills\n", - "0 ---> https://github.com/ga4gh/tool-registry-validator\n", - "9 ---> https://github.com/sagemath/sage\n", - "5 ---> https://github.com/4DNucleome/PartSeg\n", - "9 ---> https://github.com/priestoferis/animal-behaviour-analysis-2020\n", - "9 ---> https://github.com/mayconbordin/streaminer\n", - "9 ---> https://github.com/ctsit/redcap_external_module_development_guide\n", - "0 ---> https://github.com/joshje/drawpath\n", - "5 ---> https://github.com/BeckResearchLab/USP-inhibition\n", - "1 ---> https://github.com/bio-ontology-research-group/DDIEM\n", - "3 ---> https://github.com/fvalka/atc-reinforcement-learning\n", - "0 ---> https://github.com/kb-press/ndsplines\n", - "0 ---> https://github.com/agnsal/BlocksBot\n", - "0 ---> https://github.com/benmaier/COVID19CaseNumberModel\n", - "9 ---> https://github.com/uweschmitt/emzed2\n", - "0 ---> https://github.com/prajankya/Lidar-Robot\n", - "0 ---> https://github.com/AAROC/DevOps\n", - "0 ---> https://github.com/ybayle/Scyland3D\n", - "0 ---> https://github.com/jswhit/pygrib\n", - "0 ---> https://github.com/PTC-CMC/McCabeGroup\n", - "0 ---> https://github.com/bdw/GridKit\n", - "0 ---> https://github.com/feelpp/feelpp\n", - "3 ---> https://github.com/seclab-ucr/UBITect\n", - "3 ---> https://github.com/SuLab/scheduled-bots\n", - "0 ---> https://github.com/mjlaine/eppes\n", - "0 ---> https://github.com/alpha-xone/xbbg\n", - "0 ---> https://github.com/IA-Cardiologia-husa/VHD_NLP\n", - "5 ---> https://github.com/ahamilton144/hamilton-2020-managing-financial-risk-tradeoffs-for-hydropower\n", - "8 ---> https://github.com/MonashBioinformaticsPlatform/laxy\n", - "0 ---> https://github.com/Ptrskay3/PySprint\n", - "0 ---> https://github.com/gaojun0816/code_access_finder\n", - "2 ---> https://github.com/LinkedDataFragments/Server.js\n", - "1 ---> https://github.com/lgsvl/simulator\n", - "0 ---> https://github.com/foerstner-lab/GRADitude\n", - "0 ---> https://github.com/BritishMuseumDH/britishMuseumFacesDetection\n", - "0 ---> https://github.com/mattpitkin/psrqpy\n", - "0 ---> https://github.com/cbirdferrer/collatrix\n", - "0 ---> https://github.com/spacetelescope/pysiaf\n", - "0 ---> https://github.com/jag1g13/pycgtool\n", - "3 ---> https://github.com/jtmccr1/figtreejs-react\n", - "0 ---> https://github.com/vedantchandra/wdtools\n", - "0 ---> https://github.com/ericleasemorgan/reader\n", - "9 ---> https://github.com/AbhinavMir/Decentralized-Journalism-Using-Ethereum\n", - "0 ---> https://github.com/juliolugo96/ula-lang\n", - "0 ---> https://github.com/CountESS-Project/fqfa\n", - "0 ---> https://github.com/reflectivity/reflectivity.github.io\n", - "0 ---> https://github.com/vuw-sim-stia/TICJ\n", - "5 ---> https://github.com/tudelft3d/bag3d\n", - "5 ---> https://github.com/cyverse-gis/suas-metadata\n", - "0 ---> https://github.com/mwcraig/msumastro\n", - "0 ---> https://github.com/ctsit/qipr_approver\n", - "0 ---> https://github.com/Caltech-IPAC/Montage\n", - "0 ---> https://github.com/emtpb/pyfds\n", - "3 ---> https://github.com/DennisRippinger/spade\n", - "0 ---> https://github.com/Chilipp/psyplot_old\n", - "2 ---> https://github.com/UNCG-DAISY/Coastal-Image-Labeler\n", - "6 ---> https://github.com/jiemakel/aether\n", - "0 ---> https://github.com/chrisdjscott/Atoman\n", - "1 ---> https://github.com/cosmo-epfl/chemiscope\n", - "0 ---> https://github.com/spcl/dace\n", - "0 ---> https://github.com/CardiacModelling/nonlinear-time-dependent-leak\n", - "0 ---> https://github.com/templateflow/python-client\n", - "0 ---> https://github.com/redmod-team/profit\n", - "0 ---> https://github.com/pavolgaj/ObsPlanner\n", - "0 ---> https://github.com/nick-youngblut/MGSIM\n", - "5 ---> https://github.com/fcproj/agrotagger\n", - "0 ---> https://github.com/epiviz/epiviz\n", - "8 ---> https://github.com/filips123/EthAvatar.JS\n", - "1 ---> https://github.com/quadrama/DramaNLP\n", - "3 ---> https://github.com/Kitware/itk-vtk-viewer\n", - "8 ---> https://github.com/academic/thesaurus-manager\n", - "0 ---> https://github.com/milaboratory/mixcr\n", - "5 ---> https://github.com/Fu-PusH/statement-finder\n", - "0 ---> https://github.com/openmc-dev/openmc\n", - "0 ---> https://github.com/brelsford/topology\n", - "0 ---> https://github.com/thela/django_log_to_telegram\n", - "9 ---> https://github.com/cigroup-ol/metaopt\n", - "0 ---> https://github.com/lucananni93/CTCF_Spatial_Patterns\n", - "0 ---> https://github.com/stfbnc/fathon\n", - "0 ---> https://github.com/prisms-center/CASMcode\n", - "0 ---> https://github.com/ccd-utexas/binstarsolver\n", - "9 ---> https://github.com/wallissoncarvalho/HidroData\n", - "0 ---> https://github.com/XPRESSyourself/XPRESSplot\n", - "0 ---> https://github.com/airr-community/airr-standards\n", - "0 ---> https://github.com/joaomcteixeira/taurenmd\n", - "0 ---> https://github.com/jyhmiinlin/pynufft\n", - "0 ---> https://github.com/atrisovic/econ-data-policy\n", - "6 ---> https://github.com/DPBayes/DP-cross-silo-federated-learning\n", - "0 ---> https://github.com/statsmodels/statsmodels\n", - "6 ---> https://github.com/SciGraph/SciGraph\n", - "0 ---> https://github.com/giannisdoukas/ipython2cwl\n", - "9 ---> https://github.com/Neurita/pypes\n", - "5 ---> https://github.com/pesummary/pesummary\n", - "6 ---> https://github.com/nilsreiter/CorefAnnotator\n", - "5 ---> https://github.com/tripal/tripal_galaxy\n", - "0 ---> https://github.com/hipster-philology/protogenie\n", - "0 ---> https://github.com/PGijsbers/gama\n", - "5 ---> https://github.com/collab-uniba/personality\n", - "0 ---> https://github.com/sertansenturk/makammusicbrainz\n", - "9 ---> https://github.com/biowdl/germline-DNA\n", - "3 ---> https://github.com/CLARIAH/grlc\n", - "0 ---> https://github.com/openvax/isovar\n", - "3 ---> https://github.com/iimog/wikidata-game-flower-color\n", - "0 ---> https://github.com/seawander/nmf_imaging\n", - "9 ---> https://github.com/GiulioRossetti/cdlib\n", - "0 ---> https://github.com/neuhofmo/RecBlast\n", - "5 ---> https://github.com/cyverse-vice/jupyterlab-scipy\n", - "0 ---> https://github.com/UWDIRECT/UWDIRECT.github.io\n", - "0 ---> https://github.com/CoffeaTeam/coffea\n", - "3 ---> https://github.com/Rothamsted/knetminer\n", - "0 ---> https://github.com/multipaths/DiffuPath\n", - "0 ---> https://github.com/matplotlib/mpl-probscale\n", - "0 ---> https://github.com/richardjgowers/GCMCbenchmarks\n", - "0 ---> https://github.com/daft-dev/daft\n", - "6 ---> https://github.com/arose/ngl\n", - "0 ---> https://github.com/fa-me/spotlob\n", - "0 ---> https://github.com/thompsonsed/pycoalescence\n", - "9 ---> https://github.com/sdss/marvin\n", - "0 ---> https://github.com/brmather/pycurious\n", - "0 ---> https://github.com/MHKiT-Software/MHKiT-MATLAB\n", - "1 ---> https://github.com/sigsep/sigsep-mus-2018-website\n", - "0 ---> https://github.com/amusecode/amuse\n", - "6 ---> https://github.com/bwbohl/introduction-to-mei\n", - "6 ---> https://github.com/JaneliaSciComp/SharkViewer\n", - "9 ---> https://github.com/KeplerGO/lightkurve\n", - "0 ---> https://github.com/transientlunatic/gravpy\n", - "0 ---> https://github.com/astroufsc/chimera\n", - "1 ---> https://github.com/cogan-shimizu-wsu/ExperimentAnnotationTracker\n", - "0 ---> https://github.com/jenojp/extractacy\n", - "7 ---> https://github.com/aaronSig/rainforest-rhythms\n", - "0 ---> https://github.com/valentina-s/time-series-nmf\n", - "0 ---> https://github.com/Nikronic/Optimized-MDVRP\n", - "0 ---> https://github.com/pr-omethe-us/PyTeCK\n", - "0 ---> https://github.com/bumps/bumps\n", - "0 ---> https://github.com/jtempkin/enhanced_sampling_toolkit\n", - "5 ---> https://github.com/automatedskip/homerent.io\n", - "0 ---> https://github.com/a-slide/NanoCount\n", - "0 ---> https://github.com/NLeSC/dask-cassandra-loader\n", - "6 ---> https://github.com/explosion/spaCy\n", - "3 ---> https://github.com/mjuez/TFM2016_Analisis-Visual-Revisiones-Codigo\n", - "3 ---> https://github.com/owlcollab/owltools\n", - "5 ---> https://github.com/mmhss/sstrong-import\n", - "0 ---> https://github.com/I2Cvb/retinopathy\n", - "1 ---> https://github.com/sgsaenger/vipster\n", - "5 ---> https://github.com/SHDShim/PeakPo\n", - "0 ---> https://github.com/rangeetpan/decomposeDNNintoModules\n", - "0 ---> https://github.com/InsightSoftwareConsortium/ITKColorNormalization\n", - "0 ---> https://github.com/coin-or/Dip\n", - "9 ---> https://github.com/Thales1330/PSP\n", - "9 ---> https://github.com/fepegar/torchio\n", - "0 ---> https://github.com/phenoscape/phenoscape-owl-tools\n", - "9 ---> https://github.com/htcondor/htcondor-ce\n", - "0 ---> https://github.com/hugadams/pyparty\n", - "0 ---> https://github.com/NLeSC/baklava\n", - "5 ---> https://github.com/howardyclo/grammar-pattern\n", - "5 ---> https://github.com/ufbmi/mdc_search\n", - "9 ---> https://github.com/aplowman/first-principles-zr-grain-boundaries\n", - "5 ---> https://github.com/dlozeve/tda-networks\n", - "3 ---> https://github.com/mustakcsecuet/COIN-Attacks\n", - "0 ---> https://github.com/LargerPanda/ceph\n", - "5 ---> https://github.com/glukicov/ML_GPU\n", - "5 ---> https://github.com/devitocodes/devito\n", - "0 ---> https://github.com/pnlbwh/TBSS\n", - "0 ---> https://github.com/scipy/scipy\n", - "0 ---> https://github.com/DiamondLightSource/SuRVoS\n", - "9 ---> https://github.com/wri/restoration-mapper\n", - "0 ---> https://github.com/ICB-DCM/tumor2d\n", - "0 ---> https://github.com/sertansenturk/symbtrdataextractor\n", - "9 ---> https://github.com/chrisma/ScrumLint\n", - "0 ---> https://github.com/TheoryInPractice/BEAVr\n", - "5 ---> https://github.com/jloveric/high-order-layers\n", - "0 ---> https://github.com/jcreinhold/selfsupervised3d\n", - "0 ---> https://github.com/mlp6/fem\n", - "0 ---> https://github.com/Eden-Kramer-Lab/replay_trajectory_classification\n", - "9 ---> https://github.com/nschloe/colorio\n", - "0 ---> https://github.com/tsalo/convert-eprime\n", - "0 ---> https://github.com/projectglow/glow\n", - "0 ---> https://github.com/FRidh/scintillations\n", - "0 ---> https://github.com/pitt-rnel/perceptmapper\n", - "6 ---> https://github.com/carnisj/bcdi\n", - "0 ---> https://github.com/pysal/esda\n", - "0 ---> https://github.com/pedropro/TACO\n", - "0 ---> https://github.com/nkratzke/twista\n", - "0 ---> https://github.com/MicroPasts/egyptExplorationSocietyBuhen\n", - "0 ---> https://github.com/Lasagne/Lasagne\n", - "0 ---> https://github.com/Andros-Spica/EMAC-Angourakis-et-al-2019\n", - "1 ---> https://github.com/fg-inet/DASH-streaming-setup\n", - "0 ---> https://github.com/JiaweiZhuang/xESMF\n", - "0 ---> https://github.com/astrorama/SourceXtractorPlusPlus\n", - "9 ---> https://github.com/ssec/sift\n", - "0 ---> https://github.com/IMMM-SFA/proxymod\n", - "3 ---> https://github.com/bgruening/docker-galaxy-stable\n", - "0 ---> https://github.com/reflectometry/refl1d\n", - "9 ---> https://github.com/napari/napari\n", - "0 ---> https://github.com/sgrieve/spatial_efd\n", - "0 ---> https://github.com/genn-team/genn\n", - "0 ---> https://github.com/AxFoundation/strax\n", - "0 ---> https://github.com/pofatu/pypofatu\n", - "0 ---> https://github.com/bsc-mem/UEPREDICT\n", - "3 ---> https://github.com/Smart-Contract-Modelling-uOttawa/Symboleo-Compliance-Checker\n", - "0 ---> https://github.com/smarie/python-spawny\n", - "0 ---> https://github.com/usnistgov/jarvis\n", - "0 ---> https://github.com/diana-hep/carl\n", - "5 ---> https://github.com/PTB-PSt1/PyDynamic\n", - "5 ---> https://github.com/mne-tools/mne-python\n", - "0 ---> https://github.com/mlbernauer/drugstandards\n", - "0 ---> https://github.com/kundajelab/kerasAC\n", - "5 ---> https://github.com/felicitia/TestAnalyzer\n", - "3 ---> https://github.com/sshilpika/error-log-analysis\n", - "0 ---> https://github.com/dhermes/bezier\n", - "0 ---> https://github.com/sphinx-gallery/sphinx-gallery\n", - "5 ---> https://github.com/pysal/pysal\n", - "0 ---> https://github.com/numericalalgorithmsgroup/pybobyqa\n", - "0 ---> https://github.com/PyNIPT/pynipt\n", - "0 ---> https://github.com/jesford/cluster-lensing\n", - "0 ---> https://github.com/cosanlab/nltools\n", - "2 ---> https://github.com/plantinformatics/pretzel\n", - "0 ---> https://github.com/ryanpdwyer/1605-phasekick\n", - "3 ---> https://github.com/NatLibFi/Skosmos\n", - "9 ---> https://github.com/jcchiba/GANSta\n", - "0 ---> https://github.com/chembience/chembience\n", - "0 ---> https://github.com/Quantum-TII/qprime\n", - "1 ---> https://github.com/OpenKnowledgeMaps/Headstart\n", - "0 ---> https://github.com/radnut/amc\n", - "0 ---> https://github.com/omuse-geoscience/omuse\n", - "5 ---> https://github.com/klugem/watchdog\n", - "0 ---> https://github.com/nils-wisiol/pypuf\n", - "0 ---> https://github.com/ladisk/pyDIC\n", - "0 ---> https://github.com/easyDiffraction/easyDiffraction\n", - "0 ---> https://github.com/pauleve/pint\n", - "9 ---> https://github.com/e5k/TephraProb\n", - "0 ---> https://github.com/fmalmeida/bacannot\n", - "0 ---> https://github.com/delph-in/pydmrs\n", - "0 ---> https://github.com/GenericMappingTools/pygmt\n", - "6 ---> https://github.com/pymedphys/pymedphys\n", - "0 ---> https://github.com/anuprulez/galaxy_tool_recommendation\n", - "0 ---> https://github.com/BMKEG/sciDT-pipeline\n", - "9 ---> https://github.com/Irstea/otolithe\n", - "0 ---> https://github.com/hugovk/pypistats\n", - "0 ---> https://github.com/single-cell-genetics/vireo\n", - "5 ---> https://github.com/bionode/bionode\n", - "0 ---> https://github.com/Edric-Matwiejew/QuOp_MPI\n", - "5 ---> https://github.com/evanodell/parlitools\n", - "0 ---> https://github.com/steven-murray/hankel\n", - "9 ---> https://github.com/guillochon/MOSFiT\n", - "0 ---> https://github.com/lascivaroma/priapeia\n", - "0 ---> https://github.com/vahtras/loprop\n", - "0 ---> https://github.com/pv8/noipy\n", - "0 ---> https://github.com/MAfarrag/Hapi\n", - "0 ---> https://github.com/monteirotorres/ProtCHOIR\n", - "9 ---> https://github.com/dejac001/adsorption_isotherm_fitting\n", - "9 ---> https://github.com/GilesStrong/lumin\n", - "3 ---> https://github.com/worldsensing/xyz-iot-monitoring\n", - "0 ---> https://github.com/rcsb/ciftools-java\n", - "0 ---> https://github.com/cgre-aachen/pynoddy\n", - "0 ---> https://github.com/bashtage/linearmodels\n", - "0 ---> https://github.com/pygae/galgebra\n", - "5 ---> https://github.com/SandstoneHPC/sandstone-ide\n", - "0 ---> https://github.com/darothen/pyrcel\n", - "5 ---> https://github.com/DD-DeCaF/id-mapper\n", - "1 ---> https://github.com/Colectica/curation\n", - "0 ---> https://github.com/harnesscloud/harness-resource-manager\n", - "3 ---> https://github.com/huggingface/transformers\n", - "0 ---> https://github.com/stadelmanma/netl-ap-map-flow\n", - "0 ---> https://github.com/jl-wynen/isle\n", - "1 ---> https://github.com/rodighiero/DH2020\n", - "5 ---> https://github.com/scalaris-team/scalaris\n", - "0 ---> https://github.com/FEEprojects/plantower\n", - "0 ---> https://github.com/aibasel/pyperplan\n", - "0 ---> https://github.com/theboocock/NGaDNAP\n", - "9 ---> https://github.com/DeathStar3/symfinder\n", - "0 ---> https://github.com/AdmiralenOla/Scoary\n", - "0 ---> https://github.com/NickleDave/visual-search-nets\n", - "9 ---> https://github.com/dhondta/AppmemDumper\n", - "0 ---> https://github.com/scikit-hep/boost-histogram\n", - "3 ---> https://github.com/vsoch/askci\n", - "0 ---> https://github.com/boutiques/boutiques\n", - "0 ---> https://github.com/nansencenter/nansat\n", - "0 ---> https://github.com/cdanielmachado/reframed\n", - "0 ---> https://github.com/LightForm-group/matflow\n", - "9 ---> https://github.com/Capitains/Hook\n", - "0 ---> https://github.com/arokem/ISBI2015\n", - "0 ---> https://github.com/a-slide/NanoSnake\n", - "1 ---> https://github.com/laplizard/infoplot\n", - "0 ---> https://github.com/hugadams/PAME\n", - "0 ---> https://github.com/torressa/cspy\n", - "9 ---> https://github.com/ConservationInternational/trends.earth\n", - "0 ---> https://github.com/OpenChemistry/avogadrolibs\n", - "0 ---> https://github.com/ondrolexa/pywerami\n", - "1 ---> https://github.com/Sulstice/datacity\n", - "0 ---> https://github.com/bootphon/phonemizer\n", - "0 ---> https://github.com/chrisgorgo/alleninf\n", - "9 ---> https://github.com/opentox/lazar-rest\n", - "2 ---> https://github.com/SeqWare/seqware\n", - "0 ---> https://github.com/msmbuilder/osprey\n", - "9 ---> https://github.com/urschrei/CDP\n", - "5 ---> https://github.com/comic/grand-challenge.org\n", - "0 ---> https://github.com/roland-wallner/dss2020-ex1\n", - "0 ---> https://github.com/tasoc/corrections\n", - "1 ---> https://github.com/lucasberent/mapleDocs\n", - "0 ---> https://github.com/bakirtzisg/cybok-cli\n", - "0 ---> https://github.com/SuperElastix/SimpleElastix\n", - "0 ---> https://github.com/fsherry/bilevelmri\n", - "0 ---> https://github.com/USEPA/standardizedinventories\n", - "9 ---> https://github.com/ilogue/niprov\n", - "6 ---> https://github.com/kundajelab/atac_dnase_pipelines\n", - "0 ---> https://github.com/ktmeaton/NCBImeta\n", - "1 ---> https://github.com/University-of-Potsdam-MM/Reflect.UP\n", - "0 ---> https://github.com/mdolab/OpenAeroStruct\n", - "0 ---> https://github.com/amcpherson/remixt\n", - "0 ---> https://github.com/fbpic/fbpic\n", - "3 ---> https://github.com/sjcross/MIA\n", - "0 ---> https://github.com/RiceMunk/omnifit\n", - "6 ---> https://github.com/cronelab/bci2000web\n", - "0 ---> https://github.com/epigen/crop-seq\n", - "9 ---> https://github.com/rholson1/peyecoder\n", - "0 ---> https://github.com/dmnfarrell/pandastable\n", - "9 ---> https://github.com/YeoLab/flotilla\n", - "0 ---> https://github.com/amisr/flipchem\n", - "2 ---> https://github.com/TGAC/brassica\n", - "0 ---> https://github.com/silx-kit/fabio\n", - "0 ---> https://github.com/numericalalgorithmsgroup/dfols\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "9 ---> https://github.com/zeeguu-ecosystem/Zeeguu-API\n", - "3 ---> https://github.com/AVAuco/ssd_head_keras\n", - "9 ---> https://github.com/PRIMAVERA-H2020/primavera-dmt\n", - "0 ---> https://github.com/MartinMalyMM/pairef\n", - "0 ---> https://github.com/ImperialCollegeLondon/covid19model\n", - "0 ---> https://github.com/BrkRaw/bruker\n", - "3 ---> https://github.com/oicr-gsi/shesmu\n", - "9 ---> https://github.com/coderdj/emo\n", - "0 ---> https://github.com/ladisk/DyS\n", - "9 ---> https://github.com/Quasars/orange-spectroscopy\n", - "0 ---> https://github.com/WorldVistA/VistA\n", - "9 ---> https://github.com/faroit/CountNet\n", - "0 ---> https://github.com/HHTpy/HHTpywrapper\n", - "0 ---> https://github.com/constantinpape/z5\n", - "0 ---> https://github.com/samapriya/hdxpop\n", - "0 ---> https://github.com/pik-copan/pycopancore\n", - "0 ---> https://github.com/MARLEY-MC/marley\n", - "0 ---> https://github.com/garrettwrong/cuTWED\n", - "5 ---> https://github.com/greenape/mknotebooks\n", - "5 ---> https://github.com/bbglab/muts-needle-plot\n", - "0 ---> https://github.com/NickleDave/crowsetta\n", - "0 ---> https://github.com/ISA-tools/stato\n", - "9 ---> https://github.com/LJMUAstroecology/flirpy\n", - "0 ---> https://github.com/OntoElect/Code\n", - "3 ---> https://github.com/diging/giles-eco-cepheus\n", - "0 ---> https://github.com/scikit-hep/mplhep\n", - "0 ---> https://github.com/alimanfoo/vcfnp\n", - "0 ---> https://github.com/bjodah/finitediff\n", - "0 ---> https://github.com/pysit/pysit\n", - "0 ---> https://github.com/observingClouds/eurec4a_snd\n", - "0 ---> https://github.com/colloidlab/ccc-calculator\n", - "0 ---> https://github.com/elihuihms/itcsimlib\n", - "9 ---> https://github.com/tigefa4u/tigefa4u.github.io\n", - "0 ---> https://github.com/dvolgyes/zenodo_get\n", - "0 ---> https://github.com/alexander-rossner/dh-researchtool-landscape\n", - "5 ---> https://github.com/pylayers/pylayers\n", - "3 ---> https://github.com/alexrashed/eval_rest\n", - "0 ---> https://github.com/jovo/PyGraphStat\n", - "5 ---> https://github.com/dannyboscan/angular-and-rails\n", - "5 ---> https://github.com/Aletechdev/ava\n", - "0 ---> https://github.com/annotation/text-fabric\n", - "0 ---> https://github.com/ksmet1977/luxpy\n", - "0 ---> https://github.com/thorstenwagner/spie-photonics-europe-2016\n", - "3 ---> https://github.com/root-project/root\n", - "9 ---> https://github.com/slimsuite/SLiMScape\n", - "0 ---> https://github.com/AlanLoh/nenupy\n", - "0 ---> https://github.com/waterlandlab/CluBCpG\n", - "5 ---> https://github.com/diging/citesphere-importer\n", - "9 ---> https://github.com/OpenDroneMap/ODM\n", - "0 ---> https://github.com/openrsp/openrsp\n", - "1 ---> https://github.com/AliTVTeam/AliTV\n", - "9 ---> https://github.com/Finn-Lab/EukCC\n", - "0 ---> https://github.com/amlalejini/ALife-2020--SignalGP-Genetic-Regulation\n", - "9 ---> https://github.com/rinde/RinECJ\n", - "5 ---> https://github.com/spacetelescope/drizzlepac\n", - "0 ---> https://github.com/smoh/gaia-comoving-stars\n", - "0 ---> https://github.com/ckrapu/sprcom\n", - "9 ---> https://github.com/Terradue/rOpenSearch\n", - "1 ---> https://github.com/essepuntato/rash\n", - "0 ---> https://github.com/pygridtools/gridmap\n", - "9 ---> https://github.com/dftlibs/numgrid\n", - "5 ---> https://github.com/sckott/serrano\n", - "2 ---> https://github.com/snewhouse/exotic-dna-ngs\n", - "0 ---> https://github.com/numenta/gridcodingrange\n", - "0 ---> https://github.com/KWB-R/fakin\n", - "0 ---> https://github.com/fpavogt/fcmaker\n", - "6 ---> https://github.com/falafeljan/recogito-user-testing\n", - "0 ---> https://github.com/CalebBell/fluids\n", - "0 ---> https://github.com/ImperialCollegeLondon/acoustics-db\n", - "9 ---> https://github.com/mfroeling/QMRITools\n", - "9 ---> https://github.com/tqbl/ood_audio\n", - "1 ---> https://github.com/delphi-hub/delphi-webapp\n", - "0 ---> https://github.com/taishi-i/nagisa\n", - "0 ---> https://github.com/slimgroup/Azure2019\n", - "0 ---> https://github.com/afilipanog/afilipanog.github.io\n", - "9 ---> https://github.com/samapriya/Sat-Pipeline-CLI\n", - "0 ---> https://github.com/shah314/graphcoloring\n", - "0 ---> https://github.com/YeoLab/gscripts\n", - "5 ---> https://github.com/FitzwilliamMuseum/ahrc-linking-islands\n", - "0 ---> https://github.com/cern-fts/webfts\n", - "0 ---> https://github.com/brinkmanlab/feature_merge\n", - "0 ---> https://github.com/dohalloran/phylo-node\n", - "9 ---> https://github.com/IMTtugraz/PyQMRI\n", - "0 ---> https://github.com/openearth/aeolis\n", - "0 ---> https://github.com/obreitwi/py-veer\n", - "5 ---> https://github.com/InsightSoftwareConsortium/ITKElastix\n", - "3 ---> https://github.com/meijer-jeroen/contingent-evolution-2020\n", - "0 ---> https://github.com/pandera-dev/pandera\n", - "0 ---> https://github.com/cheshire3/cheshire3\n", - "0 ---> https://github.com/ludwig-burtscher/invenio-with-provenance\n", - "5 ---> https://github.com/CeON/CERMINE\n", - "9 ---> https://github.com/mjiUST/VasNet\n", - "5 ---> https://github.com/scleveland/NADV\n", - "1 ---> https://github.com/nextcloud/android\n", - "0 ---> https://github.com/neurodata/mvlearn\n", - "0 ---> https://github.com/TUM-CPN/CropTypes\n", - "6 ---> https://github.com/BMKEG/UimaBioC\n", - "1 ---> https://github.com/jbathmann/pyMANGA\n", - "0 ---> https://github.com/THzbiophotonics/Fit-TDS\n", - "5 ---> https://github.com/ICGC-TCGA-PanCancer/OxoGWrapperWorkflow\n", - "0 ---> https://github.com/franknu/cgmodsel\n", - "0 ---> https://github.com/openpathsampling/openpathsampling\n", - "0 ---> https://github.com/Teichlab/cellphonedb\n", - "0 ---> https://github.com/pear2/Net_Transmitter\n", - "0 ---> https://github.com/oslocyclotronlab/ompy\n", - "0 ---> https://github.com/GooglingTheCancerGenome/sv-gen\n", - "0 ---> https://github.com/benmontet/f3\n", - "0 ---> https://github.com/rubbs14/CSP-Analyzer\n", - "9 ---> https://github.com/hugomilan/tlmbht\n", - "0 ---> https://github.com/GRIFFINCollaboration/beamCompanionExplorer\n", - "9 ---> https://github.com/arnikz/PIQMIe\n", - "0 ---> https://github.com/SuperDARN/pydarn\n", - "9 ---> https://github.com/CharafeddineMechalikh/PureEdgeSim\n", - "0 ---> https://github.com/Andros-Spica/Postdocs-Angourakis-2019\n", - "1 ---> https://github.com/austindrenski/AD.PartialEquilibriumApi\n", - "0 ---> https://github.com/LightForm-group/xrdfit\n", - "0 ---> https://github.com/spcl/stencilflow\n", - "0 ---> https://github.com/kdmurray91/libqcpp\n", - "0 ---> https://github.com/nipy/nibabel\n", - "0 ---> https://github.com/openearth/flamingo\n", - "1 ---> https://github.com/ARGOeu/poem-2\n", - "6 ---> https://github.com/HelioML/HelioML\n", - "0 ---> https://github.com/SwissTPH/TBRU_serialTB\n", - "5 ---> https://github.com/liminoid/liminoid-react\n", - "0 ---> https://github.com/HaroldMills/Vesper\n", - "3 ---> https://github.com/iterative/dvc\n", - "0 ---> https://github.com/ultralytics/yolov5\n", - "0 ---> https://github.com/spa-networks/hpa\n", - "0 ---> https://github.com/PX4/Firmware\n", - "5 ---> https://github.com/speckleworks/SpeckleRhino\n", - "0 ---> https://github.com/alan-turing-institute/sktime\n", - "0 ---> https://github.com/Phlya/coolpuppy\n", - "6 ---> https://github.com/sigsep/website\n", - "0 ---> https://github.com/dejac001/distillation\n", - "9 ---> https://github.com/simeonreusch/ztffps\n", - "0 ---> https://github.com/django-salesforce/django-salesforce\n", - "9 ---> https://github.com/jellis18/PAL2\n", - "9 ---> https://github.com/rsa-tools/rsat-code\n", - "9 ---> https://github.com/tompollard/phd_thesis_markdown\n", - "0 ---> https://github.com/fpavogt/pyqz\n", - "0 ---> https://github.com/fnl/medic\n", - "9 ---> https://github.com/SciTools/iris\n", - "0 ---> https://github.com/neglectos/dockerhub_analysis\n", - "0 ---> https://github.com/mosdef-hub/foyer\n", - "9 ---> https://github.com/calipho-sib/feature-viewer\n", - "2 ---> https://github.com/academic/vipa\n", - "0 ---> https://github.com/IndexedConv/IndexedConv\n", - "0 ---> https://github.com/VlachosGroup/openmkm\n", - "0 ---> https://github.com/nipype/pydra\n", - "9 ---> https://github.com/sherlock-clustering/Sherlock_DiVE\n", - "0 ---> https://github.com/datalad/datalad\n", - "0 ---> https://github.com/asreview/asreview-covid19\n", - "9 ---> https://github.com/mikahama/akusanat\n", - "0 ---> https://github.com/laderast/ready_for_r_site\n", - "0 ---> https://github.com/GlobalNamesArchitecture/taxamatch_rb\n", - "0 ---> https://github.com/adbar/htmldate\n", - "0 ---> https://github.com/jonescompneurolab/hnn\n", - "0 ---> https://github.com/iross/km_indexer\n", - "0 ---> https://github.com/jameslyons/python_speech_features\n", - "9 ---> https://github.com/biolink/biolink-model\n", - "0 ---> https://github.com/x10-lang/x10\n", - "0 ---> https://github.com/MicroPasts/projectAndvariLOD\n", - "0 ---> https://github.com/griffin-h/lightcurve_fitting\n", - "0 ---> https://github.com/lanl/VizAly-Foresight\n", - "8 ---> https://github.com/cytoscape/cytoscape.js-cxtmenu\n", - "5 ---> https://github.com/BrennerG/DS1\n", - "9 ---> https://github.com/KitwareMedical/HASI\n", - "9 ---> https://github.com/SELAB-AA/arvue-platform\n", - "0 ---> https://github.com/rjfarmer/gfort2py\n", - "0 ---> https://github.com/danhey/maelstrom\n", - "9 ---> https://github.com/lewisacidic/synergy-maps\n", - "0 ---> https://github.com/KamilSJaron/smudgeplot\n", - "5 ---> https://github.com/zfit/zfit\n", - "0 ---> https://github.com/arkottke/pykooh\n", - "9 ---> https://github.com/gvoysey/corti\n", - "2 ---> https://github.com/bongadi/ARV-Predictor-OngadiB\n", - "2 ---> https://github.com/aquariumbio/aquarium\n", - "9 ---> https://github.com/appukuttan-shailesh/morphounit\n", - "0 ---> https://github.com/mbari-media-management/vars-avfoundation\n", - "6 ---> https://github.com/phon-ca/phon\n", - "0 ---> https://github.com/kbroman/AdvData\n", - "0 ---> https://github.com/insilichem/gaudiview\n", - "0 ---> https://github.com/bdhammel/least-squares-ellipse-fitting\n", - "3 ---> https://github.com/matthiaskoenig/pkdb\n", - "5 ---> https://github.com/manoelcampos/cloudsim-plus\n", - "0 ---> https://github.com/pystruct/pystruct\n", - "0 ---> https://github.com/mozillazg/phrase-pinyin-data\n", - "8 ---> https://github.com/pabloaaf/Factor-TranscriptionCaseStudy\n", - "0 ---> https://github.com/PonteIneptique/archives_org_latin_toolkit\n", - "0 ---> https://github.com/GeoStat-Framework/welltestpy\n", - "0 ---> https://github.com/guaix-ucm/numina\n", - "0 ---> https://github.com/mariogeiger/se3cnn\n", - "9 ---> https://github.com/craws/OpenAtlas\n", - "0 ---> https://github.com/sjvrijn/mf2\n", - "2 ---> https://github.com/docable/docable\n", - "5 ---> https://github.com/qbicsoftware/projectwizard-portlet\n", - "0 ---> https://github.com/DuttonLab/kvasir\n", - "0 ---> https://github.com/SolarArbiter/solarforecastarbiter-core\n", - "0 ---> https://github.com/duecredit/duecredit\n", - "9 ---> https://github.com/epiviz/epivizFileParser\n", - "0 ---> https://github.com/Accenture/AmpliGraph\n", - "7 ---> https://github.com/dockstore/dockstore\n", - "9 ---> https://github.com/jacobwindsor/kaavio-showdown\n", - "0 ---> https://github.com/julemai/EEE-DA\n", - "0 ---> https://github.com/materialsproject/custodian\n", - "0 ---> https://github.com/Samreay/Pippin\n", - "0 ---> https://github.com/DeepRank/deeprank\n", - "5 ---> https://github.com/bionode/bionode-ncbi\n", - "0 ---> https://github.com/leonardo-calcagno/covid19model_latam\n", - "9 ---> https://github.com/openvax/varcode\n", - "5 ---> https://github.com/nilsreiter/uima-util\n", - "0 ---> https://github.com/pybel/pybel\n", - "0 ---> https://github.com/hitliaomq/ELASTIC3rd\n", - "9 ---> https://github.com/portugueslab/stytra\n", - "3 ---> https://github.com/abhi1693/yii2-app-advanced-startup-kit\n", - "0 ---> https://github.com/steelelab-delft/stlabutils\n", - "0 ---> https://github.com/aouinizied/nfstream\n", - "0 ---> https://github.com/holgern/pyedflib\n", - "0 ---> https://github.com/pysal/mapclassify\n", - "0 ---> https://github.com/bastibe/MAPS-Scripts\n", - "0 ---> https://github.com/ICB-DCM/parPE\n", - "0 ---> https://github.com/newville/wxmplot\n", - "0 ---> https://github.com/jirikuncar/eelap\n", - "0 ---> https://github.com/giganticode/codeprep\n", - "0 ---> https://github.com/raphaelvallat/yasa\n", - "9 ---> https://github.com/JonnyDaenen/Gumbo\n", - "0 ---> https://github.com/BENR0/textory\n", - "9 ---> https://github.com/architecture-building-systems/CityEnergyAnalyst\n", - "0 ---> https://github.com/quexiang/STWR\n", - "5 ---> https://github.com/underworldcode/underworld2\n", - "0 ---> https://github.com/TerrainBento/umami\n", - "9 ---> https://github.com/FedericoGarza/covidmx\n", - "0 ---> https://github.com/SimonGreenhill/phylogemetric\n", - "0 ---> https://github.com/earthlab/matplotcheck\n", - "0 ---> https://github.com/landlab/landlab\n", - "0 ---> https://github.com/saltastro/pyhrs\n", - "0 ---> https://github.com/MRCIEU/MELODI-Presto\n", - "0 ---> https://github.com/kundajelab/tfmodisco\n", - "2 ---> https://github.com/jupiterbak/FAPSDemoOPCUAServer0\n", - "0 ---> https://github.com/hugadams/scikit-spectra\n", - "0 ---> https://github.com/YeoLab/clipper\n", - "0 ---> https://github.com/Confareneoclassico/Irrigation_Model\n", - "0 ---> https://github.com/mmaelicke/soil-moisture-dynamics-companion-code\n", - "0 ---> https://github.com/rscottweekly/processPKPD\n", - "9 ---> https://github.com/empymod/emg3d\n", - "0 ---> https://github.com/coin-or/rbfopt\n", - "0 ---> https://github.com/VForWaTer/metacatalog\n", - "0 ---> https://github.com/piyush82/iot-simulator\n", - "0 ---> https://github.com/rabroughton/QUAD\n", - "0 ---> https://github.com/biocore/qurro\n", - "0 ---> https://github.com/streamreasoning/rsplib\n", - "1 ---> https://github.com/NLeSC/nlesc-serverless-boilerplate\n", - "0 ---> https://github.com/lanl/CLAMR\n", - "0 ---> https://github.com/matiscke/lcps\n", - "0 ---> https://github.com/jdavidrcamacho/tedi\n", - "2 ---> https://github.com/jupiterbak/FAPSDemoOPCUAServer\n", - "0 ---> https://github.com/Fraternalilab/POPScomp\n", - "0 ---> https://github.com/DeepLearnPhysics/larcv3\n", - "0 ---> https://github.com/wangz10/text-classification\n", - "3 ---> https://github.com/NLeSC/docker-couch-admin\n", - "3 ---> https://github.com/cs-education/sysbuild\n", - "0 ---> https://github.com/nkeim/philatracks\n", - "9 ---> https://github.com/Qiskit/qiskit-terra\n", - "0 ---> https://github.com/mdolab/dafoam\n", - "3 ---> https://github.com/mikel-egana-aranguren/SADI-Galaxy-Docker\n", - "0 ---> https://github.com/JakeBlackmore/Diatomic-Py\n", - "3 ---> https://github.com/arXiv/arxiv-search\n", - "1 ---> https://github.com/Princeton-CDH/mep-django\n", - "0 ---> https://github.com/thesketh/pygen-structures\n", - "9 ---> https://github.com/paudetseis/RfPy\n", - "0 ---> https://github.com/maxibor/sourcepredict\n", - "0 ---> https://github.com/SNLComputation/compadre\n", - "6 ---> https://github.com/SmartAPI/smartAPI-editor\n", - "0 ---> https://github.com/felixriese/hyperspectral-processing\n", - "0 ---> https://github.com/briandconnelly/hankshaweffect\n", - "0 ---> https://github.com/Starlink/starlink\n", - "5 ---> https://github.com/acdh-oeaw/apis-core\n", - "2 ---> https://github.com/chaoss/augur\n", - "9 ---> https://github.com/thiagotts/CloudReports\n", - "0 ---> https://github.com/gijzelaerr/kliko\n", - "0 ---> https://github.com/chrisjsewell/ipymd\n", - "0 ---> https://github.com/evolaemp/svmcc\n", - "0 ---> https://github.com/njss/SpaceTimeCube3D\n", - "2 ---> https://github.com/lagotto/lagotto\n", - "6 ---> https://github.com/CloudBindle/youxia\n", - "0 ---> https://github.com/AA-ALERT/psrdada-python\n", - "0 ---> https://github.com/joyeuxnoel8/GAME\n", - "0 ---> https://github.com/refnx/refnx\n", - "8 ---> https://github.com/plertvilai/IPAX\n", - "0 ---> https://github.com/ikkebr/PyBozoCrack\n", - "9 ---> https://github.com/MicroPasts/MicroPasts-pybossa-theme\n", - "0 ---> https://github.com/chkoar/vfi\n", - "0 ---> https://github.com/evalf/nutils\n", - "0 ---> https://github.com/ESCOMP/CTSM\n", - "0 ---> https://github.com/daler/erythroid-genes\n", - "9 ---> https://github.com/hdcaicyt/La-Argentina-Manuscrita\n", - "3 ---> https://github.com/peterpeterp/atlantic_ace_seasonal_forecast\n", - "0 ---> https://github.com/USNavalResearchLaboratory/zernike\n", - "0 ---> https://github.com/MarouaJaoua/life-expectancy-analysis-and-prediction\n", - "0 ---> https://github.com/hcadavid/TimeWarpScheduleLibrary\n", - "3 ---> https://github.com/bihealth/sodar_core\n", - "0 ---> https://github.com/cmbant/CAMB\n", - "9 ---> https://github.com/SolarArbiter/solarforecastarbiter-dashboard\n", - "0 ---> https://github.com/ilent2/ott\n", - "0 ---> https://github.com/Phlya/adjustText\n", - "0 ---> https://github.com/UmbertoGostoli/Simulation-for-Scottish-Gov\n", - "2 ---> https://github.com/fzyukio/koe\n", - "0 ---> https://github.com/ewels/MultiQC\n", - "2 ---> https://github.com/gbif/registry\n", - "9 ---> https://github.com/quicklizard99/cheddar\n", - "0 ---> https://github.com/ggventurini/python-deltasigma\n", - "0 ---> https://github.com/moonso/stranger\n", - "0 ---> https://github.com/qcscine/sparrow\n", - "0 ---> https://github.com/smart-facility/petajakarta-web\n", - "0 ---> https://github.com/sakoho81/miplib\n", - "0 ---> https://github.com/nstarman/starkplot\n", - "1 ---> https://github.com/passaH2O/GeoFlood\n", - "0 ---> https://github.com/thompsonsed/pycoalescence_examples\n", - "3 ---> https://github.com/horizon-institute/artmaps-azure\n", - "5 ---> https://github.com/Unidata/MetPy\n", - "1 ---> https://github.com/miso-lims/miso-lims\n", - "0 ---> https://github.com/theosysbio/gene-expression-models\n", - "0 ---> https://github.com/TuringLang/Turing.jl\n", - "0 ---> https://github.com/sertansenturk/alignedpitchfilter\n", - "9 ---> https://github.com/cytoscape/cytoscape.js-euler\n", - "9 ---> https://github.com/sbonaretti/cart_segm_liter_map\n", - "5 ---> https://github.com/gchure/phd\n", - "6 ---> https://github.com/korpling/pepper\n", - "9 ---> https://github.com/sdomanskyi/DigitalCellSorter\n", - "0 ---> https://github.com/PaulHancock/Aegean\n", - "0 ---> https://github.com/casperdcl/brainweb\n", - "0 ---> https://github.com/deeptools/deepTools\n", - "0 ---> https://github.com/ofionnad/radiowinds\n", - "3 ---> https://github.com/hail-is/hail\n", - "0 ---> https://github.com/coin-or/python-mip\n", - "0 ---> https://github.com/FRidh/auraliser\n", - "9 ---> https://github.com/Amber-MD/pytraj\n", - "0 ---> https://github.com/glukicov/alignTrack\n", - "9 ---> https://github.com/starschema/COVID-19-data\n", - "9 ---> https://github.com/clcr/pyeo\n", - "0 ---> https://github.com/TUW-GEO/yeoda\n", - "6 ---> https://github.com/spacetx/starfish\n", - "0 ---> https://github.com/dapperstats/salvage\n", - "0 ---> https://github.com/matplotlib/matplotlib\n", - "0 ---> https://github.com/DLR-SC/prov-db-connector\n", - "0 ---> https://github.com/MicroPasts/egyptExplorationSociety\n", - "9 ---> https://github.com/badlands-model/badlands\n", - "3 ---> https://github.com/AAROC/CODE-RADE\n", - "0 ---> https://github.com/BBN-Q/macrospin_gpu\n", - "0 ---> https://github.com/SciTools/cf-units\n", - "6 ---> https://github.com/macarthur-lab/seqr\n", - "9 ---> https://github.com/gwastro/pycbc\n", - "0 ---> https://github.com/sahilm89/lhsmdu\n", - "0 ---> https://github.com/nfsi-canada/OrientPy\n", - "0 ---> https://github.com/ai-se/perfect-repo\n", - "0 ---> https://github.com/cojacoo/rootwater\n", - "9 ---> https://github.com/multiscale/muscle3\n", - "9 ---> https://github.com/proycon/gecco\n", - "9 ---> https://github.com/USGS-Astrogeology/autocnet\n", - "0 ---> https://github.com/oemof/tespy\n", - "0 ---> https://github.com/pdfo/pdfo\n", - "0 ---> https://github.com/louisabraham/fastnode2vec\n", - "9 ---> https://github.com/poliastro/poliastro\n", - "9 ---> https://github.com/stabix/stabix\n", - "5 ---> https://github.com/TonyKaravasilev/CryptoManana\n", - "0 ---> https://github.com/EpistasisLab/tpot\n", - "9 ---> https://github.com/bird-house/finch\n", - "5 ---> https://github.com/PCMDI/cmor3_documentation\n", - "0 ---> https://github.com/epiasini/pymuvr\n", - "0 ---> https://github.com/jkguiang/tuda\n", - "9 ---> https://github.com/TiKeil/perturbations-for-2d-data\n", - "0 ---> https://github.com/MJOLNIRPackage/MJOLNIR\n", - "0 ---> https://github.com/EducationalTestingService/rsmtool\n", - "0 ---> https://github.com/mpschr/mutex\n", - "5 ---> https://github.com/openearth/wpsbuilder\n", - "9 ---> https://github.com/preprocessed-connectomes-project/quality-assessment-protocol\n", - "3 ---> https://github.com/LucMarechal/Soft-Robotics-Materials-Database\n", - "9 ---> https://github.com/ufbmi/mdc_api\n", - "0 ---> https://github.com/Andros-Spica/CDAL-Angourakis-2019\n", - "0 ---> https://github.com/sappelhoff/eeg_positions\n", - "3 ---> https://github.com/CERNatschool/LUCIDITY\n", - "0 ---> https://github.com/glubbdubdrib/lazygrid\n", - "0 ---> https://github.com/KnowledgeCaptureAndDiscovery/somef\n", - "6 ---> https://github.com/ESMValGroup/ESMValCore\n", - "0 ---> https://github.com/castelao/pyrings\n", - "5 ---> https://github.com/myGrid/t2-server-gem\n", - "0 ---> https://github.com/casperdcl/git-fame\n", - "5 ---> https://github.com/gge-ucd/wRangling-Ecology\n", - "3 ---> https://github.com/SysBioChalmers/yeast-GEM\n", - "0 ---> https://github.com/by256/rdfpy\n", - "5 ---> https://github.com/FNNDSC/ChRIS_ultron_backEnd\n", - "9 ---> https://github.com/cmorty/realsim\n", - "0 ---> https://github.com/Andros-Spica/TIPC2-Angourakis-Graham-2018\n", - "0 ---> https://github.com/rigetti/pyquil\n", - "9 ---> https://github.com/antlr/codebuff\n", - "5 ---> https://github.com/vdenotaris/spring-boot-security-saml-sample\n", - "5 ---> https://github.com/ci-for-research/zenodo\n", - "9 ---> https://github.com/laduplessis/SARS-CoV-2_Guangdong_genomic_epidemiology\n", - "2 ---> https://github.com/sealuzh/cd-linter-artifacts\n", - "9 ---> https://github.com/clij/clij-ops\n", - "0 ---> https://github.com/bmcage/odes\n", - "0 ---> https://github.com/ryanvarley/ExoData\n", - "9 ---> https://github.com/poppy-project/pypot\n", - "0 ---> https://github.com/NLeSC/cptm\n", - "0 ---> https://github.com/ivanhercaz/research\n", - "0 ---> https://github.com/dib-lab/sourmash\n", - "5 ---> https://github.com/PecanProject/pecan\n", - "0 ---> https://github.com/thorstenwagner/ij-particlesizer\n", - "9 ---> https://github.com/ctsit/redi-dropper-client\n", - "0 ---> https://github.com/juseg/absplots\n", - "0 ---> https://github.com/tolliob/PhasePortrait\n", - "0 ---> https://github.com/gtaylor/python-colormath\n", - "0 ---> https://github.com/SoftwareDevEngResearch/PyFAT\n", - "0 ---> https://github.com/ComputationalRadiationPhysics/mallocMC\n", - "6 ---> https://github.com/Arabidopsis-Information-Portal/adama\n", - "9 ---> https://github.com/biowdl/RNA-seq\n", - "0 ---> https://github.com/RPGroup-PBoC/RNAseq_SortSeq\n", - "0 ---> https://github.com/mensBash/DataStewardship\n", - "0 ---> https://github.com/thetisproject/thetis\n", - "6 ---> https://github.com/nismod/smif\n", - "9 ---> https://github.com/mgndolan/phagesdb\n", - "0 ---> https://github.com/rajeshrinet/pystokes\n", - "0 ---> https://github.com/alan-turing-institute/azure_usage_v1\n", - "6 ---> https://github.com/rdfjs/N3.js\n", - "0 ---> https://github.com/s-utkarsh/convex\n", - "9 ---> https://github.com/docmanny/RecSearch\n", - "3 ---> https://github.com/BenediktKleppmann/TreeOfKnowledge\n", - "0 ---> https://github.com/fanatichuman/ZOOMIEv1.0\n", - "0 ---> https://github.com/subangstrom/usetemServers\n", - "9 ---> https://github.com/bio-guoda/preston\n", - "1 ---> https://github.com/molstar/molstar\n", - "0 ---> https://github.com/philrosenfield/core_overshoot_clusters\n", - "0 ---> https://github.com/a-slide/pycoQC\n", - "0 ---> https://github.com/Epistimio/orion\n", - "0 ---> https://github.com/tholoien/XDGMM\n", - "5 ---> https://github.com/PyTorchLightning/pytorch-lightning\n", - "3 ---> https://github.com/fusion-jena/CoMerger\n", - "0 ---> https://github.com/collectionslab/Omniscribe\n", - "9 ---> https://github.com/cohenlabUNC/clpipe\n", - "0 ---> https://github.com/harpolea/r3d2\n", - "1 ---> https://github.com/peterbanda/coel\n", - "5 ---> https://github.com/Xilinx/brevitas\n", - "9 ---> https://github.com/aulasoftwarelibre/taller-de-git\n", - "0 ---> https://github.com/ornlneutronimaging/iBeatles\n", - "9 ---> https://github.com/dennissergeev/arke\n", - "0 ---> https://github.com/awickert/GRLP\n", - "8 ---> https://github.com/na399/VAST-Challenge-2019-MC1\n", - "0 ---> https://github.com/schmelling/reciprocal_BLAST\n", - "0 ---> https://github.com/diana-hep/madminer\n", - "0 ---> https://github.com/fmorenopino/HeterogeneousHMM\n", - "0 ---> https://github.com/dslfaithdev/SocialCrawler\n", - "0 ---> https://github.com/AndrewIOM/global-pollen-project\n", - "0 ---> https://github.com/PySCeS/pysces\n", - "0 ---> https://github.com/DamCB/tyssue\n", - "9 ---> https://github.com/lsmo-epfl/discover-curated-cofs\n", - "0 ---> https://github.com/caltechlibrary/eprints2bags\n", - "0 ---> https://github.com/proycon/foliapy\n", - "5 ---> https://github.com/bird-house/twitcher\n", - "9 ---> https://github.com/ganga-devs/ganga\n", - "9 ---> https://github.com/kotik-coder/PULsE\n", - "0 ---> https://github.com/mozillazg/pinyin-data\n", - "0 ---> https://github.com/MicroPasts/EgyptExplorationSocBuhenPottery\n", - "0 ---> https://github.com/luispedro/imread\n", - "3 ---> https://github.com/PCMSolver/pcmsolver\n", - "9 ---> https://github.com/klout/brickhouse\n", - "8 ---> https://github.com/Dash-Industry-Forum/dash.js\n", - "0 ---> https://github.com/ProjectDrawdown/spatial-aez\n", - "8 ---> https://github.com/cytoscape/cytoscape.js-popper\n", - "9 ---> https://github.com/ecohealthalliance/pubcrawler\n", - "0 ---> https://github.com/underworldcode/stripy\n", - "0 ---> https://github.com/pycroscopy/pyUSID\n", - "0 ---> https://github.com/jjnp/dss20-ue1\n", - "9 ---> https://github.com/pytroll/satpy\n", - "9 ---> https://github.com/psambit9791/jDSP\n", - "0 ---> https://github.com/pypeit/PypeIt\n", - "0 ---> https://github.com/MPI-Dortmund/sphire_classes_autoselect\n", - "0 ---> https://github.com/PaulScotti/educortex\n", - "0 ---> https://github.com/adaerr/pendent-drop\n", - "0 ---> https://github.com/simpeg-research/Astic-2020-JointInversion\n", - "0 ---> https://github.com/cgvwzq/polca\n", - "0 ---> https://github.com/davidenunes/jnetwork\n", - "0 ---> https://github.com/dbbs-lab/glia\n", - "0 ---> https://github.com/KarrLab/paper_2018_curr_opin_sys_biol\n", - "7 ---> https://github.com/RADAR-base/RADAR-Questionnaire\n", - "5 ---> https://github.com/DIRACGrid/DIRACOS\n", - "9 ---> https://github.com/nichtich/wikidata-taxonomy\n", - "3 ---> https://github.com/Kitware/vtk-js\n", - "0 ---> https://github.com/tanghaibao/goatools\n", - "5 ---> https://github.com/clld/clld\n", - "6 ---> https://github.com/tdurieux/Travis-Listener\n", - "0 ---> https://github.com/scivision/LCPFCT\n", - "0 ---> https://github.com/dr-rodriguez/Kinematics-App\n", - "0 ---> https://github.com/starkiller-astro/Microphysics\n", - "0 ---> https://github.com/Parallel-in-Time/PyPinT\n", - "0 ---> https://github.com/ufz/ogs-data\n", - "0 ---> https://github.com/vlouf/dealias\n", - "5 ---> https://github.com/RMLio/rmlmapper-java\n", - "9 ---> https://github.com/pysal/splot\n", - "9 ---> https://github.com/SuLab/Wikidata-phenomizer\n", - "0 ---> https://github.com/jaredsampson/pymolprobity\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0 ---> https://github.com/casimp/pyxe\n", - "0 ---> https://github.com/imodpasteur/pySPIRALTAP\n", - "5 ---> https://github.com/ufbmi/mdc_meter\n", - "0 ---> https://github.com/spectralpython/spectral\n", - "0 ---> https://github.com/openvax/pyensembl\n", - "5 ---> https://github.com/SMRUCC/GCModeller\n", - "0 ---> https://github.com/DyogenIBENS/SCORPIOS\n", - "5 ---> https://github.com/benchoufi/DocChain\n", - "0 ---> https://github.com/krassowski/complex-upset\n", - "9 ---> https://github.com/d-tear/SIAL\n", - "9 ---> https://github.com/arkottke/pyrvt\n", - "9 ---> https://github.com/jensdebruijn/Multimodal-flood-tweet-classification\n", - "0 ---> https://github.com/let-unimi/liblet\n", - "0 ---> https://github.com/scikit-learn-contrib/hdbscan\n", - "0 ---> https://github.com/arichar6/turbopy\n", - "0 ---> https://github.com/SystemsGenetics/GEMmaker\n", - "9 ---> https://github.com/CentreForCorpusResearch/clic\n", - "0 ---> https://github.com/benbovy/xarray-simlab\n", - "2 ---> https://github.com/Zettlr/Zettlr\n", - "0 ---> https://github.com/coreylammie/MemTorch\n", - "0 ---> https://github.com/milaboratory/mitools\n", - "0 ---> https://github.com/faustusdotbe/topic-modeling-tool-FR\n", - "1 ---> https://github.com/RADAR-base/ManagementPortal\n", - "0 ---> https://github.com/DocNow/twarc\n", - "0 ---> https://github.com/samapriya/gee_asset_manager_addon\n", - "0 ---> https://github.com/moorepants/DynamicistToolKit\n", - "3 ---> https://github.com/Clinical-Genomics/scout\n", - "0 ---> https://github.com/nschloe/pygmsh\n", - "0 ---> https://github.com/varungohil/Generalizing-Lottery-Tickets\n", - "0 ---> https://github.com/powerpak/pathogendb-pipeline\n", - "0 ---> https://github.com/Capitains/HookTest\n", - "2 ---> https://github.com/chanzuckerberg/cellxgene\n", - "0 ---> https://github.com/nf-core/tools\n", - "0 ---> https://github.com/ListerLab/TEPID\n", - "0 ---> https://github.com/fishstamp82/moltools\n", - "2 ---> https://github.com/University-of-Potsdam-MM/Mobile.UP\n", - "0 ---> https://github.com/blueskyjunkie/timetools\n", - "3 ---> https://github.com/biojava/biojava\n", - "0 ---> https://github.com/resal81/PyTopol\n", - "6 ---> https://github.com/digitallinguistics/word-aligner\n", - "0 ---> https://github.com/MITgcm/gcmfaces\n", - "0 ---> https://github.com/thompson318/scikit-surgery-sphere-fitting\n", - "8 ---> https://github.com/feelpp/book.feelpp.org\n", - "0 ---> https://github.com/brwnj/umitools\n", - "6 ---> https://github.com/IvanPaez/Proact\n", - "0 ---> https://github.com/poneill/formosa\n", - "0 ---> https://github.com/yabata/pyrenn\n", - "0 ---> https://github.com/TeamMacLean/redpatch\n", - "9 ---> https://github.com/pear2/Net_RouterOS\n", - "0 ---> https://github.com/rjw57/freenect2-python\n", - "0 ---> https://github.com/mvdh7/teos10\n", - "0 ---> https://github.com/SymbioticLab/tensorflow-salus\n", - "5 ---> https://github.com/LukasEttel/YoshikoStandalone\n", - "9 ---> https://github.com/JULIELab/MEmoLon\n", - "0 ---> https://github.com/fwitte/fluprodia\n", - "0 ---> https://github.com/openstreams/wflow\n", - "9 ---> https://github.com/sand-ci/TRACe-ExploRer-TRACER\n", - "9 ---> https://github.com/ISA-tools/NanoMaton\n", - "1 ---> https://github.com/DukeLearningInnovation/muser\n", - "5 ---> https://github.com/luosolo/OAiZer\n", - "0 ---> https://github.com/abrahamnunes/fitr\n", - "0 ---> https://github.com/jmbr/committor\n", - "0 ---> https://github.com/eEcoLiDAR/laserchicken\n", - "0 ---> https://github.com/feelpp/toolbox\n", - "0 ---> https://github.com/dfm/celerite\n", - "6 ---> https://github.com/buddhi1980/mandelbulber2\n", - "9 ---> https://github.com/DECLARE-Project/palladio-headless\n", - "0 ---> https://github.com/hudcondr/Digital-preservation---sports-trackers-for-Strava\n", - "0 ---> https://github.com/ultralytics/flickr_scraper\n", - "0 ---> https://github.com/ctuning/ck-env\n", - "0 ---> https://github.com/dyskurs/bel.esperanto\n", - "9 ---> https://github.com/lmjohns3/theanets\n", - "1 ---> https://github.com/fablabbcn/smartcitizen-kit-21\n", - "2 ---> https://github.com/eeditiones/shakespeare\n", - "9 ---> https://github.com/ivco19/epyRba\n", - "0 ---> https://github.com/Andros-Spica/ENE-Angourakis-et-al-2019\n", - "0 ---> https://github.com/rjfarmer/mesaplot\n", - "0 ---> https://github.com/tjof2/robustpca\n", - "0 ---> https://github.com/zerothi/sisl\n", - "0 ---> https://github.com/ChiaraBonacchi/MaryRose\n", - "6 ---> https://github.com/claudioatzori/dnet-gdup\n", - "0 ---> https://github.com/quantling/pyndl\n", - "0 ---> https://github.com/FAST-HEP/fast-flow\n", - "0 ---> https://github.com/pysat/pysatMissions\n", - "0 ---> https://github.com/kinnala/kirchhoff-nitsche-ex3\n", - "0 ---> https://github.com/GMOD/Apollo\n", - "2 ---> https://github.com/brics-dev/brics\n", - "0 ---> https://github.com/cismet/cids-custom-sudplan-linz\n", - "0 ---> https://github.com/theia-dev/molani\n", - "0 ---> https://github.com/planetserver/webclient-neo\n", - "0 ---> https://github.com/djgagne/lorenz_gan\n", - "0 ---> https://github.com/mmcauliffe/Conch-sounds\n", - "5 ---> https://github.com/pandas-dev/pandas\n", - "0 ---> https://github.com/dvav/dgeclust\n", - "0 ---> https://github.com/bjmorgan/vasppy\n", - "0 ---> https://github.com/has2k1/plotnine\n", - "0 ---> https://github.com/churchill-lab/gbrs\n", - "0 ---> https://github.com/salilab/imp\n", - "9 ---> https://github.com/NLeSC/eEcology-Annotation-WS\n", - "0 ---> https://github.com/pygeo/pycmbs\n", - "5 ---> https://github.com/Barski-lab/cwl-airflow\n", - "0 ---> https://github.com/prisae/fftlog\n", - "9 ---> https://github.com/DigitalPreservationTuWien2017/dp-task3\n", - "5 ---> https://github.com/biolink/biolink-api\n", - "9 ---> https://github.com/yadage/packtivity\n", - "0 ---> https://github.com/fact-project/aict-tools\n", - "0 ---> https://github.com/proycon/tscan\n", - "0 ---> https://github.com/mattam82/Coq-Equations\n", - "0 ---> https://github.com/datalad/datalad-osf\n", - "0 ---> https://github.com/paradoxysm/EMGanalysis\n", - "0 ---> https://github.com/dparks1134/DBB\n", - "0 ---> https://github.com/mikahama/haracat\n", - "9 ---> https://github.com/brainiak/brainiak\n", - "0 ---> https://github.com/AtkinsGroup/TransmissionPairs\n", - "0 ---> https://github.com/samapriya/spotifind\n", - "0 ---> https://github.com/jaj42/GraPhysio\n", - "0 ---> https://github.com/TUD-RST/pycartan\n", - "0 ---> https://github.com/ghammad/pyActigraphy\n", - "5 ---> https://github.com/ebmdatalab/fdaaa_trends\n", - "5 ---> https://github.com/python-visualization/folium\n", - "0 ---> https://github.com/didillysquat/SymPortal_framework\n", - "6 ---> https://github.com/galaxyproject/SARS-CoV-2\n", - "0 ---> https://github.com/SMTorg/smt\n", - "0 ---> https://github.com/bnpy/bnpy\n", - "0 ---> https://github.com/alielhassouni/heartsteps-gaussian-generative-model\n", - "0 ---> https://github.com/rileyhales/geomatics\n", - "9 ---> https://github.com/smart-facility/cognicity-server\n", - "9 ---> https://github.com/smarie/python-pytest-cases\n", - "0 ---> https://github.com/tum-camp/survival-support-vector-machine\n", - "9 ---> https://github.com/Capitains/MyCapytain\n", - "5 ---> https://github.com/rasmuse/subnational-p-budgets\n", - "0 ---> https://github.com/kimmo1019/Roundtrip\n", - "0 ---> https://github.com/nighres/nighres\n", - "0 ---> https://github.com/Swiss-Polar-Institute/wind-speed-correction\n", - "0 ---> https://github.com/rmarkello/abagen\n", - "8 ---> https://github.com/ApirsAL/GeoReVi\n", - "0 ---> https://github.com/mdolab/baseclasses\n", - "0 ---> https://github.com/dams-mcda/Dams-MCDA\n", - "0 ---> https://github.com/LinuNils/TMC_reproduced\n", - "0 ---> https://github.com/alan-turing-institute/TCPDBench\n", - "0 ---> https://github.com/churchill-lab/emase\n", - "0 ---> https://github.com/pyspec/pyspec\n", - "2 ---> https://github.com/FelixHenninger/lab.js\n", - "9 ---> https://github.com/sonjageorgievska/CClusTera\n", - "0 ---> https://github.com/mrkrd/cochlea\n", - "9 ---> https://github.com/juy/setting\n", - "0 ---> https://github.com/swartn/cmipdata\n", - "6 ---> https://github.com/simetenn/uncertainpy\n", - "6 ---> https://github.com/liminoid/liminoid-cli\n", - "9 ---> https://github.com/ben-aaron188/netanos\n", - "0 ---> https://github.com/timtroendle/urban-occupants-paper\n", - "0 ---> https://github.com/openshs/openshs\n", - "0 ---> https://github.com/silx-kit/silx\n", - "9 ---> https://github.com/Duke-GCB/iMADS\n", - "0 ---> https://github.com/ecuracosta/Modeling_the_spatiotemporal_control_of_cell_cycle_acceleration\n", - "0 ---> https://github.com/aoelen/Survey-table-importer\n", - "0 ---> https://github.com/nasa/RHEAS\n", - "9 ---> https://github.com/1313e/PRISM\n", - "0 ---> https://github.com/COSMIC-PopSynth/COSMIC\n", - "0 ---> https://github.com/Mykrobe-tools/mykrobe\n", - "9 ---> https://github.com/keflavich/APEX_CMZ_H2CO\n", - "9 ---> https://github.com/datacite/omniauth-orcid\n", - "0 ---> https://github.com/clelange/cds_paper_bot\n", - "0 ---> https://github.com/lifs-tools/pygoslin\n", - "0 ---> https://github.com/sblunt/orbitize\n", - "6 ---> https://github.com/holoviz/panel\n", - "5 ---> https://github.com/fiji/Trainable_Segmentation\n", - "9 ---> https://github.com/SymbioticLab/Salus\n", - "0 ---> https://github.com/uw-cryo/skysat_stereo\n", - "0 ---> https://github.com/NaturalHistoryMuseum/inselect\n", - "0 ---> https://github.com/ishomam/high-cycle-fatigue-tool\n", - "9 ---> https://github.com/gwu-libraries/TweetSets\n", - "9 ---> https://github.com/smart-facility/cognicity-reports\n", - "9 ---> https://github.com/randlab/geocv\n", - "0 ---> https://github.com/stain/profilechecker\n", - "0 ---> https://github.com/JasperBoom/caltha\n", - "0 ---> https://github.com/Karel-Kroeze/adaptive-hypothesis-grammars\n", - "1 ---> https://github.com/michael-pagan/Netflix-Analysis\n", - "0 ---> https://github.com/Auerilas/ecopy\n", - "0 ---> https://github.com/nadavbra/pwas\n", - "0 ---> https://github.com/orbingol/NURBS-Python\n", - "0 ---> https://github.com/MStarmans91/GISTRadiomics\n", - "0 ---> https://github.com/seankmartin/NeuroChaT\n", - "9 ---> https://github.com/gossi/docblock\n", - "0 ---> https://github.com/byu-vv-lab/mercury\n", - "0 ---> https://github.com/zfit/phasespace\n", - "0 ---> https://github.com/jswoboda/GeoDataPython\n", - "9 ---> https://github.com/datalad/datalad-neuroimaging\n", - "5 ---> https://github.com/schxslt/schxslt\n", - "0 ---> https://github.com/christianbrodbeck/Eelbrain\n", - "0 ---> https://github.com/VHellendoorn/ICLR20-Great\n", - "0 ---> https://github.com/kutaslab/merp2tbl\n", - "0 ---> https://github.com/pytransitions/transitions\n", - "0 ---> https://github.com/JoshuaDull/Text-Recognition-Introduction\n", - "0 ---> https://github.com/lejon/PartiallyCollapsedLDA\n", - "0 ---> https://github.com/Sulstice/global-chem\n", - "9 ---> https://github.com/glottolog/pyglottolog\n", - "0 ---> https://github.com/SebastianBocquet/MiraTitanHMFemulator\n", - "0 ---> https://github.com/LanguageMachines/PICCL\n", - "5 ---> https://github.com/CCMi-FIT/ontouml-csharp-utils\n", - "0 ---> https://github.com/j-i-l/pyAlluv\n", - "0 ---> https://github.com/ypriverol/cubascience\n", - "0 ---> https://github.com/pc2/HPCC_FPGA\n", - "0 ---> https://github.com/rrwick/Minipolish\n", - "0 ---> https://github.com/dftlibs/xcint\n", - "9 ---> https://github.com/pyvideo/pyvideo\n", - "9 ---> https://github.com/WIPACrepo/file_catalog\n", - "0 ---> https://github.com/Helveg/patch\n", - "3 ---> https://github.com/par12005/TPPS\n", - "0 ---> https://github.com/NixtonM/srsmp\n", - "8 ---> https://github.com/onnovalkering/brane\n", - "0 ---> https://github.com/pygae/clifford\n", - "0 ---> https://github.com/Ajax23/PoreMS\n", - "6 ---> https://github.com/Met4FoF/Code\n", - "0 ---> https://github.com/cwru-pat/macro_lightning\n", - "9 ---> https://github.com/phillima/asniffer\n", - "9 ---> https://github.com/timothydmorton/isochrones\n", - "0 ---> https://github.com/USEPA/IO-Model-Builder\n", - "9 ---> https://github.com/UF-OCR/ocr-summary-accrual\n", - "0 ---> https://github.com/toniher/mediawiki-BioDB\n", - "6 ---> https://github.com/ncsa/OA4MP\n", - "0 ---> https://github.com/jensleitloff/CNN-Sentinel\n", - "9 ---> https://github.com/meraki-analytics/orianna\n", - "3 ---> https://github.com/WormieCorp/Localization.AspNetCore.TagHelpers\n", - "9 ---> https://github.com/mikahama/natas\n", - "9 ---> https://github.com/meyer-lab/ps-growth-model\n", - "0 ---> https://github.com/Guillawme/localres\n", - "0 ---> https://github.com/saeg/asm-defuse\n", - "0 ---> https://github.com/alejandrobll/py-sphviewer\n", - "0 ---> https://github.com/BioSTEAMDevelopmentGroup/thermosteam\n", - "0 ---> https://github.com/TUDelft-CITG/OpenTNSim\n", - "0 ---> https://github.com/IceCubeOpenSource/flarestack\n", - "0 ---> https://github.com/timm/bnbad\n", - "0 ---> https://github.com/zhinst/zhinst-toolkit\n", - "9 ---> https://github.com/ngs-mstb/micgent\n", - "0 ---> https://github.com/rbardaji/mooda\n", - "0 ---> https://github.com/pytube/data\n", - "0 ---> https://github.com/VlachosGroup/pQUAD\n", - "0 ---> https://github.com/MicroPasts/maryrose-bell\n", - "0 ---> https://github.com/drs-m/mrtrix3\n", - "0 ---> https://github.com/eyurtsev/FlowCytometryTools\n", - "9 ---> https://github.com/mirnylab/cooler\n", - "0 ---> https://github.com/choderalab/alchemy\n", - "0 ---> https://github.com/Nikoleta-v3/meta-analysis-of-prisoners-dilemma-tournaments\n", - "9 ---> https://github.com/villevaara/dhum-topic-gutfin\n", - "0 ---> https://github.com/natashabatalha/picaso\n", - "0 ---> https://github.com/delira-dev/delira\n", - "0 ---> https://github.com/philip-mach/herd-immunity\n", - "8 ---> https://github.com/Alan-Cha/graphql-complexity-paper-artifact\n", - "0 ---> https://github.com/Becksteinlab/propkatraj\n", - "0 ---> https://github.com/3DGenomes/TADbit\n", - "0 ---> https://github.com/TariqAHassan/BioVida\n", - "0 ---> https://github.com/dxm447/stemtool\n", - "0 ---> https://github.com/Emma926/paradnn\n", - "9 ---> https://github.com/gcunhase/AnnotatedMV-PreProcessing\n", - "8 ---> https://github.com/liminoid/liminoid-mdx\n", - "5 ---> https://github.com/Ouranosinc/raven\n", - "0 ---> https://github.com/scities/patterns-of-segregation\n", - "0 ---> https://github.com/pkienzle/periodictable\n", - "9 ---> https://github.com/biowdl/expression-quantification\n", - "0 ---> https://github.com/dokester/BayesicFitting\n", - "9 ---> https://github.com/fphammerle/freesurfer-volume-reader\n", - "0 ---> https://github.com/fmalmeida/MpGAP\n", - "1 ---> https://github.com/collaborative-open-plant-omics/COPO\n", - "0 ---> https://github.com/OrderN/CONQUEST-release\n", - "0 ---> https://github.com/chemfiles/chemfiles\n", - "0 ---> https://github.com/camillescott/goetia\n", - "0 ---> https://github.com/Charestlab/pyrsa\n", - "0 ---> https://github.com/wannaphong/thai-ner\n", - "9 ---> https://github.com/cylc/cylc-flow\n", - "0 ---> https://github.com/krassowski/gsea-api\n", - "0 ---> https://github.com/UW-Hydro/RVIC\n", - "0 ---> https://github.com/stefanbringuier/NaivePolyCrys\n", - "0 ---> https://github.com/harmslab/pytc-gui\n", - "6 ---> https://github.com/maurov/xraysloth\n", - "0 ---> https://github.com/genicam/harvesters\n", - "0 ---> https://github.com/EC-Earth/ece2cmor3\n", - "6 ---> https://github.com/rodighiero/Affinity-Map\n", - "9 ---> https://github.com/trtcrd/SLIM\n", - "0 ---> https://github.com/MTG/SymbTr-extras\n", - "0 ---> https://github.com/midas-isg/object-serializer\n", - "0 ---> https://github.com/caltechlibrary/microarchiver\n", - "0 ---> https://github.com/UCL/scikit-surgeryvtk\n", - "0 ---> https://github.com/XanaduAI/thewalrus\n", - "9 ---> https://github.com/common-workflow-language/cwltool\n", - "9 ---> https://github.com/exoplanet-dev/exoplanet\n", - "0 ---> https://github.com/genenetwork/genenetwork2\n", - "0 ---> https://github.com/dftd4/dftd4\n", - "9 ---> https://github.com/hesselberthlab/modmap\n", - "0 ---> https://github.com/nkarasiak/MuseoToolBox\n", - "0 ---> https://github.com/timtroendle/pytus2000\n", - "0 ---> https://github.com/mdolab/multipoint\n", - "0 ---> https://github.com/matthiaskoenig/libsbgn-python\n", - "6 ---> https://github.com/mrc-ide/squire_js\n", - "9 ---> https://github.com/sotorrent/posthistory-extractor\n", - "0 ---> https://github.com/FAST-HEP/fast-plotter\n", - "0 ---> https://github.com/tresoldi/dafsa\n", - "0 ---> https://github.com/alphatwirl/alphatwirl\n", - "9 ---> https://github.com/nipy/heudiconv\n", - "1 ---> https://github.com/CESNET/perun\n", - "0 ---> https://github.com/RBhupi/PyREClass\n", - "0 ---> https://github.com/jrafolsr/opeg-green-solvent\n", - "0 ---> https://github.com/tomminylander/cloning-simulator\n", - "6 ---> https://github.com/moschlar/SAUCE\n", - "0 ---> https://github.com/astrom-tom/loots\n", - "3 ---> https://github.com/ericmandel/js9\n", - "9 ---> https://github.com/empymod/empymod\n", - "5 ---> https://github.com/MRChemSoft/mrcpp\n", - "0 ---> https://github.com/QuantumPackage/qp2\n", - "0 ---> https://github.com/johannfaouzi/pyts\n", - "0 ---> https://github.com/duncanmmacleod/ciecplib\n", - "0 ---> https://github.com/matthiasweiss/runtastic-strava-migrate\n", - "9 ---> https://github.com/carpyncho/carpyncho-py\n", - "3 ---> https://github.com/thomas-crane/networking-project\n", - "0 ---> https://github.com/bab2min/tomotopy\n", - "0 ---> https://github.com/ace-design/cosmic\n", - "0 ---> https://github.com/FaustinCarter/scraps\n", - "3 ---> https://github.com/tripal/tripal\n", - "0 ---> https://github.com/SCCAF/sccaf\n", - "0 ---> https://github.com/src-d/minhashcuda\n", - "6 ---> https://github.com/ebimodeling/ghgvc\n", - "0 ---> https://github.com/NERSC/pytokio\n", - "9 ---> https://github.com/KnowledgeCaptureAndDiscovery/OBA\n", - "9 ---> https://github.com/praveen-palanisamy/macad-gym\n", - "0 ---> https://github.com/dimazest/poultry\n", - "0 ---> https://github.com/waterlandlab/PReLIM\n", - "0 ---> https://github.com/felixriese/alpaca-processing\n", - "3 ---> https://github.com/ocean-data-qc/ocean-data-qc\n", - "0 ---> https://github.com/lmfit/lmfit-py\n", - "0 ---> https://github.com/masseyr/eehelper\n", - "3 ---> https://github.com/diging/virtual-spaces-2.0\n", - "9 ---> https://github.com/SISPO-developers/sispo\n", - "0 ---> https://github.com/rbutleriii/Clinotator\n", - "5 ---> https://github.com/sosy-lab/benchexec\n", - "5 ---> https://github.com/Nikronic/CoarseNet\n", - "5 ---> https://github.com/IDSIA/sacred\n", - "0 ---> https://github.com/GeoStat-Framework/GSTools\n", - "5 ---> https://github.com/camomile-project/camomile-server\n", - "0 ---> https://github.com/weecology/macroecotools\n", - "0 ---> https://github.com/nlesc-nano/AssertionLib\n", - "9 ---> https://github.com/pnnl/ripples\n", - "9 ---> https://github.com/dreamtools/dreamtools\n", - "0 ---> https://github.com/DeepRank/pdb2sql\n", - "0 ---> https://github.com/zebateira/rama-spotify\n", - "0 ---> https://github.com/qutech/qupulse\n", - "8 ---> https://github.com/eWaterCycle/Cesium-NcWMS\n", - "8 ---> https://github.com/CMLPlatform/ramascene\n", - "0 ---> https://github.com/filips123/ConfigWriter\n", - "1 ---> https://github.com/schimatos/schimatos.org\n", - "0 ---> https://github.com/ALSETLab/Nordic44-Nordpool\n", - "9 ---> https://github.com/NCAR/wrf_hydro_nwm_public\n", - "0 ---> https://github.com/frandorr/PROBA-V-3DWDSR\n", - "0 ---> https://github.com/chrisdembia/yeadon\n", - "0 ---> https://github.com/open-editions/corpus-joyce-ulysses-tei\n", - "3 ---> https://github.com/AAROC/hackfest-site\n", - "0 ---> https://github.com/amirsani/pySharpeRratio\n", - "0 ---> https://github.com/CINPLA/RippleNet\n", - "5 ---> https://github.com/karkirowle/oral_cancer_analysis\n", - "0 ---> https://github.com/brisskit-uol/onyx-install-procedures\n", - "0 ---> https://github.com/llondon6/nrutils_dev\n", - "9 ---> https://github.com/Andros-Spica/EAA2018_simulation\n", - "0 ---> https://github.com/GeneDx/phenopy\n", - "3 ---> https://github.com/andremann/MoniQ\n", - "9 ---> https://github.com/jupyter/nbgrader\n", - "0 ---> https://github.com/GeoStat-Framework/PyKrige\n", - "0 ---> https://github.com/orlade/microsimmer\n", - "0 ---> https://github.com/ideaconsult/appdomain\n", - "0 ---> https://github.com/irgroup/sigir2020-measure-reproducibility\n", - "0 ---> https://github.com/mikekestemont/chivalric_diversity\n", - "0 ---> https://github.com/CosmologyTaskForce/PhysicsResearchSurvivalManual\n", - "0 ---> https://github.com/dbischof90/optimal_extreme_value_portfolios\n", - "0 ---> https://github.com/ComputationalRadiationPhysics/picongpu\n", - "0 ---> https://github.com/DorianDepriester/MTEX2Gmsh\n", - "5 ---> https://github.com/MStarmans91/WORC\n", - "0 ---> https://github.com/colomoto/pyMaBoSS\n", - "0 ---> https://github.com/lktsui/carbon_xs_gui\n", - "0 ---> https://github.com/severin-lemaignan/pyrobots\n", - "9 ---> https://github.com/casmlab/twitter_user_collector\n", - "5 ---> https://github.com/QCoDeS/Qcodes\n", - "0 ---> https://github.com/kusterlab/MasterSpectrum\n", - "9 ---> https://github.com/TUW-GEO/smap_io\n", - "5 ---> https://github.com/neurodata/ndstore\n", - "0 ---> https://github.com/isi-nmr/brukerapi-python\n", - "9 ---> https://github.com/pysal/tobler\n", - "0 ---> https://github.com/mbdemoraes/moafs\n", - "5 ---> https://github.com/gbv/kos-registry\n", - "9 ---> https://github.com/callat-qcd/espressodb\n", - "0 ---> https://github.com/longavailable/adaptive-curvefitting\n", - "0 ---> https://github.com/LUMC/pytest-workflow\n", - "0 ---> https://github.com/cta-observatory/ctapipe\n", - "0 ---> https://github.com/SystemsGenetics/pynome\n", - "0 ---> https://github.com/openvax/mhctools\n", - "0 ---> https://github.com/alexvoronov/geonetworking\n", - "0 ---> https://github.com/Dioptas/Dioptas\n", - "0 ---> https://github.com/shbhuk/barycorrpy\n", - "0 ---> https://github.com/vanheeringen-lab/ANANSE\n", - "0 ---> https://github.com/mazlo/lodcc\n", - "7 ---> https://github.com/LDflex/LDflex-Comunica\n", - "3 ---> https://github.com/nicysneiros/SemMatcher\n", - "0 ---> https://github.com/pace-gt/PACE-ProvBench\n", - "0 ---> https://github.com/spirali/rsds\n", - "9 ---> https://github.com/UNCG-DAISY/psi-collect\n", - "0 ---> https://github.com/gmbrandt/xwavecal\n", - "0 ---> https://github.com/Fuminides/Fancy_aggregations\n", - "0 ---> https://github.com/rootpy/rootpy\n", - "0 ---> https://github.com/Social-Evolution-and-Behavior/anTraX\n", - "0 ---> https://github.com/seasite-project/Offsite\n", - "0 ---> https://github.com/emsec/hal\n", - "5 ---> https://github.com/SolarArbiter/solarforecastarbiter-api\n", - "0 ---> https://github.com/VIDA-NYU/reproserver\n", - "0 ---> https://github.com/Crompulence/cpl-library\n", - "0 ---> https://github.com/KeplerGO/kadenza\n", - "0 ---> https://github.com/MarinManuel/Huh_et_al_2020\n", - "0 ---> https://github.com/JasperHG90/sleepsimR-documentation\n", - "8 ---> https://github.com/OPEnSLab-OSU/SlideSentinel\n", - "9 ---> https://github.com/TeamRegio/EpiRegioDB\n", - "0 ---> https://github.com/Aetf/tf_benchmarks\n", - "3 ---> https://github.com/HypothesisWorks/hypothesis\n", - "0 ---> https://github.com/astrom-tom/catscii\n", - "0 ---> https://github.com/NESTCollaboration/nestpy\n", - "0 ---> https://github.com/remyleone/makesense\n", - "9 ---> https://github.com/OSOceanAcoustics/echopype\n", - "0 ---> https://github.com/California-Planet-Search/radvel\n", - "0 ---> https://github.com/vangorden/OUR2D2\n", - "0 ---> https://github.com/jpvantassel/swprepost\n", - "9 ---> https://github.com/SanPen/GridCal\n", - "9 ---> https://github.com/INVEST-flagship/Randomized-picture-rating-tool-for-surveys\n", - "5 ---> https://github.com/BioSTEAMDevelopmentGroup/biosteam\n", - "9 ---> https://github.com/o2r-project/geoextent\n", - "0 ---> https://github.com/locked-fg/JFeatureLib\n", - "0 ---> https://github.com/bastula/dicompyler\n", - "7 ---> https://github.com/research-software-directory/research-software-directory\n", - "0 ---> https://github.com/mast-group/OpenVocabCodeNLM\n", - "0 ---> https://github.com/SystemsGenetics/KINC\n", - "0 ---> https://github.com/darothen/py-mie\n", - "0 ---> https://github.com/PySEE/home\n", - "0 ---> https://github.com/mfherbst/cvs-relaxation-scripts\n", - "0 ---> https://github.com/ctsit/research-subject-mapper\n", - "0 ---> https://github.com/havok2063/boolean_parser\n", - "0 ---> https://github.com/DTUWindEnergy/TOPFARM\n", - "0 ---> https://github.com/halfak/deltas\n", - "9 ---> https://github.com/srmnitc/pyscal\n", - "0 ---> https://github.com/Parallel-in-Time/pySDC\n", - "0 ---> https://github.com/kjappelbaum/permutationplotter\n", - "9 ---> https://github.com/ESMValGroup/ESMValTool\n", - "8 ---> https://github.com/lacinoire/chunk-retrieval-replication\n", - "0 ---> https://github.com/rahul-gohil/GFKT\n", - "1 ---> https://github.com/Edirom/WeGA-WebApp\n", - "9 ---> https://github.com/NYUCCL/psiTurk\n", - "5 ---> https://github.com/SP7-Ritmare/EDI-NG_server\n", - "0 ---> https://github.com/abhi1693/yii2-enum\n", - "9 ---> https://github.com/rinde/pdptw-dataset-generator\n", - "9 ---> https://github.com/CambridgeSemiticsLab/BH_time_collocations\n", - "0 ---> https://github.com/erwinkendo/polaruob\n", - "0 ---> https://github.com/geneontology/obographs\n", - "5 ---> https://github.com/speckleworks/SpeckleCore\n", - "0 ---> https://github.com/rjw57/videosequence\n", - "0 ---> https://github.com/tylerjereddy/diffusion_analysis_MD_simulations\n", - "5 ---> https://github.com/luphysics/PyMODA\n", - "0 ---> https://github.com/NatLibFi/Annif\n", - "0 ---> https://github.com/adbar/trafilatura\n", - "0 ---> https://github.com/ForeverZyh/DEBAR\n", - "9 ---> https://github.com/danchubb/CanVar\n", - "0 ---> https://github.com/JonathonMSmith/growin\n", - "0 ---> https://github.com/SoftwareDevEngResearch/flexWecDesignOpt\n", - "0 ---> https://github.com/RubenImhoff/Large_Sample_Nowcasting_Evaluation\n", - "5 ---> https://github.com/TreeCmp/TreeCmpWEB\n", - "0 ---> https://github.com/TaufiqHassan/acccmip6\n", - "0 ---> https://github.com/clsb/miles\n", - "9 ---> https://github.com/kip-hart/MicroStructPy\n", - "0 ---> https://github.com/hls-fpga-machine-learning/hls4ml\n", - "9 ---> https://github.com/biowdl/BamMetrics\n", - "0 ---> https://github.com/cwida/duckdb\n", - "0 ---> https://github.com/FREVA-CLINT/climatereconstructionAI\n", - "3 ---> https://github.com/CESEL/RelationalGit\n", - "9 ---> https://github.com/ComplexNetTSP/Simulation-Files-for-Large-Scale-Model-for-Information-Dissemination-with-Device-to-Device\n", - "9 ---> https://github.com/tresoldi/distfeat\n", - "9 ---> https://github.com/ceholden/TSTools\n", - "0 ---> https://github.com/riga/law\n", - "0 ---> https://github.com/castelao/seabird\n", - "8 ---> https://github.com/MrShoenel/git-density\n", - "0 ---> https://github.com/ufz/ogs-container-maker\n", - "0 ---> https://github.com/ADicksonLab/mastic\n", - "0 ---> https://github.com/rasbt/mlxtend\n", - "0 ---> https://github.com/VIDA-NYU/domain-discovery-d4\n", - "9 ---> https://github.com/SUNCAT-Center/CatLearn\n", - "0 ---> https://github.com/fastread/src\n", - "9 ---> https://github.com/lanecodes/cymod\n", - "0 ---> https://github.com/mancellin/capytaine\n", - "5 ---> https://github.com/tferr/Scripts\n", - "0 ---> https://github.com/ostwalprasad/LGNpy\n", - "0 ---> https://github.com/AstraZeneca-NGS/simple_sv_annotation\n", - "9 ---> https://github.com/sept08/WebToys\n", - "0 ---> https://github.com/JiaweiZhuang/ipm_util\n", - "0 ---> https://github.com/SynthSys/pyOmeroUpload\n", - "0 ---> https://github.com/adamewing/tldr\n", - "3 ---> https://github.com/JustinGOSSES/wellio.js\n", - "0 ---> https://github.com/purdue-cap/DryadSynth\n", - "6 ---> https://github.com/ph463/Gygax\n", - "0 ---> https://github.com/mayconbordin/cdr-gen\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "0 ---> https://github.com/Axelrod-Python/Axelrod\n", - "9 ---> https://github.com/MIPT-Oulu/solt\n", - "9 ---> https://github.com/hibernator11/notebook-texts-metadata\n", - "3 ---> https://github.com/nismod/transport\n", - "9 ---> https://github.com/scikit-hep/uproot\n", - "9 ---> https://github.com/alan-turing-institute/CROP\n", - "0 ---> https://github.com/cmusatyalab/openface\n", - "5 ---> https://github.com/blahah/transrate\n", - "9 ---> https://github.com/1313e/CMasher\n", - "9 ---> https://github.com/stonerlab/Stoner-PythonCode\n", - "0 ---> https://github.com/netneurolab/markello_ppmisnf\n", - "0 ---> https://github.com/jobovy/galpy\n", - "0 ---> https://github.com/LABSN/tdtpy\n", - "0 ---> https://github.com/tknapen/FIRDeconvolution\n", - "0 ---> https://github.com/jongablop/MinervaLab\n", - "9 ---> https://github.com/clarity-h2020/data-management-plan\n", - "9 ---> https://github.com/kashyapchhatbar/CLASHChimeras\n", - "5 ---> https://github.com/pzeidler89/MUSEpack\n", - "9 ---> https://github.com/tofaquih/imputation_of_untargeted_metabolites\n", - "9 ---> https://github.com/sebastientourbier/multiscalebrainparcellator\n", - "0 ---> https://github.com/hammurabi-dev/hammurabiX\n", - "8 ---> https://github.com/comses/comses.net\n", - "0 ---> https://github.com/ultralytics/yolov3\n", - "9 ---> https://github.com/clld/concepticon\n", - "0 ---> https://github.com/epigen/cll-chromatin\n", - "3 ---> https://github.com/sagemathinc/cocalc_tutorial\n", - "0 ---> https://github.com/paddy-seismic/retreat\n", - "0 ---> https://github.com/geoschem/gcpy\n", - "0 ---> https://github.com/NickSwainston/mwa_search\n", - "3 ---> https://github.com/dhimmel/gene-ontology\n", - "0 ---> https://github.com/lmarti/nsgaiii\n", - "6 ---> https://github.com/sbmlteam/jsbml\n", - "0 ---> https://github.com/ankahira/chainermnx\n", - "0 ---> https://github.com/CalebBell/fpi\n", - "0 ---> https://github.com/gplepage/corrfitter\n", - "3 ---> https://github.com/ADicksonLab/geomm\n", - "0 ---> https://github.com/pycroscopy/pycroscopy\n", - "0 ---> https://github.com/bioasp/iggy\n", - "0 ---> https://github.com/TUW-GEO/smos\n", - "0 ---> https://github.com/SynthSys/OMEROConnect\n", - "3 ---> https://github.com/jaclaes/SPMM2015\n", - "9 ---> https://github.com/FNNDSC/ChRIS_store\n", - "0 ---> https://github.com/hpparvi/KeplerJC\n", - "0 ---> https://github.com/neurodata/graspy\n", - "0 ---> https://github.com/bast/polygons\n", - "0 ---> https://github.com/MatthewReid854/reliability\n", - "0 ---> https://github.com/greenelab/DAPS\n", - "0 ---> https://github.com/merijn/Belewitte\n", - "3 ---> https://github.com/HexaPlant/pixeldragon\n", - "0 ---> https://github.com/sertansenturk/ahenkidentifier\n", - "0 ---> https://github.com/bss116/citygenerator\n", - "0 ---> https://github.com/jeffbass/imagezmq\n", - "3 ---> https://github.com/njss/Sense.me\n", - "0 ---> https://github.com/materialsvirtuallab/pyhull\n", - "0 ---> https://github.com/alexnaoki/LHC_Hidroweb\n", - "9 ---> https://github.com/UCATLAS/xAODAnaHelpers\n", - "0 ---> https://github.com/rhiever/MarkovNetwork\n", - "0 ---> https://github.com/dvalters/caesarplotlib\n", - "0 ---> https://github.com/pyproj4/pyproj\n", - "9 ---> https://github.com/clld/csd\n", - "0 ---> https://github.com/colbyj/bride-of-frankensystem\n", - "5 ---> https://github.com/SainsburyWellcomeCentre/cellfinder\n", - "0 ---> https://github.com/pySRURGS/pyGOURGS\n", - "5 ---> https://github.com/acdh-oeaw/4dpuzzle\n", - "0 ---> https://github.com/kinnala/kirchhoff-nitsche-ex2\n", - "0 ---> https://github.com/petl-developers/petlx\n", - "0 ---> https://github.com/mmcauliffe/Pyraat\n", - "5 ---> https://github.com/plt-tud/r43ples\n", - "0 ---> https://github.com/EducationalTestingService/skll\n", - "0 ---> https://github.com/RadioAstronomySoftwareGroup/pyuvdata\n", - "0 ---> https://github.com/jfnavarro/st_pipeline\n", - "0 ---> https://github.com/Neuroinflab/PyMICE\n", - "5 ---> https://github.com/pythoninchemistry/intro_python_chemists\n", - "0 ---> https://github.com/OpenPIV/openpiv-python\n", - "6 ---> https://github.com/mbari-media-management/vcr4j\n", - "9 ---> https://github.com/dpizetta/wavy\n", - "6 ---> https://github.com/arman2/equal_public\n", - "0 ---> https://github.com/gher-ulg/Diva-Workshops\n", - "0 ---> https://github.com/pydata/xarray\n", - "0 ---> https://github.com/transientlunatic/elk\n", - "0 ---> https://github.com/qcscine/readuct\n", - "0 ---> https://github.com/RDFLib/pymicrodata\n", - "0 ---> https://github.com/sbmlteam/libCombine\n", - "3 ---> https://github.com/encompasslabs/mcsdss-watermark\n", - "9 ---> https://github.com/OGGM/oggm\n", - "0 ---> https://github.com/tdwg/dwc\n", - "0 ---> https://github.com/NeuralEnsemble/elephant\n", - "0 ---> https://github.com/agporto/ml-morph\n", - "0 ---> https://github.com/SeismicSource/sourcespec\n", - "9 ---> https://github.com/tensorwerk/hangar-py\n", - "0 ---> https://github.com/virgesmith/humanleague\n", - "0 ---> https://github.com/lebedov/scikit-cuda\n", - "5 ---> https://github.com/mbari-media-management/vars-query\n", - "8 ---> https://github.com/jpdias/node-red-contrib-self-healing\n", - "0 ---> https://github.com/snastase/isc-tutorial\n", - "0 ---> https://github.com/smart-facility/cognicity-reports-qlue\n", - "0 ---> https://github.com/simpeg-research/kang-2019-3D-aem\n", - "9 ---> https://github.com/appetrosyan/LCDM-NS\n", - "0 ---> https://github.com/asergiobranco/ArchNet\n", - "0 ---> https://github.com/DistrictDataLabs/yellowbrick\n", - "0 ---> https://github.com/enolfc/d4science-galaxy-authn\n", - "0 ---> https://github.com/pyGSTio/pyGSTi\n", - "0 ---> https://github.com/smart-facility/cognicity-reports-floodgauge\n", - "0 ---> https://github.com/miguelfp/ibmos\n", - "0 ---> https://github.com/DanPorter/Dans_Diffraction\n", - "0 ---> https://github.com/CexyNature/Crabspy\n", - "0 ---> https://github.com/ismrmrd/ismrmrd-python\n", - "0 ---> https://github.com/kkmann/sample-size-calculation-under-uncertainty\n", - "0 ---> https://github.com/kingjr/ecoggui\n", - "0 ---> https://github.com/OP2/PyOP2\n", - "9 ---> https://github.com/cgat-developers/cgat-core\n", - "0 ---> https://github.com/pnlbwh/luigi-pnlpipe\n", - "7 ---> https://github.com/dzhw/metadatamanagement\n", - "9 ---> https://github.com/mastrogeppetto/OCCI4IOT\n", - "0 ---> https://github.com/scivision/fortran-submodule\n", - "0 ---> https://github.com/librosa/librosa\n", - "0 ---> https://github.com/morganjwilliams/pyrolite\n", - "0 ---> https://github.com/planetserver/ps2-www-client\n", - "0 ---> https://github.com/MDAnalysis/RotamerConvolveMD\n", - "0 ---> https://github.com/psu-inversion/atmospheric-inverse-methods-for-flux-optimization\n", - "0 ---> https://github.com/enolfc/d4scienceauth\n", - "0 ---> https://github.com/yoavram/Sid\n", - "9 ---> https://github.com/ISOBlue/isoblue-android\n", - "0 ---> https://github.com/bio2bel/bio2bel\n", - "0 ---> https://github.com/CDAT/ci-bots\n", - "9 ---> https://github.com/ropensci/stplanr\n", - "1 ---> https://github.com/digitallinguistics/app\n", - "0 ---> https://github.com/blokhin/genealogical-trees\n", - "0 ---> https://github.com/hannes-brt/hebel\n", - "0 ---> https://github.com/mcs07/CIRpy\n", - "3 ---> https://github.com/tobysmith568/Generate-License-File\n", - "6 ---> https://github.com/HBLL-Collection-Development/omeka-s-any-cloud\n", - "3 ---> https://github.com/dgnest/foottrial\n", - "9 ---> https://github.com/neuropsychology/NeuroKit\n", - "0 ---> https://github.com/makgyver/rectorch\n", - "0 ---> https://github.com/Continvvm/continuum\n", - "0 ---> https://github.com/mdolab/pyhyp\n", - "0 ---> https://github.com/timothydmorton/exosyspop\n", - "0 ---> https://github.com/WGUNDERWOOD/motifcluster\n", - "0 ---> https://github.com/egonw/ops4j\n", - "5 ---> https://github.com/SebBuchelt/georef_webcam\n", - "0 ---> https://github.com/dimazest/google-ngram-downloader\n", - "0 ---> https://github.com/mmadsen/seriationct\n", - "9 ---> https://github.com/thorstenwagner/ij-shape-smoothing\n", - "0 ---> https://github.com/prisae/pyfftlog\n", - "0 ---> https://github.com/koszullab/hicstuff\n", - "9 ---> https://github.com/TUW-GEO/gldas\n", - "0 ---> https://github.com/martinfleis/momepy\n", - "0 ---> https://github.com/alamar/microbe\n", - "0 ---> https://github.com/romain-jacob/TTW-Artifacts\n", - "8 ---> https://github.com/netsage-project/netsage-pipeline\n", - "0 ---> https://github.com/krischer/pyflex\n", - "0 ---> https://github.com/cheeseywhiz/cheeseywhiz\n", - "0 ---> https://github.com/NeuPhysics/neutrino\n", - "0 ---> https://github.com/astrojs/fitsjs\n", - "9 ---> https://github.com/arbox/shalmaneser\n", - "0 ---> https://github.com/keflavich/pyradex\n", - "0 ---> https://github.com/alphatwirl/mantichora\n", - "0 ---> https://github.com/pysal/spreg\n", - "0 ---> https://github.com/dmey/minimal-dx\n", - "0 ---> https://github.com/dftlibs/xcauto\n", - "3 ---> https://github.com/kizniche/Mycodo\n", - "0 ---> https://github.com/lmcinnes/umap\n", - "0 ---> https://github.com/flowersteam/explauto\n", - "0 ---> https://github.com/malkayo/AiRL\n", - "6 ---> https://github.com/liminoid/liminoid-js\n", - "0 ---> https://github.com/llambourne/isoenzymes_flux_balance\n", - "0 ---> https://github.com/davidhin/stringmatching\n", - "0 ---> https://github.com/maxplanck-ie/snakepipes\n", - "0 ---> https://github.com/titipata/pubmed_parser\n", - "0 ---> https://github.com/inodb/revmut\n", - "9 ---> https://github.com/LASER-UMASS/CausalTesting_ICSE20\n", - "0 ---> https://github.com/bcbio/bcbio-nextgen\n", - "0 ---> https://github.com/coin-or/CyLP\n", - "9 ---> https://github.com/SciTools/cartopy\n", - "2 ---> https://github.com/Jollyfant/PMAG2\n", - "0 ---> https://github.com/AlBi-HHU/homo-edit-distance\n", - "0 ---> https://github.com/atmtools/typhon\n", - "0 ---> https://github.com/benvanwerkhoven/kernel_tuner\n", - "0 ---> https://github.com/myGrid/ruby-ro-bundle\n", - "5 ---> https://github.com/juoceano/lecture_figures\n", - "0 ---> https://github.com/briandconnelly/nicheconstruct\n", - "5 ---> https://github.com/deeptools/HiCExplorer\n", - "5 ---> https://github.com/mmalekzadeh/privacy-preserving-bandits\n", - "9 ---> https://github.com/jjnp/dss-ue2\n", - "0 ---> https://github.com/jsh9/PySeismoSoil\n", - "0 ---> https://github.com/wiheto/teneto\n", - "0 ---> https://github.com/CamDavidsonPilon/lifetimes\n", - "0 ---> https://github.com/meelgroup/baital\n", - "0 ---> https://github.com/harnesscloud/bqwm\n", - "0 ---> https://github.com/apcamargo/tspex\n", - "0 ---> https://github.com/a-slide/pycoMeth\n", - "0 ---> https://github.com/RoberAgro/nurbspy\n", - "0 ---> https://github.com/ralph-group/pymeasure\n", - "9 ---> https://github.com/TrapperTeam/Trapper\n", - "0 ---> https://github.com/sertansenturk/tomato\n", - "0 ---> https://github.com/oscarbranson/carbspec\n", - "6 ---> https://github.com/rodighiero/AIUCD2020\n", - "0 ---> https://github.com/michaelaye/planet4\n", - "0 ---> https://github.com/mcs07/PubChemPy\n", - "0 ---> https://github.com/kyleniemeyer/mech_util\n", - "0 ---> https://github.com/nathandunn/galaxy-monarch-integration\n", - "9 ---> https://github.com/pyoceans/python-ctd\n", - "0 ---> https://github.com/sebhenri/HyWF\n", - "5 ---> https://github.com/MatthijsKaminski/AnalyzeTool\n", - "0 ---> https://github.com/mila-iqia/blocks\n", - "0 ---> https://github.com/vnmabus/dcor\n", - "0 ---> https://github.com/ejhumphrey/optimus\n", - "9 ---> https://github.com/Kaleidophon/token2index\n", - "0 ---> https://github.com/gchrupala/visually-grounded-speech\n", - "0 ---> https://github.com/dhhagan/opcsim\n", - "5 ---> https://github.com/kipoi/kipoiseq\n", - "0 ---> https://github.com/pnlbwh/freesurfer-analysis\n", - "0 ---> https://github.com/mpastell/CowLog\n", - "9 ---> https://github.com/TGAC/RAMPART\n", - "9 ---> https://github.com/repseqio/repseqio\n", - "6 ---> https://github.com/liminoid/liminoid\n", - "5 ---> https://github.com/SotosTsepe/invenio-madmp\n", - "8 ---> https://github.com/russianwordnet/yarn\n", - "0 ---> https://github.com/ihmeuw/vivarium_conic_lsff\n", - "0 ---> https://github.com/CMA-ES/pycma\n", - "0 ---> https://github.com/FAST-HEP/fast-curator\n", - "0 ---> https://github.com/erdc/AutoRoutePy\n", - "0 ---> https://github.com/kjappelbaum/oximachinetool\n", - "5 ---> https://github.com/ameyaKetkar/SimpleTypeChangeMiner\n", - "0 ---> https://github.com/rvhonorato/cazy-parser\n", - "0 ---> https://github.com/CrystalMei/ProvBuild\n", - "3 ---> https://github.com/stoqs/stoqs\n", - "0 ---> https://github.com/jamesrhester/PyFormatTransformer\n", - "0 ---> https://github.com/mirnylab/cooltools\n", - "0 ---> https://github.com/maxibor/adrsm\n", - "0 ---> https://github.com/thorstenwagner/ij-shape-filter\n", - "3 ---> https://github.com/cemac/SWIFTDB\n", - "0 ---> https://github.com/minimalparts/nonce2vec\n", - "0 ---> https://github.com/sepandhaghighi/pyrgg\n", - "5 ---> https://github.com/xBimTeam/XbimEssentials\n", - "5 ---> https://github.com/bionode/bionode-fasta\n", - "0 ---> https://github.com/chembl/FPSim2\n", - "5 ---> https://github.com/WIPACrepo/iceprod\n", - "0 ---> https://github.com/smarsland/AviaNZ\n", - "9 ---> https://github.com/chasemc/IDBacApp\n", - "0 ---> https://github.com/metomi/rose\n", - "0 ---> https://github.com/dune-community/dune-gdt\n", - "0 ---> https://github.com/LEAF-BoiseState/janus\n", - "0 ---> https://github.com/mmbajo/PROBA-V\n", - "0 ---> https://github.com/koszullab/instaGRAAL\n", - "0 ---> https://github.com/clincolnoz/WorldBank_WDI_Visulization\n", - "3 ---> https://github.com/lifs-tools/jmzTab-m-webapp\n", - "0 ---> https://github.com/thieunguyen5991/mealpy\n", - "0 ---> https://github.com/sepandhaghighi/pycm\n", - "1 ---> https://github.com/fruchtfolge/client\n", - "7 ---> https://github.com/newcastle-living-lab/living-lab\n", - "9 ---> https://github.com/waqasbhatti/astrobase\n", - "0 ---> https://github.com/TECH-UB-24-Programming-DS-Spring-2020/notebooks\n", - "0 ---> https://github.com/hidrokit/hidrokit\n", - "0 ---> https://github.com/biosustain/gnomic\n", - "0 ---> https://github.com/digicademy/AskMoreXtension\n", - "0 ---> https://github.com/jnicoleoliveira/SPECData\n", - "0 ---> https://github.com/glotzerlab/signac-flow\n", - "0 ---> https://github.com/erdc/spt_compute\n", - "0 ---> https://github.com/maayane/PhotoManip\n", - "9 ---> https://github.com/ufbmi/mdc_tree\n", - "0 ---> https://github.com/VlachosGroup/vunits\n", - "0 ---> https://github.com/rhshah/iCallSV\n", - "0 ---> https://github.com/widdowquinn/SI_Holmes_etal_2020\n", - "5 ---> https://github.com/vemomoto/vemomoto\n", - "0 ---> https://github.com/nschloe/tikzplotlib\n", - "0 ---> https://github.com/msmbuilder/msmbuilder\n", - "0 ---> https://github.com/dmolina/shadeils\n", - "9 ---> https://github.com/spacetelescope/mirage\n", - "9 ---> https://github.com/dpla/ingestion\n", - "5 ---> https://github.com/bigbadcrad/PUFFIN\n", - "9 ---> https://github.com/Ouranosinc/xclim\n", - "0 ---> https://github.com/erdc/spt_dataset_manager\n", - "0 ---> https://github.com/jhrmnn/pyberny\n", - "5 ---> https://github.com/scharom16/evolutionary-nas-with-performance-estimation\n", - "0 ---> https://github.com/timm/shape\n", - "0 ---> https://github.com/JulianKarlBauer/mechkit\n", - "0 ---> https://github.com/gher-ulg/DINCAE\n", - "2 ---> https://github.com/eweitz/ideogram\n", - "9 ---> https://github.com/rinde/vanLon17-GPEM-code\n", - "9 ---> https://github.com/NESCent/dplace\n", - "0 ---> https://github.com/kkmann/optimal-binary-two-stage-designs\n", - "9 ---> https://github.com/pyoceans/python-oceans\n", - "0 ---> https://github.com/DiamondLightSource/Opt-ID\n", - "0 ---> https://github.com/salvadorgarciamunoz/kipet\n", - "0 ---> https://github.com/JasperHG90/sleepsimR-api\n", - "0 ---> https://github.com/njsmith/zs\n", - "0 ---> https://github.com/cicirello/JavaPermutationTools\n", - "0 ---> https://github.com/AndrewAnnex/SpiceyPy\n", - "5 ---> https://github.com/CESNET/perun-mitreid\n", - "0 ---> https://github.com/choderalab/itctools\n", - "0 ---> https://github.com/vpasumarthi/PyCD\n", - "0 ---> https://github.com/jiemakel/seco-hfst\n", - "6 ---> https://github.com/digitallinguistics/spec\n", - "0 ---> https://github.com/philippkraft/cmf\n", - "9 ---> https://github.com/fo-am/mongoose-2000\n", - "0 ---> https://github.com/snowformatics/macrobot\n", - "2 ---> https://github.com/kach/nearley\n", - "2 ---> https://github.com/direwolf/direwolf-app\n", - "6 ---> https://github.com/infraling/atomic\n", - "0 ---> https://github.com/samapriya/plantpy\n", - "0 ---> https://github.com/KatyBrown/CIAlign\n", - "0 ---> https://github.com/iteal/wormpose\n", - "0 ---> https://github.com/felixriese/susi\n", - "0 ---> https://github.com/proycon/codemetapy\n", - "0 ---> https://github.com/eblur/dust\n", - "0 ---> https://github.com/BioMoDeL/aesop\n", - "0 ---> https://github.com/bashtage/randomgen\n", - "0 ---> https://github.com/UT-CHG/BET\n", - "2 ---> https://github.com/bids-standard/bids-validator\n", - "0 ---> https://github.com/concepticon/pynorare\n", - "0 ---> https://github.com/nipy/PySurfer\n", - "0 ---> https://github.com/jeffreyruffolo/lamprey_rs_neuron_parameter_exploration\n", - "0 ---> https://github.com/harnesscloud/irm-nova\n", - "0 ---> https://github.com/obachem/kmc2\n", - "9 ---> https://github.com/biowdl/gatk-preprocess\n", - "0 ---> https://github.com/beOn/cili\n", - "4 ---> https://github.com/trendscenter/coinstac\n", - "3 ---> https://github.com/kuechenrole/antarctic_melting\n", - "0 ---> https://github.com/saketkc/moca\n", - "0 ---> https://github.com/PBR/MQ2\n", - "0 ---> https://github.com/ijpb/MorphoLibJ\n", - "0 ---> https://github.com/tesera/pygypsy\n", - "0 ---> https://github.com/ml-evs/ilustrado\n", - "9 ---> https://github.com/DeepRank/iScore\n", - "0 ---> https://github.com/fastscape-lem/fastscape\n", - "1 ---> https://github.com/yogo/sapphire\n", - "0 ---> https://github.com/BlueBrain/MorphIO\n", - "0 ---> https://github.com/bashtage/arch\n", - "0 ---> https://github.com/vsoch/TtoZ\n", - "0 ---> https://github.com/miurahr/pykakasi\n", - "0 ---> https://github.com/dalejn/cleanBib\n", - "0 ---> https://github.com/fail2ban/fail2ban\n", - "0 ---> https://github.com/mih/gumpdata\n", - "9 ---> https://github.com/compas-dev/compas_fab\n", - "9 ---> https://github.com/steelelab-delft/stlab\n", - "0 ---> https://github.com/mozillazg/python-pinyin\n", - "0 ---> https://github.com/aestimosolver/aestimo\n", - "0 ---> https://github.com/PyMVPA/PyMVPA\n", - "0 ---> https://github.com/eljost/pysisyphus\n", - "0 ---> https://github.com/mikahama/murre\n", - "3 ---> https://github.com/sbalci/clinicopathological\n", - "0 ---> https://github.com/arselzer/HTQueryOptimizer\n", - "0 ---> https://github.com/phenomecentre/ISTOCSY\n", - "9 ---> https://github.com/BerkeleyPhotonicsGenerator/BPG\n", - "0 ---> https://github.com/shiny-data-scientist/webscrap_pract_1\n", - "9 ---> https://github.com/GeoscienceAustralia/tcrm\n", - "9 ---> https://github.com/dputhier/pygtftk\n", - "0 ---> https://github.com/michaelaye/iuvs\n", - "0 ---> https://github.com/discsim/frank\n", - "0 ---> https://github.com/dguijo/TSOC\n" - ] - } - ], - "source": [ - "topic_dict = {}\n", - "for index,label in enumerate(labels):\n", - " topic_id = label\n", - " print(topic_id, '--->', rep_list[index])\n", - " \n", - " topic_dict[label] = topic_dict.get(label,[])\n", - " topic_dict[label].append(rep_list[index])" - ] - }, - { - "cell_type": "code", - "execution_count": 69, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "topic 0 : repos num: 2004\n", - "topic 1 : repos num: 59\n", - "topic 2 : repos num: 37\n", - "topic 3 : repos num: 118\n", - "topic 4 : repos num: 3\n", - "topic 5 : repos num: 202\n", - "topic 6 : repos num: 83\n", - "topic 7 : repos num: 11\n", - "topic 8 : repos num: 36\n", - "topic 9 : repos num: 459\n" - ] - } - ], - "source": [ - "for k in sorted(topic_dict.keys()):\n", - " print(f'topic {k} : repos num: {len(topic_dict[k])}')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Clustering - GMM" - ] - }, - { - "cell_type": "code", - "execution_count": 82, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/opt/anaconda3/envs/Knowledge_Graph/lib/python3.6/site-packages/ipykernel_launcher.py:1: DeprecationWarning: Call to deprecated `doctag_syn0` (Attribute will be removed in 4.0.0, use docvecs.vectors_docs instead).\n", - " \"\"\"Entry point for launching an IPython kernel.\n", - "/opt/anaconda3/envs/Knowledge_Graph/lib/python3.6/site-packages/ipykernel_launcher.py:2: DeprecationWarning: Call to deprecated `doctag_syn0` (Attribute will be removed in 4.0.0, use docvecs.vectors_docs instead).\n", - " \n" - ] - }, - { - "data": { - "text/plain": [ - "((3012, 10),\n", - " array([[3.83853395e-005, 1.60064351e-253, 0.00000000e+000, ...,\n", - " 5.89829455e-014, 0.00000000e+000, 9.99961615e-001],\n", - " [7.79539839e-006, 2.16666431e-252, 0.00000000e+000, ...,\n", - " 1.78288693e-012, 0.00000000e+000, 9.99992205e-001],\n", - " [9.67671120e-006, 0.00000000e+000, 0.00000000e+000, ...,\n", - " 4.93476052e-016, 0.00000000e+000, 9.99990323e-001],\n", - " ...,\n", - " [4.93449671e-005, 0.00000000e+000, 0.00000000e+000, ...,\n", - " 1.54121993e-014, 0.00000000e+000, 9.99950655e-001],\n", - " [9.69154455e-007, 5.86529082e-279, 0.00000000e+000, ...,\n", - " 1.22051508e-017, 0.00000000e+000, 9.99999031e-001],\n", - " [3.26109095e-007, 1.39024139e-312, 0.00000000e+000, ...,\n", - " 2.73686617e-019, 0.00000000e+000, 9.99999674e-001]]))" - ] - }, - "execution_count": 82, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "GMM = GaussianMixture(n_components=10).fit(d2v_model.docvecs.doctag_syn0)\n", - "probs = GMM.predict_proba(d2v_model.docvecs.doctag_syn0)\n", - "\n", - "probs.shape,probs" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Knowledge_Graph", - "language": "python", - "name": "knowledge_graph" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.6.10" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/cluster_analysis/LDA.ipynb b/cluster_analysis/LDA.ipynb deleted file mode 100644 index f4f334e..0000000 --- a/cluster_analysis/LDA.ipynb +++ /dev/null @@ -1,5680 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Import Library" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "import json\n", - "from pprint import pprint\n", - "\n", - "import gensim\n", - "import gensim.corpora as corpora\n", - "from gensim.models import CoherenceModel\n", - "\n", - "#Plotting tools\n", - "import pyLDAvis\n", - "import pyLDAvis.gensim # don't skip this \n", - "import matplotlib.pyplot as plt\n", - "%matplotlib inline" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Load Data \n", - "\n", - "variable: data format: {repo1: [...] , repo2: [...] }\n" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "repos nums: 3012\n", - "repos which have no dependency files: 0\n", - "repos with dependency files: 3012\n" - ] - } - ], - "source": [ - "input_file ='../data/result_13k.json'\n", - "with open(input_file) as f:\n", - " data = json.load(f)\n", - "print(f'repos nums: {len(data)}')\n", - "\n", - "need_to_remove = []\n", - "for k,v in data.items():\n", - " if 'No dependency' in v:\n", - " need_to_remove.append(k)\n", - "print(f'repos which have no dependency files: {len(need_to_remove)}')\n", - "\n", - "for k in need_to_remove:\n", - " del data[k]\n", - "print(f'repos with dependency files: {len(data)}')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## PreProcessing\n", - "1. Get distinct dependency file dictionary -> dep_dict\n", - "2. Sort dependency file by frequency. -> sort_dep" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Distinct dependency file: 15663\n", - "\n", - "Frequent dependency files: [('numpy', 1536), ('scipy', 982), ('matplotlib', 881), ('pandas', 840), ('pytest', 598), ('sphinx', 433), ('requests', 389), ('six', 339), ('scikit-learn', 296), ('pyyaml', 284), ('pytest-cov', 270), ('tqdm', 268), ('sphinx-rtd-theme', 251), ('ipython', 236), ('coverage', 224), ('python-dateutil', 224), ('seaborn', 205), ('h5py', 197), ('pytz', 197), ('jinja2', 191)]\n" - ] - } - ], - "source": [ - "rep_list,dep_list = [],[]\n", - "for k,v in data.items():\n", - " rep_list.append(k)\n", - " dep_list.append(v)\n", - " \n", - "dep_dict = {}\n", - "for deps in data.values():\n", - " for i in deps:\n", - " dep_dict[i] = dep_dict.get(i,0)+1\n", - "\n", - "print(f'Distinct dependency file: {len(dep_dict)}',end='\\n\\n')\n", - " \n", - "sort_dep = sorted(dep_dict.items(),key=lambda x: x[-1], reverse=True)\n", - "print(f'Frequent dependency files: {sort_dep[:20]}')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Word Embedding\n", - "1. Build dependency file index table -> id2word format: {0: 'ipython',1: 'jupyter-sphinx',....}\n", - "2. Build Corpus -> corpus format: [[repo1 info], [repo2 info] ] repo1_info: [ (dep1_id:fre), xxx ]\n", - "3. Build a LDA model" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "repos info: [(0, 1), (1, 1), (2, 1), (3, 1), (4, 1), (5, 1), (6, 1), (7, 1), (8, 1)]\n" - ] - }, - { - "data": { - "text/plain": [ - "[[('ipython', 1),\n", - " ('jupyter-sphinx', 1),\n", - " ('nbformat', 1),\n", - " ('nbsphinx', 1),\n", - " ('path-py', 1),\n", - " ('six', 1),\n", - " ('sphinx', 1),\n", - " ('sphinx-hoverxref', 1),\n", - " ('sphinx-rtd-theme', 1)]]" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# based on dep file names , build dep name dictionary\n", - "id2word = corpora.Dictionary(list(data.values())) # {0: 'emd-signal',1: 'numpy', 2: 'SQLAlchemy', 3: 'aiofiles' ....}\n", - "\n", - "# based on dep name dict and dep names, build corpus\n", - "corpus = [id2word.doc2bow(text) for text in list(data.values())] # [[(0, 1), (1, 1)],.....]\n", - "\n", - "\n", - "print(f'repos info: {corpus[0]}') #(0, 1)\n", - "\n", - "[[(id2word[id_], freq) for id_, freq in cp] for cp in corpus[:1]]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Build LDA model" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[(0,\n", - " '0.013*\"flask-sqlalchemy\" + 0.011*\"flask-login\" + '\n", - " '0.008*\"com.beust:jcommander\" + 0.006*\"cors\" + 0.006*\"flask-script\" + '\n", - " '0.006*\"flask-migrate\" + 0.006*\"wtforms\" + 0.006*\"@types/jest\" + '\n", - " '0.005*\"flask-wtf\" + 0.005*\"blinker\"'),\n", - " (1,\n", - " '0.026*\"beautifulsoup4\" + 0.026*\"dask\" + 0.023*\"plotly\" + 0.012*\"sass\" + '\n", - " '0.010*\"pyasn1\" + 0.010*\"coffee-script\" + 0.010*\"docopt\" + '\n", - " '0.008*\"addressable\" + 0.008*\"json5\" + 0.008*\"ffi\"'),\n", - " (2,\n", - " '0.044*\"kiwisolver\" + 0.024*\"com.google.code.gson:gson\" + 0.023*\"selenium\" + '\n", - " '0.019*\"pycodestyle\" + 0.018*\"babel\" + 0.018*\"alabaster\" + 0.016*\"q\" + '\n", - " '0.016*\"snowballstemmer\" + 0.014*\"imagesize\" + 0.011*\"pyflakes\"'),\n", - " (3,\n", - " '0.105*\"numpy\" + 0.071*\"scipy\" + 0.064*\"matplotlib\" + 0.060*\"pandas\" + '\n", - " '0.040*\"pytest\" + 0.023*\"sphinx\" + 0.021*\"scikit-learn\" + 0.016*\"seaborn\" + '\n", - " '0.016*\"pytest-cov\" + 0.015*\"setuptools\"'),\n", - " (4,\n", - " '0.011*\"semver\" + 0.010*\"js-yaml\" + 0.009*\"tox\" + 0.008*\"inherits\" + '\n", - " '0.008*\"graphviz\" + 0.007*\"inflight\" + 0.007*\"ms\" + 0.007*\"isarray\" + '\n", - " '0.006*\"mem\" + 0.006*\"minimatch\"'),\n", - " (5,\n", - " '0.054*\"requests\" + 0.020*\"pyyaml\" + 0.019*\"certifi\" + 0.017*\"six\" + '\n", - " '0.017*\"jinja2\" + 0.016*\"attrs\" + 0.016*\"cffi\" + 0.016*\"idna\" + 0.015*\"mock\" '\n", - " '+ 0.015*\"netcdf4\"'),\n", - " (6,\n", - " '0.022*\"org.apache.maven.plugins:maven-compiler-plugin\" + '\n", - " '0.020*\"junit:junit\" + 0.014*\"org.apache.maven.plugins:maven-jar-plugin\" + '\n", - " '0.013*\"org.apache.maven.plugins:maven-surefire-plugin\" + '\n", - " '0.012*\"org.apache.maven.plugins:maven-javadoc-plugin\" + '\n", - " '0.012*\"org.apache.maven.plugins:maven-shade-plugin\" + '\n", - " '0.011*\"commons-cli:commons-cli\" + '\n", - " '0.010*\"org.apache.maven.plugins:maven-source-plugin\" + '\n", - " '0.008*\"org.postgresql:postgresql\" + 0.008*\"commons-io:commons-io\"'),\n", - " (7,\n", - " '0.020*\"python-dateutil\" + 0.015*\"markupsafe\" + 0.015*\"pyparsing\" + '\n", - " '0.015*\"decorator\" + 0.014*\"cycler\" + 0.012*\"jinja2\" + 0.011*\"pytz\" + '\n", - " '0.011*\"joblib\" + 0.011*\"pexpect\" + 0.011*\"pyzmq\"'),\n", - " (8,\n", - " '0.023*\"cartopy\" + 0.019*\"eslint-config-airbnb\" + 0.018*\"electron\" + '\n", - " '0.017*\"concurrently\" + 0.016*\"i18next\" + 0.016*\"electron-builder\" + '\n", - " '0.015*\"electron-devtools-installer\" + 0.014*\"@hapi/cryptiles\" + '\n", - " '0.014*\"electron-squirrel-startup\" + 0.014*\"connected-react-router\"'),\n", - " (9,\n", - " '0.004*\"jupyter\" + 0.004*\"acorn\" + 0.004*\"ansi-styles\" + 0.003*\"ansi-regex\" '\n", - " '+ 0.003*\"chalk\" + 0.003*\"@babel/core\" + 0.003*\"eslint\" + '\n", - " '0.003*\"brace-expansion\" + 0.003*\"@babel/preset-env\" + 0.003*\"concat-map\"')]\n" - ] - } - ], - "source": [ - "lda_model = gensim.models.ldamodel.LdaModel(corpus=corpus,\n", - " id2word=id2word,\n", - " num_topics=10, \n", - " random_state=100,\n", - " update_every=1,\n", - " chunksize=100,\n", - " passes=10,\n", - " alpha='auto',\n", - " per_word_topics=True)\n", - "pprint(lda_model.print_topics())" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Perplexity: -8.880674283106055\n", - "Coherence Score: 0.6355667452627967\n" - ] - } - ], - "source": [ - "# Compute Perplexity\n", - "print('Perplexity: ', lda_model.log_perplexity(corpus)) # a measure of how good the model is. lower the better.\n", - "\n", - "# Compute Coherence Score\n", - "coherence_model_lda = CoherenceModel(model=lda_model, texts=list(data.values()), dictionary=id2word, coherence='c_v')\n", - "coherence_lda = coherence_model_lda.get_coherence()\n", - "print('Coherence Score: ', coherence_lda)" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": { - "scrolled": false - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(0, '0.013*\"flask-sqlalchemy\" + 0.011*\"flask-login\" + 0.008*\"com.beust:jcommander\" + 0.006*\"cors\" + 0.006*\"flask-script\"')\n", - "(1, '0.026*\"beautifulsoup4\" + 0.026*\"dask\" + 0.023*\"plotly\" + 0.012*\"sass\" + 0.010*\"pyasn1\"')\n", - "(2, '0.044*\"kiwisolver\" + 0.024*\"com.google.code.gson:gson\" + 0.023*\"selenium\" + 0.019*\"pycodestyle\" + 0.018*\"babel\"')\n", - "(3, '0.105*\"numpy\" + 0.071*\"scipy\" + 0.064*\"matplotlib\" + 0.060*\"pandas\" + 0.040*\"pytest\"')\n", - "(4, '0.011*\"semver\" + 0.010*\"js-yaml\" + 0.009*\"tox\" + 0.008*\"inherits\" + 0.008*\"graphviz\"')\n", - "(5, '0.054*\"requests\" + 0.020*\"pyyaml\" + 0.019*\"certifi\" + 0.017*\"six\" + 0.017*\"jinja2\"')\n", - "(6, '0.022*\"org.apache.maven.plugins:maven-compiler-plugin\" + 0.020*\"junit:junit\" + 0.014*\"org.apache.maven.plugins:maven-jar-plugin\" + 0.013*\"org.apache.maven.plugins:maven-surefire-plugin\" + 0.012*\"org.apache.maven.plugins:maven-javadoc-plugin\"')\n", - "(7, '0.020*\"python-dateutil\" + 0.015*\"markupsafe\" + 0.015*\"pyparsing\" + 0.015*\"decorator\" + 0.014*\"cycler\"')\n", - "(8, '0.023*\"cartopy\" + 0.019*\"eslint-config-airbnb\" + 0.018*\"electron\" + 0.017*\"concurrently\" + 0.016*\"i18next\"')\n", - "(9, '0.004*\"jupyter\" + 0.004*\"acorn\" + 0.004*\"ansi-styles\" + 0.003*\"ansi-regex\" + 0.003*\"chalk\"')\n" - ] - } - ], - "source": [ - "# Show the top 5 words of each topic\n", - "for topic in lda_model.print_topics(num_words=5):\n", - " print(topic)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "((3012, 10),\n", - " array([[0.01560236, 0.07957503, 0.06580058, ..., 0.20069756, 0.0221843 ,\n", - " 0.08951548],\n", - " [0.01560236, 0.07957509, 0.06580059, ..., 0.19480723, 0.0221843 ,\n", - " 0.08951551],\n", - " [0.01560236, 4.079008 , 0.06580058, ..., 2.8628008 , 0.0221843 ,\n", - " 0.08951548],\n", - " ...,\n", - " [0.01560236, 0.07957502, 0.06580058, ..., 0.19474855, 0.0221843 ,\n", - " 0.08951548],\n", - " [0.01560236, 0.07957502, 0.06580058, ..., 0.19474855, 0.0221843 ,\n", - " 0.08951548],\n", - " [0.01560236, 0.07957502, 0.06580058, ..., 0.19474855, 0.0221843 ,\n", - " 0.08951548]], dtype=float32))" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# get the possible of each topic\n", - "lda_model.inference(corpus)[0].shape,lda_model.inference(corpus)[0]" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "inference :\n", - "3 ---> https://github.com/AgriculturalModelExchangeInitiative/Crop2ML\n", - "5 ---> https://github.com/natcap/natgeo-dams\n", - "3 ---> https://github.com/hlgirard/CrystalML\n", - "3 ---> https://github.com/houghb/ligpy\n", - "3 ---> https://github.com/oschwengers/referenceseeker\n", - "3 ---> https://github.com/LPDI-EPFL/trivalent_cocktail\n", - "3 ---> https://github.com/CIRA-Pulsars-and-Transients-Group/vcstools\n", - "3 ---> https://github.com/usc-isi-i2/kgtk\n", - "3 ---> https://github.com/garciagenrique/template_project_escape\n", - "2 ---> https://github.com/gwu-libraries/sfm-docker\n", - "6 ---> https://github.com/javaparser/javaparser\n", - "3 ---> https://github.com/williamjameshandley/anesthetic\n", - "3 ---> https://github.com/yardencsGitHub/tweetynet\n", - "3 ---> https://github.com/jagalindo/A-Python-QX-implementation\n", - "3 ---> https://github.com/jbkinney/mavenn\n", - "3 ---> https://github.com/GeoCode-polymtl/Seis_float16\n", - "3 ---> https://github.com/sebp/scikit-survival\n", - "5 ---> https://github.com/similitude/sumo-simmer\n", - "6 ---> https://github.com/GlobalNamesArchitecture/gnresolver\n", - "9 ---> https://github.com/nevenjovanovic/treebank-polybius\n", - "3 ---> https://github.com/Biophotonics-COMI/flimview\n", - "3 ---> https://github.com/joshspeagle/brutus\n", - "4 ---> https://github.com/metomi/isodatetime\n", - "5 ---> https://github.com/indralab/pybiopax\n", - "9 ---> https://github.com/FNNDSC/ChRIS_ui\n", - "7 ---> https://github.com/openphacts/explorer2\n", - "3 ---> https://github.com/TDAmeritrade/stumpy\n", - "3 ---> https://github.com/habi/acinar-analysis\n", - "3 ---> https://github.com/mbernste/hypothesis-driven-SRA-queries\n", - "1 ---> https://github.com/JiaxiangBU/dynamic_topic_modeling\n", - "7 ---> https://github.com/KnowledgeCaptureAndDiscovery/OBA_sparql\n", - "3 ---> https://github.com/maxscheurer/cppe\n", - "3 ---> https://github.com/Sung-Huan/ANNOgesic\n", - "6 ---> https://github.com/mayconbordin/storm-applications\n", - "3 ---> https://github.com/gauteh/ibcao_py\n", - "9 ---> https://github.com/GLAM-Workbench/te-papa-api\n", - "6 ---> https://github.com/cerebis/shap\n", - "7 ---> https://github.com/K3D-tools/K3D-jupyter\n", - "9 ---> https://github.com/CCMi-FIT/ontouml-code-generator\n", - "9 ---> https://github.com/diging/tethne\n", - "3 ---> https://github.com/mmhs013/pyHomogeneity\n", - "3 ---> https://github.com/bukhsh/oats\n", - "3 ---> https://github.com/mukil/pmic\n", - "3 ---> https://github.com/pySTEPS/pysteps\n", - "3 ---> https://github.com/groupeLIAMG/ttcr\n", - "3 ---> https://github.com/oujago/NumpyDL\n", - "9 ---> https://github.com/xldrkp/zocurelia\n", - "9 ---> https://github.com/encompasslabs/encompass-aquiferium\n", - "3 ---> https://github.com/deniederhut/niacin\n", - "3 ---> https://github.com/ZurichNLP/xstance\n", - "3 ---> https://github.com/raotnameh/End-to-end-E2E-Named-Entity-Recognition-from-English-Speech\n", - "5 ---> https://github.com/clincolnoz/maDMP-rocrates-maDMP\n", - "6 ---> https://github.com/thorstenwagner/ij-trajectory-classifier\n", - "3 ---> https://github.com/danielrd6/ifscube\n", - "3 ---> https://github.com/esteinig/sketchy\n", - "3 ---> https://github.com/opium-sh/prl\n", - "9 ---> https://github.com/maikherbig/AIDeveloper\n", - "3 ---> https://github.com/LFPy/LFPy\n", - "8 ---> https://github.com/aalzubidy/ssrt\n", - "3 ---> https://github.com/1QB-Information-Technologies/COOL\n", - "3 ---> https://github.com/morpheus-project/morpheus\n", - "7 ---> https://github.com/firedrakeproject/firedrake\n", - "3 ---> https://github.com/leal26/AeroPy\n", - "3 ---> https://github.com/arose/nglview\n", - "3 ---> https://github.com/jpgill86/neurotic\n", - "7 ---> https://github.com/MegaAttitude/frequency-acceptability-selection\n", - "3 ---> https://github.com/bertrandcz/CrocO_toolbox\n", - "3 ---> https://github.com/andsor/gridjug\n", - "3 ---> https://github.com/stfxecutables/empyricalRMT\n", - "3 ---> https://github.com/wmayner/pyphi\n", - "9 ---> https://github.com/isle-project/isle-editor\n", - "9 ---> https://github.com/cytoscape/cytoscape.js\n", - "2 ---> https://github.com/dejac001/MCFlow\n", - "5 ---> https://github.com/dragoon/kilogram\n", - "3 ---> https://github.com/pysal/spaghetti\n", - "3 ---> https://github.com/brisskit-uol/i2b2-install-procedures\n", - "3 ---> https://github.com/bast/runtest\n", - "3 ---> https://github.com/VarIr/scikit-hubness\n", - "6 ---> https://github.com/qbicsoftware/omero-client-portlet\n", - "4 ---> https://github.com/jyrkioraskari/IFCtoLBD_OpenAPI\n", - "3 ---> https://github.com/wright-group/WrightTools\n", - "3 ---> https://github.com/CamDavidsonPilon/lifelines\n", - "3 ---> https://github.com/tpall/pynodo\n", - "3 ---> https://github.com/rmkoesterer/uga\n", - "5 ---> https://github.com/proycon/clam\n", - "3 ---> https://github.com/GoekeLab/xpore\n", - "3 ---> https://github.com/ml-evs/matador\n", - "3 ---> https://github.com/stefsmeets/instamatic\n", - "3 ---> https://github.com/danxhuber/isoclassify\n", - "3 ---> https://github.com/proycon/colibri-core\n", - "6 ---> https://github.com/Yi-ran/Omnetpp\n", - "3 ---> https://github.com/alielhassouni/rl-multi-agent-simulation-for-e-health\n", - "5 ---> https://github.com/PTB-PSt1/time-series-metadata\n", - "3 ---> https://github.com/amueller/patsylearn\n", - "6 ---> https://github.com/globalbioticinteractions/globalbioticinteractions\n", - "7 ---> https://github.com/jiemakel/snapper\n", - "4 ---> https://github.com/digitallinguistics/scription2dlx\n", - "3 ---> https://github.com/lacava/few\n", - "3 ---> https://github.com/mheikenfeld/ramscube\n", - "3 ---> https://github.com/python-pillow/Pillow\n", - "3 ---> https://github.com/Silmathoron/NNGT\n", - "4 ---> https://github.com/RubenVerborgh/WebFundamentals\n", - "3 ---> https://github.com/ariercole/Cambridge_COVID-19_ICU\n", - "6 ---> https://github.com/JDRomano2/smdb_search\n", - "3 ---> https://github.com/matthiasweiss/dsue1-2020s\n", - "3 ---> https://github.com/jenojp/negspacy\n", - "3 ---> https://github.com/MartinPdS/OCT_calibration\n", - "3 ---> https://github.com/cmsopendata-finland/kurssimateriaali\n", - "7 ---> https://github.com/africanmathsinitiative/R-Instat\n", - "5 ---> https://github.com/SDM-TIB/SDM-RDFizer\n", - "3 ---> https://github.com/HERA-Team/librarian\n", - "3 ---> https://github.com/tkralphs/CuPPy\n", - "3 ---> https://github.com/r9y9/pylibfreenect2\n", - "7 ---> https://github.com/dmj/PicaRecord\n", - "5 ---> https://github.com/smartbugs/smartbugs\n", - "9 ---> https://github.com/Andros-Spica/EAA2018_ceramics\n", - "3 ---> https://github.com/arm61/uravu\n", - "7 ---> https://github.com/casmlab/facebook_group_collector\n", - "1 ---> https://github.com/vboyce/Maze\n", - "3 ---> https://github.com/acoular/acoular\n", - "5 ---> https://github.com/smarie/python-autoclass\n", - "3 ---> https://github.com/underworldcode/UWGeodynamics\n", - "6 ---> https://github.com/clij/clij2\n", - "3 ---> https://github.com/sherbold/autorank\n", - "6 ---> https://github.com/saschneider/VMV\n", - "3 ---> https://github.com/CENER-EPR/OWAbench\n", - "3 ---> https://github.com/tempdata73/tic-tac-toe\n", - "9 ---> https://github.com/molbiodiv/biojs-io-biom\n", - "5 ---> https://github.com/olivettigroup/article-downloader\n", - "9 ---> https://github.com/leilaicruz/Experimental-journal-deploy\n", - "6 ---> https://github.com/ltrr-arizona-edu/tellervo\n", - "6 ---> https://github.com/egonw/jqudt\n", - "3 ---> https://github.com/catalyst-cooperative/pudl\n", - "3 ---> https://github.com/TUDelft-CITG/OpenTISim\n", - "5 ---> https://github.com/hipster-philology/nlp-pie-taggers\n", - "3 ---> https://github.com/martinlackner/abcvoting\n", - "3 ---> https://github.com/pv/fimport\n", - "3 ---> https://github.com/nextgenusfs/funannotate\n", - "3 ---> https://github.com/cmccoy/ighutil\n", - "5 ---> https://github.com/kylemede/ExoSOFT\n", - "3 ---> https://github.com/AOtools/aotools\n", - "3 ---> https://github.com/weecology/retriever\n", - "3 ---> https://github.com/mdolab/idwarp\n", - "6 ---> https://github.com/paberlo/FastFeatureSelection\n", - "3 ---> https://github.com/davidrpugh/pyAM\n", - "5 ---> https://github.com/wateraccounting/IHEWAcollect\n", - "3 ---> https://github.com/N3PDF/yadism\n", - "3 ---> https://github.com/JohannesBuchner/snowline\n", - "3 ---> https://github.com/pychebfun/pychebfun\n", - "3 ---> https://github.com/mmadsen/ctmixtures\n", - "3 ---> https://github.com/coin-or/GiMPy\n", - "3 ---> https://github.com/hibernator11/notebook-lod-libraries\n", - "6 ---> https://github.com/GlobalNamesArchitecture/gn_uuid\n", - "3 ---> https://github.com/muammar/heisenberg\n", - "3 ---> https://github.com/spex-xray/pyspextools\n", - "3 ---> https://github.com/csdms/pymt\n", - "3 ---> https://github.com/santiago1234/MZT-rna-stability\n", - "3 ---> https://github.com/sehero/lua\n", - "5 ---> https://github.com/sepandhaghighi/qpage\n", - "3 ---> https://github.com/qmlcode/qml\n", - "3 ---> https://github.com/dmyersturnbull/tyrannosaurus\n", - "6 ---> https://github.com/wild-fire/twitter-graph-segmenter\n", - "3 ---> https://github.com/alcantarar/dryft\n", - "3 ---> https://github.com/DaniloZZZ/Qensor\n", - "6 ---> https://github.com/jfsantos/mushra-ruby-server\n", - "3 ---> https://github.com/MaayanLab/Zika-RNAseq-Pipeline\n", - "3 ---> https://github.com/pyReef-model/RADWave\n", - "3 ---> https://github.com/src-d/kmcuda\n", - "3 ---> https://github.com/perrygeo/pyimpute\n", - "3 ---> https://github.com/toshas/torch-fidelity\n", - "5 ---> https://github.com/intermine/intermine\n", - "3 ---> https://github.com/SasView/sasview\n", - "8 ---> https://github.com/SommerEngineering/NoiseEngine\n", - "9 ---> https://github.com/mathjax/MathJax-src\n", - "5 ---> https://github.com/IFCA/keystone-voms\n", - "3 ---> https://github.com/zfit/zfit-physics\n", - "3 ---> https://github.com/abhi1693/yii2-system-info\n", - "3 ---> https://github.com/harmslab/pytc\n", - "3 ---> https://github.com/biosustain/pyrcos\n", - "3 ---> https://github.com/CNRGH/contatester\n", - "3 ---> https://github.com/pcko1/Deep-Drug-Coder\n", - "3 ---> https://github.com/gree-gorey/rusclasp\n", - "3 ---> https://github.com/chartes/deucalion-model-lasla\n", - "9 ---> https://github.com/zero323/developing-data-products-shiny\n", - "9 ---> https://github.com/etnbrd/flx-example\n", - "7 ---> https://github.com/dalmia/siren\n", - "9 ---> https://github.com/sanshu/protaeljs\n", - "5 ---> https://github.com/dev-cafe/autocmake\n", - "5 ---> https://github.com/whitemech/LTLf2DFA\n", - "3 ---> https://github.com/SanneHoeken/HEEM-Data-Extractions\n", - "5 ---> https://github.com/cayolopesbc/eco-data-toolkit\n", - "3 ---> https://github.com/fliem/cpr\n", - "7 ---> https://github.com/Capitains/Hook-Worker\n", - "5 ---> https://github.com/OSSOS/liborbfit\n", - "3 ---> https://github.com/r9y9/nnmnkwii\n", - "7 ---> https://github.com/rdmorganiser/rdmo\n", - "9 ---> https://github.com/karimamufidah/karimamufidah.github.io\n", - "7 ---> https://github.com/assafZaritskyLab/IRM-Spreading-Dynamics\n", - "3 ---> https://github.com/paudetseis/PlateCurie\n", - "3 ---> https://github.com/cyclops-community/tensorbackends\n", - "3 ---> https://github.com/astrofle/CRRLpy\n", - "3 ---> https://github.com/stanford-futuredata/Willump\n", - "6 ---> https://github.com/petebrew/fhaes\n", - "2 ---> https://github.com/tferr/hIPNAT\n", - "7 ---> https://github.com/cescalara/minieuso_cpu\n", - "3 ---> https://github.com/phiweger/zoo\n", - "3 ---> https://github.com/shenlab-sinai/region_analysis\n", - "5 ---> https://github.com/duncanmmacleod/requests-ecp\n", - "9 ---> https://github.com/biasmv/pv\n", - "3 ---> https://github.com/podondra/bt-spectraldl\n", - "3 ---> https://github.com/ubermag/micromagnetictests\n", - "3 ---> https://github.com/amunozj/magnetograph_2HMI_converter\n", - "3 ---> https://github.com/r9y9/pysptk\n", - "3 ---> https://github.com/michaelaye/venim\n", - "6 ---> https://github.com/justinnk/bss-simulation-study\n", - "9 ---> https://github.com/LDflex/LDflex\n", - "3 ---> https://github.com/FAST-HEP/fast-carpenter\n", - "3 ---> https://github.com/lpwgroup/torsiondrive\n", - "7 ---> https://github.com/CCS-Lab/easyml\n", - "3 ---> https://github.com/datajoint/datajoint-python\n", - "3 ---> https://github.com/hallamlab/mlLGPR\n", - "3 ---> https://github.com/cmbant/CosmoMC\n", - "3 ---> https://github.com/lukasValentin/OBIA4RTM\n", - "6 ---> https://github.com/bowsersenior/itu_codes\n", - "3 ---> https://github.com/loostrum/darc\n", - "3 ---> https://github.com/sdorkenw/MeshParty\n", - "3 ---> https://github.com/RadioAstronomySoftwareGroup/pyuvsim\n", - "9 ---> https://github.com/cggh/panoptes\n", - "5 ---> https://github.com/experimaestro/datamaestro\n", - "6 ---> https://github.com/ruby-rdf/rdf\n", - "5 ---> https://github.com/ARGOeu/argo-api-authn\n", - "1 ---> https://github.com/NBISweden/workshop_omics_integration\n", - "5 ---> https://github.com/PyThaiNLP/Thai-Text-Generator\n", - "3 ---> https://github.com/aditya95sriram/td-slim\n", - "3 ---> https://github.com/geoopt/geoopt\n", - "3 ---> https://github.com/jswoboda/ISRSpectrum\n", - "3 ---> https://github.com/jonschwenk/RivGraph\n", - "3 ---> https://github.com/thoppe/Encyclopedia-of-Finite-Graphs\n", - "3 ---> https://github.com/Ry-C123/LazyPSF\n", - "9 ---> https://github.com/bionode/bionode-sra\n", - "3 ---> https://github.com/tjof2/ctrwfractal\n", - "3 ---> https://github.com/MatthewBCooke/Pathfinder\n", - "3 ---> https://github.com/connectomicslab/connectomemapper3\n", - "3 ---> https://github.com/rpep/fmmgen\n", - "7 ---> https://github.com/bionode/bionode-bbi\n", - "3 ---> https://github.com/griffin-h/superphot\n", - "9 ---> https://github.com/neuroscout/neuroscout\n", - "7 ---> https://github.com/tsamsonov/generalize-dem\n", - "6 ---> https://github.com/comodide/CoModIDE\n", - "3 ---> https://github.com/cscully-allison/Materia\n", - "6 ---> https://github.com/dnet-team/dnet-basic-aggregator\n", - "3 ---> https://github.com/tschaume/ccsgp_get_started\n", - "3 ---> https://github.com/discos/discos-backend\n", - "3 ---> https://github.com/wmayner/pyemd\n", - "3 ---> https://github.com/drsteve/PyForecastTools\n", - "4 ---> https://github.com/nickk124/RCR\n", - "3 ---> https://github.com/rmsolgi/geneticalgorithm\n", - "3 ---> https://github.com/mmhs013/pyMannKendall\n", - "6 ---> https://github.com/fusion-jena/abecto\n", - "3 ---> https://github.com/TerrainBento/terrainbento\n", - "3 ---> https://github.com/mwaskom/seaborn\n", - "3 ---> https://github.com/florafauna/optimParallel-python\n", - "3 ---> https://github.com/pietrobarbiero/evofs\n", - "3 ---> https://github.com/IsaacCorley/pytorch-enhance\n", - "3 ---> https://github.com/ecell/ecell4\n", - "3 ---> https://github.com/mirnylab/bioframe\n", - "3 ---> https://github.com/dean0x7d/pybinding\n", - "3 ---> https://github.com/janmtl/pypsych\n", - "3 ---> https://github.com/lcharleux/abapy\n", - "1 ---> https://github.com/pyhf/neos\n", - "7 ---> https://github.com/CiTR/djland\n", - "3 ---> https://github.com/nuest/ten-simple-rules-dockerfiles\n", - "3 ---> https://github.com/OpenSourceEconomics/ruspy\n", - "6 ---> https://github.com/ameyaKetkar/TypeChangeMiner\n", - "3 ---> https://github.com/lingfeiwang/normalisr\n", - "3 ---> https://github.com/ShuhuaGao/geppy\n", - "5 ---> https://github.com/bgruening/galaxy_ie_helpers\n", - "5 ---> https://github.com/pyvideo/data\n", - "3 ---> https://github.com/azedarach/matrix-factorization-case-studies\n", - "5 ---> https://github.com/driplineorg/dripline-python\n", - "3 ---> https://github.com/LoLab-VU/Gleipnir\n", - "3 ---> https://github.com/uwmadison-chm/scorify\n", - "9 ---> https://github.com/NESCent/fcdb-api\n", - "3 ---> https://github.com/csu-hmc/GaitAnalysisToolKit\n", - "7 ---> https://github.com/bakery-cg2at/bakery\n", - "3 ---> https://github.com/radical-cybertools/radical.synapse\n", - "3 ---> https://github.com/MaineKuehn/usim\n", - "6 ---> https://github.com/ag-gipp/FormulaCloudData\n", - "3 ---> https://github.com/astrom-tom/dfitspy\n", - "9 ---> https://github.com/SP7-Ritmare/EDI-NG_client\n", - "5 ---> https://github.com/jona-sassenhagen/statfail\n", - "3 ---> https://github.com/spacetelescope/jwql\n", - "3 ---> https://github.com/ePSIC-DLS/ParticleSpy\n", - "3 ---> https://github.com/N3PDF/pineappl\n", - "6 ---> https://github.com/rinde/vanLon17-JAAMAS-code\n", - "5 ---> https://github.com/pitthsls/pycounter\n", - "3 ---> https://github.com/hippylib/hippylib\n", - "3 ---> https://github.com/felixriese/CNN-SoilTextureClassification\n", - "3 ---> https://github.com/IQuOD/wodpy\n", - "3 ---> https://github.com/ahendriksen/msd_pytorch\n", - "9 ---> https://github.com/tobysmith568/TestEnv\n", - "6 ---> https://github.com/lucasberent/ds\n", - "3 ---> https://github.com/sgoldenlab/simba\n", - "7 ---> https://github.com/jonathanmorgan/django_config\n", - "9 ---> https://github.com/IbrahimTanyalcin/RafX\n", - "3 ---> https://github.com/mdolab/adflow\n", - "7 ---> https://github.com/Phylu/csd\n", - "9 ---> https://github.com/ebmdatalab/trialstracker\n", - "6 ---> https://github.com/datapoet/hubminer\n", - "2 ---> https://github.com/midas-isg/PITT-SEIR-model\n", - "9 ---> https://github.com/zakandrewking/escher\n", - "9 ---> https://github.com/EMAPS/climaps-platform\n", - "3 ---> https://github.com/OpenChemistry/tomviz\n", - "9 ---> https://github.com/yeeking/evosynth\n", - "6 ---> https://github.com/rinde/vanLon16-EJOR-code\n", - "4 ---> https://github.com/biowdl/QC\n", - "1 ---> https://github.com/intelaligent/tctb\n", - "6 ---> https://github.com/rinde/RinLog\n", - "3 ---> https://github.com/sertansenturk/seyiranalyzer\n", - "3 ---> https://github.com/sertansenturk/alignednotemodel\n", - "3 ---> https://github.com/miklos1/dijitso\n", - "2 ---> https://github.com/smart-facility/cognicity-reports-twitter\n", - "9 ---> https://github.com/speckleworks/SpeckleServer\n", - "3 ---> https://github.com/schwemro/diag-eff\n", - "7 ---> https://github.com/jacobwindsor/MetabMaster\n", - "3 ---> https://github.com/NLeSC/mcfly\n", - "3 ---> https://github.com/hahnec/plenopticam\n", - "3 ---> https://github.com/ICB-DCM/AMICI\n", - "3 ---> https://github.com/kundajelab/abstention\n", - "9 ---> https://github.com/qPRC/qPRC\n", - "9 ---> https://github.com/ecds/readux\n", - "5 ---> https://github.com/cemac/COMET_VolcDB\n", - "3 ---> https://github.com/transientlunatic/otter\n", - "3 ---> https://github.com/dftlibs/xcfun\n", - "5 ---> https://github.com/IKNL/vantage6\n", - "8 ---> https://github.com/PhiliPdB/treedepth-exact\n", - "5 ---> https://github.com/deniederhut/weather_report\n", - "4 ---> https://github.com/biowdl/structural-variantcalling\n", - "3 ---> https://github.com/kikuchipy/kikuchipy\n", - "4 ---> https://github.com/LispTO/llthw\n", - "9 ---> https://github.com/cfe-lab/Kive\n", - "3 ---> https://github.com/gpauloski/kfac_pytorch\n", - "3 ---> https://github.com/materialsproject/pymatgen\n", - "3 ---> https://github.com/douglasdavis/pygram11\n", - "3 ---> https://github.com/jrkerns/pylinac\n", - "6 ---> https://github.com/dvasilen/Hive-XML-SerDe\n", - "7 ---> https://github.com/rubenarslan/formr.org\n", - "5 ---> https://github.com/yannforget/pylandsat\n", - "6 ---> https://github.com/gousiosg/pullreqs\n", - "1 ---> https://github.com/kantale/MutationInfo\n", - "3 ---> https://github.com/kdberends/coral\n", - "3 ---> https://github.com/llondon6/positive\n", - "5 ---> https://github.com/josecastillolema/mini-nfv\n", - "7 ---> https://github.com/driehle/emobility-search-engine\n", - "3 ---> https://github.com/LiyrAstroph/CDNest\n", - "3 ---> https://github.com/pysal/giddy\n", - "3 ---> https://github.com/LeeBergstrand/BackBLAST_Reciprocal_BLAST\n", - "3 ---> https://github.com/JanaLasser/salt-polygons-are-caused-by-convection\n", - "3 ---> https://github.com/mediawiki-utilities/python-mwreverts\n", - "3 ---> https://github.com/rbnvrw/semtracking\n", - "3 ---> https://github.com/coin-or/GrUMPy\n", - "3 ---> https://github.com/nist-ionstorage/pdq2\n", - "3 ---> https://github.com/TLCFEM/suanPan\n", - "3 ---> https://github.com/dlilien/ImpDAR\n", - "3 ---> https://github.com/ihrke/pypillometry\n", - "3 ---> https://github.com/willpearse/stalkless\n", - "6 ---> https://github.com/mmhss/sstrong-webhook\n", - "8 ---> https://github.com/RobotExMachina/Machina.NET\n", - "7 ---> https://github.com/tripal/private_biodata\n", - "9 ---> https://github.com/brown-ccv/neuro-task-starter\n", - "3 ---> https://github.com/FractalMedia/wheresmunna\n", - "3 ---> https://github.com/vivekbhr/scRIApipe\n", - "3 ---> https://github.com/coin-or/pulp\n", - "3 ---> https://github.com/Titan-C/slaveparticles\n", - "6 ---> https://github.com/GlobalNamesArchitecture/gn_crossmap\n", - "5 ---> https://github.com/indigo-dc/DEEPaaS\n", - "9 ---> https://github.com/densitymodelling/dsmextra\n", - "7 ---> https://github.com/SandstoneHPC/sandstone-spawner\n", - "5 ---> https://github.com/ENCODE-DCC/atac-seq-pipeline\n", - "3 ---> https://github.com/pnuehrenberg/multiviewtracks\n", - "5 ---> https://github.com/cerndb/dist-keras\n", - "7 ---> https://github.com/CESNET/proxystatistics-simplesamlphp-module\n", - "5 ---> https://github.com/MatterMiners/cobald\n", - "9 ---> https://github.com/asherpasha/Araport_GeneSlider\n", - "3 ---> https://github.com/matthewfeickert/IRIS-HEP-2020-Poster-Session\n", - "3 ---> https://github.com/r4ecology/nctoolkit\n", - "3 ---> https://github.com/transientlunatic/heron\n", - "3 ---> https://github.com/capaulson/pyKriging\n", - "3 ---> https://github.com/VlachosGroup/jl_spectra_2_structure\n", - "7 ---> https://github.com/NCBI-Hackathons/Structural_Variant_Comparison\n", - "3 ---> https://github.com/wradlib/wradlib\n", - "3 ---> https://github.com/CICE-Consortium/CICE\n", - "3 ---> https://github.com/sherpa/sherpa\n", - "3 ---> https://github.com/toros-astro/astroalign\n", - "3 ---> https://github.com/bootphon/ABXpy\n", - "9 ---> https://github.com/HuckleyLab/phyto-mhw\n", - "3 ---> https://github.com/pdxgx/neoepiscope\n", - "3 ---> https://github.com/danforthcenter/plantcv\n", - "3 ---> https://github.com/jkitchin/pycse\n", - "3 ---> https://github.com/rraadd88/rohan\n", - "3 ---> https://github.com/compas-dev/compas_fea\n", - "5 ---> https://github.com/Remdeht/ia_detector\n", - "3 ---> https://github.com/justagist/panda_simulator\n", - "3 ---> https://github.com/stemtool/stemtool\n", - "3 ---> https://github.com/mkoeppe/sage-numerical-interactive-mip\n", - "3 ---> https://github.com/Nu-AI/Livid-About-COVID\n", - "3 ---> https://github.com/PyLorentz/PyLorentz\n", - "7 ---> https://github.com/firedrakeproject/loopy\n", - "3 ---> https://github.com/ctsit/dxster\n", - "7 ---> https://github.com/bodkan/archaic-ychr\n", - "3 ---> https://github.com/PhysicsOfMobility/ridesharing_topology_dependence\n", - "3 ---> https://github.com/SuperKam91/twentyoneflow\n", - "5 ---> https://github.com/gwpy/gwosc\n", - "3 ---> https://github.com/duartegroup/cgbind\n", - "3 ---> https://github.com/raphaelvallat/pingouin\n", - "3 ---> https://github.com/pnlbwh/dMRIharmonization\n", - "5 ---> https://github.com/choderalab/assaytools\n", - "3 ---> https://github.com/cryotools/cosipy\n", - "3 ---> https://github.com/N3PDF/vegasflow\n", - "3 ---> https://github.com/althonos/pronto\n", - "3 ---> https://github.com/nipy/nipype\n", - "5 ---> https://github.com/sgrieve/sinuosity\n", - "3 ---> https://github.com/boivinalex/permittivitycalc\n", - "3 ---> https://github.com/BlueBrain/NeuroR\n", - "3 ---> https://github.com/Curtin-Open-Knowledge-Initiative/institutional-oa-evaluation-2020\n", - "3 ---> https://github.com/dgasmith/opt_einsum\n", - "3 ---> https://github.com/knutankv/koma\n", - "3 ---> https://github.com/foerstner-lab/READemption\n", - "3 ---> https://github.com/matthiaskoenig/fbc_curation\n", - "9 ---> https://github.com/dmitriz/cpsfy\n", - "3 ---> https://github.com/sdey135/rtapylysis\n", - "3 ---> https://github.com/CICE-Consortium/Icepack\n", - "3 ---> https://github.com/Nikoleta-v3/blackbook\n", - "7 ---> https://github.com/daniel-dpk/distorted-motsfinder-public\n", - "3 ---> https://github.com/StevenGolovkine/FDApy\n", - "3 ---> https://github.com/Leinadj/CREAM\n", - "3 ---> https://github.com/wjlei1990/spaceweight\n", - "3 ---> https://github.com/genomematt/AmBiVErT\n", - "9 ---> https://github.com/InsightSoftwareConsortium/itk-js\n", - "6 ---> https://github.com/owlcollab/expression-materializing-reasoner\n", - "3 ---> https://github.com/PEtab-dev/PEtab\n", - "3 ---> https://github.com/ziatdinovmax/GPim\n", - "3 ---> https://github.com/gwappa/fitting2d\n", - "5 ---> https://github.com/aeonium/fakedatacite\n", - "3 ---> https://github.com/boolsi/boolsi\n", - "3 ---> https://github.com/TomMonks/forecast-tools\n", - "4 ---> https://github.com/biowdl/tasks\n", - "3 ---> https://github.com/holoviz/hvplot\n", - "3 ---> https://github.com/mathjax/MathJax\n", - "5 ---> https://github.com/gwu-libraries/sfm-utils\n", - "3 ---> https://github.com/ci-group/revolve\n", - "3 ---> https://github.com/matthiaskoenig/sbmlsim\n", - "3 ---> https://github.com/biobakery/phylophlan\n", - "9 ---> https://github.com/rodighiero/COVID-19\n", - "7 ---> https://github.com/qzhu2017/PyXtal\n", - "3 ---> https://github.com/pnlbwh/multi-shell-dMRIharmonization\n", - "3 ---> https://github.com/loostrum/arts_tools\n", - "3 ---> https://github.com/jboynyc/textnets\n", - "3 ---> https://github.com/python-adaptive/adaptive\n", - "3 ---> https://github.com/nfsi-canada/OBStools\n", - "5 ---> https://github.com/tikk3r/lofar-grid-hpccloud\n", - "6 ---> https://github.com/governit/GovernIT\n", - "3 ---> https://github.com/nestordemeure/tabularGP\n", - "3 ---> https://github.com/AstraZeneca-NGS/disambiguate\n", - "3 ---> https://github.com/dgilford/pyPI\n", - "3 ---> https://github.com/Jacob-yen/LEMON\n", - "3 ---> https://github.com/tasoc/photometry\n", - "6 ---> https://github.com/qbicsoftware/omero-client-lib\n", - "3 ---> https://github.com/ASaiM/group_humann2_uniref_abundances_to_GO\n", - "3 ---> https://github.com/natashabatalha/virga\n", - "7 ---> https://github.com/lightonphiri/etd_autoclassifier\n", - "6 ---> https://github.com/ncrncornell/ced2ar\n", - "2 ---> https://github.com/clij/clij\n", - "3 ---> https://github.com/castelao/oceansdb\n", - "3 ---> https://github.com/conorwalsh/doat\n", - "3 ---> https://github.com/lweasel/piquant\n", - "3 ---> https://github.com/marinang/SimProd\n", - "7 ---> https://github.com/ishahid/django-gdm\n", - "9 ---> https://github.com/darribas/gds16\n", - "3 ---> https://github.com/calliope-project/calliope\n", - "6 ---> https://github.com/rockt/SETH\n", - "1 ---> https://github.com/zih-a35/trinityvm\n", - "1 ---> https://github.com/MRChemSoft/mrchem\n", - "3 ---> https://github.com/ehthiede/EMUS\n", - "3 ---> https://github.com/caiostringari/pywavelearn\n", - "9 ---> https://github.com/GeriLife/wellbeing\n", - "3 ---> https://github.com/aboucaud/pypher\n", - "3 ---> https://github.com/niosh-mining/obsplus\n", - "9 ---> https://github.com/scienceai/neocortex\n", - "5 ---> https://github.com/MPAS-Dev/MPAS-Analysis\n", - "3 ---> https://github.com/ralna/ElementSchur\n", - "3 ---> https://github.com/bdestombe/flopymetascript\n", - "3 ---> https://github.com/scikit-hep/awkward-array\n", - "5 ---> https://github.com/jonathansick/padova\n", - "3 ---> https://github.com/gwpy/gwsumm\n", - "3 ---> https://github.com/saullocastro/panels\n", - "6 ---> https://github.com/EHadoux/aptimizer\n", - "5 ---> https://github.com/mchoji/wtg-seal\n", - "3 ---> https://github.com/apetros/pyeplan\n", - "5 ---> https://github.com/Molmed/checkQC\n", - "5 ---> https://github.com/similitude/netlogo-sample-simmer\n", - "3 ---> https://github.com/castelao/CoTeDe\n", - "3 ---> https://github.com/matt-graham/mici\n", - "3 ---> https://github.com/donia-lab/MetaBGC\n", - "3 ---> https://github.com/nschloe/accupy\n", - "3 ---> https://github.com/KitwareMedical/SlicerITKUltrasound\n", - "3 ---> https://github.com/scities/marble\n", - "8 ---> https://github.com/hshsl-training/outreach-toolkit\n", - "9 ---> https://github.com/hyperwell/gateway\n", - "3 ---> https://github.com/tjof2/pgure-svt\n", - "3 ---> https://github.com/dfm/python-fsps\n", - "7 ---> https://github.com/kevindoyle/geoscience-first-authorship\n", - "6 ---> https://github.com/amuslija/fbd-complexity-tool\n", - "3 ---> https://github.com/N3PDF/evolutionary_keras\n", - "7 ---> https://github.com/fabfab1/EnCAB\n", - "3 ---> https://github.com/muammar/ml4chem\n", - "3 ---> https://github.com/fepegar/unet\n", - "5 ---> https://github.com/rtidatascience/django-postgres-stats\n", - "3 ---> https://github.com/esm-tools/esm_tools\n", - "6 ---> https://github.com/cwi-swat/bacata\n", - "6 ---> https://github.com/Sentimentron/PRJ9081\n", - "3 ---> https://github.com/hema-ted/pyzfs\n", - "3 ---> https://github.com/vitkl/orthologsBioMART\n", - "3 ---> https://github.com/davidrpugh/pyCollocation\n", - "5 ---> https://github.com/sbaltes/dblp-retriever\n", - "1 ---> https://github.com/vsoch/gridtest\n", - "6 ---> https://github.com/meteoinfo/MeteoInfo\n", - "3 ---> https://github.com/tcompa/anneal\n", - "3 ---> https://github.com/pansism/downscale-satelliteLST\n", - "3 ---> https://github.com/pyspeckit/pyspeckit\n", - "3 ---> https://github.com/TAMU-CPT/PAUSE\n", - "3 ---> https://github.com/mosdef-hub/forcefield_perfluoroethers\n", - "3 ---> https://github.com/dimazest/fowler.corpora\n", - "9 ---> https://github.com/a-callahan/MechWolf_Pull\n", - "3 ---> https://github.com/sami2py/sami2py\n", - "5 ---> https://github.com/gwu-libraries/sfm-weibo-harvester\n", - "6 ---> https://github.com/sojamo/oscp5\n", - "3 ---> https://github.com/OllyButters/puma\n", - "3 ---> https://github.com/aplowman/atomistic\n", - "3 ---> https://github.com/guaix-ucm/pyemir\n", - "3 ---> https://github.com/biosustain/croissance\n", - "3 ---> https://github.com/linhd-postdata/averell\n", - "6 ---> https://github.com/gbif/gbif-api\n", - "3 ---> https://github.com/kalyanpi4/pySW\n", - "1 ---> https://github.com/pitmonticone/Torino-Lione\n", - "3 ---> https://github.com/dave-heslop74/vMF_Specimens\n", - "3 ---> https://github.com/hollenstein/maspy\n", - "3 ---> https://github.com/wiai/xcdskd\n", - "6 ---> https://github.com/Ayllonbe/gsan\n", - "3 ---> https://github.com/romoreira/EdgeComputingSlice\n", - "3 ---> https://github.com/pysal/segregation\n", - "6 ---> https://github.com/ALIADA/aliada-tool\n", - "3 ---> https://github.com/JordiBolibar/ALPGM\n", - "3 ---> https://github.com/keyinst/keypy\n", - "3 ---> https://github.com/has2k1/scikit-misc\n", - "7 ---> https://github.com/PedroMat8/micropy\n", - "7 ---> https://github.com/clld/glottolog3\n", - "6 ---> https://github.com/stain/ro-combine-archive\n", - "3 ---> https://github.com/BEAST-Fitting/beast\n", - "3 ---> https://github.com/fireshape/fireshape\n", - "3 ---> https://github.com/jsh9/python-plot-utilities\n", - "7 ---> https://github.com/hibernator11/AprediendoJava\n", - "3 ---> https://github.com/FlamTeam/flamedisx\n", - "3 ---> https://github.com/ihmeuw-msca/ODEOPT\n", - "3 ---> https://github.com/dmentipl/plonk\n", - "4 ---> https://github.com/HSF/phoenix\n", - "3 ---> https://github.com/haraldschilly/panobbgo\n", - "7 ---> https://github.com/mtinti/PIG-A\n", - "2 ---> https://github.com/TRACMASS/tracmass\n", - "3 ---> https://github.com/coneoproject/COFFEE\n", - "1 ---> https://github.com/oblassers/dmap-mockups\n", - "3 ---> https://github.com/bioFAM/MOFA2\n", - "3 ---> https://github.com/pytroll/pyresample\n", - "3 ---> https://github.com/FATSLiM/fatslim\n", - "3 ---> https://github.com/astropenguin/azely\n", - "3 ---> https://github.com/debsankha/flownetpy\n", - "3 ---> https://github.com/lyx12311/Astraea\n", - "3 ---> https://github.com/npielawski/pytorch_tiramisu\n", - "7 ---> https://github.com/clld/tsammalex\n", - "6 ---> https://github.com/postnathalie/WallTalk\n", - "3 ---> https://github.com/TUW-GEO/smecv-grid\n", - "5 ---> https://github.com/echevemaster/fedora-college\n", - "9 ---> https://github.com/ropensci/lingtypology\n", - "6 ---> https://github.com/vivo-project/VIVO\n", - "7 ---> https://github.com/deephdc/schema4deep\n", - "3 ---> https://github.com/nist-ionstorage/electrode\n", - "7 ---> https://github.com/opannekoucke/pdenetgen\n", - "3 ---> https://github.com/lingpy/word-tree-paper\n", - "6 ---> https://github.com/RBVI/CyAnimator\n", - "3 ---> https://github.com/fsenf/proj.nawdex_analysis\n", - "7 ---> https://github.com/RDFLib/pyrdfa3\n", - "3 ---> https://github.com/mwcraig/reducer\n", - "3 ---> https://github.com/lcharleux/hardness\n", - "3 ---> https://github.com/pisa-engine/pisa\n", - "3 ---> https://github.com/rjw57/starman\n", - "3 ---> https://github.com/dewiedem/calcopp\n", - "3 ---> https://github.com/rstoneback/OMMBV\n", - "3 ---> https://github.com/mfherbst/asedftk\n", - "8 ---> https://github.com/Colectica/ddiregistry\n", - "3 ---> https://github.com/CyberDataLab/AuthCode\n", - "3 ---> https://github.com/imageio/imageio\n", - "3 ---> https://github.com/masseyr/geosoupML\n", - "3 ---> https://github.com/r9y9/pyreaper\n", - "3 ---> https://github.com/JDRomano2/ASAP2\n", - "3 ---> https://github.com/josephhardinee/PyDSD\n", - "7 ---> https://github.com/filips123/MonologPHPMailer\n", - "3 ---> https://github.com/Spine-project/Spine-Database-API\n", - "3 ---> https://github.com/GeoStat-Framework/ogs5py\n", - "3 ---> https://github.com/Z-Zheng/SimpleCV\n", - "3 ---> https://github.com/angelmtenor/RL-ROBOT\n", - "7 ---> https://github.com/Sreyan88/Fatigue-Detection-using-Deep-Learning\n", - "3 ---> https://github.com/stefanch/sGDML\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "4 ---> https://github.com/machawk1/warcreate\n", - "3 ---> https://github.com/materialsvirtuallab/monty\n", - "3 ---> https://github.com/kgullikson88/Telluric-Fitter\n", - "3 ---> https://github.com/Urban-Meteorology-Reading/SUEWS\n", - "3 ---> https://github.com/serazing/xscale\n", - "3 ---> https://github.com/pauleve/mpbn\n", - "3 ---> https://github.com/ericmjl/flu-gibson\n", - "9 ---> https://github.com/MoritzStefaner/ach-ingen-zell\n", - "5 ---> https://github.com/MAGIC-nexus/nis-backend\n", - "3 ---> https://github.com/pycalphad/scheil\n", - "5 ---> https://github.com/vanheeringen-lab/genomepy\n", - "3 ---> https://github.com/deparkes/OOMMFTools\n", - "3 ---> https://github.com/sarisabban/RamaNet\n", - "3 ---> https://github.com/nano-sippe/dispersion\n", - "3 ---> https://github.com/hallamlab/pathway2vec\n", - "3 ---> https://github.com/SCM-NV/nano-qmflows\n", - "3 ---> https://github.com/bburan/NeuroBehavior\n", - "1 ---> https://github.com/PhenixCollaboration/web\n", - "3 ---> https://github.com/Bubblbu/crawling-framework\n", - "5 ---> https://github.com/smarr/ReBench\n", - "3 ---> https://github.com/Alerovere/Paleo-SL-utilities\n", - "3 ---> https://github.com/TUDelft-CITG/OpenCLSim\n", - "3 ---> https://github.com/RMeli/spyrmsd\n", - "2 ---> https://github.com/dejac001/RealGas\n", - "6 ---> https://github.com/SciCrunch/resource_disambiguator\n", - "3 ---> https://github.com/rraadd88/htsimaging\n", - "3 ---> https://github.com/etiennebresciani/wellradpy\n", - "3 ---> https://github.com/blsqr/paramspace\n", - "3 ---> https://github.com/FInAT/FInAT\n", - "3 ---> https://github.com/hovo1990/GROM\n", - "3 ---> https://github.com/scikit-learn/scikit-learn\n", - "3 ---> https://github.com/covid-lncc/pydemic\n", - "3 ---> https://github.com/pvlib/pvlib-python\n", - "6 ---> https://github.com/phenoscape/phenoday-reasoning-paper\n", - "3 ---> https://github.com/norawebbwilliams/images_as_data\n", - "7 ---> https://github.com/filips123/ZeroFramePy\n", - "6 ---> https://github.com/sisinflab-swot/ldp-coap-framework\n", - "3 ---> https://github.com/pablormier/yabox\n", - "6 ---> https://github.com/TomDemeranville/orcid-update-java\n", - "3 ---> https://github.com/pysal/region\n", - "6 ---> https://github.com/yogo/VOEIS\n", - "3 ---> https://github.com/krassowski/data-vault\n", - "4 ---> https://github.com/ENCODE-DCC/croo\n", - "3 ---> https://github.com/jaisenbe58r/MLearner\n", - "3 ---> https://github.com/dave-heslop74/vMF_Sites\n", - "3 ---> https://github.com/biomedia-mira/blast-ct\n", - "5 ---> https://github.com/NREL/bifacial_radiance\n", - "3 ---> https://github.com/kundajelab/deeplift\n", - "3 ---> https://github.com/embodied-computation-group/systole\n", - "1 ---> https://github.com/terraref/terraref.github.io\n", - "3 ---> https://github.com/astorfi/TensorFlow-World\n", - "3 ---> https://github.com/TheLartians/Expresso\n", - "9 ---> https://github.com/bionode/fasta-parser\n", - "3 ---> https://github.com/UCL/scikit-surgeryfred\n", - "3 ---> https://github.com/neurolib-dev/neurolib\n", - "9 ---> https://github.com/hyperwell/playground\n", - "3 ---> https://github.com/pnlbwh/SlicerDiffusionQC\n", - "3 ---> https://github.com/CORE-GATECH-GROUP/serpent-tools\n", - "3 ---> https://github.com/morganjwilliams/pyrolite-meltsutil\n", - "9 ---> https://github.com/rcfduarte/nmsat\n", - "6 ---> https://github.com/midas-isg/PITT-Anthrax-model\n", - "3 ---> https://github.com/gmiaslab/pyiomica\n", - "3 ---> https://github.com/MarcoMuellner/SMURFS\n", - "3 ---> https://github.com/MrLogarithm/pe-pc-datasets-interface\n", - "3 ---> https://github.com/raamana/neuropredict\n", - "3 ---> https://github.com/bartongroup/2passtools\n", - "3 ---> https://github.com/earthserver-eu/INSPIRE-notebooks\n", - "6 ---> https://github.com/aderidder/iCRFGenerator\n", - "7 ---> https://github.com/jfal027/Moodify\n", - "6 ---> https://github.com/jyrkioraskari/OnlineMvdXMLChecker\n", - "3 ---> https://github.com/rjleveque/ptha_rog\n", - "3 ---> https://github.com/GeoStat-Framework/pentapy\n", - "5 ---> https://github.com/GhostofGoes/ADLES\n", - "3 ---> https://github.com/castelao/pyWOA\n", - "3 ---> https://github.com/pynbody/pynbody\n", - "3 ---> https://github.com/MicroPasts/magicMountain\n", - "5 ---> https://github.com/intake/intake-esm\n", - "3 ---> https://github.com/harnesscloud/2015-07-15-feltham\n", - "3 ---> https://github.com/hfsf/sloth\n", - "6 ---> https://github.com/histogrammar/histogrammar-scala\n", - "7 ---> https://github.com/LandscapeGeoinformatics/EstSoil-EH_sw_supplement\n", - "3 ---> https://github.com/chienchi/amplicon_coverage_plot\n", - "3 ---> https://github.com/cmohl2013/permutation_test\n", - "3 ---> https://github.com/mrtommyb/ktransit\n", - "6 ---> https://github.com/midas-isg/digital-commons\n", - "5 ---> https://github.com/hipster-philology/greek-lemmatization-data\n", - "3 ---> https://github.com/soil-physics-okstate/automated_soil_moisture_mapping\n", - "3 ---> https://github.com/QInfer/python-qinfer\n", - "3 ---> https://github.com/inodb/sufam\n", - "6 ---> https://github.com/LiberalHD/gudagudaACG\n", - "3 ---> https://github.com/bihealth/scelvis\n", - "8 ---> https://github.com/SommerEngineering/Encrypter\n", - "1 ---> https://github.com/CellMigStandOrg/Tracks\n", - "3 ---> https://github.com/dr-rodriguez/AstrodbWeb\n", - "3 ---> https://github.com/iamdamion/grepCIRCLE\n", - "3 ---> https://github.com/Olllom/lettuce\n", - "3 ---> https://github.com/bjpop/lynch_gatk\n", - "3 ---> https://github.com/jGaboardi/pp2n\n", - "9 ---> https://github.com/atrisovic/weather-panel.github.io\n", - "7 ---> https://github.com/arXiv/arxiv-browse\n", - "9 ---> https://github.com/clarity-h2020/map-component\n", - "5 ---> https://github.com/samapriya/geeup\n", - "5 ---> https://github.com/fphammerle/freesurfer-stats\n", - "3 ---> https://github.com/Lagostra/exprimo\n", - "3 ---> https://github.com/kweis/acronym\n", - "9 ---> https://github.com/iomega/zenodo-upload\n", - "3 ---> https://github.com/mirca/maoud\n", - "3 ---> https://github.com/castelao/maud\n", - "3 ---> https://github.com/cwfparsonson/soa_driving\n", - "3 ---> https://github.com/luphysics/PyMODAlib\n", - "6 ---> https://github.com/piazentin/ksets\n", - "5 ---> https://github.com/tgbugs/inferno\n", - "3 ---> https://github.com/jGaboardi/non-duplicated-intersects\n", - "3 ---> https://github.com/rochefort-lab/fissa\n", - "3 ---> https://github.com/qutip/qutip\n", - "9 ---> https://github.com/RomainBey/stratified-cross-validation\n", - "3 ---> https://github.com/XENON1T/pax\n", - "3 ---> https://github.com/indralab/adeft\n", - "3 ---> https://github.com/polsys/ennemi\n", - "3 ---> https://github.com/gmierz/pupil-lib\n", - "3 ---> https://github.com/macs3-project/MACS\n", - "5 ---> https://github.com/NLeSC/lokum\n", - "3 ---> https://github.com/efirvida/python-gearbox\n", - "5 ---> https://github.com/SuLab/genewikiworld\n", - "5 ---> https://github.com/samapriya/Planet-Pipeline-Shell\n", - "6 ---> https://github.com/smd-faizan/CySpanningTree\n", - "3 ---> https://github.com/Unidata/cftime\n", - "3 ---> https://github.com/weecology/DeepForest\n", - "3 ---> https://github.com/datreant/datreant\n", - "3 ---> https://github.com/Svdvoort/PREDICTFastr\n", - "3 ---> https://github.com/qcscine/utilities\n", - "3 ---> https://github.com/martibosch/urban-footprinter\n", - "3 ---> https://github.com/fa-me/ratter\n", - "3 ---> https://github.com/impact27/WF_NTP\n", - "3 ---> https://github.com/Eomys/pyleecan\n", - "5 ---> https://github.com/oeg-upm/morph-csv\n", - "6 ---> https://github.com/javadch/quis\n", - "7 ---> https://github.com/pear2/Cache_SHM\n", - "6 ---> https://github.com/scijava/scijava-common\n", - "3 ---> https://github.com/USNavalResearchLaboratory/SNOPROP\n", - "3 ---> https://github.com/bbfrederick/picachooser\n", - "3 ---> https://github.com/GilesStrong/HiggsML_Lumin\n", - "3 ---> https://github.com/GooglingTheCancerGenome/sv-callers\n", - "6 ---> https://github.com/jgreener64/pdb-benchmarks\n", - "7 ---> https://github.com/shh-dlce/python-nexus\n", - "3 ---> https://github.com/NickleDave/searchstims\n", - "9 ---> https://github.com/opencv/cvat\n", - "6 ---> https://github.com/scholarslab/prism\n", - "3 ---> https://github.com/pyoceans/python-seawater\n", - "3 ---> https://github.com/olgabot/sj2psi\n", - "3 ---> https://github.com/malvikasharan/APRICOT\n", - "3 ---> https://github.com/raamana/confounds\n", - "3 ---> https://github.com/mrkrd/matlab_wrapper\n", - "6 ---> https://github.com/thorstenwagner/ij-blob\n", - "3 ---> https://github.com/michaelosthege/pyrff\n", - "7 ---> https://github.com/ODM2/ODM2DataSharingPortal\n", - "3 ---> https://github.com/hameye/MARCIA\n", - "3 ---> https://github.com/eyelovedata/sentimentemotionanalysis\n", - "3 ---> https://github.com/Swiss-Polar-Institute/pyantarctica\n", - "3 ---> https://github.com/cgre-aachen/gempy\n", - "3 ---> https://github.com/alexandrebarachant/pyRiemann\n", - "3 ---> https://github.com/yt-project/unyt\n", - "2 ---> https://github.com/bonej-org/BoneJ2\n", - "3 ---> https://github.com/ConorMacBride/mcalf\n", - "3 ---> https://github.com/widdowquinn/pyADHoRe\n", - "3 ---> https://github.com/valdergallo/data-importer\n", - "3 ---> https://github.com/saketkc/pysradb\n", - "3 ---> https://github.com/jeeberhardt/visualize\n", - "3 ---> https://github.com/hsharrison/experimentator\n", - "3 ---> https://github.com/nudomarinero/wquantiles\n", - "7 ---> https://github.com/davidbradway/Visualizing-Scholars-At-Duke-2017\n", - "3 ---> https://github.com/sepandhaghighi/findip\n", - "3 ---> https://github.com/md-lab-tools/lab-tools\n", - "2 ---> https://github.com/fiji/KymographBuilder\n", - "3 ---> https://github.com/YaserJaradeh/JarvisQA\n", - "6 ---> https://github.com/PBR/Marker2Sequence\n", - "3 ---> https://github.com/DesignEngrLab/fmdtools\n", - "7 ---> https://github.com/dkalisch/morgenstadtDB\n", - "3 ---> https://github.com/has2k1/mizani\n", - "3 ---> https://github.com/super-resolution/lineprofiler\n", - "3 ---> https://github.com/junaidmalik09/fastonn\n", - "3 ---> https://github.com/mzabrams/fars-cleaner\n", - "3 ---> https://github.com/fat-forensics/fat-forensics\n", - "3 ---> https://github.com/RPGroup-PBoC/chann_cap\n", - "5 ---> https://github.com/lascivaroma/forcellini-lemmas\n", - "7 ---> https://github.com/akxen/tps-parameterisation\n", - "3 ---> https://github.com/Davidelanz/quantum-robot\n", - "7 ---> https://github.com/SandstoneHPC/sandstone-slurm-assist\n", - "3 ---> https://github.com/applied-bioinformatics/An-Introduction-To-Applied-Bioinformatics\n", - "3 ---> https://github.com/aliFrancis/mars-crater-catalogue\n", - "3 ---> https://github.com/jcvasquezc/AEspeech\n", - "3 ---> https://github.com/oemof/oemof-solph\n", - "3 ---> https://github.com/kutaslab/fitgrid\n", - "6 ---> https://github.com/MCZbase/PreCapture\n", - "7 ---> https://github.com/tgwizard/sexymp-data\n", - "7 ---> https://github.com/semplea/characters-meta\n", - "6 ---> https://github.com/edwardcapriolo/filecrush\n", - "9 ---> https://github.com/smart-facility/cognicity-floodsensor\n", - "1 ---> https://github.com/lerkoah/ComplexBehaviorDetector\n", - "7 ---> https://github.com/evoldoers/wtfgenes\n", - "3 ---> https://github.com/nstarman/amuse_util\n", - "3 ---> https://github.com/yhaddad/Heppi\n", - "7 ---> https://github.com/janantala/speech-synthesis\n", - "3 ---> https://github.com/wjladams/pyanp\n", - "3 ---> https://github.com/seva100/optic-nerve-cnn\n", - "9 ---> https://github.com/vibbits/phyd3\n", - "6 ---> https://github.com/miledrousset/opentheso\n", - "5 ---> https://github.com/VDBWRAIR/ngs_mapper\n", - "2 ---> https://github.com/clij/clij-docs\n", - "3 ---> https://github.com/lpfann/fri\n", - "3 ---> https://github.com/seisman/HinetPy\n", - "5 ---> https://github.com/JonathanReeve/text-matcher\n", - "3 ---> https://github.com/csdms/bmi-python\n", - "3 ---> https://github.com/NaturalHistoryMuseum/revile\n", - "7 ---> https://github.com/ishahid/django-blogg\n", - "8 ---> https://github.com/SommerEngineering/Ed25519\n", - "3 ---> https://github.com/xuanxu/intergalactic\n", - "3 ---> https://github.com/PyPSA/PyPSA\n", - "3 ---> https://github.com/NickleDave/vak\n", - "3 ---> https://github.com/gtonkinhill/panaroo\n", - "3 ---> https://github.com/CMLPlatform/pycirk\n", - "6 ---> https://github.com/globalbioticinteractions/nomer\n", - "4 ---> https://github.com/dwhieb/Nuuchahnulth\n", - "3 ---> https://github.com/TUW-GEO/ecmwf_models\n", - "6 ---> https://github.com/urmi-21/MetaOmGraph\n", - "3 ---> https://github.com/bfieldtools/bfieldtools\n", - "3 ---> https://github.com/pedroernesto/HippoNetworkUnit\n", - "3 ---> https://github.com/zwicker-group/py-pde\n", - "3 ---> https://github.com/NeuralEnsemble/PyNN\n", - "5 ---> https://github.com/juliema/aTRAM\n", - "3 ---> https://github.com/GrzegorzMikaAGH/Towards-adaptivity-via-a-new-discrepancy-principle-for-Poisson-inverse-problems\n", - "3 ---> https://github.com/HTenkanen/pyrosm\n", - "3 ---> https://github.com/kjappelbaum/colorjeopardy\n", - "3 ---> https://github.com/OSUmageed/pyHeatTransfer\n", - "3 ---> https://github.com/olety/TIMLinUCB\n", - "9 ---> https://github.com/gcube-team/gcube-releases\n", - "3 ---> https://github.com/r9y9/pyopenjtalk\n", - "6 ---> https://github.com/altmetric/aho_corasick_matcher\n", - "3 ---> https://github.com/Edric-Matwiejew/QSW_MPI\n", - "9 ---> https://github.com/xieguigang/Data.GIS\n", - "3 ---> https://github.com/scikit-hep/hepstats\n", - "3 ---> https://github.com/elainehoml/GMM_Image_Quality\n", - "3 ---> https://github.com/mikahama/uralicNLP\n", - "9 ---> https://github.com/blobtoolkit/viewer\n", - "5 ---> https://github.com/e-VRO/frvcpy\n", - "5 ---> https://github.com/openeventdata/mordecai\n", - "3 ---> https://github.com/ssepulveda/RTGraph\n", - "3 ---> https://github.com/eWaterCycle/grpc4bmi\n", - "5 ---> https://github.com/msmexplorer/msmexplorer-d3\n", - "3 ---> https://github.com/bjodah/chempy\n", - "3 ---> https://github.com/chjacob-tubs/pyadf-releases\n", - "3 ---> https://github.com/Nikeshbajaj/spkit\n", - "3 ---> https://github.com/wright-group/WrightSim\n", - "3 ---> https://github.com/Curtin-Timescales-of-Mineral-Systems/UPb-Unmixer\n", - "3 ---> https://github.com/pietrobarbiero/dbgen\n", - "7 ---> https://github.com/larslau/DETECT\n", - "5 ---> https://github.com/edwardoughton/itmlogic\n", - "3 ---> https://github.com/tychotatitscheff/duc-sph\n", - "3 ---> https://github.com/impact27/diffusion_device\n", - "3 ---> https://github.com/williamjameshandley/fgivenx\n", - "5 ---> https://github.com/gregtucker/grain_hills\n", - "8 ---> https://github.com/holoviz/geoviews\n", - "3 ---> https://github.com/SoftwareDevEngResearch/CAML\n", - "3 ---> https://github.com/cyTVDN/cyTVDN\n", - "3 ---> https://github.com/birnstiel/two-pop-py\n", - "6 ---> https://github.com/DECLARE-Project/fastpan\n", - "3 ---> https://github.com/reneshbedre/bioinfokit\n", - "3 ---> https://github.com/INM-6/hybridLFPy\n", - "3 ---> https://github.com/caglorithm/mopet\n", - "6 ---> https://github.com/felicitia/EventExtractor\n", - "3 ---> https://github.com/molpopgen/fwdpy11\n", - "5 ---> https://github.com/jacobwindsor/pubchem-ranker\n", - "3 ---> https://github.com/ENCODE-DCC/caper\n", - "3 ---> https://github.com/colomoto/colomoto-jupyter\n", - "3 ---> https://github.com/nicolas-chaulet/torch-points-kernels\n", - "3 ---> https://github.com/MicroPasts/transcribing-WGS\n", - "5 ---> https://github.com/samapriya/Planet-GEE-Pipeline-GUI\n", - "5 ---> https://github.com/similitude/h2-world-simmer\n", - "3 ---> https://github.com/anthony-nouy/tensap\n", - "3 ---> https://github.com/ancklo/ChaosMagPy\n", - "3 ---> https://github.com/mvdh7/calkulate\n", - "3 ---> https://github.com/arviz-devs/arviz\n", - "2 ---> https://github.com/clij/clij-core\n", - "3 ---> https://github.com/saverymax/qdriven-chiqa-summarization\n", - "3 ---> https://github.com/jhidding/sustainability\n", - "3 ---> https://github.com/arif-zaman/network_probing\n", - "3 ---> https://github.com/janpipek/pydiq\n", - "3 ---> https://github.com/posterior/goftests\n", - "3 ---> https://github.com/zarr-developers/zarr-python\n", - "6 ---> https://github.com/marco-ka/semantic-annotation-writer\n", - "6 ---> https://github.com/medusa-project/databank\n", - "9 ---> https://github.com/schema-app/schema\n", - "3 ---> https://github.com/ulmo-dev/ulmo\n", - "5 ---> https://github.com/kuchaale/wcd_2020\n", - "3 ---> https://github.com/uwmadison-chm/masterfile\n", - "3 ---> https://github.com/jeeberhardt/unrolr\n", - "6 ---> https://github.com/Lane-Library/wiki-extract\n", - "3 ---> https://github.com/pydicom/pynetdicom\n", - "6 ---> https://github.com/NLeSC/fairdatapoint\n", - "3 ---> https://github.com/ilyasst/pydictoolkit\n", - "3 ---> https://github.com/NLESC-JCER/QMCTorch\n", - "3 ---> https://github.com/AthenaEPI/dmipy\n", - "5 ---> https://github.com/ISA-tools/nmrml2isa\n", - "6 ---> https://github.com/usethesource/capsule\n", - "5 ---> https://github.com/minzastro/unidam\n", - "3 ---> https://github.com/environmentalscience/essm\n", - "7 ---> https://github.com/afnogueira/datasetsaner2017\n", - "3 ---> https://github.com/raysect/source\n", - "7 ---> https://github.com/ivco19/brooks\n", - "3 ---> https://github.com/mattbv/lidartf\n", - "3 ---> https://github.com/ricoms/gpam_stats\n", - "9 ---> https://github.com/Capitains/Sparrow\n", - "3 ---> https://github.com/hpparvi/PyDE\n", - "3 ---> https://github.com/molbiodiv/Blackbird\n", - "3 ---> https://github.com/adrn/thejoker\n", - "6 ---> https://github.com/davidenunes/context-permeability\n", - "3 ---> https://github.com/akxen/rep-gep\n", - "3 ---> https://github.com/joergdietrich/NFW\n", - "7 ---> https://github.com/sandyherho/tutorial_xarray\n", - "5 ---> https://github.com/deniederhut/PyTeX\n", - "3 ---> https://github.com/interaction-lab/MoveToCode\n", - "3 ---> https://github.com/FilipeMaia/afnumpy\n", - "3 ---> https://github.com/nextgenusfs/amptk\n", - "3 ---> https://github.com/Qiskit/qiskit\n", - "3 ---> https://github.com/CU-Denver-UQ/LUQ\n", - "3 ---> https://github.com/casimp/lightct\n", - "3 ---> https://github.com/joostjor/random-graphs\n", - "3 ---> https://github.com/sbonaretti/pyKNEEr\n", - "3 ---> https://github.com/DataMedSci/pymchelper\n", - "3 ---> https://github.com/simonvh/pita\n", - "3 ---> https://github.com/Socrats/EGTTools\n", - "2 ---> https://github.com/ihmwg/python-ihm\n", - "3 ---> https://github.com/AlessioZanga/PyEEGLab\n", - "3 ---> https://github.com/samuelstjean/autodmri\n", - "9 ---> https://github.com/filips123/ZeroFrameJS\n", - "6 ---> https://github.com/Tyler-Yates/AestheticFractals\n", - "2 ---> https://github.com/fmalmeida/ngs-preprocess\n", - "3 ---> https://github.com/junhyeokahn/tf_rbdl\n", - "3 ---> https://github.com/Samreay/ChainConsumer\n", - "3 ---> https://github.com/JoshuaE1/supervised-classification-SSH-publications\n", - "3 ---> https://github.com/syhw/DTW_Cython\n", - "3 ---> https://github.com/cerebunit/cerebunit\n", - "3 ---> https://github.com/clebsonpy/HidroComp\n", - "6 ---> https://github.com/Terradue/dcs-insar-roipac\n", - "3 ---> https://github.com/drcassar/viscosity-graybox-nn\n", - "3 ---> https://github.com/MAVENSDC/PyTplot\n", - "7 ---> https://github.com/EricAlcaide/MiniFold\n", - "3 ---> https://github.com/CognitiveComputationLab/ccobra\n", - "8 ---> https://github.com/holoviz/colorcet\n", - "3 ---> https://github.com/jpvantassel/hvsrpy\n", - "9 ---> https://github.com/georgeOsdDev/longo\n", - "5 ---> https://github.com/unicus-skmk/test\n", - "3 ---> https://github.com/DTUComputeStatisticsAndDataAnalysis/MBPLS\n", - "3 ---> https://github.com/hyungjun/gtool\n", - "7 ---> https://github.com/UofS-Pulse-Binfo/nd_genotypes\n", - "3 ---> https://github.com/michaelaye/pyciss\n", - "3 ---> https://github.com/genomematt/pylazybam\n", - "3 ---> https://github.com/arkottke/pygmm\n", - "9 ---> https://github.com/evanodell/ukpolice\n", - "3 ---> https://github.com/kotori-y/Scopy\n", - "3 ---> https://github.com/gsantoni/ccCluster\n", - "3 ---> https://github.com/iancze/MPoL\n", - "3 ---> https://github.com/jacobo-diaz/aneupy\n", - "6 ---> https://github.com/j-stone/cog-tasks\n", - "5 ---> https://github.com/broyson/Locust-streaming\n", - "3 ---> https://github.com/rougier/numpy-100\n", - "5 ---> https://github.com/castelao/supportdata\n", - "3 ---> https://github.com/napsternxg/TwitterNER\n", - "3 ---> https://github.com/DomBennett/TaxonNamesResolver\n", - "5 ---> https://github.com/lucaspuvis/SAM\n", - "7 ---> https://github.com/caltechlibrary/handprint\n", - "6 ---> https://github.com/unipept/unipept-cli\n", - "3 ---> https://github.com/griffithlab/pVACtools\n", - "5 ---> https://github.com/MAGIC-nexus/nis-python-client\n", - "3 ---> https://github.com/spacetelescope/jwst-fgs-countrate\n", - "6 ---> https://github.com/skp703/RainInterpolator\n", - "3 ---> https://github.com/pysal/spvcm\n", - "3 ---> https://github.com/CKrawczyk/densityplot\n", - "3 ---> https://github.com/Abe404/root_painter\n", - "7 ---> https://github.com/freeknijweide/autoencoder-pdb-cleaning\n", - "3 ---> https://github.com/reegis/deflex\n", - "3 ---> https://github.com/DCAN-Labs/nhp-abcd-bids-pipeline\n", - "3 ---> https://github.com/MechMicroMan/DefDAP\n", - "3 ---> https://github.com/Climdyn/qgs\n", - "6 ---> https://github.com/anil88/population-origin-calculator\n", - "9 ---> https://github.com/AlgolLLC/phonetop\n", - "3 ---> https://github.com/jdmoorman/kaczmarz-algorithms\n", - "3 ---> https://github.com/qzhu2017/PyXtal_FF\n", - "9 ---> https://github.com/rodighiero/DH2019\n", - "3 ---> https://github.com/ioos/erddapy\n", - "3 ---> https://github.com/bjorntsv/tempmom\n", - "3 ---> https://github.com/ARM-DOE/ACT\n", - "5 ---> https://github.com/tvwenger/millennium-tap-query\n", - "6 ---> https://github.com/3D-e-Chem/knime-klifs\n", - "5 ---> https://github.com/harnesscloud/nova-docker\n", - "7 ---> https://github.com/Clinical-Genomics/chanjo\n", - "6 ---> https://github.com/globalbioticinteractions/elton\n", - "6 ---> https://github.com/felicitia/TestBenchmark-Java-client\n", - "7 ---> https://github.com/butcer0/found-diagnosis-network\n", - "3 ---> https://github.com/radtorch/radtorch\n", - "3 ---> https://github.com/UT-CHG/PolyADCIRC\n", - "1 ---> https://github.com/parsa-epfl/qflex\n", - "3 ---> https://github.com/martibosch/detectree\n", - "9 ---> https://github.com/nawrs/nawrs\n", - "6 ---> https://github.com/arfon/metamatter\n", - "5 ---> https://github.com/linsalrob/PPPF\n", - "3 ---> https://github.com/peckhams/topoflow\n", - "3 ---> https://github.com/mekman/recon\n", - "3 ---> https://github.com/petl-developers/petl\n", - "6 ---> https://github.com/piyush82/expression-evaluator\n", - "3 ---> https://github.com/MAVENSDC/cdflib\n", - "5 ---> https://github.com/acocac/MTLCC-MODIS-GCP\n", - "6 ---> https://github.com/nomencurator/taxonaut\n", - "3 ---> https://github.com/jw156605/MATCHER\n", - "3 ---> https://github.com/vprusso/toqito\n", - "3 ---> https://github.com/abhi1693/yii2-config\n", - "3 ---> https://github.com/scikit-hep/uproot-methods\n", - "7 ---> https://github.com/JustinGOSSES/predictatops\n", - "3 ---> https://github.com/ThomasRieutord/kabl\n", - "3 ---> https://github.com/pastas/pastas\n", - "5 ---> https://github.com/lingpy/workflow-paper\n", - "3 ---> https://github.com/tomwallis/PsyUtils\n", - "3 ---> https://github.com/adrn/gala\n", - "3 ---> https://github.com/kinnala/scikit-fem\n", - "3 ---> https://github.com/yatiml/yatiml\n", - "3 ---> https://github.com/ZFTurbo/Weighted-Boxes-Fusion\n", - "6 ---> https://github.com/willpearse/data_frame\n", - "6 ---> https://github.com/jameshowison/softcite\n", - "3 ---> https://github.com/clauswilke/PeptideBuilder\n", - "7 ---> https://github.com/GatorSense/HyperspectralAnalysisIntroduction\n", - "3 ---> https://github.com/MultithreadCorner/Hydra\n", - "6 ---> https://github.com/mgiorgio/comet-utilities\n", - "7 ---> https://github.com/specpose/stopeight\n", - "5 ---> https://github.com/MIC-DKFZ/cmdint\n", - "3 ---> https://github.com/pysat/pysatMadrigal\n", - "3 ---> https://github.com/berenslab/pr_bc_connectivity\n", - "3 ---> https://github.com/helioforecast/Predstorm\n", - "9 ---> https://github.com/datproject/dat\n", - "3 ---> https://github.com/TUW-GEO/ease_grid\n", - "3 ---> https://github.com/hrtlacek/faustTools\n", - "3 ---> https://github.com/Abe404/segmentation_of_roots_in_soil_with_unet\n", - "5 ---> https://github.com/ctreffe/alfred\n", - "6 ---> https://github.com/myGrid/ruby-zip-container\n", - "3 ---> https://github.com/ECSIM/pem-dataset1\n", - "7 ---> https://github.com/hasantayyar/doi-tools\n", - "3 ---> https://github.com/perryuu/managpu\n", - "3 ---> https://github.com/IceCubeOpenSource/ASTERIA\n", - "6 ---> https://github.com/jeremyf/orcid_album_cover\n", - "3 ---> https://github.com/josemiotto/pylevy\n", - "1 ---> https://github.com/JolleJolles/pirecorder\n", - "3 ---> https://github.com/mdolab/pygeo\n", - "3 ---> https://github.com/TUW-GEO/rt1\n", - "3 ---> https://github.com/AnyBody-Research-Group/AnyPyTools\n", - "3 ---> https://github.com/Yefee/xMCA\n", - "3 ---> https://github.com/rlworkgroup/garage\n", - "3 ---> https://github.com/screensinthewild/screenbase_unity_slideshow\n", - "6 ---> https://github.com/theblackunknown/creative-ecosystems\n", - "3 ---> https://github.com/simpeg/discretize\n", - "7 ---> https://github.com/tactcomplabs/xbgas-tools\n", - "3 ---> https://github.com/LRCFS/GSR_Paper\n", - "3 ---> https://github.com/soft-matter/trackpy\n", - "3 ---> https://github.com/jrleeman/biaxtools\n", - "3 ---> https://github.com/JaGeo/PaulingPublication\n", - "4 ---> https://github.com/tobysmith568/License-Sorter\n", - "7 ---> https://github.com/samik1986/ML_Semantic_Segmenation_NMI\n", - "3 ---> https://github.com/multiscale/ymmsl-python\n", - "3 ---> https://github.com/anitagraser/movingpandas\n", - "3 ---> https://github.com/fls-bioinformatics-core/RnaChipIntegrator\n", - "3 ---> https://github.com/bionet/ted.python\n", - "2 ---> https://github.com/thorstenwagner/ij-trackmate-findmaxima\n", - "3 ---> https://github.com/NHERI-SimCenter/pelicun\n", - "5 ---> https://github.com/hibernator11/AprendiendoPython\n", - "3 ---> https://github.com/danieljfarrell/pvtrace\n", - "3 ---> https://github.com/neuroscout/neuroscout-cli\n", - "5 ---> https://github.com/MichaelMauderer/Gazer\n", - "6 ---> https://github.com/FedUni/caliko\n", - "3 ---> https://github.com/vcutrona/elasticpedia\n", - "6 ---> https://github.com/aleksandarsibincic/ExcelAudit\n", - "7 ---> https://github.com/aldnav/abempy\n", - "3 ---> https://github.com/spectrochempy/spectrochempy\n", - "3 ---> https://github.com/isi-nmr/bruker2bart\n", - "3 ---> https://github.com/HobnobMancer/PhD_Project_Scripts\n", - "3 ---> https://github.com/drcassar/glasspy\n", - "3 ---> https://github.com/rieder/MASC\n", - "7 ---> https://github.com/oblassers/tuw-servicebroker\n", - "3 ---> https://github.com/Nelson-Gon/pyautocv\n", - "3 ---> https://github.com/jajcayn/pygpso\n", - "5 ---> https://github.com/Craig-Robson/postgres_spatial_join_areas\n", - "7 ---> https://github.com/MAGIC-nexus/nis-graph-diagrams\n", - "6 ---> https://github.com/silviodc/Gazetteer\n", - "3 ---> https://github.com/alchemistry/alchemlyb\n", - "6 ---> https://github.com/timtroendle/energy-agents\n", - "3 ---> https://github.com/xgcm/xgcm\n", - "3 ---> https://github.com/mheikenfeld/wrfcube\n", - "6 ---> https://github.com/sojamo/midimapper\n", - "3 ---> https://github.com/datreant/MDSynthesis\n", - "3 ---> https://github.com/UNSW-CEEM/NEMOSIS\n", - "3 ---> https://github.com/KeplerGO/K2fov\n", - "3 ---> https://github.com/atorras1618/PerMaViss\n", - "3 ---> https://github.com/tubiana/TTClust\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3 ---> https://github.com/matt-long/xpersist\n", - "3 ---> https://github.com/bast/smeshing\n", - "5 ---> https://github.com/Scifabric/pybossa\n", - "3 ---> https://github.com/ds-wizard/docs\n", - "3 ---> https://github.com/abelcarreras/phonolammps\n", - "3 ---> https://github.com/jason-zl190/sisr_medical\n", - "3 ---> https://github.com/mdshw5/pyfaidx\n", - "3 ---> https://github.com/wiebket/delprocess\n", - "3 ---> https://github.com/holoviz/datashader\n", - "3 ---> https://github.com/ISA-tools/mzml2isa\n", - "5 ---> https://github.com/ajefweiss/HelioSat\n", - "3 ---> https://github.com/houghb/savvy\n", - "7 ---> https://github.com/fnl/gnamed\n", - "3 ---> https://github.com/jjgomera/iapws\n", - "6 ---> https://github.com/dicom/rtp-connect\n", - "5 ---> https://github.com/moonso/genmod\n", - "3 ---> https://github.com/zafarali/emdp\n", - "3 ---> https://github.com/phydev/trajpy\n", - "3 ---> https://github.com/IMMM-SFA/im3py\n", - "5 ---> https://github.com/yadage/yadage-schemas\n", - "5 ---> https://github.com/karenadam/Mixed-Bandlimited-Time-Encoding\n", - "3 ---> https://github.com/spacetelescope/gwcs\n", - "3 ---> https://github.com/mkjung99/pyc3dserver\n", - "3 ---> https://github.com/reegis/reegis\n", - "3 ---> https://github.com/kimlab/GPyM\n", - "3 ---> https://github.com/woutergins/satlas\n", - "3 ---> https://github.com/lachhebo/pyclustertend\n", - "3 ---> https://github.com/wiebket/delretrieve\n", - "4 ---> https://github.com/digitallinguistics/transliterate\n", - "3 ---> https://github.com/nlesc-nano/Nano-Utils\n", - "3 ---> https://github.com/oemof/oemof-thermal\n", - "3 ---> https://github.com/LRydin/MFDFA\n", - "7 ---> https://github.com/Flowminder/FlowKit\n", - "3 ---> https://github.com/linhd-postdata/desir\n", - "3 ---> https://github.com/DLR-SC/gitlab2prov\n", - "3 ---> https://github.com/openearth/aeolis-python\n", - "9 ---> https://github.com/Lonero-Team/Decentralized-Internet\n", - "7 ---> https://github.com/LegoStormtroopr/django-spaghetti-and-meatballs\n", - "5 ---> https://github.com/smarie/python-azureml-client\n", - "3 ---> https://github.com/NREL/floris\n", - "7 ---> https://github.com/ADicksonLab/wepy\n", - "3 ---> https://github.com/M4I-nanoscopy/tpx3-event-localisation\n", - "6 ---> https://github.com/myGrid/ruby-ucf\n", - "3 ---> https://github.com/andsor/pyfssa\n", - "3 ---> https://github.com/arkottke/pykoom\n", - "5 ---> https://github.com/tardis-sn/tardis\n", - "3 ---> https://github.com/IaPCS/gmsh-exodus-converter\n", - "3 ---> https://github.com/atait/lytest\n", - "3 ---> https://github.com/ocsmit/rindcalc\n", - "8 ---> https://github.com/mpostol/TP\n", - "9 ---> https://github.com/ElektraInitiative/libelektra\n", - "3 ---> https://github.com/will-rowe/groot\n", - "7 ---> https://github.com/bexis/Module_LUI\n", - "3 ---> https://github.com/benjaminrose/MC-Age\n", - "7 ---> https://github.com/SSW-DataLab/randomizer\n", - "3 ---> https://github.com/FowlerLab/Enrich2\n", - "9 ---> https://github.com/Andros-Spica/PhD-defense\n", - "3 ---> https://github.com/SirSharpest/NarrowEscapeSimulator\n", - "3 ---> https://github.com/annotation/tutorials\n", - "3 ---> https://github.com/RDFLib/OWL-RL\n", - "7 ---> https://github.com/RPGroup-PBoC/vdj_recombination\n", - "7 ---> https://github.com/carpyncho/carpyncho\n", - "3 ---> https://github.com/jpvantassel/sigpropy\n", - "5 ---> https://github.com/camelot-project/frontend\n", - "3 ---> https://github.com/cggh/scikit-allel\n", - "3 ---> https://github.com/kundajelab/seqdataloader\n", - "7 ---> https://github.com/ubccr/xdmod\n", - "3 ---> https://github.com/TomasBeuzen/pybeach\n", - "9 ---> https://github.com/prevwong/craft.js\n", - "3 ---> https://github.com/CovingtonResearchGroup/olm\n", - "3 ---> https://github.com/zykls/whynot\n", - "7 ---> https://github.com/DLR-RM/RAFCON\n", - "3 ---> https://github.com/hpparvi/PyTransit\n", - "3 ---> https://github.com/BigDataBiology/GMGC-mapper\n", - "5 ---> https://github.com/andycasey/ads\n", - "9 ---> https://github.com/darribas/wmn\n", - "5 ---> https://github.com/caltechlibrary/holdit\n", - "3 ---> https://github.com/AMReX-Astro/Castro\n", - "3 ---> https://github.com/greglucas/bezpy\n", - "2 ---> https://github.com/RCHG/FunFAN\n", - "3 ---> https://github.com/geek-yang/META\n", - "6 ---> https://github.com/Sentimentron/Nebraska-public\n", - "3 ---> https://github.com/jkibele/OpticalRS\n", - "4 ---> https://github.com/jupiterbak/FAPSDemoOPCUAServer2\n", - "3 ---> https://github.com/seandavi/ngCGH\n", - "3 ---> https://github.com/fraserw/trippy\n", - "3 ---> https://github.com/SainsburyWellcomeCentre/lasagna\n", - "4 ---> https://github.com/ufz/ogs\n", - "3 ---> https://github.com/libsemigroups/libsemigroups\n", - "5 ---> https://github.com/IDEES-Rouen/Flight-Scrapping\n", - "3 ---> https://github.com/AshKelly/pyquad\n", - "3 ---> https://github.com/jolespin/soothsayer\n", - "3 ---> https://github.com/kklmn/xrt\n", - "3 ---> https://github.com/beringresearch/ivis\n", - "3 ---> https://github.com/mdolab/pyspline\n", - "3 ---> https://github.com/thieunguyen5991/opfunu\n", - "8 ---> https://github.com/fmannhardt/pddp\n", - "3 ---> https://github.com/gwpy/gwpy\n", - "3 ---> https://github.com/pyvista/pyvista\n", - "5 ---> https://github.com/arcolife/scholarec\n", - "9 ---> https://github.com/NUStreaming/acm-mmsys-2020-grand-challenge\n", - "3 ---> https://github.com/adamewing/tebreak\n", - "5 ---> https://github.com/papis/papis\n", - "3 ---> https://github.com/wlad111/small_probs\n", - "3 ---> https://github.com/slimgroup/ServerlessImagingAWS\n", - "3 ---> https://github.com/danielbmmatos/Reduced-Model-of-Shear-Building\n", - "3 ---> https://github.com/biocore/qiime\n", - "5 ---> https://github.com/aretha-hep/mprtect\n", - "9 ---> https://github.com/bionode/bionode-template\n", - "3 ---> https://github.com/SebastianEggert/OpenWorkstation\n", - "3 ---> https://github.com/pyscf/pyscf\n", - "3 ---> https://github.com/GijsMulders/epos\n", - "5 ---> https://github.com/castelao/PyAVISO\n", - "6 ---> https://github.com/korpling/ANNIS\n", - "6 ---> https://github.com/sayounara/Green_training\n", - "9 ---> https://github.com/WikiWatershed/model-my-watershed\n", - "3 ---> https://github.com/aymara/lima\n", - "5 ---> https://github.com/xieguigang/ManhattanPlot\n", - "6 ---> https://github.com/thorstenwagner/TraJ\n", - "9 ---> https://github.com/sealuzh/lightweight-effectiveness\n", - "9 ---> https://github.com/phiresky/backchannel-prediction\n", - "5 ---> https://github.com/labexp/LibreScan\n", - "3 ---> https://github.com/jdmoorman/laptools\n", - "3 ---> https://github.com/krassowski/drug-disease-profile-matching\n", - "9 ---> https://github.com/allucas/allucas.github.io\n", - "3 ---> https://github.com/BradMcDanel/term-revealing\n", - "3 ---> https://github.com/silx-kit/pyFAI\n", - "3 ---> https://github.com/scipy-lectures/scipy-lecture-notes\n", - "3 ---> https://github.com/ornlneutronimaging/NEUIT\n", - "3 ---> https://github.com/kgullikson88/General\n", - "3 ---> https://github.com/BristolTopGroup/DailyPythonScripts\n", - "3 ---> https://github.com/redcap-tools/PyCap\n", - "6 ---> https://github.com/dgarijo/Widoco\n", - "6 ---> https://github.com/PecanProject/bety\n", - "9 ---> https://github.com/AABoyles/MicrobeTrace\n", - "4 ---> https://github.com/supercollider/supercollider\n", - "3 ---> https://github.com/linsalrob/PhiSpy\n", - "7 ---> https://github.com/Koushikphy/Interactive_Data_Editor\n", - "3 ---> https://github.com/keichi/mpEDM\n", - "7 ---> https://github.com/cldf-clts/pyclts\n", - "3 ---> https://github.com/TEB-model/teb\n", - "3 ---> https://github.com/comic/evalutils\n", - "7 ---> https://github.com/suryabaiarava/liferay-examples\n", - "3 ---> https://github.com/opencobra/cobratoolbox\n", - "3 ---> https://github.com/dtscalibration/python-dts-calibration\n", - "3 ---> https://github.com/eqcorrscan/EQcorrscan\n", - "3 ---> https://github.com/scikit-hep/decaylanguage\n", - "9 ---> https://github.com/OpenGeoscience/geojs\n", - "3 ---> https://github.com/PyThaiNLP/pythainlp\n", - "3 ---> https://github.com/TUW-GEO/ascat\n", - "6 ---> https://github.com/rvanheest/feedback4s\n", - "3 ---> https://github.com/screensinthewild/screenbase_instantiated_slideshow\n", - "3 ---> https://github.com/AMReX-Astro/MAESTROeX\n", - "3 ---> https://github.com/christianjauregui/famafrench\n", - "7 ---> https://github.com/TBroTeam/TBro\n", - "7 ---> https://github.com/mattbit/active-network-er\n", - "3 ---> https://github.com/timetag/ETA\n", - "3 ---> https://github.com/stephankramer/assess\n", - "6 ---> https://github.com/DataFusion4NetBio/Paper16-SCODE\n", - "9 ---> https://github.com/CDAT/jupyter-vcdat\n", - "3 ---> https://github.com/jorvlan/open-visualizations\n", - "3 ---> https://github.com/lsa-pucrs/acerta-abide\n", - "3 ---> https://github.com/particle-physics-playground/playground\n", - "3 ---> https://github.com/krischer/hypoDDpy\n", - "3 ---> https://github.com/jankrepl/deepdow\n", - "3 ---> https://github.com/weijias-opensource/acc\n", - "3 ---> https://github.com/sam-nayak/SynthNet\n", - "3 ---> https://github.com/laserkelvin/PySpecTools\n", - "5 ---> https://github.com/nithyanandan/AstroUtils\n", - "3 ---> https://github.com/tactcomplabs/xbgas-llvm\n", - "3 ---> https://github.com/mdolab/pyoptsparse\n", - "3 ---> https://github.com/tholoien/empiriciSN\n", - "3 ---> https://github.com/FUSED-Wind/fusedwind\n", - "3 ---> https://github.com/sam-greenwood/taco_vis\n", - "6 ---> https://github.com/lifs-tools/jmzTab-m\n", - "3 ---> https://github.com/JannisHoch/pcrglobwb_utils\n", - "3 ---> https://github.com/hep-lbdl/CaloGAN\n", - "7 ---> https://github.com/epiviz/Metaviz\n", - "3 ---> https://github.com/bbfrederick/rapidtide\n", - "3 ---> https://github.com/pnlbwh/conversion\n", - "9 ---> https://github.com/butcer0/SequenceOne\n", - "3 ---> https://github.com/LinkedEarth/Pyleoclim_util\n", - "3 ---> https://github.com/IMAGINE-Consortium/imagine\n", - "3 ---> https://github.com/glm-tools/pyglmnet\n", - "3 ---> https://github.com/aburrell/aacgmv2\n", - "3 ---> https://github.com/sncosmo/sncosmo\n", - "9 ---> https://github.com/InsightSoftwareConsortium/itkwidgets\n", - "3 ---> https://github.com/ICB-DCM/pyPESTO\n", - "3 ---> https://github.com/lballabio/QuantLib-SWIG\n", - "3 ---> https://github.com/SoftwareDevEngResearch/RigidFoilSimulator\n", - "3 ---> https://github.com/samuelstjean/dpr\n", - "5 ---> https://github.com/interrogator/corpkit\n", - "7 ---> https://github.com/gwu-libraries/sfm-ui\n", - "5 ---> https://github.com/tyson-swetnam/porder\n", - "1 ---> https://github.com/sabgaby/sabgaby\n", - "3 ---> https://github.com/panisson/pymobility\n", - "9 ---> https://github.com/ryanpeek/mapping-in-R-workshop\n", - "3 ---> https://github.com/lewisacidic/scikit-chem\n", - "4 ---> https://github.com/GerardBalaoro/jQuery-Tourer\n", - "6 ---> https://github.com/KnowledgeCaptureAndDiscovery/DISK\n", - "3 ---> https://github.com/RTIInternational/gobbli\n", - "3 ---> https://github.com/fabriziocosta/GraphLearn\n", - "3 ---> https://github.com/solvebio/veppy\n", - "3 ---> https://github.com/diku-dk/futhark\n", - "9 ---> https://github.com/kks32-slides/2016-berkeley\n", - "6 ---> https://github.com/SeqWare/oozie-sge\n", - "3 ---> https://github.com/kristianfoerster/melodist\n", - "9 ---> https://github.com/midas-isg/epicasemap\n", - "3 ---> https://github.com/BristolTopGroup/NTupleProduction\n", - "3 ---> https://github.com/kuchaale/X-regression\n", - "9 ---> https://github.com/dockstore/dockstore-ui2\n", - "3 ---> https://github.com/abhi1693/yii2-sms\n", - "6 ---> https://github.com/NLeSC/eEcology-Classification\n", - "3 ---> https://github.com/jdidion/atropos\n", - "3 ---> https://github.com/KBRI-Neuroinformatics/WGAN-for-RNASeq-analysis\n", - "3 ---> https://github.com/PinkShnack/TEMUL\n", - "9 ---> https://github.com/rOpenGov/eurostat\n", - "3 ---> https://github.com/rock-learning/pytransform3d\n", - "3 ---> https://github.com/matthiaskoenig/sbmlutils\n", - "3 ---> https://github.com/PennLINC/aslprep\n", - "3 ---> https://github.com/tamacgregor/structure_factor_tools\n", - "3 ---> https://github.com/kgullikson88/gullikson-scripts\n", - "3 ---> https://github.com/jacirrone/OutPredict\n", - "6 ---> https://github.com/shiyy123/FCDetector\n", - "2 ---> https://github.com/fmi-faim/fmi-trackmate-addons\n", - "7 ---> https://github.com/biocaddie/WG3-MetadataSpecifications\n", - "3 ---> https://github.com/habi/Zebra-Fish-Gills\n", - "5 ---> https://github.com/ga4gh/tool-registry-validator\n", - "3 ---> https://github.com/sagemath/sage\n", - "7 ---> https://github.com/4DNucleome/PartSeg\n", - "7 ---> https://github.com/priestoferis/animal-behaviour-analysis-2020\n", - "6 ---> https://github.com/mayconbordin/streaminer\n", - "1 ---> https://github.com/ctsit/redcap_external_module_development_guide\n", - "9 ---> https://github.com/joshje/drawpath\n", - "7 ---> https://github.com/BeckResearchLab/USP-inhibition\n", - "9 ---> https://github.com/bio-ontology-research-group/DDIEM\n", - "7 ---> https://github.com/fvalka/atc-reinforcement-learning\n", - "3 ---> https://github.com/kb-press/ndsplines\n", - "5 ---> https://github.com/agnsal/BlocksBot\n", - "3 ---> https://github.com/benmaier/COVID19CaseNumberModel\n", - "3 ---> https://github.com/uweschmitt/emzed2\n", - "9 ---> https://github.com/prajankya/Lidar-Robot\n", - "3 ---> https://github.com/AAROC/DevOps\n", - "3 ---> https://github.com/ybayle/Scyland3D\n", - "3 ---> https://github.com/jswhit/pygrib\n", - "3 ---> https://github.com/PTC-CMC/McCabeGroup\n", - "7 ---> https://github.com/bdw/GridKit\n", - "1 ---> https://github.com/feelpp/feelpp\n", - "3 ---> https://github.com/seclab-ucr/UBITect\n", - "5 ---> https://github.com/SuLab/scheduled-bots\n", - "3 ---> https://github.com/mjlaine/eppes\n", - "3 ---> https://github.com/alpha-xone/xbbg\n", - "3 ---> https://github.com/IA-Cardiologia-husa/VHD_NLP\n", - "7 ---> https://github.com/ahamilton144/hamilton-2020-managing-financial-risk-tradeoffs-for-hydropower\n", - "9 ---> https://github.com/MonashBioinformaticsPlatform/laxy\n", - "3 ---> https://github.com/Ptrskay3/PySprint\n", - "3 ---> https://github.com/gaojun0816/code_access_finder\n", - "9 ---> https://github.com/LinkedDataFragments/Server.js\n", - "9 ---> https://github.com/lgsvl/simulator\n", - "3 ---> https://github.com/foerstner-lab/GRADitude\n", - "3 ---> https://github.com/BritishMuseumDH/britishMuseumFacesDetection\n", - "3 ---> https://github.com/mattpitkin/psrqpy\n", - "3 ---> https://github.com/cbirdferrer/collatrix\n", - "3 ---> https://github.com/spacetelescope/pysiaf\n", - "3 ---> https://github.com/jag1g13/pycgtool\n", - "9 ---> https://github.com/jtmccr1/figtreejs-react\n", - "5 ---> https://github.com/vedantchandra/wdtools\n", - "3 ---> https://github.com/ericleasemorgan/reader\n", - "9 ---> https://github.com/AbhinavMir/Decentralized-Journalism-Using-Ethereum\n", - "7 ---> https://github.com/juliolugo96/ula-lang\n", - "3 ---> https://github.com/CountESS-Project/fqfa\n", - "1 ---> https://github.com/reflectivity/reflectivity.github.io\n", - "6 ---> https://github.com/vuw-sim-stia/TICJ\n", - "5 ---> https://github.com/tudelft3d/bag3d\n", - "6 ---> https://github.com/cyverse-gis/suas-metadata\n", - "5 ---> https://github.com/mwcraig/msumastro\n", - "7 ---> https://github.com/ctsit/qipr_approver\n", - "7 ---> https://github.com/Caltech-IPAC/Montage\n", - "3 ---> https://github.com/emtpb/pyfds\n", - "6 ---> https://github.com/DennisRippinger/spade\n", - "5 ---> https://github.com/Chilipp/psyplot_old\n", - "9 ---> https://github.com/UNCG-DAISY/Coastal-Image-Labeler\n", - "7 ---> https://github.com/jiemakel/aether\n", - "3 ---> https://github.com/chrisdjscott/Atoman\n", - "9 ---> https://github.com/cosmo-epfl/chemiscope\n", - "5 ---> https://github.com/spcl/dace\n", - "3 ---> https://github.com/CardiacModelling/nonlinear-time-dependent-leak\n", - "3 ---> https://github.com/templateflow/python-client\n", - "3 ---> https://github.com/redmod-team/profit\n", - "3 ---> https://github.com/pavolgaj/ObsPlanner\n", - "3 ---> https://github.com/nick-youngblut/MGSIM\n", - "6 ---> https://github.com/fcproj/agrotagger\n", - "7 ---> https://github.com/epiviz/epiviz\n", - "9 ---> https://github.com/filips123/EthAvatar.JS\n", - "6 ---> https://github.com/quadrama/DramaNLP\n", - "9 ---> https://github.com/Kitware/itk-vtk-viewer\n", - "7 ---> https://github.com/academic/thesaurus-manager\n", - "6 ---> https://github.com/milaboratory/mixcr\n", - "7 ---> https://github.com/Fu-PusH/statement-finder\n", - "3 ---> https://github.com/openmc-dev/openmc\n", - "3 ---> https://github.com/brelsford/topology\n", - "5 ---> https://github.com/thela/django_log_to_telegram\n", - "3 ---> https://github.com/cigroup-ol/metaopt\n", - "3 ---> https://github.com/lucananni93/CTCF_Spatial_Patterns\n", - "3 ---> https://github.com/stfbnc/fathon\n", - "3 ---> https://github.com/prisms-center/CASMcode\n", - "3 ---> https://github.com/ccd-utexas/binstarsolver\n", - "5 ---> https://github.com/wallissoncarvalho/HidroData\n", - "3 ---> https://github.com/XPRESSyourself/XPRESSplot\n", - "3 ---> https://github.com/airr-community/airr-standards\n", - "3 ---> https://github.com/joaomcteixeira/taurenmd\n", - "3 ---> https://github.com/jyhmiinlin/pynufft\n", - "3 ---> https://github.com/atrisovic/econ-data-policy\n", - "7 ---> https://github.com/DPBayes/DP-cross-silo-federated-learning\n", - "3 ---> https://github.com/statsmodels/statsmodels\n", - "6 ---> https://github.com/SciGraph/SciGraph\n", - "3 ---> https://github.com/giannisdoukas/ipython2cwl\n", - "3 ---> https://github.com/Neurita/pypes\n", - "3 ---> https://github.com/pesummary/pesummary\n", - "6 ---> https://github.com/nilsreiter/CorefAnnotator\n", - "7 ---> https://github.com/tripal/tripal_galaxy\n", - "7 ---> https://github.com/hipster-philology/protogenie\n", - "3 ---> https://github.com/PGijsbers/gama\n", - "5 ---> https://github.com/collab-uniba/personality\n", - "5 ---> https://github.com/sertansenturk/makammusicbrainz\n", - "4 ---> https://github.com/biowdl/germline-DNA\n", - "7 ---> https://github.com/CLARIAH/grlc\n", - "3 ---> https://github.com/openvax/isovar\n", - "7 ---> https://github.com/iimog/wikidata-game-flower-color\n", - "3 ---> https://github.com/seawander/nmf_imaging\n", - "3 ---> https://github.com/GiulioRossetti/cdlib\n", - "3 ---> https://github.com/neuhofmo/RecBlast\n", - "3 ---> https://github.com/cyverse-vice/jupyterlab-scipy\n", - "1 ---> https://github.com/UWDIRECT/UWDIRECT.github.io\n", - "3 ---> https://github.com/CoffeaTeam/coffea\n", - "6 ---> https://github.com/Rothamsted/knetminer\n", - "3 ---> https://github.com/multipaths/DiffuPath\n", - "3 ---> https://github.com/matplotlib/mpl-probscale\n", - "3 ---> https://github.com/richardjgowers/GCMCbenchmarks\n", - "5 ---> https://github.com/daft-dev/daft\n", - "9 ---> https://github.com/arose/ngl\n", - "3 ---> https://github.com/fa-me/spotlob\n", - "3 ---> https://github.com/thompsonsed/pycoalescence\n", - "9 ---> https://github.com/sdss/marvin\n", - "3 ---> https://github.com/brmather/pycurious\n", - "3 ---> https://github.com/MHKiT-Software/MHKiT-MATLAB\n", - "9 ---> https://github.com/sigsep/sigsep-mus-2018-website\n", - "3 ---> https://github.com/amusecode/amuse\n", - "9 ---> https://github.com/bwbohl/introduction-to-mei\n", - "9 ---> https://github.com/JaneliaSciComp/SharkViewer\n", - "3 ---> https://github.com/KeplerGO/lightkurve\n", - "3 ---> https://github.com/transientlunatic/gravpy\n", - "3 ---> https://github.com/astroufsc/chimera\n", - "9 ---> https://github.com/cogan-shimizu-wsu/ExperimentAnnotationTracker\n", - "3 ---> https://github.com/jenojp/extractacy\n", - "9 ---> https://github.com/aaronSig/rainforest-rhythms\n", - "3 ---> https://github.com/valentina-s/time-series-nmf\n", - "3 ---> https://github.com/Nikronic/Optimized-MDVRP\n", - "3 ---> https://github.com/pr-omethe-us/PyTeCK\n", - "5 ---> https://github.com/bumps/bumps\n", - "3 ---> https://github.com/jtempkin/enhanced_sampling_toolkit\n", - "7 ---> https://github.com/automatedskip/homerent.io\n", - "3 ---> https://github.com/a-slide/NanoCount\n", - "3 ---> https://github.com/NLeSC/dask-cassandra-loader\n", - "8 ---> https://github.com/explosion/spaCy\n", - "9 ---> https://github.com/mjuez/TFM2016_Analisis-Visual-Revisiones-Codigo\n", - "6 ---> https://github.com/owlcollab/owltools\n", - "6 ---> https://github.com/mmhss/sstrong-import\n", - "3 ---> https://github.com/I2Cvb/retinopathy\n", - "9 ---> https://github.com/sgsaenger/vipster\n", - "3 ---> https://github.com/SHDShim/PeakPo\n", - "3 ---> https://github.com/rangeetpan/decomposeDNNintoModules\n", - "3 ---> https://github.com/InsightSoftwareConsortium/ITKColorNormalization\n", - "3 ---> https://github.com/coin-or/Dip\n", - "9 ---> https://github.com/Thales1330/PSP\n", - "3 ---> https://github.com/fepegar/torchio\n", - "3 ---> https://github.com/phenoscape/phenoscape-owl-tools\n", - "5 ---> https://github.com/htcondor/htcondor-ce\n", - "3 ---> https://github.com/hugadams/pyparty\n", - "5 ---> https://github.com/NLeSC/baklava\n", - "7 ---> https://github.com/howardyclo/grammar-pattern\n", - "9 ---> https://github.com/ufbmi/mdc_search\n", - "7 ---> https://github.com/aplowman/first-principles-zr-grain-boundaries\n", - "7 ---> https://github.com/dlozeve/tda-networks\n", - "3 ---> https://github.com/mustakcsecuet/COIN-Attacks\n", - "5 ---> https://github.com/LargerPanda/ceph\n", - "3 ---> https://github.com/glukicov/ML_GPU\n", - "3 ---> https://github.com/devitocodes/devito\n", - "3 ---> https://github.com/pnlbwh/TBSS\n", - "3 ---> https://github.com/scipy/scipy\n", - "3 ---> https://github.com/DiamondLightSource/SuRVoS\n", - "3 ---> https://github.com/wri/restoration-mapper\n", - "3 ---> https://github.com/ICB-DCM/tumor2d\n", - "3 ---> https://github.com/sertansenturk/symbtrdataextractor\n", - "7 ---> https://github.com/chrisma/ScrumLint\n", - "3 ---> https://github.com/TheoryInPractice/BEAVr\n", - "7 ---> https://github.com/jloveric/high-order-layers\n", - "3 ---> https://github.com/jcreinhold/selfsupervised3d\n", - "3 ---> https://github.com/mlp6/fem\n", - "3 ---> https://github.com/Eden-Kramer-Lab/replay_trajectory_classification\n", - "3 ---> https://github.com/nschloe/colorio\n", - "3 ---> https://github.com/tsalo/convert-eprime\n", - "3 ---> https://github.com/projectglow/glow\n", - "3 ---> https://github.com/FRidh/scintillations\n", - "3 ---> https://github.com/pitt-rnel/perceptmapper\n", - "7 ---> https://github.com/carnisj/bcdi\n", - "3 ---> https://github.com/pysal/esda\n", - "3 ---> https://github.com/pedropro/TACO\n", - "5 ---> https://github.com/nkratzke/twista\n", - "3 ---> https://github.com/MicroPasts/egyptExplorationSocietyBuhen\n", - "3 ---> https://github.com/Lasagne/Lasagne\n", - "9 ---> https://github.com/Andros-Spica/EMAC-Angourakis-et-al-2019\n", - "4 ---> https://github.com/fg-inet/DASH-streaming-setup\n", - "3 ---> https://github.com/JiaweiZhuang/xESMF\n", - "3 ---> https://github.com/astrorama/SourceXtractorPlusPlus\n", - "3 ---> https://github.com/ssec/sift\n", - "5 ---> https://github.com/IMMM-SFA/proxymod\n", - "5 ---> https://github.com/bgruening/docker-galaxy-stable\n", - "3 ---> https://github.com/reflectometry/refl1d\n", - "3 ---> https://github.com/napari/napari\n", - "3 ---> https://github.com/sgrieve/spatial_efd\n", - "3 ---> https://github.com/genn-team/genn\n", - "3 ---> https://github.com/AxFoundation/strax\n", - "3 ---> https://github.com/pofatu/pypofatu\n", - "3 ---> https://github.com/bsc-mem/UEPREDICT\n", - "6 ---> https://github.com/Smart-Contract-Modelling-uOttawa/Symboleo-Compliance-Checker\n", - "3 ---> https://github.com/smarie/python-spawny\n", - "3 ---> https://github.com/usnistgov/jarvis\n", - "3 ---> https://github.com/diana-hep/carl\n", - "5 ---> https://github.com/PTB-PSt1/PyDynamic\n", - "3 ---> https://github.com/mne-tools/mne-python\n", - "4 ---> https://github.com/mlbernauer/drugstandards\n", - "3 ---> https://github.com/kundajelab/kerasAC\n", - "7 ---> https://github.com/felicitia/TestAnalyzer\n", - "7 ---> https://github.com/sshilpika/error-log-analysis\n", - "3 ---> https://github.com/dhermes/bezier\n", - "3 ---> https://github.com/sphinx-gallery/sphinx-gallery\n", - "3 ---> https://github.com/pysal/pysal\n", - "3 ---> https://github.com/numericalalgorithmsgroup/pybobyqa\n", - "3 ---> https://github.com/PyNIPT/pynipt\n", - "3 ---> https://github.com/jesford/cluster-lensing\n", - "3 ---> https://github.com/cosanlab/nltools\n", - "9 ---> https://github.com/plantinformatics/pretzel\n", - "3 ---> https://github.com/ryanpdwyer/1605-phasekick\n", - "7 ---> https://github.com/NatLibFi/Skosmos\n", - "7 ---> https://github.com/jcchiba/GANSta\n", - "7 ---> https://github.com/chembience/chembience\n", - "3 ---> https://github.com/Quantum-TII/qprime\n", - "9 ---> https://github.com/OpenKnowledgeMaps/Headstart\n", - "3 ---> https://github.com/radnut/amc\n", - "3 ---> https://github.com/omuse-geoscience/omuse\n", - "6 ---> https://github.com/klugem/watchdog\n", - "3 ---> https://github.com/nils-wisiol/pypuf\n", - "3 ---> https://github.com/ladisk/pyDIC\n", - "3 ---> https://github.com/easyDiffraction/easyDiffraction\n", - "3 ---> https://github.com/pauleve/pint\n", - "3 ---> https://github.com/e5k/TephraProb\n", - "2 ---> https://github.com/fmalmeida/bacannot\n", - "3 ---> https://github.com/delph-in/pydmrs\n", - "3 ---> https://github.com/GenericMappingTools/pygmt\n", - "4 ---> https://github.com/pymedphys/pymedphys\n", - "3 ---> https://github.com/anuprulez/galaxy_tool_recommendation\n", - "3 ---> https://github.com/BMKEG/sciDT-pipeline\n", - "9 ---> https://github.com/Irstea/otolithe\n", - "3 ---> https://github.com/hugovk/pypistats\n", - "3 ---> https://github.com/single-cell-genetics/vireo\n", - "9 ---> https://github.com/bionode/bionode\n", - "3 ---> https://github.com/Edric-Matwiejew/QuOp_MPI\n", - "9 ---> https://github.com/evanodell/parlitools\n", - "3 ---> https://github.com/steven-murray/hankel\n", - "5 ---> https://github.com/guillochon/MOSFiT\n", - "5 ---> https://github.com/lascivaroma/priapeia\n", - "3 ---> https://github.com/vahtras/loprop\n", - "3 ---> https://github.com/pv8/noipy\n", - "3 ---> https://github.com/MAfarrag/Hapi\n", - "3 ---> https://github.com/monteirotorres/ProtCHOIR\n", - "2 ---> https://github.com/dejac001/adsorption_isotherm_fitting\n", - "3 ---> https://github.com/GilesStrong/lumin\n", - "4 ---> https://github.com/worldsensing/xyz-iot-monitoring\n", - "6 ---> https://github.com/rcsb/ciftools-java\n", - "3 ---> https://github.com/cgre-aachen/pynoddy\n", - "3 ---> https://github.com/bashtage/linearmodels\n", - "3 ---> https://github.com/pygae/galgebra\n", - "7 ---> https://github.com/SandstoneHPC/sandstone-ide\n", - "3 ---> https://github.com/darothen/pyrcel\n", - "5 ---> https://github.com/DD-DeCaF/id-mapper\n", - "7 ---> https://github.com/Colectica/curation\n", - "5 ---> https://github.com/harnesscloud/harness-resource-manager\n", - "7 ---> https://github.com/huggingface/transformers\n", - "3 ---> https://github.com/stadelmanma/netl-ap-map-flow\n", - "3 ---> https://github.com/jl-wynen/isle\n", - "9 ---> https://github.com/rodighiero/DH2020\n", - "6 ---> https://github.com/scalaris-team/scalaris\n", - "5 ---> https://github.com/FEEprojects/plantower\n", - "3 ---> https://github.com/aibasel/pyperplan\n", - "3 ---> https://github.com/theboocock/NGaDNAP\n", - "6 ---> https://github.com/DeathStar3/symfinder\n", - "3 ---> https://github.com/AdmiralenOla/Scoary\n", - "3 ---> https://github.com/NickleDave/visual-search-nets\n", - "3 ---> https://github.com/dhondta/AppmemDumper\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3 ---> https://github.com/scikit-hep/boost-histogram\n", - "7 ---> https://github.com/vsoch/askci\n", - "7 ---> https://github.com/boutiques/boutiques\n", - "3 ---> https://github.com/nansencenter/nansat\n", - "3 ---> https://github.com/cdanielmachado/reframed\n", - "3 ---> https://github.com/LightForm-group/matflow\n", - "5 ---> https://github.com/Capitains/Hook\n", - "3 ---> https://github.com/arokem/ISBI2015\n", - "3 ---> https://github.com/a-slide/NanoSnake\n", - "7 ---> https://github.com/laplizard/infoplot\n", - "3 ---> https://github.com/hugadams/PAME\n", - "3 ---> https://github.com/torressa/cspy\n", - "3 ---> https://github.com/ConservationInternational/trends.earth\n", - "3 ---> https://github.com/OpenChemistry/avogadrolibs\n", - "3 ---> https://github.com/ondrolexa/pywerami\n", - "9 ---> https://github.com/Sulstice/datacity\n", - "5 ---> https://github.com/bootphon/phonemizer\n", - "3 ---> https://github.com/chrisgorgo/alleninf\n", - "6 ---> https://github.com/opentox/lazar-rest\n", - "6 ---> https://github.com/SeqWare/seqware\n", - "3 ---> https://github.com/msmbuilder/osprey\n", - "5 ---> https://github.com/urschrei/CDP\n", - "7 ---> https://github.com/comic/grand-challenge.org\n", - "3 ---> https://github.com/roland-wallner/dss2020-ex1\n", - "3 ---> https://github.com/tasoc/corrections\n", - "9 ---> https://github.com/lucasberent/mapleDocs\n", - "5 ---> https://github.com/bakirtzisg/cybok-cli\n", - "3 ---> https://github.com/SuperElastix/SimpleElastix\n", - "3 ---> https://github.com/fsherry/bilevelmri\n", - "5 ---> https://github.com/USEPA/standardizedinventories\n", - "3 ---> https://github.com/ilogue/niprov\n", - "5 ---> https://github.com/kundajelab/atac_dnase_pipelines\n", - "3 ---> https://github.com/ktmeaton/NCBImeta\n", - "9 ---> https://github.com/University-of-Potsdam-MM/Reflect.UP\n", - "3 ---> https://github.com/mdolab/OpenAeroStruct\n", - "7 ---> https://github.com/amcpherson/remixt\n", - "3 ---> https://github.com/fbpic/fbpic\n", - "6 ---> https://github.com/sjcross/MIA\n", - "3 ---> https://github.com/RiceMunk/omnifit\n", - "9 ---> https://github.com/cronelab/bci2000web\n", - "3 ---> https://github.com/epigen/crop-seq\n", - "3 ---> https://github.com/rholson1/peyecoder\n", - "3 ---> https://github.com/dmnfarrell/pandastable\n", - "3 ---> https://github.com/YeoLab/flotilla\n", - "3 ---> https://github.com/amisr/flipchem\n", - "6 ---> https://github.com/TGAC/brassica\n", - "3 ---> https://github.com/silx-kit/fabio\n", - "3 ---> https://github.com/numericalalgorithmsgroup/dfols\n", - "1 ---> https://github.com/zeeguu-ecosystem/Zeeguu-API\n", - "7 ---> https://github.com/AVAuco/ssd_head_keras\n", - "5 ---> https://github.com/PRIMAVERA-H2020/primavera-dmt\n", - "3 ---> https://github.com/MartinMalyMM/pairef\n", - "3 ---> https://github.com/ImperialCollegeLondon/covid19model\n", - "3 ---> https://github.com/BrkRaw/bruker\n", - "6 ---> https://github.com/oicr-gsi/shesmu\n", - "7 ---> https://github.com/coderdj/emo\n", - "3 ---> https://github.com/ladisk/DyS\n", - "3 ---> https://github.com/Quasars/orange-spectroscopy\n", - "5 ---> https://github.com/WorldVistA/VistA\n", - "7 ---> https://github.com/faroit/CountNet\n", - "3 ---> https://github.com/HHTpy/HHTpywrapper\n", - "6 ---> https://github.com/constantinpape/z5\n", - "5 ---> https://github.com/samapriya/hdxpop\n", - "3 ---> https://github.com/pik-copan/pycopancore\n", - "3 ---> https://github.com/MARLEY-MC/marley\n", - "3 ---> https://github.com/garrettwrong/cuTWED\n", - "7 ---> https://github.com/greenape/mknotebooks\n", - "7 ---> https://github.com/bbglab/muts-needle-plot\n", - "3 ---> https://github.com/NickleDave/crowsetta\n", - "6 ---> https://github.com/ISA-tools/stato\n", - "3 ---> https://github.com/LJMUAstroecology/flirpy\n", - "3 ---> https://github.com/OntoElect/Code\n", - "6 ---> https://github.com/diging/giles-eco-cepheus\n", - "3 ---> https://github.com/scikit-hep/mplhep\n", - "3 ---> https://github.com/alimanfoo/vcfnp\n", - "3 ---> https://github.com/bjodah/finitediff\n", - "3 ---> https://github.com/pysit/pysit\n", - "5 ---> https://github.com/observingClouds/eurec4a_snd\n", - "3 ---> https://github.com/colloidlab/ccc-calculator\n", - "3 ---> https://github.com/elihuihms/itcsimlib\n", - "1 ---> https://github.com/tigefa4u/tigefa4u.github.io\n", - "5 ---> https://github.com/dvolgyes/zenodo_get\n", - "3 ---> https://github.com/alexander-rossner/dh-researchtool-landscape\n", - "7 ---> https://github.com/pylayers/pylayers\n", - "6 ---> https://github.com/alexrashed/eval_rest\n", - "3 ---> https://github.com/jovo/PyGraphStat\n", - "6 ---> https://github.com/dannyboscan/angular-and-rails\n", - "7 ---> https://github.com/Aletechdev/ava\n", - "3 ---> https://github.com/annotation/text-fabric\n", - "3 ---> https://github.com/ksmet1977/luxpy\n", - "6 ---> https://github.com/thorstenwagner/spie-photonics-europe-2016\n", - "3 ---> https://github.com/root-project/root\n", - "6 ---> https://github.com/slimsuite/SLiMScape\n", - "3 ---> https://github.com/AlanLoh/nenupy\n", - "3 ---> https://github.com/waterlandlab/CluBCpG\n", - "6 ---> https://github.com/diging/citesphere-importer\n", - "5 ---> https://github.com/OpenDroneMap/ODM\n", - "3 ---> https://github.com/openrsp/openrsp\n", - "9 ---> https://github.com/AliTVTeam/AliTV\n", - "3 ---> https://github.com/Finn-Lab/EukCC\n", - "1 ---> https://github.com/amlalejini/ALife-2020--SignalGP-Genetic-Regulation\n", - "6 ---> https://github.com/rinde/RinECJ\n", - "5 ---> https://github.com/spacetelescope/drizzlepac\n", - "5 ---> https://github.com/smoh/gaia-comoving-stars\n", - "3 ---> https://github.com/ckrapu/sprcom\n", - "6 ---> https://github.com/Terradue/rOpenSearch\n", - "9 ---> https://github.com/essepuntato/rash\n", - "3 ---> https://github.com/pygridtools/gridmap\n", - "5 ---> https://github.com/dftlibs/numgrid\n", - "6 ---> https://github.com/sckott/serrano\n", - "5 ---> https://github.com/snewhouse/exotic-dna-ngs\n", - "4 ---> https://github.com/numenta/gridcodingrange\n", - "7 ---> https://github.com/KWB-R/fakin\n", - "5 ---> https://github.com/fpavogt/fcmaker\n", - "9 ---> https://github.com/falafeljan/recogito-user-testing\n", - "3 ---> https://github.com/CalebBell/fluids\n", - "3 ---> https://github.com/ImperialCollegeLondon/acoustics-db\n", - "9 ---> https://github.com/mfroeling/QMRITools\n", - "5 ---> https://github.com/tqbl/ood_audio\n", - "9 ---> https://github.com/delphi-hub/delphi-webapp\n", - "3 ---> https://github.com/taishi-i/nagisa\n", - "3 ---> https://github.com/slimgroup/Azure2019\n", - "7 ---> https://github.com/afilipanog/afilipanog.github.io\n", - "5 ---> https://github.com/samapriya/Sat-Pipeline-CLI\n", - "6 ---> https://github.com/shah314/graphcoloring\n", - "3 ---> https://github.com/YeoLab/gscripts\n", - "1 ---> https://github.com/FitzwilliamMuseum/ahrc-linking-islands\n", - "3 ---> https://github.com/cern-fts/webfts\n", - "3 ---> https://github.com/brinkmanlab/feature_merge\n", - "9 ---> https://github.com/dohalloran/phylo-node\n", - "3 ---> https://github.com/IMTtugraz/PyQMRI\n", - "3 ---> https://github.com/openearth/aeolis\n", - "5 ---> https://github.com/obreitwi/py-veer\n", - "3 ---> https://github.com/InsightSoftwareConsortium/ITKElastix\n", - "4 ---> https://github.com/meijer-jeroen/contingent-evolution-2020\n", - "3 ---> https://github.com/pandera-dev/pandera\n", - "5 ---> https://github.com/cheshire3/cheshire3\n", - "5 ---> https://github.com/ludwig-burtscher/invenio-with-provenance\n", - "6 ---> https://github.com/CeON/CERMINE\n", - "3 ---> https://github.com/mjiUST/VasNet\n", - "6 ---> https://github.com/scleveland/NADV\n", - "6 ---> https://github.com/nextcloud/android\n", - "3 ---> https://github.com/neurodata/mvlearn\n", - "3 ---> https://github.com/TUM-CPN/CropTypes\n", - "6 ---> https://github.com/BMKEG/UimaBioC\n", - "4 ---> https://github.com/jbathmann/pyMANGA\n", - "3 ---> https://github.com/THzbiophotonics/Fit-TDS\n", - "6 ---> https://github.com/ICGC-TCGA-PanCancer/OxoGWrapperWorkflow\n", - "3 ---> https://github.com/franknu/cgmodsel\n", - "3 ---> https://github.com/openpathsampling/openpathsampling\n", - "5 ---> https://github.com/Teichlab/cellphonedb\n", - "7 ---> https://github.com/pear2/Net_Transmitter\n", - "3 ---> https://github.com/oslocyclotronlab/ompy\n", - "3 ---> https://github.com/GooglingTheCancerGenome/sv-gen\n", - "3 ---> https://github.com/benmontet/f3\n", - "3 ---> https://github.com/rubbs14/CSP-Analyzer\n", - "1 ---> https://github.com/hugomilan/tlmbht\n", - "9 ---> https://github.com/GRIFFINCollaboration/beamCompanionExplorer\n", - "5 ---> https://github.com/arnikz/PIQMIe\n", - "3 ---> https://github.com/SuperDARN/pydarn\n", - "6 ---> https://github.com/CharafeddineMechalikh/PureEdgeSim\n", - "9 ---> https://github.com/Andros-Spica/Postdocs-Angourakis-2019\n", - "8 ---> https://github.com/austindrenski/AD.PartialEquilibriumApi\n", - "3 ---> https://github.com/LightForm-group/xrdfit\n", - "3 ---> https://github.com/spcl/stencilflow\n", - "3 ---> https://github.com/kdmurray91/libqcpp\n", - "3 ---> https://github.com/nipy/nibabel\n", - "3 ---> https://github.com/openearth/flamingo\n", - "9 ---> https://github.com/ARGOeu/poem-2\n", - "1 ---> https://github.com/HelioML/HelioML\n", - "3 ---> https://github.com/SwissTPH/TBRU_serialTB\n", - "9 ---> https://github.com/liminoid/liminoid-react\n", - "3 ---> https://github.com/HaroldMills/Vesper\n", - "5 ---> https://github.com/iterative/dvc\n", - "3 ---> https://github.com/ultralytics/yolov5\n", - "3 ---> https://github.com/spa-networks/hpa\n", - "5 ---> https://github.com/PX4/Firmware\n", - "8 ---> https://github.com/speckleworks/SpeckleRhino\n", - "3 ---> https://github.com/alan-turing-institute/sktime\n", - "3 ---> https://github.com/Phlya/coolpuppy\n", - "9 ---> https://github.com/sigsep/website\n", - "3 ---> https://github.com/dejac001/distillation\n", - "5 ---> https://github.com/simeonreusch/ztffps\n", - "7 ---> https://github.com/django-salesforce/django-salesforce\n", - "7 ---> https://github.com/jellis18/PAL2\n", - "9 ---> https://github.com/rsa-tools/rsat-code\n", - "9 ---> https://github.com/tompollard/phd_thesis_markdown\n", - "3 ---> https://github.com/fpavogt/pyqz\n", - "7 ---> https://github.com/fnl/medic\n", - "3 ---> https://github.com/SciTools/iris\n", - "7 ---> https://github.com/neglectos/dockerhub_analysis\n", - "5 ---> https://github.com/mosdef-hub/foyer\n", - "9 ---> https://github.com/calipho-sib/feature-viewer\n", - "7 ---> https://github.com/academic/vipa\n", - "3 ---> https://github.com/IndexedConv/IndexedConv\n", - "3 ---> https://github.com/VlachosGroup/openmkm\n", - "3 ---> https://github.com/nipype/pydra\n", - "9 ---> https://github.com/sherlock-clustering/Sherlock_DiVE\n", - "3 ---> https://github.com/datalad/datalad\n", - "3 ---> https://github.com/asreview/asreview-covid19\n", - "7 ---> https://github.com/mikahama/akusanat\n", - "7 ---> https://github.com/laderast/ready_for_r_site\n", - "6 ---> https://github.com/GlobalNamesArchitecture/taxamatch_rb\n", - "5 ---> https://github.com/adbar/htmldate\n", - "3 ---> https://github.com/jonescompneurolab/hnn\n", - "5 ---> https://github.com/iross/km_indexer\n", - "3 ---> https://github.com/jameslyons/python_speech_features\n", - "5 ---> https://github.com/biolink/biolink-model\n", - "3 ---> https://github.com/x10-lang/x10\n", - "3 ---> https://github.com/MicroPasts/projectAndvariLOD\n", - "3 ---> https://github.com/griffin-h/lightcurve_fitting\n", - "3 ---> https://github.com/lanl/VizAly-Foresight\n", - "9 ---> https://github.com/cytoscape/cytoscape.js-cxtmenu\n", - "7 ---> https://github.com/BrennerG/DS1\n", - "3 ---> https://github.com/KitwareMedical/HASI\n", - "6 ---> https://github.com/SELAB-AA/arvue-platform\n", - "3 ---> https://github.com/rjfarmer/gfort2py\n", - "5 ---> https://github.com/danhey/maelstrom\n", - "9 ---> https://github.com/lewisacidic/synergy-maps\n", - "3 ---> https://github.com/KamilSJaron/smudgeplot\n", - "3 ---> https://github.com/zfit/zfit\n", - "3 ---> https://github.com/arkottke/pykooh\n", - "7 ---> https://github.com/gvoysey/corti\n", - "9 ---> https://github.com/bongadi/ARV-Predictor-OngadiB\n", - "6 ---> https://github.com/aquariumbio/aquarium\n", - "3 ---> https://github.com/appukuttan-shailesh/morphounit\n", - "6 ---> https://github.com/mbari-media-management/vars-avfoundation\n", - "6 ---> https://github.com/phon-ca/phon\n", - "1 ---> https://github.com/kbroman/AdvData\n", - "3 ---> https://github.com/insilichem/gaudiview\n", - "3 ---> https://github.com/bdhammel/least-squares-ellipse-fitting\n", - "9 ---> https://github.com/matthiaskoenig/pkdb\n", - "6 ---> https://github.com/manoelcampos/cloudsim-plus\n", - "3 ---> https://github.com/pystruct/pystruct\n", - "5 ---> https://github.com/mozillazg/phrase-pinyin-data\n", - "4 ---> https://github.com/pabloaaf/Factor-TranscriptionCaseStudy\n", - "3 ---> https://github.com/PonteIneptique/archives_org_latin_toolkit\n", - "3 ---> https://github.com/GeoStat-Framework/welltestpy\n", - "3 ---> https://github.com/guaix-ucm/numina\n", - "3 ---> https://github.com/mariogeiger/se3cnn\n", - "9 ---> https://github.com/craws/OpenAtlas\n", - "3 ---> https://github.com/sjvrijn/mf2\n", - "4 ---> https://github.com/docable/docable\n", - "6 ---> https://github.com/qbicsoftware/projectwizard-portlet\n", - "3 ---> https://github.com/DuttonLab/kvasir\n", - "3 ---> https://github.com/SolarArbiter/solarforecastarbiter-core\n", - "5 ---> https://github.com/duecredit/duecredit\n", - "3 ---> https://github.com/epiviz/epivizFileParser\n", - "3 ---> https://github.com/Accenture/AmpliGraph\n", - "6 ---> https://github.com/dockstore/dockstore\n", - "9 ---> https://github.com/jacobwindsor/kaavio-showdown\n", - "7 ---> https://github.com/julemai/EEE-DA\n", - "3 ---> https://github.com/materialsproject/custodian\n", - "3 ---> https://github.com/Samreay/Pippin\n", - "3 ---> https://github.com/DeepRank/deeprank\n", - "9 ---> https://github.com/bionode/bionode-ncbi\n", - "3 ---> https://github.com/leonardo-calcagno/covid19model_latam\n", - "3 ---> https://github.com/openvax/varcode\n", - "6 ---> https://github.com/nilsreiter/uima-util\n", - "5 ---> https://github.com/pybel/pybel\n", - "3 ---> https://github.com/hitliaomq/ELASTIC3rd\n", - "3 ---> https://github.com/portugueslab/stytra\n", - "3 ---> https://github.com/abhi1693/yii2-app-advanced-startup-kit\n", - "3 ---> https://github.com/steelelab-delft/stlabutils\n", - "3 ---> https://github.com/aouinizied/nfstream\n", - "3 ---> https://github.com/holgern/pyedflib\n", - "3 ---> https://github.com/pysal/mapclassify\n", - "3 ---> https://github.com/bastibe/MAPS-Scripts\n", - "3 ---> https://github.com/ICB-DCM/parPE\n", - "3 ---> https://github.com/newville/wxmplot\n", - "3 ---> https://github.com/jirikuncar/eelap\n", - "5 ---> https://github.com/giganticode/codeprep\n", - "3 ---> https://github.com/raphaelvallat/yasa\n", - "6 ---> https://github.com/JonnyDaenen/Gumbo\n", - "3 ---> https://github.com/BENR0/textory\n", - "3 ---> https://github.com/architecture-building-systems/CityEnergyAnalyst\n", - "3 ---> https://github.com/quexiang/STWR\n", - "1 ---> https://github.com/underworldcode/underworld2\n", - "3 ---> https://github.com/TerrainBento/umami\n", - "3 ---> https://github.com/FedericoGarza/covidmx\n", - "3 ---> https://github.com/SimonGreenhill/phylogemetric\n", - "3 ---> https://github.com/earthlab/matplotcheck\n", - "3 ---> https://github.com/landlab/landlab\n", - "3 ---> https://github.com/saltastro/pyhrs\n", - "3 ---> https://github.com/MRCIEU/MELODI-Presto\n", - "3 ---> https://github.com/kundajelab/tfmodisco\n", - "4 ---> https://github.com/jupiterbak/FAPSDemoOPCUAServer0\n", - "3 ---> https://github.com/hugadams/scikit-spectra\n", - "3 ---> https://github.com/YeoLab/clipper\n", - "3 ---> https://github.com/Confareneoclassico/Irrigation_Model\n", - "3 ---> https://github.com/mmaelicke/soil-moisture-dynamics-companion-code\n", - "3 ---> https://github.com/rscottweekly/processPKPD\n", - "3 ---> https://github.com/empymod/emg3d\n", - "3 ---> https://github.com/coin-or/rbfopt\n", - "5 ---> https://github.com/VForWaTer/metacatalog\n", - "6 ---> https://github.com/piyush82/iot-simulator\n", - "3 ---> https://github.com/rabroughton/QUAD\n", - "3 ---> https://github.com/biocore/qurro\n", - "7 ---> https://github.com/streamreasoning/rsplib\n", - "9 ---> https://github.com/NLeSC/nlesc-serverless-boilerplate\n", - "3 ---> https://github.com/lanl/CLAMR\n", - "3 ---> https://github.com/matiscke/lcps\n", - "3 ---> https://github.com/jdavidrcamacho/tedi\n", - "4 ---> https://github.com/jupiterbak/FAPSDemoOPCUAServer\n", - "5 ---> https://github.com/Fraternalilab/POPScomp\n", - "3 ---> https://github.com/DeepLearnPhysics/larcv3\n", - "3 ---> https://github.com/wangz10/text-classification\n", - "7 ---> https://github.com/NLeSC/docker-couch-admin\n", - "7 ---> https://github.com/cs-education/sysbuild\n", - "3 ---> https://github.com/nkeim/philatracks\n", - "3 ---> https://github.com/Qiskit/qiskit-terra\n", - "3 ---> https://github.com/mdolab/dafoam\n", - "7 ---> https://github.com/mikel-egana-aranguren/SADI-Galaxy-Docker\n", - "3 ---> https://github.com/JakeBlackmore/Diatomic-Py\n", - "5 ---> https://github.com/arXiv/arxiv-search\n", - "9 ---> https://github.com/Princeton-CDH/mep-django\n", - "3 ---> https://github.com/thesketh/pygen-structures\n", - "3 ---> https://github.com/paudetseis/RfPy\n", - "3 ---> https://github.com/maxibor/sourcepredict\n", - "3 ---> https://github.com/SNLComputation/compadre\n", - "9 ---> https://github.com/SmartAPI/smartAPI-editor\n", - "3 ---> https://github.com/felixriese/hyperspectral-processing\n", - "3 ---> https://github.com/briandconnelly/hankshaweffect\n", - "3 ---> https://github.com/Starlink/starlink\n", - "7 ---> https://github.com/acdh-oeaw/apis-core\n", - "9 ---> https://github.com/chaoss/augur\n", - "6 ---> https://github.com/thiagotts/CloudReports\n", - "3 ---> https://github.com/gijzelaerr/kliko\n", - "3 ---> https://github.com/chrisjsewell/ipymd\n", - "3 ---> https://github.com/evolaemp/svmcc\n", - "9 ---> https://github.com/njss/SpaceTimeCube3D\n", - "6 ---> https://github.com/lagotto/lagotto\n", - "6 ---> https://github.com/CloudBindle/youxia\n", - "3 ---> https://github.com/AA-ALERT/psrdada-python\n", - "3 ---> https://github.com/joyeuxnoel8/GAME\n", - "3 ---> https://github.com/refnx/refnx\n", - "9 ---> https://github.com/plertvilai/IPAX\n", - "3 ---> https://github.com/ikkebr/PyBozoCrack\n", - "9 ---> https://github.com/MicroPasts/MicroPasts-pybossa-theme\n", - "3 ---> https://github.com/chkoar/vfi\n", - "3 ---> https://github.com/evalf/nutils\n", - "3 ---> https://github.com/ESCOMP/CTSM\n", - "3 ---> https://github.com/daler/erythroid-genes\n", - "1 ---> https://github.com/hdcaicyt/La-Argentina-Manuscrita\n", - "7 ---> https://github.com/peterpeterp/atlantic_ace_seasonal_forecast\n", - "3 ---> https://github.com/USNavalResearchLaboratory/zernike\n", - "3 ---> https://github.com/MarouaJaoua/life-expectancy-analysis-and-prediction\n", - "6 ---> https://github.com/hcadavid/TimeWarpScheduleLibrary\n", - "7 ---> https://github.com/bihealth/sodar_core\n", - "3 ---> https://github.com/cmbant/CAMB\n", - "5 ---> https://github.com/SolarArbiter/solarforecastarbiter-dashboard\n", - "3 ---> https://github.com/ilent2/ott\n", - "3 ---> https://github.com/Phlya/adjustText\n", - "3 ---> https://github.com/UmbertoGostoli/Simulation-for-Scottish-Gov\n", - "9 ---> https://github.com/fzyukio/koe\n", - "5 ---> https://github.com/ewels/MultiQC\n", - "6 ---> https://github.com/gbif/registry\n", - "7 ---> https://github.com/quicklizard99/cheddar\n", - "3 ---> https://github.com/ggventurini/python-deltasigma\n", - "5 ---> https://github.com/moonso/stranger\n", - "3 ---> https://github.com/qcscine/sparrow\n", - "9 ---> https://github.com/smart-facility/petajakarta-web\n", - "3 ---> https://github.com/sakoho81/miplib\n", - "3 ---> https://github.com/nstarman/starkplot\n", - "7 ---> https://github.com/passaH2O/GeoFlood\n", - "3 ---> https://github.com/thompsonsed/pycoalescence_examples\n", - "7 ---> https://github.com/horizon-institute/artmaps-azure\n", - "3 ---> https://github.com/Unidata/MetPy\n", - "6 ---> https://github.com/miso-lims/miso-lims\n", - "7 ---> https://github.com/theosysbio/gene-expression-models\n", - "1 ---> https://github.com/TuringLang/Turing.jl\n", - "3 ---> https://github.com/sertansenturk/alignedpitchfilter\n", - "9 ---> https://github.com/cytoscape/cytoscape.js-euler\n", - "3 ---> https://github.com/sbonaretti/cart_segm_liter_map\n", - "1 ---> https://github.com/gchure/phd\n", - "6 ---> https://github.com/korpling/pepper\n", - "3 ---> https://github.com/sdomanskyi/DigitalCellSorter\n", - "3 ---> https://github.com/PaulHancock/Aegean\n", - "3 ---> https://github.com/casperdcl/brainweb\n", - "3 ---> https://github.com/deeptools/deepTools\n", - "3 ---> https://github.com/ofionnad/radiowinds\n", - "3 ---> https://github.com/hail-is/hail\n", - "3 ---> https://github.com/coin-or/python-mip\n", - "3 ---> https://github.com/FRidh/auraliser\n", - "7 ---> https://github.com/Amber-MD/pytraj\n", - "3 ---> https://github.com/glukicov/alignTrack\n", - "7 ---> https://github.com/starschema/COVID-19-data\n", - "3 ---> https://github.com/clcr/pyeo\n", - "3 ---> https://github.com/TUW-GEO/yeoda\n", - "7 ---> https://github.com/spacetx/starfish\n", - "7 ---> https://github.com/dapperstats/salvage\n", - "3 ---> https://github.com/matplotlib/matplotlib\n", - "3 ---> https://github.com/DLR-SC/prov-db-connector\n", - "3 ---> https://github.com/MicroPasts/egyptExplorationSociety\n", - "3 ---> https://github.com/badlands-model/badlands\n", - "1 ---> https://github.com/AAROC/CODE-RADE\n", - "3 ---> https://github.com/BBN-Q/macrospin_gpu\n", - "3 ---> https://github.com/SciTools/cf-units\n", - "9 ---> https://github.com/macarthur-lab/seqr\n", - "5 ---> https://github.com/gwastro/pycbc\n", - "3 ---> https://github.com/sahilm89/lhsmdu\n", - "3 ---> https://github.com/nfsi-canada/OrientPy\n", - "3 ---> https://github.com/ai-se/perfect-repo\n", - "3 ---> https://github.com/cojacoo/rootwater\n", - "3 ---> https://github.com/multiscale/muscle3\n", - "3 ---> https://github.com/proycon/gecco\n", - "3 ---> https://github.com/USGS-Astrogeology/autocnet\n", - "3 ---> https://github.com/oemof/tespy\n", - "3 ---> https://github.com/pdfo/pdfo\n", - "3 ---> https://github.com/louisabraham/fastnode2vec\n", - "5 ---> https://github.com/poliastro/poliastro\n", - "3 ---> https://github.com/stabix/stabix\n", - "7 ---> https://github.com/TonyKaravasilev/CryptoManana\n", - "3 ---> https://github.com/EpistasisLab/tpot\n", - "3 ---> https://github.com/bird-house/finch\n", - "1 ---> https://github.com/PCMDI/cmor3_documentation\n", - "3 ---> https://github.com/epiasini/pymuvr\n", - "3 ---> https://github.com/jkguiang/tuda\n", - "7 ---> https://github.com/TiKeil/perturbations-for-2d-data\n", - "3 ---> https://github.com/MJOLNIRPackage/MJOLNIR\n", - "3 ---> https://github.com/EducationalTestingService/rsmtool\n", - "3 ---> https://github.com/mpschr/mutex\n", - "9 ---> https://github.com/openearth/wpsbuilder\n", - "3 ---> https://github.com/preprocessed-connectomes-project/quality-assessment-protocol\n", - "5 ---> https://github.com/LucMarechal/Soft-Robotics-Materials-Database\n", - "9 ---> https://github.com/ufbmi/mdc_api\n", - "9 ---> https://github.com/Andros-Spica/CDAL-Angourakis-2019\n", - "3 ---> https://github.com/sappelhoff/eeg_positions\n", - "6 ---> https://github.com/CERNatschool/LUCIDITY\n", - "3 ---> https://github.com/glubbdubdrib/lazygrid\n", - "3 ---> https://github.com/KnowledgeCaptureAndDiscovery/somef\n", - "3 ---> https://github.com/ESMValGroup/ESMValCore\n", - "3 ---> https://github.com/castelao/pyrings\n", - "6 ---> https://github.com/myGrid/t2-server-gem\n", - "3 ---> https://github.com/casperdcl/git-fame\n", - "1 ---> https://github.com/gge-ucd/wRangling-Ecology\n", - "7 ---> https://github.com/SysBioChalmers/yeast-GEM\n", - "3 ---> https://github.com/by256/rdfpy\n", - "7 ---> https://github.com/FNNDSC/ChRIS_ultron_backEnd\n", - "6 ---> https://github.com/cmorty/realsim\n", - "9 ---> https://github.com/Andros-Spica/TIPC2-Angourakis-Graham-2018\n", - "3 ---> https://github.com/rigetti/pyquil\n", - "6 ---> https://github.com/antlr/codebuff\n", - "6 ---> https://github.com/vdenotaris/spring-boot-security-saml-sample\n", - "9 ---> https://github.com/ci-for-research/zenodo\n", - "9 ---> https://github.com/laduplessis/SARS-CoV-2_Guangdong_genomic_epidemiology\n", - "7 ---> https://github.com/sealuzh/cd-linter-artifacts\n", - "2 ---> https://github.com/clij/clij-ops\n", - "3 ---> https://github.com/bmcage/odes\n", - "3 ---> https://github.com/ryanvarley/ExoData\n", - "5 ---> https://github.com/poppy-project/pypot\n", - "3 ---> https://github.com/NLeSC/cptm\n", - "9 ---> https://github.com/ivanhercaz/research\n", - "3 ---> https://github.com/dib-lab/sourmash\n", - "5 ---> https://github.com/PecanProject/pecan\n", - "2 ---> https://github.com/thorstenwagner/ij-particlesizer\n", - "0 ---> https://github.com/ctsit/redi-dropper-client\n", - "3 ---> https://github.com/juseg/absplots\n", - "3 ---> https://github.com/tolliob/PhasePortrait\n", - "3 ---> https://github.com/gtaylor/python-colormath\n", - "3 ---> https://github.com/SoftwareDevEngResearch/PyFAT\n", - "3 ---> https://github.com/ComputationalRadiationPhysics/mallocMC\n", - "5 ---> https://github.com/Arabidopsis-Information-Portal/adama\n", - "4 ---> https://github.com/biowdl/RNA-seq\n", - "3 ---> https://github.com/RPGroup-PBoC/RNAseq_SortSeq\n", - "5 ---> https://github.com/mensBash/DataStewardship\n", - "5 ---> https://github.com/thetisproject/thetis\n", - "9 ---> https://github.com/nismod/smif\n", - "9 ---> https://github.com/mgndolan/phagesdb\n", - "3 ---> https://github.com/rajeshrinet/pystokes\n", - "3 ---> https://github.com/alan-turing-institute/azure_usage_v1\n", - "9 ---> https://github.com/rdfjs/N3.js\n", - "3 ---> https://github.com/s-utkarsh/convex\n", - "3 ---> https://github.com/docmanny/RecSearch\n", - "7 ---> https://github.com/BenediktKleppmann/TreeOfKnowledge\n", - "3 ---> https://github.com/fanatichuman/ZOOMIEv1.0\n", - "3 ---> https://github.com/subangstrom/usetemServers\n", - "6 ---> https://github.com/bio-guoda/preston\n", - "9 ---> https://github.com/molstar/molstar\n", - "3 ---> https://github.com/philrosenfield/core_overshoot_clusters\n", - "3 ---> https://github.com/a-slide/pycoQC\n", - "3 ---> https://github.com/Epistimio/orion\n", - "3 ---> https://github.com/tholoien/XDGMM\n", - "3 ---> https://github.com/PyTorchLightning/pytorch-lightning\n", - "6 ---> https://github.com/fusion-jena/CoMerger\n", - "3 ---> https://github.com/collectionslab/Omniscribe\n", - "3 ---> https://github.com/cohenlabUNC/clpipe\n", - "3 ---> https://github.com/harpolea/r3d2\n", - "6 ---> https://github.com/peterbanda/coel\n", - "3 ---> https://github.com/Xilinx/brevitas\n", - "4 ---> https://github.com/aulasoftwarelibre/taller-de-git\n", - "3 ---> https://github.com/ornlneutronimaging/iBeatles\n", - "5 ---> https://github.com/dennissergeev/arke\n", - "3 ---> https://github.com/awickert/GRLP\n", - "9 ---> https://github.com/na399/VAST-Challenge-2019-MC1\n", - "3 ---> https://github.com/schmelling/reciprocal_BLAST\n", - "3 ---> https://github.com/diana-hep/madminer\n", - "3 ---> https://github.com/fmorenopino/HeterogeneousHMM\n", - "3 ---> https://github.com/dslfaithdev/SocialCrawler\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "7 ---> https://github.com/AndrewIOM/global-pollen-project\n", - "3 ---> https://github.com/PySCeS/pysces\n", - "3 ---> https://github.com/DamCB/tyssue\n", - "5 ---> https://github.com/lsmo-epfl/discover-curated-cofs\n", - "7 ---> https://github.com/caltechlibrary/eprints2bags\n", - "5 ---> https://github.com/proycon/foliapy\n", - "5 ---> https://github.com/bird-house/twitcher\n", - "5 ---> https://github.com/ganga-devs/ganga\n", - "6 ---> https://github.com/kotik-coder/PULsE\n", - "5 ---> https://github.com/mozillazg/pinyin-data\n", - "3 ---> https://github.com/MicroPasts/EgyptExplorationSocBuhenPottery\n", - "3 ---> https://github.com/luispedro/imread\n", - "2 ---> https://github.com/PCMSolver/pcmsolver\n", - "6 ---> https://github.com/klout/brickhouse\n", - "9 ---> https://github.com/Dash-Industry-Forum/dash.js\n", - "3 ---> https://github.com/ProjectDrawdown/spatial-aez\n", - "9 ---> https://github.com/cytoscape/cytoscape.js-popper\n", - "5 ---> https://github.com/ecohealthalliance/pubcrawler\n", - "3 ---> https://github.com/underworldcode/stripy\n", - "3 ---> https://github.com/pycroscopy/pyUSID\n", - "3 ---> https://github.com/jjnp/dss20-ue1\n", - "5 ---> https://github.com/pytroll/satpy\n", - "6 ---> https://github.com/psambit9791/jDSP\n", - "3 ---> https://github.com/pypeit/PypeIt\n", - "3 ---> https://github.com/MPI-Dortmund/sphire_classes_autoselect\n", - "3 ---> https://github.com/PaulScotti/educortex\n", - "2 ---> https://github.com/adaerr/pendent-drop\n", - "3 ---> https://github.com/simpeg-research/Astic-2020-JointInversion\n", - "6 ---> https://github.com/cgvwzq/polca\n", - "6 ---> https://github.com/davidenunes/jnetwork\n", - "5 ---> https://github.com/dbbs-lab/glia\n", - "3 ---> https://github.com/KarrLab/paper_2018_curr_opin_sys_biol\n", - "9 ---> https://github.com/RADAR-base/RADAR-Questionnaire\n", - "3 ---> https://github.com/DIRACGrid/DIRACOS\n", - "9 ---> https://github.com/nichtich/wikidata-taxonomy\n", - "9 ---> https://github.com/Kitware/vtk-js\n", - "3 ---> https://github.com/tanghaibao/goatools\n", - "5 ---> https://github.com/clld/clld\n", - "9 ---> https://github.com/tdurieux/Travis-Listener\n", - "3 ---> https://github.com/scivision/LCPFCT\n", - "5 ---> https://github.com/dr-rodriguez/Kinematics-App\n", - "3 ---> https://github.com/starkiller-astro/Microphysics\n", - "3 ---> https://github.com/Parallel-in-Time/PyPinT\n", - "3 ---> https://github.com/ufz/ogs-data\n", - "3 ---> https://github.com/vlouf/dealias\n", - "6 ---> https://github.com/RMLio/rmlmapper-java\n", - "3 ---> https://github.com/pysal/splot\n", - "7 ---> https://github.com/SuLab/Wikidata-phenomizer\n", - "3 ---> https://github.com/jaredsampson/pymolprobity\n", - "3 ---> https://github.com/casimp/pyxe\n", - "3 ---> https://github.com/imodpasteur/pySPIRALTAP\n", - "9 ---> https://github.com/ufbmi/mdc_meter\n", - "3 ---> https://github.com/spectralpython/spectral\n", - "3 ---> https://github.com/openvax/pyensembl\n", - "5 ---> https://github.com/SMRUCC/GCModeller\n", - "3 ---> https://github.com/DyogenIBENS/SCORPIOS\n", - "9 ---> https://github.com/benchoufi/DocChain\n", - "3 ---> https://github.com/krassowski/complex-upset\n", - "6 ---> https://github.com/d-tear/SIAL\n", - "3 ---> https://github.com/arkottke/pyrvt\n", - "3 ---> https://github.com/jensdebruijn/Multimodal-flood-tweet-classification\n", - "3 ---> https://github.com/let-unimi/liblet\n", - "3 ---> https://github.com/scikit-learn-contrib/hdbscan\n", - "3 ---> https://github.com/arichar6/turbopy\n", - "3 ---> https://github.com/SystemsGenetics/GEMmaker\n", - "0 ---> https://github.com/CentreForCorpusResearch/clic\n", - "5 ---> https://github.com/benbovy/xarray-simlab\n", - "9 ---> https://github.com/Zettlr/Zettlr\n", - "3 ---> https://github.com/coreylammie/MemTorch\n", - "6 ---> https://github.com/milaboratory/mitools\n", - "6 ---> https://github.com/faustusdotbe/topic-modeling-tool-FR\n", - "9 ---> https://github.com/RADAR-base/ManagementPortal\n", - "5 ---> https://github.com/DocNow/twarc\n", - "5 ---> https://github.com/samapriya/gee_asset_manager_addon\n", - "3 ---> https://github.com/moorepants/DynamicistToolKit\n", - "3 ---> https://github.com/Clinical-Genomics/scout\n", - "3 ---> https://github.com/nschloe/pygmsh\n", - "3 ---> https://github.com/varungohil/Generalizing-Lottery-Tickets\n", - "6 ---> https://github.com/powerpak/pathogendb-pipeline\n", - "5 ---> https://github.com/Capitains/HookTest\n", - "9 ---> https://github.com/chanzuckerberg/cellxgene\n", - "3 ---> https://github.com/nf-core/tools\n", - "3 ---> https://github.com/ListerLab/TEPID\n", - "3 ---> https://github.com/fishstamp82/moltools\n", - "9 ---> https://github.com/University-of-Potsdam-MM/Mobile.UP\n", - "3 ---> https://github.com/blueskyjunkie/timetools\n", - "6 ---> https://github.com/biojava/biojava\n", - "3 ---> https://github.com/resal81/PyTopol\n", - "4 ---> https://github.com/digitallinguistics/word-aligner\n", - "3 ---> https://github.com/MITgcm/gcmfaces\n", - "3 ---> https://github.com/thompson318/scikit-surgery-sphere-fitting\n", - "4 ---> https://github.com/feelpp/book.feelpp.org\n", - "3 ---> https://github.com/brwnj/umitools\n", - "6 ---> https://github.com/IvanPaez/Proact\n", - "3 ---> https://github.com/poneill/formosa\n", - "3 ---> https://github.com/yabata/pyrenn\n", - "3 ---> https://github.com/TeamMacLean/redpatch\n", - "7 ---> https://github.com/pear2/Net_RouterOS\n", - "3 ---> https://github.com/rjw57/freenect2-python\n", - "3 ---> https://github.com/mvdh7/teos10\n", - "6 ---> https://github.com/SymbioticLab/tensorflow-salus\n", - "6 ---> https://github.com/LukasEttel/YoshikoStandalone\n", - "7 ---> https://github.com/JULIELab/MEmoLon\n", - "3 ---> https://github.com/fwitte/fluprodia\n", - "5 ---> https://github.com/openstreams/wflow\n", - "7 ---> https://github.com/sand-ci/TRACe-ExploRer-TRACER\n", - "6 ---> https://github.com/ISA-tools/NanoMaton\n", - "9 ---> https://github.com/DukeLearningInnovation/muser\n", - "6 ---> https://github.com/luosolo/OAiZer\n", - "3 ---> https://github.com/abrahamnunes/fitr\n", - "3 ---> https://github.com/jmbr/committor\n", - "3 ---> https://github.com/eEcoLiDAR/laserchicken\n", - "1 ---> https://github.com/feelpp/toolbox\n", - "3 ---> https://github.com/dfm/celerite\n", - "3 ---> https://github.com/buddhi1980/mandelbulber2\n", - "6 ---> https://github.com/DECLARE-Project/palladio-headless\n", - "5 ---> https://github.com/hudcondr/Digital-preservation---sports-trackers-for-Strava\n", - "3 ---> https://github.com/ultralytics/flickr_scraper\n", - "3 ---> https://github.com/ctuning/ck-env\n", - "1 ---> https://github.com/dyskurs/bel.esperanto\n", - "5 ---> https://github.com/lmjohns3/theanets\n", - "9 ---> https://github.com/fablabbcn/smartcitizen-kit-21\n", - "8 ---> https://github.com/eeditiones/shakespeare\n", - "7 ---> https://github.com/ivco19/epyRba\n", - "9 ---> https://github.com/Andros-Spica/ENE-Angourakis-et-al-2019\n", - "3 ---> https://github.com/rjfarmer/mesaplot\n", - "3 ---> https://github.com/tjof2/robustpca\n", - "3 ---> https://github.com/zerothi/sisl\n", - "3 ---> https://github.com/ChiaraBonacchi/MaryRose\n", - "6 ---> https://github.com/claudioatzori/dnet-gdup\n", - "3 ---> https://github.com/quantling/pyndl\n", - "3 ---> https://github.com/FAST-HEP/fast-flow\n", - "3 ---> https://github.com/pysat/pysatMissions\n", - "3 ---> https://github.com/kinnala/kirchhoff-nitsche-ex3\n", - "7 ---> https://github.com/GMOD/Apollo\n", - "6 ---> https://github.com/brics-dev/brics\n", - "6 ---> https://github.com/cismet/cids-custom-sudplan-linz\n", - "3 ---> https://github.com/theia-dev/molani\n", - "9 ---> https://github.com/planetserver/webclient-neo\n", - "3 ---> https://github.com/djgagne/lorenz_gan\n", - "3 ---> https://github.com/mmcauliffe/Conch-sounds\n", - "3 ---> https://github.com/pandas-dev/pandas\n", - "3 ---> https://github.com/dvav/dgeclust\n", - "3 ---> https://github.com/bjmorgan/vasppy\n", - "3 ---> https://github.com/has2k1/plotnine\n", - "3 ---> https://github.com/churchill-lab/gbrs\n", - "2 ---> https://github.com/salilab/imp\n", - "5 ---> https://github.com/NLeSC/eEcology-Annotation-WS\n", - "3 ---> https://github.com/pygeo/pycmbs\n", - "3 ---> https://github.com/Barski-lab/cwl-airflow\n", - "3 ---> https://github.com/prisae/fftlog\n", - "7 ---> https://github.com/DigitalPreservationTuWien2017/dp-task3\n", - "5 ---> https://github.com/biolink/biolink-api\n", - "5 ---> https://github.com/yadage/packtivity\n", - "3 ---> https://github.com/fact-project/aict-tools\n", - "3 ---> https://github.com/proycon/tscan\n", - "1 ---> https://github.com/mattam82/Coq-Equations\n", - "3 ---> https://github.com/datalad/datalad-osf\n", - "3 ---> https://github.com/paradoxysm/EMGanalysis\n", - "3 ---> https://github.com/dparks1134/DBB\n", - "3 ---> https://github.com/mikahama/haracat\n", - "3 ---> https://github.com/brainiak/brainiak\n", - "5 ---> https://github.com/AtkinsGroup/TransmissionPairs\n", - "5 ---> https://github.com/samapriya/spotifind\n", - "3 ---> https://github.com/jaj42/GraPhysio\n", - "3 ---> https://github.com/TUD-RST/pycartan\n", - "3 ---> https://github.com/ghammad/pyActigraphy\n", - "7 ---> https://github.com/ebmdatalab/fdaaa_trends\n", - "3 ---> https://github.com/python-visualization/folium\n", - "3 ---> https://github.com/didillysquat/SymPortal_framework\n", - "9 ---> https://github.com/galaxyproject/SARS-CoV-2\n", - "3 ---> https://github.com/SMTorg/smt\n", - "3 ---> https://github.com/bnpy/bnpy\n", - "3 ---> https://github.com/alielhassouni/heartsteps-gaussian-generative-model\n", - "3 ---> https://github.com/rileyhales/geomatics\n", - "9 ---> https://github.com/smart-facility/cognicity-server\n", - "5 ---> https://github.com/smarie/python-pytest-cases\n", - "3 ---> https://github.com/tum-camp/survival-support-vector-machine\n", - "5 ---> https://github.com/Capitains/MyCapytain\n", - "7 ---> https://github.com/rasmuse/subnational-p-budgets\n", - "3 ---> https://github.com/kimmo1019/Roundtrip\n", - "3 ---> https://github.com/nighres/nighres\n", - "3 ---> https://github.com/Swiss-Polar-Institute/wind-speed-correction\n", - "3 ---> https://github.com/rmarkello/abagen\n", - "8 ---> https://github.com/ApirsAL/GeoReVi\n", - "3 ---> https://github.com/mdolab/baseclasses\n", - "7 ---> https://github.com/dams-mcda/Dams-MCDA\n", - "3 ---> https://github.com/LinuNils/TMC_reproduced\n", - "3 ---> https://github.com/alan-turing-institute/TCPDBench\n", - "3 ---> https://github.com/churchill-lab/emase\n", - "3 ---> https://github.com/pyspec/pyspec\n", - "9 ---> https://github.com/FelixHenninger/lab.js\n", - "9 ---> https://github.com/sonjageorgievska/CClusTera\n", - "3 ---> https://github.com/mrkrd/cochlea\n", - "7 ---> https://github.com/juy/setting\n", - "3 ---> https://github.com/swartn/cmipdata\n", - "7 ---> https://github.com/simetenn/uncertainpy\n", - "9 ---> https://github.com/liminoid/liminoid-cli\n", - "9 ---> https://github.com/ben-aaron188/netanos\n", - "3 ---> https://github.com/timtroendle/urban-occupants-paper\n", - "5 ---> https://github.com/openshs/openshs\n", - "3 ---> https://github.com/silx-kit/silx\n", - "9 ---> https://github.com/Duke-GCB/iMADS\n", - "3 ---> https://github.com/ecuracosta/Modeling_the_spatiotemporal_control_of_cell_cycle_acceleration\n", - "5 ---> https://github.com/aoelen/Survey-table-importer\n", - "5 ---> https://github.com/nasa/RHEAS\n", - "3 ---> https://github.com/1313e/PRISM\n", - "3 ---> https://github.com/COSMIC-PopSynth/COSMIC\n", - "3 ---> https://github.com/Mykrobe-tools/mykrobe\n", - "5 ---> https://github.com/keflavich/APEX_CMZ_H2CO\n", - "6 ---> https://github.com/datacite/omniauth-orcid\n", - "3 ---> https://github.com/clelange/cds_paper_bot\n", - "3 ---> https://github.com/lifs-tools/pygoslin\n", - "3 ---> https://github.com/sblunt/orbitize\n", - "7 ---> https://github.com/holoviz/panel\n", - "2 ---> https://github.com/fiji/Trainable_Segmentation\n", - "3 ---> https://github.com/SymbioticLab/Salus\n", - "5 ---> https://github.com/uw-cryo/skysat_stereo\n", - "3 ---> https://github.com/NaturalHistoryMuseum/inselect\n", - "3 ---> https://github.com/ishomam/high-cycle-fatigue-tool\n", - "5 ---> https://github.com/gwu-libraries/TweetSets\n", - "2 ---> https://github.com/smart-facility/cognicity-reports\n", - "7 ---> https://github.com/randlab/geocv\n", - "6 ---> https://github.com/stain/profilechecker\n", - "3 ---> https://github.com/JasperBoom/caltha\n", - "4 ---> https://github.com/Karel-Kroeze/adaptive-hypothesis-grammars\n", - "9 ---> https://github.com/michael-pagan/Netflix-Analysis\n", - "3 ---> https://github.com/Auerilas/ecopy\n", - "3 ---> https://github.com/nadavbra/pwas\n", - "3 ---> https://github.com/orbingol/NURBS-Python\n", - "3 ---> https://github.com/MStarmans91/GISTRadiomics\n", - "3 ---> https://github.com/seankmartin/NeuroChaT\n", - "7 ---> https://github.com/gossi/docblock\n", - "6 ---> https://github.com/byu-vv-lab/mercury\n", - "3 ---> https://github.com/zfit/phasespace\n", - "3 ---> https://github.com/jswoboda/GeoDataPython\n", - "3 ---> https://github.com/datalad/datalad-neuroimaging\n", - "6 ---> https://github.com/schxslt/schxslt\n", - "3 ---> https://github.com/christianbrodbeck/Eelbrain\n", - "5 ---> https://github.com/VHellendoorn/ICLR20-Great\n", - "5 ---> https://github.com/kutaslab/merp2tbl\n", - "3 ---> https://github.com/pytransitions/transitions\n", - "3 ---> https://github.com/JoshuaDull/Text-Recognition-Introduction\n", - "6 ---> https://github.com/lejon/PartiallyCollapsedLDA\n", - "3 ---> https://github.com/Sulstice/global-chem\n", - "7 ---> https://github.com/glottolog/pyglottolog\n", - "3 ---> https://github.com/SebastianBocquet/MiraTitanHMFemulator\n", - "3 ---> https://github.com/LanguageMachines/PICCL\n", - "8 ---> https://github.com/CCMi-FIT/ontouml-csharp-utils\n", - "3 ---> https://github.com/j-i-l/pyAlluv\n", - "3 ---> https://github.com/ypriverol/cubascience\n", - "5 ---> https://github.com/pc2/HPCC_FPGA\n", - "3 ---> https://github.com/rrwick/Minipolish\n", - "5 ---> https://github.com/dftlibs/xcint\n", - "5 ---> https://github.com/pyvideo/pyvideo\n", - "5 ---> https://github.com/WIPACrepo/file_catalog\n", - "3 ---> https://github.com/Helveg/patch\n", - "7 ---> https://github.com/par12005/TPPS\n", - "5 ---> https://github.com/NixtonM/srsmp\n", - "4 ---> https://github.com/onnovalkering/brane\n", - "3 ---> https://github.com/pygae/clifford\n", - "3 ---> https://github.com/Ajax23/PoreMS\n", - "7 ---> https://github.com/Met4FoF/Code\n", - "3 ---> https://github.com/cwru-pat/macro_lightning\n", - "6 ---> https://github.com/phillima/asniffer\n", - "3 ---> https://github.com/timothydmorton/isochrones\n", - "3 ---> https://github.com/USEPA/IO-Model-Builder\n", - "3 ---> https://github.com/UF-OCR/ocr-summary-accrual\n", - "7 ---> https://github.com/toniher/mediawiki-BioDB\n", - "6 ---> https://github.com/ncsa/OA4MP\n", - "5 ---> https://github.com/jensleitloff/CNN-Sentinel\n", - "6 ---> https://github.com/meraki-analytics/orianna\n", - "8 ---> https://github.com/WormieCorp/Localization.AspNetCore.TagHelpers\n", - "3 ---> https://github.com/mikahama/natas\n", - "3 ---> https://github.com/meyer-lab/ps-growth-model\n", - "3 ---> https://github.com/Guillawme/localres\n", - "6 ---> https://github.com/saeg/asm-defuse\n", - "3 ---> https://github.com/alejandrobll/py-sphviewer\n", - "3 ---> https://github.com/BioSTEAMDevelopmentGroup/thermosteam\n", - "3 ---> https://github.com/TUDelft-CITG/OpenTNSim\n", - "3 ---> https://github.com/IceCubeOpenSource/flarestack\n", - "3 ---> https://github.com/timm/bnbad\n", - "3 ---> https://github.com/zhinst/zhinst-toolkit\n", - "5 ---> https://github.com/ngs-mstb/micgent\n", - "3 ---> https://github.com/rbardaji/mooda\n", - "5 ---> https://github.com/pytube/data\n", - "3 ---> https://github.com/VlachosGroup/pQUAD\n", - "3 ---> https://github.com/MicroPasts/maryrose-bell\n", - "3 ---> https://github.com/drs-m/mrtrix3\n", - "3 ---> https://github.com/eyurtsev/FlowCytometryTools\n", - "3 ---> https://github.com/mirnylab/cooler\n", - "3 ---> https://github.com/choderalab/alchemy\n", - "3 ---> https://github.com/Nikoleta-v3/meta-analysis-of-prisoners-dilemma-tournaments\n", - "7 ---> https://github.com/villevaara/dhum-topic-gutfin\n", - "3 ---> https://github.com/natashabatalha/picaso\n", - "3 ---> https://github.com/delira-dev/delira\n", - "7 ---> https://github.com/philip-mach/herd-immunity\n", - "9 ---> https://github.com/Alan-Cha/graphql-complexity-paper-artifact\n", - "3 ---> https://github.com/Becksteinlab/propkatraj\n", - "3 ---> https://github.com/3DGenomes/TADbit\n", - "3 ---> https://github.com/TariqAHassan/BioVida\n", - "3 ---> https://github.com/dxm447/stemtool\n", - "5 ---> https://github.com/Emma926/paradnn\n", - "3 ---> https://github.com/gcunhase/AnnotatedMV-PreProcessing\n", - "4 ---> https://github.com/liminoid/liminoid-mdx\n", - "3 ---> https://github.com/Ouranosinc/raven\n", - "5 ---> https://github.com/scities/patterns-of-segregation\n", - "3 ---> https://github.com/pkienzle/periodictable\n", - "4 ---> https://github.com/biowdl/expression-quantification\n", - "3 ---> https://github.com/dokester/BayesicFitting\n", - "7 ---> https://github.com/fphammerle/freesurfer-volume-reader\n", - "2 ---> https://github.com/fmalmeida/MpGAP\n", - "7 ---> https://github.com/collaborative-open-plant-omics/COPO\n", - "3 ---> https://github.com/OrderN/CONQUEST-release\n", - "3 ---> https://github.com/chemfiles/chemfiles\n", - "5 ---> https://github.com/camillescott/goetia\n", - "3 ---> https://github.com/Charestlab/pyrsa\n", - "3 ---> https://github.com/wannaphong/thai-ner\n", - "7 ---> https://github.com/cylc/cylc-flow\n", - "3 ---> https://github.com/krassowski/gsea-api\n", - "3 ---> https://github.com/UW-Hydro/RVIC\n", - "3 ---> https://github.com/stefanbringuier/NaivePolyCrys\n", - "3 ---> https://github.com/harmslab/pytc-gui\n", - "3 ---> https://github.com/maurov/xraysloth\n", - "3 ---> https://github.com/genicam/harvesters\n", - "3 ---> https://github.com/EC-Earth/ece2cmor3\n", - "9 ---> https://github.com/rodighiero/Affinity-Map\n", - "9 ---> https://github.com/trtcrd/SLIM\n", - "3 ---> https://github.com/MTG/SymbTr-extras\n", - "6 ---> https://github.com/midas-isg/object-serializer\n", - "5 ---> https://github.com/caltechlibrary/microarchiver\n", - "3 ---> https://github.com/UCL/scikit-surgeryvtk\n", - "3 ---> https://github.com/XanaduAI/thewalrus\n", - "3 ---> https://github.com/common-workflow-language/cwltool\n", - "5 ---> https://github.com/exoplanet-dev/exoplanet\n", - "7 ---> https://github.com/genenetwork/genenetwork2\n", - "3 ---> https://github.com/dftd4/dftd4\n", - "3 ---> https://github.com/hesselberthlab/modmap\n", - "3 ---> https://github.com/nkarasiak/MuseoToolBox\n", - "3 ---> https://github.com/timtroendle/pytus2000\n", - "3 ---> https://github.com/mdolab/multipoint\n", - "3 ---> https://github.com/matthiaskoenig/libsbgn-python\n", - "9 ---> https://github.com/mrc-ide/squire_js\n", - "6 ---> https://github.com/sotorrent/posthistory-extractor\n", - "3 ---> https://github.com/FAST-HEP/fast-plotter\n", - "3 ---> https://github.com/tresoldi/dafsa\n", - "3 ---> https://github.com/alphatwirl/alphatwirl\n", - "3 ---> https://github.com/nipy/heudiconv\n", - "6 ---> https://github.com/CESNET/perun\n", - "3 ---> https://github.com/RBhupi/PyREClass\n", - "3 ---> https://github.com/jrafolsr/opeg-green-solvent\n", - "3 ---> https://github.com/tomminylander/cloning-simulator\n", - "7 ---> https://github.com/moschlar/SAUCE\n", - "3 ---> https://github.com/astrom-tom/loots\n", - "9 ---> https://github.com/ericmandel/js9\n", - "3 ---> https://github.com/empymod/empymod\n", - "1 ---> https://github.com/MRChemSoft/mrcpp\n", - "3 ---> https://github.com/QuantumPackage/qp2\n", - "3 ---> https://github.com/johannfaouzi/pyts\n", - "5 ---> https://github.com/duncanmmacleod/ciecplib\n", - "5 ---> https://github.com/matthiasweiss/runtastic-strava-migrate\n", - "3 ---> https://github.com/carpyncho/carpyncho-py\n", - "4 ---> https://github.com/thomas-crane/networking-project\n", - "3 ---> https://github.com/bab2min/tomotopy\n", - "6 ---> https://github.com/ace-design/cosmic\n", - "3 ---> https://github.com/FaustinCarter/scraps\n", - "7 ---> https://github.com/tripal/tripal\n", - "3 ---> https://github.com/SCCAF/sccaf\n", - "3 ---> https://github.com/src-d/minhashcuda\n", - "6 ---> https://github.com/ebimodeling/ghgvc\n", - "3 ---> https://github.com/NERSC/pytokio\n", - "6 ---> https://github.com/KnowledgeCaptureAndDiscovery/OBA\n", - "3 ---> https://github.com/praveen-palanisamy/macad-gym\n", - "5 ---> https://github.com/dimazest/poultry\n", - "3 ---> https://github.com/waterlandlab/PReLIM\n", - "3 ---> https://github.com/felixriese/alpaca-processing\n", - "9 ---> https://github.com/ocean-data-qc/ocean-data-qc\n", - "3 ---> https://github.com/lmfit/lmfit-py\n", - "3 ---> https://github.com/masseyr/eehelper\n", - "6 ---> https://github.com/diging/virtual-spaces-2.0\n", - "3 ---> https://github.com/SISPO-developers/sispo\n", - "3 ---> https://github.com/rbutleriii/Clinotator\n", - "9 ---> https://github.com/sosy-lab/benchexec\n", - "3 ---> https://github.com/Nikronic/CoarseNet\n", - "3 ---> https://github.com/IDSIA/sacred\n", - "3 ---> https://github.com/GeoStat-Framework/GSTools\n", - "9 ---> https://github.com/camomile-project/camomile-server\n", - "3 ---> https://github.com/weecology/macroecotools\n", - "3 ---> https://github.com/nlesc-nano/AssertionLib\n", - "5 ---> https://github.com/pnnl/ripples\n", - "3 ---> https://github.com/dreamtools/dreamtools\n", - "3 ---> https://github.com/DeepRank/pdb2sql\n", - "9 ---> https://github.com/zebateira/rama-spotify\n", - "7 ---> https://github.com/qutech/qupulse\n", - "9 ---> https://github.com/eWaterCycle/Cesium-NcWMS\n", - "9 ---> https://github.com/CMLPlatform/ramascene\n", - "7 ---> https://github.com/filips123/ConfigWriter\n", - "9 ---> https://github.com/schimatos/schimatos.org\n", - "3 ---> https://github.com/ALSETLab/Nordic44-Nordpool\n", - "5 ---> https://github.com/NCAR/wrf_hydro_nwm_public\n", - "3 ---> https://github.com/frandorr/PROBA-V-3DWDSR\n", - "3 ---> https://github.com/chrisdembia/yeadon\n", - "5 ---> https://github.com/open-editions/corpus-joyce-ulysses-tei\n", - "1 ---> https://github.com/AAROC/hackfest-site\n", - "3 ---> https://github.com/amirsani/pySharpeRratio\n", - "3 ---> https://github.com/CINPLA/RippleNet\n", - "7 ---> https://github.com/karkirowle/oral_cancer_analysis\n", - "3 ---> https://github.com/brisskit-uol/onyx-install-procedures\n", - "3 ---> https://github.com/llondon6/nrutils_dev\n", - "9 ---> https://github.com/Andros-Spica/EAA2018_simulation\n", - "5 ---> https://github.com/GeneDx/phenopy\n", - "6 ---> https://github.com/andremann/MoniQ\n", - "7 ---> https://github.com/jupyter/nbgrader\n", - "3 ---> https://github.com/GeoStat-Framework/PyKrige\n", - "5 ---> https://github.com/orlade/microsimmer\n", - "6 ---> https://github.com/ideaconsult/appdomain\n", - "3 ---> https://github.com/irgroup/sigir2020-measure-reproducibility\n", - "3 ---> https://github.com/mikekestemont/chivalric_diversity\n", - "3 ---> https://github.com/CosmologyTaskForce/PhysicsResearchSurvivalManual\n", - "3 ---> https://github.com/dbischof90/optimal_extreme_value_portfolios\n", - "3 ---> https://github.com/ComputationalRadiationPhysics/picongpu\n", - "3 ---> https://github.com/DorianDepriester/MTEX2Gmsh\n", - "3 ---> https://github.com/MStarmans91/WORC\n", - "3 ---> https://github.com/colomoto/pyMaBoSS\n", - "3 ---> https://github.com/lktsui/carbon_xs_gui\n", - "3 ---> https://github.com/severin-lemaignan/pyrobots\n", - "7 ---> https://github.com/casmlab/twitter_user_collector\n", - "7 ---> https://github.com/QCoDeS/Qcodes\n", - "3 ---> https://github.com/kusterlab/MasterSpectrum\n", - "3 ---> https://github.com/TUW-GEO/smap_io\n", - "7 ---> https://github.com/neurodata/ndstore\n", - "3 ---> https://github.com/isi-nmr/brukerapi-python\n", - "3 ---> https://github.com/pysal/tobler\n", - "6 ---> https://github.com/mbdemoraes/moafs\n", - "5 ---> https://github.com/gbv/kos-registry\n", - "3 ---> https://github.com/callat-qcd/espressodb\n", - "3 ---> https://github.com/longavailable/adaptive-curvefitting\n", - "3 ---> https://github.com/LUMC/pytest-workflow\n", - "3 ---> https://github.com/cta-observatory/ctapipe\n", - "3 ---> https://github.com/SystemsGenetics/pynome\n", - "3 ---> https://github.com/openvax/mhctools\n", - "6 ---> https://github.com/alexvoronov/geonetworking\n", - "3 ---> https://github.com/Dioptas/Dioptas\n", - "5 ---> https://github.com/shbhuk/barycorrpy\n", - "3 ---> https://github.com/vanheeringen-lab/ANANSE\n", - "3 ---> https://github.com/mazlo/lodcc\n", - "9 ---> https://github.com/LDflex/LDflex-Comunica\n", - "6 ---> https://github.com/nicysneiros/SemMatcher\n", - "3 ---> https://github.com/pace-gt/PACE-ProvBench\n", - "3 ---> https://github.com/spirali/rsds\n", - "5 ---> https://github.com/UNCG-DAISY/psi-collect\n", - "3 ---> https://github.com/gmbrandt/xwavecal\n", - "3 ---> https://github.com/Fuminides/Fancy_aggregations\n", - "3 ---> https://github.com/rootpy/rootpy\n", - "7 ---> https://github.com/Social-Evolution-and-Behavior/anTraX\n", - "3 ---> https://github.com/seasite-project/Offsite\n", - "3 ---> https://github.com/emsec/hal\n", - "5 ---> https://github.com/SolarArbiter/solarforecastarbiter-api\n", - "7 ---> https://github.com/VIDA-NYU/reproserver\n", - "3 ---> https://github.com/Crompulence/cpl-library\n", - "3 ---> https://github.com/KeplerGO/kadenza\n", - "3 ---> https://github.com/MarinManuel/Huh_et_al_2020\n", - "3 ---> https://github.com/JasperHG90/sleepsimR-documentation\n", - "4 ---> https://github.com/OPEnSLab-OSU/SlideSentinel\n", - "7 ---> https://github.com/TeamRegio/EpiRegioDB\n", - "7 ---> https://github.com/Aetf/tf_benchmarks\n", - "5 ---> https://github.com/HypothesisWorks/hypothesis\n", - "3 ---> https://github.com/astrom-tom/catscii\n", - "3 ---> https://github.com/NESTCollaboration/nestpy\n", - "3 ---> https://github.com/remyleone/makesense\n", - "3 ---> https://github.com/OSOceanAcoustics/echopype\n", - "3 ---> https://github.com/California-Planet-Search/radvel\n", - "5 ---> https://github.com/vangorden/OUR2D2\n", - "3 ---> https://github.com/jpvantassel/swprepost\n", - "3 ---> https://github.com/SanPen/GridCal\n", - "7 ---> https://github.com/INVEST-flagship/Randomized-picture-rating-tool-for-surveys\n", - "3 ---> https://github.com/BioSTEAMDevelopmentGroup/biosteam\n", - "3 ---> https://github.com/o2r-project/geoextent\n", - "6 ---> https://github.com/locked-fg/JFeatureLib\n", - "3 ---> https://github.com/bastula/dicompyler\n", - "9 ---> https://github.com/research-software-directory/research-software-directory\n", - "3 ---> https://github.com/mast-group/OpenVocabCodeNLM\n", - "3 ---> https://github.com/SystemsGenetics/KINC\n", - "3 ---> https://github.com/darothen/py-mie\n", - "3 ---> https://github.com/PySEE/home\n", - "3 ---> https://github.com/mfherbst/cvs-relaxation-scripts\n", - "5 ---> https://github.com/ctsit/research-subject-mapper\n", - "7 ---> https://github.com/havok2063/boolean_parser\n", - "3 ---> https://github.com/DTUWindEnergy/TOPFARM\n", - "3 ---> https://github.com/halfak/deltas\n", - "3 ---> https://github.com/srmnitc/pyscal\n", - "3 ---> https://github.com/Parallel-in-Time/pySDC\n", - "3 ---> https://github.com/kjappelbaum/permutationplotter\n", - "5 ---> https://github.com/ESMValGroup/ESMValTool\n", - "8 ---> https://github.com/lacinoire/chunk-retrieval-replication\n", - "3 ---> https://github.com/rahul-gohil/GFKT\n", - "4 ---> https://github.com/Edirom/WeGA-WebApp\n", - "7 ---> https://github.com/NYUCCL/psiTurk\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "6 ---> https://github.com/SP7-Ritmare/EDI-NG_server\n", - "3 ---> https://github.com/abhi1693/yii2-enum\n", - "6 ---> https://github.com/rinde/pdptw-dataset-generator\n", - "7 ---> https://github.com/CambridgeSemiticsLab/BH_time_collocations\n", - "9 ---> https://github.com/erwinkendo/polaruob\n", - "6 ---> https://github.com/geneontology/obographs\n", - "8 ---> https://github.com/speckleworks/SpeckleCore\n", - "3 ---> https://github.com/rjw57/videosequence\n", - "3 ---> https://github.com/tylerjereddy/diffusion_analysis_MD_simulations\n", - "3 ---> https://github.com/luphysics/PyMODA\n", - "3 ---> https://github.com/NatLibFi/Annif\n", - "5 ---> https://github.com/adbar/trafilatura\n", - "3 ---> https://github.com/ForeverZyh/DEBAR\n", - "3 ---> https://github.com/danchubb/CanVar\n", - "3 ---> https://github.com/JonathonMSmith/growin\n", - "3 ---> https://github.com/SoftwareDevEngResearch/flexWecDesignOpt\n", - "3 ---> https://github.com/RubenImhoff/Large_Sample_Nowcasting_Evaluation\n", - "6 ---> https://github.com/TreeCmp/TreeCmpWEB\n", - "3 ---> https://github.com/TaufiqHassan/acccmip6\n", - "3 ---> https://github.com/clsb/miles\n", - "3 ---> https://github.com/kip-hart/MicroStructPy\n", - "3 ---> https://github.com/hls-fpga-machine-learning/hls4ml\n", - "4 ---> https://github.com/biowdl/BamMetrics\n", - "3 ---> https://github.com/cwida/duckdb\n", - "3 ---> https://github.com/FREVA-CLINT/climatereconstructionAI\n", - "8 ---> https://github.com/CESEL/RelationalGit\n", - "3 ---> https://github.com/ComplexNetTSP/Simulation-Files-for-Large-Scale-Model-for-Information-Dissemination-with-Device-to-Device\n", - "3 ---> https://github.com/tresoldi/distfeat\n", - "3 ---> https://github.com/ceholden/TSTools\n", - "3 ---> https://github.com/riga/law\n", - "3 ---> https://github.com/castelao/seabird\n", - "8 ---> https://github.com/MrShoenel/git-density\n", - "5 ---> https://github.com/ufz/ogs-container-maker\n", - "3 ---> https://github.com/ADicksonLab/mastic\n", - "3 ---> https://github.com/rasbt/mlxtend\n", - "6 ---> https://github.com/VIDA-NYU/domain-discovery-d4\n", - "3 ---> https://github.com/SUNCAT-Center/CatLearn\n", - "3 ---> https://github.com/fastread/src\n", - "7 ---> https://github.com/lanecodes/cymod\n", - "3 ---> https://github.com/mancellin/capytaine\n", - "2 ---> https://github.com/tferr/Scripts\n", - "3 ---> https://github.com/ostwalprasad/LGNpy\n", - "5 ---> https://github.com/AstraZeneca-NGS/simple_sv_annotation\n", - "9 ---> https://github.com/sept08/WebToys\n", - "3 ---> https://github.com/JiaweiZhuang/ipm_util\n", - "3 ---> https://github.com/SynthSys/pyOmeroUpload\n", - "3 ---> https://github.com/adamewing/tldr\n", - "4 ---> https://github.com/JustinGOSSES/wellio.js\n", - "3 ---> https://github.com/purdue-cap/DryadSynth\n", - "8 ---> https://github.com/ph463/Gygax\n", - "6 ---> https://github.com/mayconbordin/cdr-gen\n", - "3 ---> https://github.com/Axelrod-Python/Axelrod\n", - "3 ---> https://github.com/MIPT-Oulu/solt\n", - "5 ---> https://github.com/hibernator11/notebook-texts-metadata\n", - "6 ---> https://github.com/nismod/transport\n", - "3 ---> https://github.com/scikit-hep/uproot\n", - "3 ---> https://github.com/alan-turing-institute/CROP\n", - "3 ---> https://github.com/cmusatyalab/openface\n", - "6 ---> https://github.com/blahah/transrate\n", - "3 ---> https://github.com/1313e/CMasher\n", - "3 ---> https://github.com/stonerlab/Stoner-PythonCode\n", - "3 ---> https://github.com/netneurolab/markello_ppmisnf\n", - "3 ---> https://github.com/jobovy/galpy\n", - "3 ---> https://github.com/LABSN/tdtpy\n", - "3 ---> https://github.com/tknapen/FIRDeconvolution\n", - "7 ---> https://github.com/jongablop/MinervaLab\n", - "4 ---> https://github.com/clarity-h2020/data-management-plan\n", - "3 ---> https://github.com/kashyapchhatbar/CLASHChimeras\n", - "5 ---> https://github.com/pzeidler89/MUSEpack\n", - "3 ---> https://github.com/tofaquih/imputation_of_untargeted_metabolites\n", - "3 ---> https://github.com/sebastientourbier/multiscalebrainparcellator\n", - "3 ---> https://github.com/hammurabi-dev/hammurabiX\n", - "9 ---> https://github.com/comses/comses.net\n", - "3 ---> https://github.com/ultralytics/yolov3\n", - "7 ---> https://github.com/clld/concepticon\n", - "3 ---> https://github.com/epigen/cll-chromatin\n", - "1 ---> https://github.com/sagemathinc/cocalc_tutorial\n", - "3 ---> https://github.com/paddy-seismic/retreat\n", - "3 ---> https://github.com/geoschem/gcpy\n", - "3 ---> https://github.com/NickSwainston/mwa_search\n", - "1 ---> https://github.com/dhimmel/gene-ontology\n", - "3 ---> https://github.com/lmarti/nsgaiii\n", - "6 ---> https://github.com/sbmlteam/jsbml\n", - "3 ---> https://github.com/ankahira/chainermnx\n", - "3 ---> https://github.com/CalebBell/fpi\n", - "3 ---> https://github.com/gplepage/corrfitter\n", - "5 ---> https://github.com/ADicksonLab/geomm\n", - "3 ---> https://github.com/pycroscopy/pycroscopy\n", - "3 ---> https://github.com/bioasp/iggy\n", - "3 ---> https://github.com/TUW-GEO/smos\n", - "3 ---> https://github.com/SynthSys/OMEROConnect\n", - "6 ---> https://github.com/jaclaes/SPMM2015\n", - "7 ---> https://github.com/FNNDSC/ChRIS_store\n", - "3 ---> https://github.com/hpparvi/KeplerJC\n", - "3 ---> https://github.com/neurodata/graspy\n", - "3 ---> https://github.com/bast/polygons\n", - "3 ---> https://github.com/MatthewReid854/reliability\n", - "3 ---> https://github.com/greenelab/DAPS\n", - "3 ---> https://github.com/merijn/Belewitte\n", - "1 ---> https://github.com/HexaPlant/pixeldragon\n", - "3 ---> https://github.com/sertansenturk/ahenkidentifier\n", - "3 ---> https://github.com/bss116/citygenerator\n", - "3 ---> https://github.com/jeffbass/imagezmq\n", - "9 ---> https://github.com/njss/Sense.me\n", - "3 ---> https://github.com/materialsvirtuallab/pyhull\n", - "3 ---> https://github.com/alexnaoki/LHC_Hidroweb\n", - "5 ---> https://github.com/UCATLAS/xAODAnaHelpers\n", - "3 ---> https://github.com/rhiever/MarkovNetwork\n", - "3 ---> https://github.com/dvalters/caesarplotlib\n", - "3 ---> https://github.com/pyproj4/pyproj\n", - "7 ---> https://github.com/clld/csd\n", - "7 ---> https://github.com/colbyj/bride-of-frankensystem\n", - "3 ---> https://github.com/SainsburyWellcomeCentre/cellfinder\n", - "3 ---> https://github.com/pySRURGS/pyGOURGS\n", - "7 ---> https://github.com/acdh-oeaw/4dpuzzle\n", - "3 ---> https://github.com/kinnala/kirchhoff-nitsche-ex2\n", - "3 ---> https://github.com/petl-developers/petlx\n", - "3 ---> https://github.com/mmcauliffe/Pyraat\n", - "6 ---> https://github.com/plt-tud/r43ples\n", - "3 ---> https://github.com/EducationalTestingService/skll\n", - "3 ---> https://github.com/RadioAstronomySoftwareGroup/pyuvdata\n", - "3 ---> https://github.com/jfnavarro/st_pipeline\n", - "3 ---> https://github.com/Neuroinflab/PyMICE\n", - "1 ---> https://github.com/pythoninchemistry/intro_python_chemists\n", - "3 ---> https://github.com/OpenPIV/openpiv-python\n", - "6 ---> https://github.com/mbari-media-management/vcr4j\n", - "3 ---> https://github.com/dpizetta/wavy\n", - "7 ---> https://github.com/arman2/equal_public\n", - "3 ---> https://github.com/gher-ulg/Diva-Workshops\n", - "3 ---> https://github.com/pydata/xarray\n", - "3 ---> https://github.com/transientlunatic/elk\n", - "3 ---> https://github.com/qcscine/readuct\n", - "7 ---> https://github.com/RDFLib/pymicrodata\n", - "3 ---> https://github.com/sbmlteam/libCombine\n", - "9 ---> https://github.com/encompasslabs/mcsdss-watermark\n", - "3 ---> https://github.com/OGGM/oggm\n", - "5 ---> https://github.com/tdwg/dwc\n", - "3 ---> https://github.com/NeuralEnsemble/elephant\n", - "3 ---> https://github.com/agporto/ml-morph\n", - "3 ---> https://github.com/SeismicSource/sourcespec\n", - "3 ---> https://github.com/tensorwerk/hangar-py\n", - "3 ---> https://github.com/virgesmith/humanleague\n", - "3 ---> https://github.com/lebedov/scikit-cuda\n", - "6 ---> https://github.com/mbari-media-management/vars-query\n", - "9 ---> https://github.com/jpdias/node-red-contrib-self-healing\n", - "3 ---> https://github.com/snastase/isc-tutorial\n", - "2 ---> https://github.com/smart-facility/cognicity-reports-qlue\n", - "3 ---> https://github.com/simpeg-research/kang-2019-3D-aem\n", - "3 ---> https://github.com/appetrosyan/LCDM-NS\n", - "5 ---> https://github.com/asergiobranco/ArchNet\n", - "3 ---> https://github.com/DistrictDataLabs/yellowbrick\n", - "5 ---> https://github.com/enolfc/d4science-galaxy-authn\n", - "3 ---> https://github.com/pyGSTio/pyGSTi\n", - "2 ---> https://github.com/smart-facility/cognicity-reports-floodgauge\n", - "3 ---> https://github.com/miguelfp/ibmos\n", - "3 ---> https://github.com/DanPorter/Dans_Diffraction\n", - "3 ---> https://github.com/CexyNature/Crabspy\n", - "3 ---> https://github.com/ismrmrd/ismrmrd-python\n", - "3 ---> https://github.com/kkmann/sample-size-calculation-under-uncertainty\n", - "3 ---> https://github.com/kingjr/ecoggui\n", - "3 ---> https://github.com/OP2/PyOP2\n", - "5 ---> https://github.com/cgat-developers/cgat-core\n", - "3 ---> https://github.com/pnlbwh/luigi-pnlpipe\n", - "9 ---> https://github.com/dzhw/metadatamanagement\n", - "1 ---> https://github.com/mastrogeppetto/OCCI4IOT\n", - "3 ---> https://github.com/scivision/fortran-submodule\n", - "3 ---> https://github.com/librosa/librosa\n", - "3 ---> https://github.com/morganjwilliams/pyrolite\n", - "9 ---> https://github.com/planetserver/ps2-www-client\n", - "3 ---> https://github.com/MDAnalysis/RotamerConvolveMD\n", - "3 ---> https://github.com/psu-inversion/atmospheric-inverse-methods-for-flux-optimization\n", - "5 ---> https://github.com/enolfc/d4scienceauth\n", - "3 ---> https://github.com/yoavram/Sid\n", - "6 ---> https://github.com/ISOBlue/isoblue-android\n", - "3 ---> https://github.com/bio2bel/bio2bel\n", - "5 ---> https://github.com/CDAT/ci-bots\n", - "9 ---> https://github.com/ropensci/stplanr\n", - "9 ---> https://github.com/digitallinguistics/app\n", - "7 ---> https://github.com/blokhin/genealogical-trees\n", - "3 ---> https://github.com/hannes-brt/hebel\n", - "3 ---> https://github.com/mcs07/CIRpy\n", - "4 ---> https://github.com/tobysmith568/Generate-License-File\n", - "7 ---> https://github.com/HBLL-Collection-Development/omeka-s-any-cloud\n", - "7 ---> https://github.com/dgnest/foottrial\n", - "3 ---> https://github.com/neuropsychology/NeuroKit\n", - "3 ---> https://github.com/makgyver/rectorch\n", - "3 ---> https://github.com/Continvvm/continuum\n", - "3 ---> https://github.com/mdolab/pyhyp\n", - "3 ---> https://github.com/timothydmorton/exosyspop\n", - "3 ---> https://github.com/WGUNDERWOOD/motifcluster\n", - "6 ---> https://github.com/egonw/ops4j\n", - "3 ---> https://github.com/SebBuchelt/georef_webcam\n", - "5 ---> https://github.com/dimazest/google-ngram-downloader\n", - "3 ---> https://github.com/mmadsen/seriationct\n", - "2 ---> https://github.com/thorstenwagner/ij-shape-smoothing\n", - "3 ---> https://github.com/prisae/pyfftlog\n", - "3 ---> https://github.com/koszullab/hicstuff\n", - "3 ---> https://github.com/TUW-GEO/gldas\n", - "3 ---> https://github.com/martinfleis/momepy\n", - "6 ---> https://github.com/alamar/microbe\n", - "3 ---> https://github.com/romain-jacob/TTW-Artifacts\n", - "9 ---> https://github.com/netsage-project/netsage-pipeline\n", - "3 ---> https://github.com/krischer/pyflex\n", - "7 ---> https://github.com/cheeseywhiz/cheeseywhiz\n", - "2 ---> https://github.com/NeuPhysics/neutrino\n", - "1 ---> https://github.com/astrojs/fitsjs\n", - "6 ---> https://github.com/arbox/shalmaneser\n", - "5 ---> https://github.com/keflavich/pyradex\n", - "3 ---> https://github.com/alphatwirl/mantichora\n", - "3 ---> https://github.com/pysal/spreg\n", - "3 ---> https://github.com/dmey/minimal-dx\n", - "3 ---> https://github.com/dftlibs/xcauto\n", - "5 ---> https://github.com/kizniche/Mycodo\n", - "3 ---> https://github.com/lmcinnes/umap\n", - "3 ---> https://github.com/flowersteam/explauto\n", - "3 ---> https://github.com/malkayo/AiRL\n", - "9 ---> https://github.com/liminoid/liminoid-js\n", - "3 ---> https://github.com/llambourne/isoenzymes_flux_balance\n", - "5 ---> https://github.com/davidhin/stringmatching\n", - "3 ---> https://github.com/maxplanck-ie/snakepipes\n", - "3 ---> https://github.com/titipata/pubmed_parser\n", - "3 ---> https://github.com/inodb/revmut\n", - "3 ---> https://github.com/LASER-UMASS/CausalTesting_ICSE20\n", - "3 ---> https://github.com/bcbio/bcbio-nextgen\n", - "3 ---> https://github.com/coin-or/CyLP\n", - "3 ---> https://github.com/SciTools/cartopy\n", - "9 ---> https://github.com/Jollyfant/PMAG2\n", - "3 ---> https://github.com/AlBi-HHU/homo-edit-distance\n", - "3 ---> https://github.com/atmtools/typhon\n", - "3 ---> https://github.com/benvanwerkhoven/kernel_tuner\n", - "6 ---> https://github.com/myGrid/ruby-ro-bundle\n", - "1 ---> https://github.com/juoceano/lecture_figures\n", - "3 ---> https://github.com/briandconnelly/nicheconstruct\n", - "3 ---> https://github.com/deeptools/HiCExplorer\n", - "7 ---> https://github.com/mmalekzadeh/privacy-preserving-bandits\n", - "6 ---> https://github.com/jjnp/dss-ue2\n", - "3 ---> https://github.com/jsh9/PySeismoSoil\n", - "3 ---> https://github.com/wiheto/teneto\n", - "3 ---> https://github.com/CamDavidsonPilon/lifetimes\n", - "3 ---> https://github.com/meelgroup/baital\n", - "5 ---> https://github.com/harnesscloud/bqwm\n", - "3 ---> https://github.com/apcamargo/tspex\n", - "3 ---> https://github.com/a-slide/pycoMeth\n", - "3 ---> https://github.com/RoberAgro/nurbspy\n", - "3 ---> https://github.com/ralph-group/pymeasure\n", - "7 ---> https://github.com/TrapperTeam/Trapper\n", - "3 ---> https://github.com/sertansenturk/tomato\n", - "3 ---> https://github.com/oscarbranson/carbspec\n", - "9 ---> https://github.com/rodighiero/AIUCD2020\n", - "3 ---> https://github.com/michaelaye/planet4\n", - "3 ---> https://github.com/mcs07/PubChemPy\n", - "3 ---> https://github.com/kyleniemeyer/mech_util\n", - "3 ---> https://github.com/nathandunn/galaxy-monarch-integration\n", - "3 ---> https://github.com/pyoceans/python-ctd\n", - "3 ---> https://github.com/sebhenri/HyWF\n", - "7 ---> https://github.com/MatthijsKaminski/AnalyzeTool\n", - "5 ---> https://github.com/mila-iqia/blocks\n", - "3 ---> https://github.com/vnmabus/dcor\n", - "3 ---> https://github.com/ejhumphrey/optimus\n", - "3 ---> https://github.com/Kaleidophon/token2index\n", - "5 ---> https://github.com/gchrupala/visually-grounded-speech\n", - "3 ---> https://github.com/dhhagan/opcsim\n", - "3 ---> https://github.com/kipoi/kipoiseq\n", - "3 ---> https://github.com/pnlbwh/freesurfer-analysis\n", - "3 ---> https://github.com/mpastell/CowLog\n", - "6 ---> https://github.com/TGAC/RAMPART\n", - "6 ---> https://github.com/repseqio/repseqio\n", - "8 ---> https://github.com/liminoid/liminoid\n", - "0 ---> https://github.com/SotosTsepe/invenio-madmp\n", - "6 ---> https://github.com/russianwordnet/yarn\n", - "3 ---> https://github.com/ihmeuw/vivarium_conic_lsff\n", - "3 ---> https://github.com/CMA-ES/pycma\n", - "3 ---> https://github.com/FAST-HEP/fast-curator\n", - "3 ---> https://github.com/erdc/AutoRoutePy\n", - "3 ---> https://github.com/kjappelbaum/oximachinetool\n", - "6 ---> https://github.com/ameyaKetkar/SimpleTypeChangeMiner\n", - "5 ---> https://github.com/rvhonorato/cazy-parser\n", - "3 ---> https://github.com/CrystalMei/ProvBuild\n", - "7 ---> https://github.com/stoqs/stoqs\n", - "3 ---> https://github.com/jamesrhester/PyFormatTransformer\n", - "3 ---> https://github.com/mirnylab/cooltools\n", - "3 ---> https://github.com/maxibor/adrsm\n", - "2 ---> https://github.com/thorstenwagner/ij-shape-filter\n", - "5 ---> https://github.com/cemac/SWIFTDB\n", - "3 ---> https://github.com/minimalparts/nonce2vec\n", - "3 ---> https://github.com/sepandhaghighi/pyrgg\n", - "8 ---> https://github.com/xBimTeam/XbimEssentials\n", - "9 ---> https://github.com/bionode/bionode-fasta\n", - "4 ---> https://github.com/chembl/FPSim2\n", - "7 ---> https://github.com/WIPACrepo/iceprod\n", - "3 ---> https://github.com/smarsland/AviaNZ\n", - "9 ---> https://github.com/chasemc/IDBacApp\n", - "7 ---> https://github.com/metomi/rose\n", - "3 ---> https://github.com/dune-community/dune-gdt\n", - "3 ---> https://github.com/LEAF-BoiseState/janus\n", - "3 ---> https://github.com/mmbajo/PROBA-V\n", - "3 ---> https://github.com/koszullab/instaGRAAL\n", - "3 ---> https://github.com/clincolnoz/WorldBank_WDI_Visulization\n", - "6 ---> https://github.com/lifs-tools/jmzTab-m-webapp\n", - "3 ---> https://github.com/thieunguyen5991/mealpy\n", - "3 ---> https://github.com/sepandhaghighi/pycm\n", - "9 ---> https://github.com/fruchtfolge/client\n", - "9 ---> https://github.com/newcastle-living-lab/living-lab\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "3 ---> https://github.com/waqasbhatti/astrobase\n", - "3 ---> https://github.com/TECH-UB-24-Programming-DS-Spring-2020/notebooks\n", - "3 ---> https://github.com/hidrokit/hidrokit\n", - "3 ---> https://github.com/biosustain/gnomic\n", - "3 ---> https://github.com/digicademy/AskMoreXtension\n", - "3 ---> https://github.com/jnicoleoliveira/SPECData\n", - "3 ---> https://github.com/glotzerlab/signac-flow\n", - "5 ---> https://github.com/erdc/spt_compute\n", - "3 ---> https://github.com/maayane/PhotoManip\n", - "9 ---> https://github.com/ufbmi/mdc_tree\n", - "3 ---> https://github.com/VlachosGroup/vunits\n", - "3 ---> https://github.com/rhshah/iCallSV\n", - "3 ---> https://github.com/widdowquinn/SI_Holmes_etal_2020\n", - "3 ---> https://github.com/vemomoto/vemomoto\n", - "5 ---> https://github.com/nschloe/tikzplotlib\n", - "7 ---> https://github.com/msmbuilder/msmbuilder\n", - "3 ---> https://github.com/dmolina/shadeils\n", - "5 ---> https://github.com/spacetelescope/mirage\n", - "5 ---> https://github.com/dpla/ingestion\n", - "9 ---> https://github.com/bigbadcrad/PUFFIN\n", - "3 ---> https://github.com/Ouranosinc/xclim\n", - "5 ---> https://github.com/erdc/spt_dataset_manager\n", - "7 ---> https://github.com/jhrmnn/pyberny\n", - "7 ---> https://github.com/scharom16/evolutionary-nas-with-performance-estimation\n", - "3 ---> https://github.com/timm/shape\n", - "3 ---> https://github.com/JulianKarlBauer/mechkit\n", - "5 ---> https://github.com/gher-ulg/DINCAE\n", - "9 ---> https://github.com/eweitz/ideogram\n", - "6 ---> https://github.com/rinde/vanLon17-GPEM-code\n", - "7 ---> https://github.com/NESCent/dplace\n", - "3 ---> https://github.com/kkmann/optimal-binary-two-stage-designs\n", - "3 ---> https://github.com/pyoceans/python-oceans\n", - "3 ---> https://github.com/DiamondLightSource/Opt-ID\n", - "3 ---> https://github.com/salvadorgarciamunoz/kipet\n", - "3 ---> https://github.com/JasperHG90/sleepsimR-api\n", - "3 ---> https://github.com/njsmith/zs\n", - "6 ---> https://github.com/cicirello/JavaPermutationTools\n", - "3 ---> https://github.com/AndrewAnnex/SpiceyPy\n", - "6 ---> https://github.com/CESNET/perun-mitreid\n", - "3 ---> https://github.com/choderalab/itctools\n", - "7 ---> https://github.com/vpasumarthi/PyCD\n", - "6 ---> https://github.com/jiemakel/seco-hfst\n", - "4 ---> https://github.com/digitallinguistics/spec\n", - "3 ---> https://github.com/philippkraft/cmf\n", - "8 ---> https://github.com/fo-am/mongoose-2000\n", - "3 ---> https://github.com/snowformatics/macrobot\n", - "9 ---> https://github.com/kach/nearley\n", - "9 ---> https://github.com/direwolf/direwolf-app\n", - "6 ---> https://github.com/infraling/atomic\n", - "5 ---> https://github.com/samapriya/plantpy\n", - "3 ---> https://github.com/KatyBrown/CIAlign\n", - "3 ---> https://github.com/iteal/wormpose\n", - "3 ---> https://github.com/felixriese/susi\n", - "5 ---> https://github.com/proycon/codemetapy\n", - "3 ---> https://github.com/eblur/dust\n", - "3 ---> https://github.com/BioMoDeL/aesop\n", - "3 ---> https://github.com/bashtage/randomgen\n", - "3 ---> https://github.com/UT-CHG/BET\n", - "9 ---> https://github.com/bids-standard/bids-validator\n", - "7 ---> https://github.com/concepticon/pynorare\n", - "3 ---> https://github.com/nipy/PySurfer\n", - "3 ---> https://github.com/jeffreyruffolo/lamprey_rs_neuron_parameter_exploration\n", - "5 ---> https://github.com/harnesscloud/irm-nova\n", - "3 ---> https://github.com/obachem/kmc2\n", - "4 ---> https://github.com/biowdl/gatk-preprocess\n", - "3 ---> https://github.com/beOn/cili\n", - "9 ---> https://github.com/trendscenter/coinstac\n", - "7 ---> https://github.com/kuechenrole/antarctic_melting\n", - "3 ---> https://github.com/saketkc/moca\n", - "3 ---> https://github.com/PBR/MQ2\n", - "6 ---> https://github.com/ijpb/MorphoLibJ\n", - "3 ---> https://github.com/tesera/pygypsy\n", - "3 ---> https://github.com/ml-evs/ilustrado\n", - "3 ---> https://github.com/DeepRank/iScore\n", - "3 ---> https://github.com/fastscape-lem/fastscape\n", - "6 ---> https://github.com/yogo/sapphire\n", - "3 ---> https://github.com/BlueBrain/MorphIO\n", - "3 ---> https://github.com/bashtage/arch\n", - "3 ---> https://github.com/vsoch/TtoZ\n", - "3 ---> https://github.com/miurahr/pykakasi\n", - "3 ---> https://github.com/dalejn/cleanBib\n", - "3 ---> https://github.com/fail2ban/fail2ban\n", - "3 ---> https://github.com/mih/gumpdata\n", - "3 ---> https://github.com/compas-dev/compas_fab\n", - "3 ---> https://github.com/steelelab-delft/stlab\n", - "3 ---> https://github.com/mozillazg/python-pinyin\n", - "3 ---> https://github.com/aestimosolver/aestimo\n", - "3 ---> https://github.com/PyMVPA/PyMVPA\n", - "3 ---> https://github.com/eljost/pysisyphus\n", - "3 ---> https://github.com/mikahama/murre\n", - "9 ---> https://github.com/sbalci/clinicopathological\n", - "6 ---> https://github.com/arselzer/HTQueryOptimizer\n", - "3 ---> https://github.com/phenomecentre/ISTOCSY\n", - "5 ---> https://github.com/BerkeleyPhotonicsGenerator/BPG\n", - "3 ---> https://github.com/shiny-data-scientist/webscrap_pract_1\n", - "5 ---> https://github.com/GeoscienceAustralia/tcrm\n", - "3 ---> https://github.com/dputhier/pygtftk\n", - "3 ---> https://github.com/michaelaye/iuvs\n", - "3 ---> https://github.com/discsim/frank\n", - "3 ---> https://github.com/dguijo/TSOC\n" - ] - } - ], - "source": [ - "# make inference (cluster) for each repo\n", - "print('inference :')\n", - "topic_dict = {}\n", - "for e, values in enumerate(lda_model.inference(corpus)[0]):\n", - " topic_val = 0\n", - " topic_id = 0\n", - " for tid, val in enumerate(values):\n", - " if val > topic_val:\n", - " topic_val = val\n", - " topic_id = tid\n", - " \n", - " topic_dict[topic_id] = topic_dict.get(topic_id,[])\n", - " topic_dict[topic_id].append(rep_list[e])\n", - " print(topic_id, '--->', rep_list[e])" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "{3: ['https://github.com/AgriculturalModelExchangeInitiative/Crop2ML',\n", - " 'https://github.com/hlgirard/CrystalML',\n", - " 'https://github.com/houghb/ligpy',\n", - " 'https://github.com/oschwengers/referenceseeker',\n", - " 'https://github.com/LPDI-EPFL/trivalent_cocktail',\n", - " 'https://github.com/CIRA-Pulsars-and-Transients-Group/vcstools',\n", - " 'https://github.com/usc-isi-i2/kgtk',\n", - " 'https://github.com/garciagenrique/template_project_escape',\n", - " 'https://github.com/williamjameshandley/anesthetic',\n", - " 'https://github.com/yardencsGitHub/tweetynet',\n", - " 'https://github.com/jagalindo/A-Python-QX-implementation',\n", - " 'https://github.com/jbkinney/mavenn',\n", - " 'https://github.com/GeoCode-polymtl/Seis_float16',\n", - " 'https://github.com/sebp/scikit-survival',\n", - " 'https://github.com/Biophotonics-COMI/flimview',\n", - " 'https://github.com/joshspeagle/brutus',\n", - " 'https://github.com/TDAmeritrade/stumpy',\n", - " 'https://github.com/habi/acinar-analysis',\n", - " 'https://github.com/mbernste/hypothesis-driven-SRA-queries',\n", - " 'https://github.com/maxscheurer/cppe',\n", - " 'https://github.com/Sung-Huan/ANNOgesic',\n", - " 'https://github.com/gauteh/ibcao_py',\n", - " 'https://github.com/mmhs013/pyHomogeneity',\n", - " 'https://github.com/bukhsh/oats',\n", - " 'https://github.com/mukil/pmic',\n", - " 'https://github.com/pySTEPS/pysteps',\n", - " 'https://github.com/groupeLIAMG/ttcr',\n", - " 'https://github.com/oujago/NumpyDL',\n", - " 'https://github.com/deniederhut/niacin',\n", - " 'https://github.com/ZurichNLP/xstance',\n", - " 'https://github.com/raotnameh/End-to-end-E2E-Named-Entity-Recognition-from-English-Speech',\n", - " 'https://github.com/danielrd6/ifscube',\n", - " 'https://github.com/esteinig/sketchy',\n", - " 'https://github.com/opium-sh/prl',\n", - " 'https://github.com/LFPy/LFPy',\n", - " 'https://github.com/1QB-Information-Technologies/COOL',\n", - " 'https://github.com/morpheus-project/morpheus',\n", - " 'https://github.com/leal26/AeroPy',\n", - " 'https://github.com/arose/nglview',\n", - " 'https://github.com/jpgill86/neurotic',\n", - " 'https://github.com/bertrandcz/CrocO_toolbox',\n", - " 'https://github.com/andsor/gridjug',\n", - " 'https://github.com/stfxecutables/empyricalRMT',\n", - " 'https://github.com/wmayner/pyphi',\n", - " 'https://github.com/pysal/spaghetti',\n", - " 'https://github.com/brisskit-uol/i2b2-install-procedures',\n", - " 'https://github.com/bast/runtest',\n", - " 'https://github.com/VarIr/scikit-hubness',\n", - " 'https://github.com/wright-group/WrightTools',\n", - " 'https://github.com/CamDavidsonPilon/lifelines',\n", - " 'https://github.com/tpall/pynodo',\n", - " 'https://github.com/rmkoesterer/uga',\n", - " 'https://github.com/GoekeLab/xpore',\n", - " 'https://github.com/ml-evs/matador',\n", - " 'https://github.com/stefsmeets/instamatic',\n", - " 'https://github.com/danxhuber/isoclassify',\n", - " 'https://github.com/proycon/colibri-core',\n", - " 'https://github.com/alielhassouni/rl-multi-agent-simulation-for-e-health',\n", - " 'https://github.com/amueller/patsylearn',\n", - " 'https://github.com/lacava/few',\n", - " 'https://github.com/mheikenfeld/ramscube',\n", - " 'https://github.com/python-pillow/Pillow',\n", - " 'https://github.com/Silmathoron/NNGT',\n", - " 'https://github.com/ariercole/Cambridge_COVID-19_ICU',\n", - " 'https://github.com/matthiasweiss/dsue1-2020s',\n", - " 'https://github.com/jenojp/negspacy',\n", - " 'https://github.com/MartinPdS/OCT_calibration',\n", - " 'https://github.com/cmsopendata-finland/kurssimateriaali',\n", - " 'https://github.com/HERA-Team/librarian',\n", - " 'https://github.com/tkralphs/CuPPy',\n", - " 'https://github.com/r9y9/pylibfreenect2',\n", - " 'https://github.com/arm61/uravu',\n", - " 'https://github.com/acoular/acoular',\n", - " 'https://github.com/underworldcode/UWGeodynamics',\n", - " 'https://github.com/sherbold/autorank',\n", - " 'https://github.com/CENER-EPR/OWAbench',\n", - " 'https://github.com/tempdata73/tic-tac-toe',\n", - " 'https://github.com/catalyst-cooperative/pudl',\n", - " 'https://github.com/TUDelft-CITG/OpenTISim',\n", - " 'https://github.com/martinlackner/abcvoting',\n", - " 'https://github.com/pv/fimport',\n", - " 'https://github.com/nextgenusfs/funannotate',\n", - " 'https://github.com/cmccoy/ighutil',\n", - " 'https://github.com/AOtools/aotools',\n", - " 'https://github.com/weecology/retriever',\n", - " 'https://github.com/mdolab/idwarp',\n", - " 'https://github.com/davidrpugh/pyAM',\n", - " 'https://github.com/N3PDF/yadism',\n", - " 'https://github.com/JohannesBuchner/snowline',\n", - " 'https://github.com/pychebfun/pychebfun',\n", - " 'https://github.com/mmadsen/ctmixtures',\n", - " 'https://github.com/coin-or/GiMPy',\n", - " 'https://github.com/hibernator11/notebook-lod-libraries',\n", - " 'https://github.com/muammar/heisenberg',\n", - " 'https://github.com/spex-xray/pyspextools',\n", - " 'https://github.com/csdms/pymt',\n", - " 'https://github.com/santiago1234/MZT-rna-stability',\n", - " 'https://github.com/sehero/lua',\n", - " 'https://github.com/qmlcode/qml',\n", - " 'https://github.com/dmyersturnbull/tyrannosaurus',\n", - " 'https://github.com/alcantarar/dryft',\n", - " 'https://github.com/DaniloZZZ/Qensor',\n", - " 'https://github.com/MaayanLab/Zika-RNAseq-Pipeline',\n", - " 'https://github.com/pyReef-model/RADWave',\n", - " 'https://github.com/src-d/kmcuda',\n", - " 'https://github.com/perrygeo/pyimpute',\n", - " 'https://github.com/toshas/torch-fidelity',\n", - " 'https://github.com/SasView/sasview',\n", - " 'https://github.com/zfit/zfit-physics',\n", - " 'https://github.com/abhi1693/yii2-system-info',\n", - " 'https://github.com/harmslab/pytc',\n", - " 'https://github.com/biosustain/pyrcos',\n", - " 'https://github.com/CNRGH/contatester',\n", - " 'https://github.com/pcko1/Deep-Drug-Coder',\n", - " 'https://github.com/gree-gorey/rusclasp',\n", - " 'https://github.com/chartes/deucalion-model-lasla',\n", - " 'https://github.com/SanneHoeken/HEEM-Data-Extractions',\n", - " 'https://github.com/fliem/cpr',\n", - " 'https://github.com/r9y9/nnmnkwii',\n", - " 'https://github.com/paudetseis/PlateCurie',\n", - " 'https://github.com/cyclops-community/tensorbackends',\n", - " 'https://github.com/astrofle/CRRLpy',\n", - " 'https://github.com/stanford-futuredata/Willump',\n", - " 'https://github.com/phiweger/zoo',\n", - " 'https://github.com/shenlab-sinai/region_analysis',\n", - " 'https://github.com/podondra/bt-spectraldl',\n", - " 'https://github.com/ubermag/micromagnetictests',\n", - " 'https://github.com/amunozj/magnetograph_2HMI_converter',\n", - " 'https://github.com/r9y9/pysptk',\n", - " 'https://github.com/michaelaye/venim',\n", - " 'https://github.com/FAST-HEP/fast-carpenter',\n", - " 'https://github.com/lpwgroup/torsiondrive',\n", - " 'https://github.com/datajoint/datajoint-python',\n", - " 'https://github.com/hallamlab/mlLGPR',\n", - " 'https://github.com/cmbant/CosmoMC',\n", - " 'https://github.com/lukasValentin/OBIA4RTM',\n", - " 'https://github.com/loostrum/darc',\n", - " 'https://github.com/sdorkenw/MeshParty',\n", - " 'https://github.com/RadioAstronomySoftwareGroup/pyuvsim',\n", - " 'https://github.com/aditya95sriram/td-slim',\n", - " 'https://github.com/geoopt/geoopt',\n", - " 'https://github.com/jswoboda/ISRSpectrum',\n", - " 'https://github.com/jonschwenk/RivGraph',\n", - " 'https://github.com/thoppe/Encyclopedia-of-Finite-Graphs',\n", - " 'https://github.com/Ry-C123/LazyPSF',\n", - " 'https://github.com/tjof2/ctrwfractal',\n", - " 'https://github.com/MatthewBCooke/Pathfinder',\n", - " 'https://github.com/connectomicslab/connectomemapper3',\n", - " 'https://github.com/rpep/fmmgen',\n", - " 'https://github.com/griffin-h/superphot',\n", - " 'https://github.com/cscully-allison/Materia',\n", - " 'https://github.com/tschaume/ccsgp_get_started',\n", - " 'https://github.com/discos/discos-backend',\n", - " 'https://github.com/wmayner/pyemd',\n", - " 'https://github.com/drsteve/PyForecastTools',\n", - " 'https://github.com/rmsolgi/geneticalgorithm',\n", - " 'https://github.com/mmhs013/pyMannKendall',\n", - " 'https://github.com/TerrainBento/terrainbento',\n", - " 'https://github.com/mwaskom/seaborn',\n", - " 'https://github.com/florafauna/optimParallel-python',\n", - " 'https://github.com/pietrobarbiero/evofs',\n", - " 'https://github.com/IsaacCorley/pytorch-enhance',\n", - " 'https://github.com/ecell/ecell4',\n", - " 'https://github.com/mirnylab/bioframe',\n", - " 'https://github.com/dean0x7d/pybinding',\n", - " 'https://github.com/janmtl/pypsych',\n", - " 'https://github.com/lcharleux/abapy',\n", - " 'https://github.com/nuest/ten-simple-rules-dockerfiles',\n", - " 'https://github.com/OpenSourceEconomics/ruspy',\n", - " 'https://github.com/lingfeiwang/normalisr',\n", - " 'https://github.com/ShuhuaGao/geppy',\n", - " 'https://github.com/azedarach/matrix-factorization-case-studies',\n", - " 'https://github.com/LoLab-VU/Gleipnir',\n", - " 'https://github.com/uwmadison-chm/scorify',\n", - " 'https://github.com/csu-hmc/GaitAnalysisToolKit',\n", - " 'https://github.com/radical-cybertools/radical.synapse',\n", - " 'https://github.com/MaineKuehn/usim',\n", - " 'https://github.com/astrom-tom/dfitspy',\n", - " 'https://github.com/spacetelescope/jwql',\n", - " 'https://github.com/ePSIC-DLS/ParticleSpy',\n", - " 'https://github.com/N3PDF/pineappl',\n", - " 'https://github.com/hippylib/hippylib',\n", - " 'https://github.com/felixriese/CNN-SoilTextureClassification',\n", - " 'https://github.com/IQuOD/wodpy',\n", - " 'https://github.com/ahendriksen/msd_pytorch',\n", - " 'https://github.com/sgoldenlab/simba',\n", - " 'https://github.com/mdolab/adflow',\n", - " 'https://github.com/OpenChemistry/tomviz',\n", - " 'https://github.com/sertansenturk/seyiranalyzer',\n", - " 'https://github.com/sertansenturk/alignednotemodel',\n", - " 'https://github.com/miklos1/dijitso',\n", - " 'https://github.com/schwemro/diag-eff',\n", - " 'https://github.com/NLeSC/mcfly',\n", - " 'https://github.com/hahnec/plenopticam',\n", - " 'https://github.com/ICB-DCM/AMICI',\n", - " 'https://github.com/kundajelab/abstention',\n", - " 'https://github.com/transientlunatic/otter',\n", - " 'https://github.com/dftlibs/xcfun',\n", - " 'https://github.com/kikuchipy/kikuchipy',\n", - " 'https://github.com/gpauloski/kfac_pytorch',\n", - " 'https://github.com/materialsproject/pymatgen',\n", - " 'https://github.com/douglasdavis/pygram11',\n", - " 'https://github.com/jrkerns/pylinac',\n", - " 'https://github.com/kdberends/coral',\n", - " 'https://github.com/llondon6/positive',\n", - " 'https://github.com/LiyrAstroph/CDNest',\n", - " 'https://github.com/pysal/giddy',\n", - " 'https://github.com/LeeBergstrand/BackBLAST_Reciprocal_BLAST',\n", - " 'https://github.com/JanaLasser/salt-polygons-are-caused-by-convection',\n", - " 'https://github.com/mediawiki-utilities/python-mwreverts',\n", - " 'https://github.com/rbnvrw/semtracking',\n", - " 'https://github.com/coin-or/GrUMPy',\n", - " 'https://github.com/nist-ionstorage/pdq2',\n", - " 'https://github.com/TLCFEM/suanPan',\n", - " 'https://github.com/dlilien/ImpDAR',\n", - " 'https://github.com/ihrke/pypillometry',\n", - " 'https://github.com/willpearse/stalkless',\n", - " 'https://github.com/FractalMedia/wheresmunna',\n", - " 'https://github.com/vivekbhr/scRIApipe',\n", - " 'https://github.com/coin-or/pulp',\n", - " 'https://github.com/Titan-C/slaveparticles',\n", - " 'https://github.com/pnuehrenberg/multiviewtracks',\n", - " 'https://github.com/matthewfeickert/IRIS-HEP-2020-Poster-Session',\n", - " 'https://github.com/r4ecology/nctoolkit',\n", - " 'https://github.com/transientlunatic/heron',\n", - " 'https://github.com/capaulson/pyKriging',\n", - " 'https://github.com/VlachosGroup/jl_spectra_2_structure',\n", - " 'https://github.com/wradlib/wradlib',\n", - " 'https://github.com/CICE-Consortium/CICE',\n", - " 'https://github.com/sherpa/sherpa',\n", - " 'https://github.com/toros-astro/astroalign',\n", - " 'https://github.com/bootphon/ABXpy',\n", - " 'https://github.com/pdxgx/neoepiscope',\n", - " 'https://github.com/danforthcenter/plantcv',\n", - " 'https://github.com/jkitchin/pycse',\n", - " 'https://github.com/rraadd88/rohan',\n", - " 'https://github.com/compas-dev/compas_fea',\n", - " 'https://github.com/justagist/panda_simulator',\n", - " 'https://github.com/stemtool/stemtool',\n", - " 'https://github.com/mkoeppe/sage-numerical-interactive-mip',\n", - " 'https://github.com/Nu-AI/Livid-About-COVID',\n", - " 'https://github.com/PyLorentz/PyLorentz',\n", - " 'https://github.com/ctsit/dxster',\n", - " 'https://github.com/PhysicsOfMobility/ridesharing_topology_dependence',\n", - " 'https://github.com/SuperKam91/twentyoneflow',\n", - " 'https://github.com/duartegroup/cgbind',\n", - " 'https://github.com/raphaelvallat/pingouin',\n", - " 'https://github.com/pnlbwh/dMRIharmonization',\n", - " 'https://github.com/cryotools/cosipy',\n", - " 'https://github.com/N3PDF/vegasflow',\n", - " 'https://github.com/althonos/pronto',\n", - " 'https://github.com/nipy/nipype',\n", - " 'https://github.com/boivinalex/permittivitycalc',\n", - " 'https://github.com/BlueBrain/NeuroR',\n", - " 'https://github.com/Curtin-Open-Knowledge-Initiative/institutional-oa-evaluation-2020',\n", - " 'https://github.com/dgasmith/opt_einsum',\n", - " 'https://github.com/knutankv/koma',\n", - " 'https://github.com/foerstner-lab/READemption',\n", - " 'https://github.com/matthiaskoenig/fbc_curation',\n", - " 'https://github.com/sdey135/rtapylysis',\n", - " 'https://github.com/CICE-Consortium/Icepack',\n", - " 'https://github.com/Nikoleta-v3/blackbook',\n", - " 'https://github.com/StevenGolovkine/FDApy',\n", - " 'https://github.com/Leinadj/CREAM',\n", - " 'https://github.com/wjlei1990/spaceweight',\n", - " 'https://github.com/genomematt/AmBiVErT',\n", - " 'https://github.com/PEtab-dev/PEtab',\n", - " 'https://github.com/ziatdinovmax/GPim',\n", - " 'https://github.com/gwappa/fitting2d',\n", - " 'https://github.com/boolsi/boolsi',\n", - " 'https://github.com/TomMonks/forecast-tools',\n", - " 'https://github.com/holoviz/hvplot',\n", - " 'https://github.com/mathjax/MathJax',\n", - " 'https://github.com/ci-group/revolve',\n", - " 'https://github.com/matthiaskoenig/sbmlsim',\n", - " 'https://github.com/biobakery/phylophlan',\n", - " 'https://github.com/pnlbwh/multi-shell-dMRIharmonization',\n", - " 'https://github.com/loostrum/arts_tools',\n", - " 'https://github.com/jboynyc/textnets',\n", - " 'https://github.com/python-adaptive/adaptive',\n", - " 'https://github.com/nfsi-canada/OBStools',\n", - " 'https://github.com/nestordemeure/tabularGP',\n", - " 'https://github.com/AstraZeneca-NGS/disambiguate',\n", - " 'https://github.com/dgilford/pyPI',\n", - " 'https://github.com/Jacob-yen/LEMON',\n", - " 'https://github.com/tasoc/photometry',\n", - " 'https://github.com/ASaiM/group_humann2_uniref_abundances_to_GO',\n", - " 'https://github.com/natashabatalha/virga',\n", - " 'https://github.com/castelao/oceansdb',\n", - " 'https://github.com/conorwalsh/doat',\n", - " 'https://github.com/lweasel/piquant',\n", - " 'https://github.com/marinang/SimProd',\n", - " 'https://github.com/calliope-project/calliope',\n", - " 'https://github.com/ehthiede/EMUS',\n", - " 'https://github.com/caiostringari/pywavelearn',\n", - " 'https://github.com/aboucaud/pypher',\n", - " 'https://github.com/niosh-mining/obsplus',\n", - " 'https://github.com/ralna/ElementSchur',\n", - " 'https://github.com/bdestombe/flopymetascript',\n", - " 'https://github.com/scikit-hep/awkward-array',\n", - " 'https://github.com/gwpy/gwsumm',\n", - " 'https://github.com/saullocastro/panels',\n", - " 'https://github.com/apetros/pyeplan',\n", - " 'https://github.com/castelao/CoTeDe',\n", - " 'https://github.com/matt-graham/mici',\n", - " 'https://github.com/donia-lab/MetaBGC',\n", - " 'https://github.com/nschloe/accupy',\n", - " 'https://github.com/KitwareMedical/SlicerITKUltrasound',\n", - " 'https://github.com/scities/marble',\n", - " 'https://github.com/tjof2/pgure-svt',\n", - " 'https://github.com/dfm/python-fsps',\n", - " 'https://github.com/N3PDF/evolutionary_keras',\n", - " 'https://github.com/muammar/ml4chem',\n", - " 'https://github.com/fepegar/unet',\n", - " 'https://github.com/esm-tools/esm_tools',\n", - " 'https://github.com/hema-ted/pyzfs',\n", - " 'https://github.com/vitkl/orthologsBioMART',\n", - " 'https://github.com/davidrpugh/pyCollocation',\n", - " 'https://github.com/tcompa/anneal',\n", - " 'https://github.com/pansism/downscale-satelliteLST',\n", - " 'https://github.com/pyspeckit/pyspeckit',\n", - " 'https://github.com/TAMU-CPT/PAUSE',\n", - " 'https://github.com/mosdef-hub/forcefield_perfluoroethers',\n", - " 'https://github.com/dimazest/fowler.corpora',\n", - " 'https://github.com/sami2py/sami2py',\n", - " 'https://github.com/OllyButters/puma',\n", - " 'https://github.com/aplowman/atomistic',\n", - " 'https://github.com/guaix-ucm/pyemir',\n", - " 'https://github.com/biosustain/croissance',\n", - " 'https://github.com/linhd-postdata/averell',\n", - " 'https://github.com/kalyanpi4/pySW',\n", - " 'https://github.com/dave-heslop74/vMF_Specimens',\n", - " 'https://github.com/hollenstein/maspy',\n", - " 'https://github.com/wiai/xcdskd',\n", - " 'https://github.com/romoreira/EdgeComputingSlice',\n", - " 'https://github.com/pysal/segregation',\n", - " 'https://github.com/JordiBolibar/ALPGM',\n", - " 'https://github.com/keyinst/keypy',\n", - " 'https://github.com/has2k1/scikit-misc',\n", - " 'https://github.com/BEAST-Fitting/beast',\n", - " 'https://github.com/fireshape/fireshape',\n", - " 'https://github.com/jsh9/python-plot-utilities',\n", - " 'https://github.com/FlamTeam/flamedisx',\n", - " 'https://github.com/ihmeuw-msca/ODEOPT',\n", - " 'https://github.com/dmentipl/plonk',\n", - " 'https://github.com/haraldschilly/panobbgo',\n", - " 'https://github.com/coneoproject/COFFEE',\n", - " 'https://github.com/bioFAM/MOFA2',\n", - " 'https://github.com/pytroll/pyresample',\n", - " 'https://github.com/FATSLiM/fatslim',\n", - " 'https://github.com/astropenguin/azely',\n", - " 'https://github.com/debsankha/flownetpy',\n", - " 'https://github.com/lyx12311/Astraea',\n", - " 'https://github.com/npielawski/pytorch_tiramisu',\n", - " 'https://github.com/TUW-GEO/smecv-grid',\n", - " 'https://github.com/nist-ionstorage/electrode',\n", - " 'https://github.com/lingpy/word-tree-paper',\n", - " 'https://github.com/fsenf/proj.nawdex_analysis',\n", - " 'https://github.com/mwcraig/reducer',\n", - " 'https://github.com/lcharleux/hardness',\n", - " 'https://github.com/pisa-engine/pisa',\n", - " 'https://github.com/rjw57/starman',\n", - " 'https://github.com/dewiedem/calcopp',\n", - " 'https://github.com/rstoneback/OMMBV',\n", - " 'https://github.com/mfherbst/asedftk',\n", - " 'https://github.com/CyberDataLab/AuthCode',\n", - " 'https://github.com/imageio/imageio',\n", - " 'https://github.com/masseyr/geosoupML',\n", - " 'https://github.com/r9y9/pyreaper',\n", - " 'https://github.com/JDRomano2/ASAP2',\n", - " 'https://github.com/josephhardinee/PyDSD',\n", - " 'https://github.com/Spine-project/Spine-Database-API',\n", - " 'https://github.com/GeoStat-Framework/ogs5py',\n", - " 'https://github.com/Z-Zheng/SimpleCV',\n", - " 'https://github.com/angelmtenor/RL-ROBOT',\n", - " 'https://github.com/stefanch/sGDML',\n", - " 'https://github.com/materialsvirtuallab/monty',\n", - " 'https://github.com/kgullikson88/Telluric-Fitter',\n", - " 'https://github.com/Urban-Meteorology-Reading/SUEWS',\n", - " 'https://github.com/serazing/xscale',\n", - " 'https://github.com/pauleve/mpbn',\n", - " 'https://github.com/ericmjl/flu-gibson',\n", - " 'https://github.com/pycalphad/scheil',\n", - " 'https://github.com/deparkes/OOMMFTools',\n", - " 'https://github.com/sarisabban/RamaNet',\n", - " 'https://github.com/nano-sippe/dispersion',\n", - " 'https://github.com/hallamlab/pathway2vec',\n", - " 'https://github.com/SCM-NV/nano-qmflows',\n", - " 'https://github.com/bburan/NeuroBehavior',\n", - " 'https://github.com/Bubblbu/crawling-framework',\n", - " 'https://github.com/Alerovere/Paleo-SL-utilities',\n", - " 'https://github.com/TUDelft-CITG/OpenCLSim',\n", - " 'https://github.com/RMeli/spyrmsd',\n", - " 'https://github.com/rraadd88/htsimaging',\n", - " 'https://github.com/etiennebresciani/wellradpy',\n", - " 'https://github.com/blsqr/paramspace',\n", - " 'https://github.com/FInAT/FInAT',\n", - " 'https://github.com/hovo1990/GROM',\n", - " 'https://github.com/scikit-learn/scikit-learn',\n", - " 'https://github.com/covid-lncc/pydemic',\n", - " 'https://github.com/pvlib/pvlib-python',\n", - " 'https://github.com/norawebbwilliams/images_as_data',\n", - " 'https://github.com/pablormier/yabox',\n", - " 'https://github.com/pysal/region',\n", - " 'https://github.com/krassowski/data-vault',\n", - " 'https://github.com/jaisenbe58r/MLearner',\n", - " 'https://github.com/dave-heslop74/vMF_Sites',\n", - " 'https://github.com/biomedia-mira/blast-ct',\n", - " 'https://github.com/kundajelab/deeplift',\n", - " 'https://github.com/embodied-computation-group/systole',\n", - " 'https://github.com/astorfi/TensorFlow-World',\n", - " 'https://github.com/TheLartians/Expresso',\n", - " 'https://github.com/UCL/scikit-surgeryfred',\n", - " 'https://github.com/neurolib-dev/neurolib',\n", - " 'https://github.com/pnlbwh/SlicerDiffusionQC',\n", - " 'https://github.com/CORE-GATECH-GROUP/serpent-tools',\n", - " 'https://github.com/morganjwilliams/pyrolite-meltsutil',\n", - " 'https://github.com/gmiaslab/pyiomica',\n", - " 'https://github.com/MarcoMuellner/SMURFS',\n", - " 'https://github.com/MrLogarithm/pe-pc-datasets-interface',\n", - " 'https://github.com/raamana/neuropredict',\n", - " 'https://github.com/bartongroup/2passtools',\n", - " 'https://github.com/earthserver-eu/INSPIRE-notebooks',\n", - " 'https://github.com/rjleveque/ptha_rog',\n", - " 'https://github.com/GeoStat-Framework/pentapy',\n", - " 'https://github.com/castelao/pyWOA',\n", - " 'https://github.com/pynbody/pynbody',\n", - " 'https://github.com/MicroPasts/magicMountain',\n", - " 'https://github.com/harnesscloud/2015-07-15-feltham',\n", - " 'https://github.com/hfsf/sloth',\n", - " 'https://github.com/chienchi/amplicon_coverage_plot',\n", - " 'https://github.com/cmohl2013/permutation_test',\n", - " 'https://github.com/mrtommyb/ktransit',\n", - " 'https://github.com/soil-physics-okstate/automated_soil_moisture_mapping',\n", - " 'https://github.com/QInfer/python-qinfer',\n", - " 'https://github.com/inodb/sufam',\n", - " 'https://github.com/bihealth/scelvis',\n", - " 'https://github.com/dr-rodriguez/AstrodbWeb',\n", - " 'https://github.com/iamdamion/grepCIRCLE',\n", - " 'https://github.com/Olllom/lettuce',\n", - " 'https://github.com/bjpop/lynch_gatk',\n", - " 'https://github.com/jGaboardi/pp2n',\n", - " 'https://github.com/Lagostra/exprimo',\n", - " 'https://github.com/kweis/acronym',\n", - " 'https://github.com/mirca/maoud',\n", - " 'https://github.com/castelao/maud',\n", - " 'https://github.com/cwfparsonson/soa_driving',\n", - " 'https://github.com/luphysics/PyMODAlib',\n", - " 'https://github.com/jGaboardi/non-duplicated-intersects',\n", - " 'https://github.com/rochefort-lab/fissa',\n", - " 'https://github.com/qutip/qutip',\n", - " 'https://github.com/XENON1T/pax',\n", - " 'https://github.com/indralab/adeft',\n", - " 'https://github.com/polsys/ennemi',\n", - " 'https://github.com/gmierz/pupil-lib',\n", - " 'https://github.com/macs3-project/MACS',\n", - " 'https://github.com/efirvida/python-gearbox',\n", - " 'https://github.com/Unidata/cftime',\n", - " 'https://github.com/weecology/DeepForest',\n", - " 'https://github.com/datreant/datreant',\n", - " 'https://github.com/Svdvoort/PREDICTFastr',\n", - " 'https://github.com/qcscine/utilities',\n", - " 'https://github.com/martibosch/urban-footprinter',\n", - " 'https://github.com/fa-me/ratter',\n", - " 'https://github.com/impact27/WF_NTP',\n", - " 'https://github.com/Eomys/pyleecan',\n", - " 'https://github.com/USNavalResearchLaboratory/SNOPROP',\n", - " 'https://github.com/bbfrederick/picachooser',\n", - " 'https://github.com/GilesStrong/HiggsML_Lumin',\n", - " 'https://github.com/GooglingTheCancerGenome/sv-callers',\n", - " 'https://github.com/NickleDave/searchstims',\n", - " 'https://github.com/pyoceans/python-seawater',\n", - " 'https://github.com/olgabot/sj2psi',\n", - " 'https://github.com/malvikasharan/APRICOT',\n", - " 'https://github.com/raamana/confounds',\n", - " 'https://github.com/mrkrd/matlab_wrapper',\n", - " 'https://github.com/michaelosthege/pyrff',\n", - " 'https://github.com/hameye/MARCIA',\n", - " 'https://github.com/eyelovedata/sentimentemotionanalysis',\n", - " 'https://github.com/Swiss-Polar-Institute/pyantarctica',\n", - " 'https://github.com/cgre-aachen/gempy',\n", - " 'https://github.com/alexandrebarachant/pyRiemann',\n", - " 'https://github.com/yt-project/unyt',\n", - " 'https://github.com/ConorMacBride/mcalf',\n", - " 'https://github.com/widdowquinn/pyADHoRe',\n", - " 'https://github.com/valdergallo/data-importer',\n", - " 'https://github.com/saketkc/pysradb',\n", - " 'https://github.com/jeeberhardt/visualize',\n", - " 'https://github.com/hsharrison/experimentator',\n", - " 'https://github.com/nudomarinero/wquantiles',\n", - " 'https://github.com/sepandhaghighi/findip',\n", - " 'https://github.com/md-lab-tools/lab-tools',\n", - " 'https://github.com/YaserJaradeh/JarvisQA',\n", - " 'https://github.com/DesignEngrLab/fmdtools',\n", - " 'https://github.com/has2k1/mizani',\n", - " 'https://github.com/super-resolution/lineprofiler',\n", - " 'https://github.com/junaidmalik09/fastonn',\n", - " 'https://github.com/mzabrams/fars-cleaner',\n", - " 'https://github.com/fat-forensics/fat-forensics',\n", - " 'https://github.com/RPGroup-PBoC/chann_cap',\n", - " 'https://github.com/Davidelanz/quantum-robot',\n", - " 'https://github.com/applied-bioinformatics/An-Introduction-To-Applied-Bioinformatics',\n", - " 'https://github.com/aliFrancis/mars-crater-catalogue',\n", - " 'https://github.com/jcvasquezc/AEspeech',\n", - " 'https://github.com/oemof/oemof-solph',\n", - " 'https://github.com/kutaslab/fitgrid',\n", - " 'https://github.com/nstarman/amuse_util',\n", - " 'https://github.com/yhaddad/Heppi',\n", - " 'https://github.com/wjladams/pyanp',\n", - " 'https://github.com/seva100/optic-nerve-cnn',\n", - " 'https://github.com/lpfann/fri',\n", - " 'https://github.com/seisman/HinetPy',\n", - " 'https://github.com/csdms/bmi-python',\n", - " 'https://github.com/NaturalHistoryMuseum/revile',\n", - " 'https://github.com/xuanxu/intergalactic',\n", - " 'https://github.com/PyPSA/PyPSA',\n", - " 'https://github.com/NickleDave/vak',\n", - " 'https://github.com/gtonkinhill/panaroo',\n", - " 'https://github.com/CMLPlatform/pycirk',\n", - " 'https://github.com/TUW-GEO/ecmwf_models',\n", - " 'https://github.com/bfieldtools/bfieldtools',\n", - " 'https://github.com/pedroernesto/HippoNetworkUnit',\n", - " 'https://github.com/zwicker-group/py-pde',\n", - " 'https://github.com/NeuralEnsemble/PyNN',\n", - " 'https://github.com/GrzegorzMikaAGH/Towards-adaptivity-via-a-new-discrepancy-principle-for-Poisson-inverse-problems',\n", - " 'https://github.com/HTenkanen/pyrosm',\n", - " 'https://github.com/kjappelbaum/colorjeopardy',\n", - " 'https://github.com/OSUmageed/pyHeatTransfer',\n", - " 'https://github.com/olety/TIMLinUCB',\n", - " 'https://github.com/r9y9/pyopenjtalk',\n", - " 'https://github.com/Edric-Matwiejew/QSW_MPI',\n", - " 'https://github.com/scikit-hep/hepstats',\n", - " 'https://github.com/elainehoml/GMM_Image_Quality',\n", - " 'https://github.com/mikahama/uralicNLP',\n", - " 'https://github.com/ssepulveda/RTGraph',\n", - " 'https://github.com/eWaterCycle/grpc4bmi',\n", - " 'https://github.com/bjodah/chempy',\n", - " 'https://github.com/chjacob-tubs/pyadf-releases',\n", - " 'https://github.com/Nikeshbajaj/spkit',\n", - " 'https://github.com/wright-group/WrightSim',\n", - " 'https://github.com/Curtin-Timescales-of-Mineral-Systems/UPb-Unmixer',\n", - " 'https://github.com/pietrobarbiero/dbgen',\n", - " 'https://github.com/tychotatitscheff/duc-sph',\n", - " 'https://github.com/impact27/diffusion_device',\n", - " 'https://github.com/williamjameshandley/fgivenx',\n", - " 'https://github.com/SoftwareDevEngResearch/CAML',\n", - " 'https://github.com/cyTVDN/cyTVDN',\n", - " 'https://github.com/birnstiel/two-pop-py',\n", - " 'https://github.com/reneshbedre/bioinfokit',\n", - " 'https://github.com/INM-6/hybridLFPy',\n", - " 'https://github.com/caglorithm/mopet',\n", - " 'https://github.com/molpopgen/fwdpy11',\n", - " 'https://github.com/ENCODE-DCC/caper',\n", - " 'https://github.com/colomoto/colomoto-jupyter',\n", - " 'https://github.com/nicolas-chaulet/torch-points-kernels',\n", - " 'https://github.com/MicroPasts/transcribing-WGS',\n", - " 'https://github.com/anthony-nouy/tensap',\n", - " 'https://github.com/ancklo/ChaosMagPy',\n", - " 'https://github.com/mvdh7/calkulate',\n", - " 'https://github.com/arviz-devs/arviz',\n", - " 'https://github.com/saverymax/qdriven-chiqa-summarization',\n", - " 'https://github.com/jhidding/sustainability',\n", - " 'https://github.com/arif-zaman/network_probing',\n", - " 'https://github.com/janpipek/pydiq',\n", - " 'https://github.com/posterior/goftests',\n", - " 'https://github.com/zarr-developers/zarr-python',\n", - " 'https://github.com/ulmo-dev/ulmo',\n", - " 'https://github.com/uwmadison-chm/masterfile',\n", - " 'https://github.com/jeeberhardt/unrolr',\n", - " 'https://github.com/pydicom/pynetdicom',\n", - " 'https://github.com/ilyasst/pydictoolkit',\n", - " 'https://github.com/NLESC-JCER/QMCTorch',\n", - " 'https://github.com/AthenaEPI/dmipy',\n", - " 'https://github.com/environmentalscience/essm',\n", - " 'https://github.com/raysect/source',\n", - " 'https://github.com/mattbv/lidartf',\n", - " 'https://github.com/ricoms/gpam_stats',\n", - " 'https://github.com/hpparvi/PyDE',\n", - " 'https://github.com/molbiodiv/Blackbird',\n", - " 'https://github.com/adrn/thejoker',\n", - " 'https://github.com/akxen/rep-gep',\n", - " 'https://github.com/joergdietrich/NFW',\n", - " 'https://github.com/interaction-lab/MoveToCode',\n", - " 'https://github.com/FilipeMaia/afnumpy',\n", - " 'https://github.com/nextgenusfs/amptk',\n", - " 'https://github.com/Qiskit/qiskit',\n", - " 'https://github.com/CU-Denver-UQ/LUQ',\n", - " 'https://github.com/casimp/lightct',\n", - " 'https://github.com/joostjor/random-graphs',\n", - " 'https://github.com/sbonaretti/pyKNEEr',\n", - " 'https://github.com/DataMedSci/pymchelper',\n", - " 'https://github.com/simonvh/pita',\n", - " 'https://github.com/Socrats/EGTTools',\n", - " 'https://github.com/AlessioZanga/PyEEGLab',\n", - " 'https://github.com/samuelstjean/autodmri',\n", - " 'https://github.com/junhyeokahn/tf_rbdl',\n", - " 'https://github.com/Samreay/ChainConsumer',\n", - " 'https://github.com/JoshuaE1/supervised-classification-SSH-publications',\n", - " 'https://github.com/syhw/DTW_Cython',\n", - " 'https://github.com/cerebunit/cerebunit',\n", - " 'https://github.com/clebsonpy/HidroComp',\n", - " 'https://github.com/drcassar/viscosity-graybox-nn',\n", - " 'https://github.com/MAVENSDC/PyTplot',\n", - " 'https://github.com/CognitiveComputationLab/ccobra',\n", - " 'https://github.com/jpvantassel/hvsrpy',\n", - " 'https://github.com/DTUComputeStatisticsAndDataAnalysis/MBPLS',\n", - " 'https://github.com/hyungjun/gtool',\n", - " 'https://github.com/michaelaye/pyciss',\n", - " 'https://github.com/genomematt/pylazybam',\n", - " 'https://github.com/arkottke/pygmm',\n", - " 'https://github.com/kotori-y/Scopy',\n", - " 'https://github.com/gsantoni/ccCluster',\n", - " 'https://github.com/iancze/MPoL',\n", - " 'https://github.com/jacobo-diaz/aneupy',\n", - " 'https://github.com/rougier/numpy-100',\n", - " 'https://github.com/napsternxg/TwitterNER',\n", - " 'https://github.com/DomBennett/TaxonNamesResolver',\n", - " 'https://github.com/griffithlab/pVACtools',\n", - " 'https://github.com/spacetelescope/jwst-fgs-countrate',\n", - " 'https://github.com/pysal/spvcm',\n", - " 'https://github.com/CKrawczyk/densityplot',\n", - " 'https://github.com/Abe404/root_painter',\n", - " 'https://github.com/reegis/deflex',\n", - " 'https://github.com/DCAN-Labs/nhp-abcd-bids-pipeline',\n", - " 'https://github.com/MechMicroMan/DefDAP',\n", - " 'https://github.com/Climdyn/qgs',\n", - " 'https://github.com/jdmoorman/kaczmarz-algorithms',\n", - " 'https://github.com/qzhu2017/PyXtal_FF',\n", - " 'https://github.com/ioos/erddapy',\n", - " 'https://github.com/bjorntsv/tempmom',\n", - " 'https://github.com/ARM-DOE/ACT',\n", - " 'https://github.com/radtorch/radtorch',\n", - " 'https://github.com/UT-CHG/PolyADCIRC',\n", - " 'https://github.com/martibosch/detectree',\n", - " 'https://github.com/peckhams/topoflow',\n", - " 'https://github.com/mekman/recon',\n", - " 'https://github.com/petl-developers/petl',\n", - " 'https://github.com/MAVENSDC/cdflib',\n", - " 'https://github.com/jw156605/MATCHER',\n", - " 'https://github.com/vprusso/toqito',\n", - " 'https://github.com/abhi1693/yii2-config',\n", - " 'https://github.com/scikit-hep/uproot-methods',\n", - " 'https://github.com/ThomasRieutord/kabl',\n", - " 'https://github.com/pastas/pastas',\n", - " 'https://github.com/tomwallis/PsyUtils',\n", - " 'https://github.com/adrn/gala',\n", - " 'https://github.com/kinnala/scikit-fem',\n", - " 'https://github.com/yatiml/yatiml',\n", - " 'https://github.com/ZFTurbo/Weighted-Boxes-Fusion',\n", - " 'https://github.com/clauswilke/PeptideBuilder',\n", - " 'https://github.com/MultithreadCorner/Hydra',\n", - " 'https://github.com/pysat/pysatMadrigal',\n", - " 'https://github.com/berenslab/pr_bc_connectivity',\n", - " 'https://github.com/helioforecast/Predstorm',\n", - " 'https://github.com/TUW-GEO/ease_grid',\n", - " 'https://github.com/hrtlacek/faustTools',\n", - " 'https://github.com/Abe404/segmentation_of_roots_in_soil_with_unet',\n", - " 'https://github.com/ECSIM/pem-dataset1',\n", - " 'https://github.com/perryuu/managpu',\n", - " 'https://github.com/IceCubeOpenSource/ASTERIA',\n", - " 'https://github.com/josemiotto/pylevy',\n", - " 'https://github.com/mdolab/pygeo',\n", - " 'https://github.com/TUW-GEO/rt1',\n", - " 'https://github.com/AnyBody-Research-Group/AnyPyTools',\n", - " 'https://github.com/Yefee/xMCA',\n", - " 'https://github.com/rlworkgroup/garage',\n", - " 'https://github.com/screensinthewild/screenbase_unity_slideshow',\n", - " 'https://github.com/simpeg/discretize',\n", - " 'https://github.com/LRCFS/GSR_Paper',\n", - " 'https://github.com/soft-matter/trackpy',\n", - " 'https://github.com/jrleeman/biaxtools',\n", - " 'https://github.com/JaGeo/PaulingPublication',\n", - " 'https://github.com/multiscale/ymmsl-python',\n", - " 'https://github.com/anitagraser/movingpandas',\n", - " 'https://github.com/fls-bioinformatics-core/RnaChipIntegrator',\n", - " 'https://github.com/bionet/ted.python',\n", - " 'https://github.com/NHERI-SimCenter/pelicun',\n", - " 'https://github.com/danieljfarrell/pvtrace',\n", - " 'https://github.com/neuroscout/neuroscout-cli',\n", - " 'https://github.com/vcutrona/elasticpedia',\n", - " 'https://github.com/spectrochempy/spectrochempy',\n", - " 'https://github.com/isi-nmr/bruker2bart',\n", - " 'https://github.com/HobnobMancer/PhD_Project_Scripts',\n", - " 'https://github.com/drcassar/glasspy',\n", - " 'https://github.com/rieder/MASC',\n", - " 'https://github.com/Nelson-Gon/pyautocv',\n", - " 'https://github.com/jajcayn/pygpso',\n", - " 'https://github.com/alchemistry/alchemlyb',\n", - " 'https://github.com/xgcm/xgcm',\n", - " 'https://github.com/mheikenfeld/wrfcube',\n", - " 'https://github.com/datreant/MDSynthesis',\n", - " 'https://github.com/UNSW-CEEM/NEMOSIS',\n", - " 'https://github.com/KeplerGO/K2fov',\n", - " 'https://github.com/atorras1618/PerMaViss',\n", - " 'https://github.com/tubiana/TTClust',\n", - " 'https://github.com/matt-long/xpersist',\n", - " 'https://github.com/bast/smeshing',\n", - " 'https://github.com/ds-wizard/docs',\n", - " 'https://github.com/abelcarreras/phonolammps',\n", - " 'https://github.com/jason-zl190/sisr_medical',\n", - " 'https://github.com/mdshw5/pyfaidx',\n", - " 'https://github.com/wiebket/delprocess',\n", - " 'https://github.com/holoviz/datashader',\n", - " 'https://github.com/ISA-tools/mzml2isa',\n", - " 'https://github.com/houghb/savvy',\n", - " 'https://github.com/jjgomera/iapws',\n", - " 'https://github.com/zafarali/emdp',\n", - " 'https://github.com/phydev/trajpy',\n", - " 'https://github.com/IMMM-SFA/im3py',\n", - " 'https://github.com/spacetelescope/gwcs',\n", - " 'https://github.com/mkjung99/pyc3dserver',\n", - " 'https://github.com/reegis/reegis',\n", - " 'https://github.com/kimlab/GPyM',\n", - " 'https://github.com/woutergins/satlas',\n", - " 'https://github.com/lachhebo/pyclustertend',\n", - " 'https://github.com/wiebket/delretrieve',\n", - " 'https://github.com/nlesc-nano/Nano-Utils',\n", - " 'https://github.com/oemof/oemof-thermal',\n", - " 'https://github.com/LRydin/MFDFA',\n", - " 'https://github.com/linhd-postdata/desir',\n", - " 'https://github.com/DLR-SC/gitlab2prov',\n", - " 'https://github.com/openearth/aeolis-python',\n", - " 'https://github.com/NREL/floris',\n", - " 'https://github.com/M4I-nanoscopy/tpx3-event-localisation',\n", - " 'https://github.com/andsor/pyfssa',\n", - " 'https://github.com/arkottke/pykoom',\n", - " 'https://github.com/IaPCS/gmsh-exodus-converter',\n", - " 'https://github.com/atait/lytest',\n", - " 'https://github.com/ocsmit/rindcalc',\n", - " 'https://github.com/will-rowe/groot',\n", - " 'https://github.com/benjaminrose/MC-Age',\n", - " 'https://github.com/FowlerLab/Enrich2',\n", - " 'https://github.com/SirSharpest/NarrowEscapeSimulator',\n", - " 'https://github.com/annotation/tutorials',\n", - " 'https://github.com/RDFLib/OWL-RL',\n", - " 'https://github.com/jpvantassel/sigpropy',\n", - " 'https://github.com/cggh/scikit-allel',\n", - " 'https://github.com/kundajelab/seqdataloader',\n", - " 'https://github.com/TomasBeuzen/pybeach',\n", - " 'https://github.com/CovingtonResearchGroup/olm',\n", - " 'https://github.com/zykls/whynot',\n", - " 'https://github.com/hpparvi/PyTransit',\n", - " 'https://github.com/BigDataBiology/GMGC-mapper',\n", - " 'https://github.com/AMReX-Astro/Castro',\n", - " 'https://github.com/greglucas/bezpy',\n", - " 'https://github.com/geek-yang/META',\n", - " 'https://github.com/jkibele/OpticalRS',\n", - " 'https://github.com/seandavi/ngCGH',\n", - " 'https://github.com/fraserw/trippy',\n", - " 'https://github.com/SainsburyWellcomeCentre/lasagna',\n", - " 'https://github.com/libsemigroups/libsemigroups',\n", - " 'https://github.com/AshKelly/pyquad',\n", - " 'https://github.com/jolespin/soothsayer',\n", - " 'https://github.com/kklmn/xrt',\n", - " 'https://github.com/beringresearch/ivis',\n", - " 'https://github.com/mdolab/pyspline',\n", - " 'https://github.com/thieunguyen5991/opfunu',\n", - " 'https://github.com/gwpy/gwpy',\n", - " 'https://github.com/pyvista/pyvista',\n", - " 'https://github.com/adamewing/tebreak',\n", - " 'https://github.com/wlad111/small_probs',\n", - " 'https://github.com/slimgroup/ServerlessImagingAWS',\n", - " 'https://github.com/danielbmmatos/Reduced-Model-of-Shear-Building',\n", - " 'https://github.com/biocore/qiime',\n", - " 'https://github.com/SebastianEggert/OpenWorkstation',\n", - " 'https://github.com/pyscf/pyscf',\n", - " 'https://github.com/GijsMulders/epos',\n", - " 'https://github.com/aymara/lima',\n", - " 'https://github.com/jdmoorman/laptools',\n", - " 'https://github.com/krassowski/drug-disease-profile-matching',\n", - " 'https://github.com/BradMcDanel/term-revealing',\n", - " 'https://github.com/silx-kit/pyFAI',\n", - " 'https://github.com/scipy-lectures/scipy-lecture-notes',\n", - " 'https://github.com/ornlneutronimaging/NEUIT',\n", - " 'https://github.com/kgullikson88/General',\n", - " 'https://github.com/BristolTopGroup/DailyPythonScripts',\n", - " 'https://github.com/redcap-tools/PyCap',\n", - " 'https://github.com/linsalrob/PhiSpy',\n", - " 'https://github.com/keichi/mpEDM',\n", - " 'https://github.com/TEB-model/teb',\n", - " 'https://github.com/comic/evalutils',\n", - " 'https://github.com/opencobra/cobratoolbox',\n", - " 'https://github.com/dtscalibration/python-dts-calibration',\n", - " 'https://github.com/eqcorrscan/EQcorrscan',\n", - " 'https://github.com/scikit-hep/decaylanguage',\n", - " 'https://github.com/PyThaiNLP/pythainlp',\n", - " 'https://github.com/TUW-GEO/ascat',\n", - " 'https://github.com/screensinthewild/screenbase_instantiated_slideshow',\n", - " 'https://github.com/AMReX-Astro/MAESTROeX',\n", - " 'https://github.com/christianjauregui/famafrench',\n", - " 'https://github.com/timetag/ETA',\n", - " 'https://github.com/stephankramer/assess',\n", - " 'https://github.com/jorvlan/open-visualizations',\n", - " 'https://github.com/lsa-pucrs/acerta-abide',\n", - " 'https://github.com/particle-physics-playground/playground',\n", - " 'https://github.com/krischer/hypoDDpy',\n", - " 'https://github.com/jankrepl/deepdow',\n", - " 'https://github.com/weijias-opensource/acc',\n", - " 'https://github.com/sam-nayak/SynthNet',\n", - " 'https://github.com/laserkelvin/PySpecTools',\n", - " 'https://github.com/tactcomplabs/xbgas-llvm',\n", - " 'https://github.com/mdolab/pyoptsparse',\n", - " 'https://github.com/tholoien/empiriciSN',\n", - " 'https://github.com/FUSED-Wind/fusedwind',\n", - " 'https://github.com/sam-greenwood/taco_vis',\n", - " 'https://github.com/JannisHoch/pcrglobwb_utils',\n", - " 'https://github.com/hep-lbdl/CaloGAN',\n", - " 'https://github.com/bbfrederick/rapidtide',\n", - " 'https://github.com/pnlbwh/conversion',\n", - " 'https://github.com/LinkedEarth/Pyleoclim_util',\n", - " 'https://github.com/IMAGINE-Consortium/imagine',\n", - " 'https://github.com/glm-tools/pyglmnet',\n", - " 'https://github.com/aburrell/aacgmv2',\n", - " 'https://github.com/sncosmo/sncosmo',\n", - " 'https://github.com/ICB-DCM/pyPESTO',\n", - " 'https://github.com/lballabio/QuantLib-SWIG',\n", - " 'https://github.com/SoftwareDevEngResearch/RigidFoilSimulator',\n", - " 'https://github.com/samuelstjean/dpr',\n", - " 'https://github.com/panisson/pymobility',\n", - " 'https://github.com/lewisacidic/scikit-chem',\n", - " 'https://github.com/RTIInternational/gobbli',\n", - " 'https://github.com/fabriziocosta/GraphLearn',\n", - " 'https://github.com/solvebio/veppy',\n", - " 'https://github.com/diku-dk/futhark',\n", - " 'https://github.com/kristianfoerster/melodist',\n", - " 'https://github.com/BristolTopGroup/NTupleProduction',\n", - " 'https://github.com/kuchaale/X-regression',\n", - " 'https://github.com/abhi1693/yii2-sms',\n", - " 'https://github.com/jdidion/atropos',\n", - " 'https://github.com/KBRI-Neuroinformatics/WGAN-for-RNASeq-analysis',\n", - " 'https://github.com/PinkShnack/TEMUL',\n", - " 'https://github.com/rock-learning/pytransform3d',\n", - " 'https://github.com/matthiaskoenig/sbmlutils',\n", - " 'https://github.com/PennLINC/aslprep',\n", - " 'https://github.com/tamacgregor/structure_factor_tools',\n", - " 'https://github.com/kgullikson88/gullikson-scripts',\n", - " 'https://github.com/jacirrone/OutPredict',\n", - " 'https://github.com/habi/Zebra-Fish-Gills',\n", - " 'https://github.com/sagemath/sage',\n", - " 'https://github.com/kb-press/ndsplines',\n", - " 'https://github.com/benmaier/COVID19CaseNumberModel',\n", - " 'https://github.com/uweschmitt/emzed2',\n", - " 'https://github.com/AAROC/DevOps',\n", - " 'https://github.com/ybayle/Scyland3D',\n", - " 'https://github.com/jswhit/pygrib',\n", - " 'https://github.com/PTC-CMC/McCabeGroup',\n", - " 'https://github.com/seclab-ucr/UBITect',\n", - " 'https://github.com/mjlaine/eppes',\n", - " 'https://github.com/alpha-xone/xbbg',\n", - " 'https://github.com/IA-Cardiologia-husa/VHD_NLP',\n", - " 'https://github.com/Ptrskay3/PySprint',\n", - " 'https://github.com/gaojun0816/code_access_finder',\n", - " 'https://github.com/foerstner-lab/GRADitude',\n", - " 'https://github.com/BritishMuseumDH/britishMuseumFacesDetection',\n", - " 'https://github.com/mattpitkin/psrqpy',\n", - " 'https://github.com/cbirdferrer/collatrix',\n", - " 'https://github.com/spacetelescope/pysiaf',\n", - " 'https://github.com/jag1g13/pycgtool',\n", - " 'https://github.com/ericleasemorgan/reader',\n", - " 'https://github.com/CountESS-Project/fqfa',\n", - " 'https://github.com/emtpb/pyfds',\n", - " 'https://github.com/chrisdjscott/Atoman',\n", - " 'https://github.com/CardiacModelling/nonlinear-time-dependent-leak',\n", - " 'https://github.com/templateflow/python-client',\n", - " 'https://github.com/redmod-team/profit',\n", - " 'https://github.com/pavolgaj/ObsPlanner',\n", - " 'https://github.com/nick-youngblut/MGSIM',\n", - " 'https://github.com/openmc-dev/openmc',\n", - " 'https://github.com/brelsford/topology',\n", - " 'https://github.com/cigroup-ol/metaopt',\n", - " 'https://github.com/lucananni93/CTCF_Spatial_Patterns',\n", - " 'https://github.com/stfbnc/fathon',\n", - " 'https://github.com/prisms-center/CASMcode',\n", - " 'https://github.com/ccd-utexas/binstarsolver',\n", - " 'https://github.com/XPRESSyourself/XPRESSplot',\n", - " 'https://github.com/airr-community/airr-standards',\n", - " 'https://github.com/joaomcteixeira/taurenmd',\n", - " 'https://github.com/jyhmiinlin/pynufft',\n", - " 'https://github.com/atrisovic/econ-data-policy',\n", - " 'https://github.com/statsmodels/statsmodels',\n", - " 'https://github.com/giannisdoukas/ipython2cwl',\n", - " 'https://github.com/Neurita/pypes',\n", - " 'https://github.com/pesummary/pesummary',\n", - " 'https://github.com/PGijsbers/gama',\n", - " 'https://github.com/openvax/isovar',\n", - " 'https://github.com/seawander/nmf_imaging',\n", - " 'https://github.com/GiulioRossetti/cdlib',\n", - " 'https://github.com/neuhofmo/RecBlast',\n", - " 'https://github.com/cyverse-vice/jupyterlab-scipy',\n", - " 'https://github.com/CoffeaTeam/coffea',\n", - " 'https://github.com/multipaths/DiffuPath',\n", - " 'https://github.com/matplotlib/mpl-probscale',\n", - " 'https://github.com/richardjgowers/GCMCbenchmarks',\n", - " 'https://github.com/fa-me/spotlob',\n", - " 'https://github.com/thompsonsed/pycoalescence',\n", - " 'https://github.com/brmather/pycurious',\n", - " 'https://github.com/MHKiT-Software/MHKiT-MATLAB',\n", - " 'https://github.com/amusecode/amuse',\n", - " 'https://github.com/KeplerGO/lightkurve',\n", - " 'https://github.com/transientlunatic/gravpy',\n", - " 'https://github.com/astroufsc/chimera',\n", - " 'https://github.com/jenojp/extractacy',\n", - " 'https://github.com/valentina-s/time-series-nmf',\n", - " 'https://github.com/Nikronic/Optimized-MDVRP',\n", - " 'https://github.com/pr-omethe-us/PyTeCK',\n", - " 'https://github.com/jtempkin/enhanced_sampling_toolkit',\n", - " 'https://github.com/a-slide/NanoCount',\n", - " 'https://github.com/NLeSC/dask-cassandra-loader',\n", - " 'https://github.com/I2Cvb/retinopathy',\n", - " 'https://github.com/SHDShim/PeakPo',\n", - " 'https://github.com/rangeetpan/decomposeDNNintoModules',\n", - " 'https://github.com/InsightSoftwareConsortium/ITKColorNormalization',\n", - " 'https://github.com/coin-or/Dip',\n", - " 'https://github.com/fepegar/torchio',\n", - " 'https://github.com/phenoscape/phenoscape-owl-tools',\n", - " 'https://github.com/hugadams/pyparty',\n", - " 'https://github.com/mustakcsecuet/COIN-Attacks',\n", - " 'https://github.com/glukicov/ML_GPU',\n", - " 'https://github.com/devitocodes/devito',\n", - " 'https://github.com/pnlbwh/TBSS',\n", - " 'https://github.com/scipy/scipy',\n", - " 'https://github.com/DiamondLightSource/SuRVoS',\n", - " 'https://github.com/wri/restoration-mapper',\n", - " 'https://github.com/ICB-DCM/tumor2d',\n", - " 'https://github.com/sertansenturk/symbtrdataextractor',\n", - " 'https://github.com/TheoryInPractice/BEAVr',\n", - " 'https://github.com/jcreinhold/selfsupervised3d',\n", - " 'https://github.com/mlp6/fem',\n", - " 'https://github.com/Eden-Kramer-Lab/replay_trajectory_classification',\n", - " 'https://github.com/nschloe/colorio',\n", - " 'https://github.com/tsalo/convert-eprime',\n", - " 'https://github.com/projectglow/glow',\n", - " 'https://github.com/FRidh/scintillations',\n", - " 'https://github.com/pitt-rnel/perceptmapper',\n", - " 'https://github.com/pysal/esda',\n", - " 'https://github.com/pedropro/TACO',\n", - " 'https://github.com/MicroPasts/egyptExplorationSocietyBuhen',\n", - " 'https://github.com/Lasagne/Lasagne',\n", - " 'https://github.com/JiaweiZhuang/xESMF',\n", - " 'https://github.com/astrorama/SourceXtractorPlusPlus',\n", - " 'https://github.com/ssec/sift',\n", - " 'https://github.com/reflectometry/refl1d',\n", - " 'https://github.com/napari/napari',\n", - " 'https://github.com/sgrieve/spatial_efd',\n", - " 'https://github.com/genn-team/genn',\n", - " 'https://github.com/AxFoundation/strax',\n", - " 'https://github.com/pofatu/pypofatu',\n", - " 'https://github.com/bsc-mem/UEPREDICT',\n", - " 'https://github.com/smarie/python-spawny',\n", - " 'https://github.com/usnistgov/jarvis',\n", - " 'https://github.com/diana-hep/carl',\n", - " 'https://github.com/mne-tools/mne-python',\n", - " 'https://github.com/kundajelab/kerasAC',\n", - " 'https://github.com/dhermes/bezier',\n", - " 'https://github.com/sphinx-gallery/sphinx-gallery',\n", - " 'https://github.com/pysal/pysal',\n", - " 'https://github.com/numericalalgorithmsgroup/pybobyqa',\n", - " 'https://github.com/PyNIPT/pynipt',\n", - " 'https://github.com/jesford/cluster-lensing',\n", - " 'https://github.com/cosanlab/nltools',\n", - " 'https://github.com/ryanpdwyer/1605-phasekick',\n", - " 'https://github.com/Quantum-TII/qprime',\n", - " 'https://github.com/radnut/amc',\n", - " 'https://github.com/omuse-geoscience/omuse',\n", - " 'https://github.com/nils-wisiol/pypuf',\n", - " 'https://github.com/ladisk/pyDIC',\n", - " 'https://github.com/easyDiffraction/easyDiffraction',\n", - " 'https://github.com/pauleve/pint',\n", - " 'https://github.com/e5k/TephraProb',\n", - " 'https://github.com/delph-in/pydmrs',\n", - " 'https://github.com/GenericMappingTools/pygmt',\n", - " 'https://github.com/anuprulez/galaxy_tool_recommendation',\n", - " 'https://github.com/BMKEG/sciDT-pipeline',\n", - " 'https://github.com/hugovk/pypistats',\n", - " 'https://github.com/single-cell-genetics/vireo',\n", - " 'https://github.com/Edric-Matwiejew/QuOp_MPI',\n", - " 'https://github.com/steven-murray/hankel',\n", - " 'https://github.com/vahtras/loprop',\n", - " 'https://github.com/pv8/noipy',\n", - " 'https://github.com/MAfarrag/Hapi',\n", - " 'https://github.com/monteirotorres/ProtCHOIR',\n", - " 'https://github.com/GilesStrong/lumin',\n", - " 'https://github.com/cgre-aachen/pynoddy',\n", - " 'https://github.com/bashtage/linearmodels',\n", - " 'https://github.com/pygae/galgebra',\n", - " 'https://github.com/darothen/pyrcel',\n", - " 'https://github.com/stadelmanma/netl-ap-map-flow',\n", - " 'https://github.com/jl-wynen/isle',\n", - " 'https://github.com/aibasel/pyperplan',\n", - " 'https://github.com/theboocock/NGaDNAP',\n", - " 'https://github.com/AdmiralenOla/Scoary',\n", - " 'https://github.com/NickleDave/visual-search-nets',\n", - " 'https://github.com/dhondta/AppmemDumper',\n", - " 'https://github.com/scikit-hep/boost-histogram',\n", - " 'https://github.com/nansencenter/nansat',\n", - " 'https://github.com/cdanielmachado/reframed',\n", - " 'https://github.com/LightForm-group/matflow',\n", - " 'https://github.com/arokem/ISBI2015',\n", - " 'https://github.com/a-slide/NanoSnake',\n", - " 'https://github.com/hugadams/PAME',\n", - " ...],\n", - " 5: ['https://github.com/natcap/natgeo-dams',\n", - " 'https://github.com/similitude/sumo-simmer',\n", - " 'https://github.com/indralab/pybiopax',\n", - " 'https://github.com/clincolnoz/maDMP-rocrates-maDMP',\n", - " 'https://github.com/dragoon/kilogram',\n", - " 'https://github.com/proycon/clam',\n", - " 'https://github.com/PTB-PSt1/time-series-metadata',\n", - " 'https://github.com/SDM-TIB/SDM-RDFizer',\n", - " 'https://github.com/smartbugs/smartbugs',\n", - " 'https://github.com/smarie/python-autoclass',\n", - " 'https://github.com/olivettigroup/article-downloader',\n", - " 'https://github.com/hipster-philology/nlp-pie-taggers',\n", - " 'https://github.com/kylemede/ExoSOFT',\n", - " 'https://github.com/wateraccounting/IHEWAcollect',\n", - " 'https://github.com/sepandhaghighi/qpage',\n", - " 'https://github.com/intermine/intermine',\n", - " 'https://github.com/IFCA/keystone-voms',\n", - " 'https://github.com/dev-cafe/autocmake',\n", - " 'https://github.com/whitemech/LTLf2DFA',\n", - " 'https://github.com/cayolopesbc/eco-data-toolkit',\n", - " 'https://github.com/OSSOS/liborbfit',\n", - " 'https://github.com/duncanmmacleod/requests-ecp',\n", - " 'https://github.com/experimaestro/datamaestro',\n", - " 'https://github.com/ARGOeu/argo-api-authn',\n", - " 'https://github.com/PyThaiNLP/Thai-Text-Generator',\n", - " 'https://github.com/bgruening/galaxy_ie_helpers',\n", - " 'https://github.com/pyvideo/data',\n", - " 'https://github.com/driplineorg/dripline-python',\n", - " 'https://github.com/jona-sassenhagen/statfail',\n", - " 'https://github.com/pitthsls/pycounter',\n", - " 'https://github.com/cemac/COMET_VolcDB',\n", - " 'https://github.com/IKNL/vantage6',\n", - " 'https://github.com/deniederhut/weather_report',\n", - " 'https://github.com/yannforget/pylandsat',\n", - " 'https://github.com/josecastillolema/mini-nfv',\n", - " 'https://github.com/indigo-dc/DEEPaaS',\n", - " 'https://github.com/ENCODE-DCC/atac-seq-pipeline',\n", - " 'https://github.com/cerndb/dist-keras',\n", - " 'https://github.com/MatterMiners/cobald',\n", - " 'https://github.com/Remdeht/ia_detector',\n", - " 'https://github.com/gwpy/gwosc',\n", - " 'https://github.com/choderalab/assaytools',\n", - " 'https://github.com/sgrieve/sinuosity',\n", - " 'https://github.com/aeonium/fakedatacite',\n", - " 'https://github.com/gwu-libraries/sfm-utils',\n", - " 'https://github.com/tikk3r/lofar-grid-hpccloud',\n", - " 'https://github.com/MPAS-Dev/MPAS-Analysis',\n", - " 'https://github.com/jonathansick/padova',\n", - " 'https://github.com/mchoji/wtg-seal',\n", - " 'https://github.com/Molmed/checkQC',\n", - " 'https://github.com/similitude/netlogo-sample-simmer',\n", - " 'https://github.com/rtidatascience/django-postgres-stats',\n", - " 'https://github.com/sbaltes/dblp-retriever',\n", - " 'https://github.com/gwu-libraries/sfm-weibo-harvester',\n", - " 'https://github.com/echevemaster/fedora-college',\n", - " 'https://github.com/MAGIC-nexus/nis-backend',\n", - " 'https://github.com/vanheeringen-lab/genomepy',\n", - " 'https://github.com/smarr/ReBench',\n", - " 'https://github.com/NREL/bifacial_radiance',\n", - " 'https://github.com/GhostofGoes/ADLES',\n", - " 'https://github.com/intake/intake-esm',\n", - " 'https://github.com/hipster-philology/greek-lemmatization-data',\n", - " 'https://github.com/samapriya/geeup',\n", - " 'https://github.com/fphammerle/freesurfer-stats',\n", - " 'https://github.com/tgbugs/inferno',\n", - " 'https://github.com/NLeSC/lokum',\n", - " 'https://github.com/SuLab/genewikiworld',\n", - " 'https://github.com/samapriya/Planet-Pipeline-Shell',\n", - " 'https://github.com/oeg-upm/morph-csv',\n", - " 'https://github.com/lascivaroma/forcellini-lemmas',\n", - " 'https://github.com/VDBWRAIR/ngs_mapper',\n", - " 'https://github.com/JonathanReeve/text-matcher',\n", - " 'https://github.com/juliema/aTRAM',\n", - " 'https://github.com/e-VRO/frvcpy',\n", - " 'https://github.com/openeventdata/mordecai',\n", - " 'https://github.com/msmexplorer/msmexplorer-d3',\n", - " 'https://github.com/edwardoughton/itmlogic',\n", - " 'https://github.com/gregtucker/grain_hills',\n", - " 'https://github.com/jacobwindsor/pubchem-ranker',\n", - " 'https://github.com/samapriya/Planet-GEE-Pipeline-GUI',\n", - " 'https://github.com/similitude/h2-world-simmer',\n", - " 'https://github.com/kuchaale/wcd_2020',\n", - " 'https://github.com/ISA-tools/nmrml2isa',\n", - " 'https://github.com/minzastro/unidam',\n", - " 'https://github.com/deniederhut/PyTeX',\n", - " 'https://github.com/unicus-skmk/test',\n", - " 'https://github.com/broyson/Locust-streaming',\n", - " 'https://github.com/castelao/supportdata',\n", - " 'https://github.com/lucaspuvis/SAM',\n", - " 'https://github.com/MAGIC-nexus/nis-python-client',\n", - " 'https://github.com/tvwenger/millennium-tap-query',\n", - " 'https://github.com/harnesscloud/nova-docker',\n", - " 'https://github.com/linsalrob/PPPF',\n", - " 'https://github.com/acocac/MTLCC-MODIS-GCP',\n", - " 'https://github.com/lingpy/workflow-paper',\n", - " 'https://github.com/MIC-DKFZ/cmdint',\n", - " 'https://github.com/ctreffe/alfred',\n", - " 'https://github.com/hibernator11/AprendiendoPython',\n", - " 'https://github.com/MichaelMauderer/Gazer',\n", - " 'https://github.com/Craig-Robson/postgres_spatial_join_areas',\n", - " 'https://github.com/Scifabric/pybossa',\n", - " 'https://github.com/ajefweiss/HelioSat',\n", - " 'https://github.com/moonso/genmod',\n", - " 'https://github.com/yadage/yadage-schemas',\n", - " 'https://github.com/karenadam/Mixed-Bandlimited-Time-Encoding',\n", - " 'https://github.com/smarie/python-azureml-client',\n", - " 'https://github.com/tardis-sn/tardis',\n", - " 'https://github.com/camelot-project/frontend',\n", - " 'https://github.com/andycasey/ads',\n", - " 'https://github.com/caltechlibrary/holdit',\n", - " 'https://github.com/IDEES-Rouen/Flight-Scrapping',\n", - " 'https://github.com/arcolife/scholarec',\n", - " 'https://github.com/papis/papis',\n", - " 'https://github.com/aretha-hep/mprtect',\n", - " 'https://github.com/castelao/PyAVISO',\n", - " 'https://github.com/xieguigang/ManhattanPlot',\n", - " 'https://github.com/labexp/LibreScan',\n", - " 'https://github.com/nithyanandan/AstroUtils',\n", - " 'https://github.com/interrogator/corpkit',\n", - " 'https://github.com/tyson-swetnam/porder',\n", - " 'https://github.com/ga4gh/tool-registry-validator',\n", - " 'https://github.com/agnsal/BlocksBot',\n", - " 'https://github.com/SuLab/scheduled-bots',\n", - " 'https://github.com/vedantchandra/wdtools',\n", - " 'https://github.com/tudelft3d/bag3d',\n", - " 'https://github.com/mwcraig/msumastro',\n", - " 'https://github.com/Chilipp/psyplot_old',\n", - " 'https://github.com/spcl/dace',\n", - " 'https://github.com/thela/django_log_to_telegram',\n", - " 'https://github.com/wallissoncarvalho/HidroData',\n", - " 'https://github.com/collab-uniba/personality',\n", - " 'https://github.com/sertansenturk/makammusicbrainz',\n", - " 'https://github.com/daft-dev/daft',\n", - " 'https://github.com/bumps/bumps',\n", - " 'https://github.com/htcondor/htcondor-ce',\n", - " 'https://github.com/NLeSC/baklava',\n", - " 'https://github.com/LargerPanda/ceph',\n", - " 'https://github.com/nkratzke/twista',\n", - " 'https://github.com/IMMM-SFA/proxymod',\n", - " 'https://github.com/bgruening/docker-galaxy-stable',\n", - " 'https://github.com/PTB-PSt1/PyDynamic',\n", - " 'https://github.com/guillochon/MOSFiT',\n", - " 'https://github.com/lascivaroma/priapeia',\n", - " 'https://github.com/DD-DeCaF/id-mapper',\n", - " 'https://github.com/harnesscloud/harness-resource-manager',\n", - " 'https://github.com/FEEprojects/plantower',\n", - " 'https://github.com/Capitains/Hook',\n", - " 'https://github.com/bootphon/phonemizer',\n", - " 'https://github.com/urschrei/CDP',\n", - " 'https://github.com/bakirtzisg/cybok-cli',\n", - " 'https://github.com/USEPA/standardizedinventories',\n", - " 'https://github.com/kundajelab/atac_dnase_pipelines',\n", - " 'https://github.com/PRIMAVERA-H2020/primavera-dmt',\n", - " 'https://github.com/WorldVistA/VistA',\n", - " 'https://github.com/samapriya/hdxpop',\n", - " 'https://github.com/observingClouds/eurec4a_snd',\n", - " 'https://github.com/dvolgyes/zenodo_get',\n", - " 'https://github.com/OpenDroneMap/ODM',\n", - " 'https://github.com/spacetelescope/drizzlepac',\n", - " 'https://github.com/smoh/gaia-comoving-stars',\n", - " 'https://github.com/dftlibs/numgrid',\n", - " 'https://github.com/snewhouse/exotic-dna-ngs',\n", - " 'https://github.com/fpavogt/fcmaker',\n", - " 'https://github.com/tqbl/ood_audio',\n", - " 'https://github.com/samapriya/Sat-Pipeline-CLI',\n", - " 'https://github.com/obreitwi/py-veer',\n", - " 'https://github.com/cheshire3/cheshire3',\n", - " 'https://github.com/ludwig-burtscher/invenio-with-provenance',\n", - " 'https://github.com/Teichlab/cellphonedb',\n", - " 'https://github.com/arnikz/PIQMIe',\n", - " 'https://github.com/iterative/dvc',\n", - " 'https://github.com/PX4/Firmware',\n", - " 'https://github.com/simeonreusch/ztffps',\n", - " 'https://github.com/mosdef-hub/foyer',\n", - " 'https://github.com/adbar/htmldate',\n", - " 'https://github.com/iross/km_indexer',\n", - " 'https://github.com/biolink/biolink-model',\n", - " 'https://github.com/danhey/maelstrom',\n", - " 'https://github.com/mozillazg/phrase-pinyin-data',\n", - " 'https://github.com/duecredit/duecredit',\n", - " 'https://github.com/pybel/pybel',\n", - " 'https://github.com/giganticode/codeprep',\n", - " 'https://github.com/VForWaTer/metacatalog',\n", - " 'https://github.com/Fraternalilab/POPScomp',\n", - " 'https://github.com/arXiv/arxiv-search',\n", - " 'https://github.com/SolarArbiter/solarforecastarbiter-dashboard',\n", - " 'https://github.com/ewels/MultiQC',\n", - " 'https://github.com/moonso/stranger',\n", - " 'https://github.com/gwastro/pycbc',\n", - " 'https://github.com/poliastro/poliastro',\n", - " 'https://github.com/LucMarechal/Soft-Robotics-Materials-Database',\n", - " 'https://github.com/poppy-project/pypot',\n", - " 'https://github.com/PecanProject/pecan',\n", - " 'https://github.com/Arabidopsis-Information-Portal/adama',\n", - " 'https://github.com/mensBash/DataStewardship',\n", - " 'https://github.com/thetisproject/thetis',\n", - " 'https://github.com/dennissergeev/arke',\n", - " 'https://github.com/lsmo-epfl/discover-curated-cofs',\n", - " 'https://github.com/proycon/foliapy',\n", - " 'https://github.com/bird-house/twitcher',\n", - " 'https://github.com/ganga-devs/ganga',\n", - " 'https://github.com/mozillazg/pinyin-data',\n", - " 'https://github.com/ecohealthalliance/pubcrawler',\n", - " 'https://github.com/pytroll/satpy',\n", - " 'https://github.com/dbbs-lab/glia',\n", - " 'https://github.com/clld/clld',\n", - " 'https://github.com/dr-rodriguez/Kinematics-App',\n", - " 'https://github.com/SMRUCC/GCModeller',\n", - " 'https://github.com/benbovy/xarray-simlab',\n", - " 'https://github.com/DocNow/twarc',\n", - " 'https://github.com/samapriya/gee_asset_manager_addon',\n", - " 'https://github.com/Capitains/HookTest',\n", - " 'https://github.com/openstreams/wflow',\n", - " 'https://github.com/hudcondr/Digital-preservation---sports-trackers-for-Strava',\n", - " 'https://github.com/lmjohns3/theanets',\n", - " 'https://github.com/NLeSC/eEcology-Annotation-WS',\n", - " 'https://github.com/biolink/biolink-api',\n", - " 'https://github.com/yadage/packtivity',\n", - " 'https://github.com/AtkinsGroup/TransmissionPairs',\n", - " 'https://github.com/samapriya/spotifind',\n", - " 'https://github.com/smarie/python-pytest-cases',\n", - " 'https://github.com/Capitains/MyCapytain',\n", - " 'https://github.com/openshs/openshs',\n", - " 'https://github.com/aoelen/Survey-table-importer',\n", - " 'https://github.com/nasa/RHEAS',\n", - " 'https://github.com/keflavich/APEX_CMZ_H2CO',\n", - " 'https://github.com/uw-cryo/skysat_stereo',\n", - " 'https://github.com/gwu-libraries/TweetSets',\n", - " 'https://github.com/VHellendoorn/ICLR20-Great',\n", - " 'https://github.com/kutaslab/merp2tbl',\n", - " 'https://github.com/pc2/HPCC_FPGA',\n", - " 'https://github.com/dftlibs/xcint',\n", - " 'https://github.com/pyvideo/pyvideo',\n", - " 'https://github.com/WIPACrepo/file_catalog',\n", - " 'https://github.com/NixtonM/srsmp',\n", - " 'https://github.com/jensleitloff/CNN-Sentinel',\n", - " 'https://github.com/ngs-mstb/micgent',\n", - " 'https://github.com/pytube/data',\n", - " 'https://github.com/Emma926/paradnn',\n", - " 'https://github.com/scities/patterns-of-segregation',\n", - " 'https://github.com/camillescott/goetia',\n", - " 'https://github.com/caltechlibrary/microarchiver',\n", - " 'https://github.com/exoplanet-dev/exoplanet',\n", - " 'https://github.com/duncanmmacleod/ciecplib',\n", - " 'https://github.com/matthiasweiss/runtastic-strava-migrate',\n", - " 'https://github.com/dimazest/poultry',\n", - " 'https://github.com/pnnl/ripples',\n", - " 'https://github.com/NCAR/wrf_hydro_nwm_public',\n", - " 'https://github.com/open-editions/corpus-joyce-ulysses-tei',\n", - " 'https://github.com/GeneDx/phenopy',\n", - " 'https://github.com/orlade/microsimmer',\n", - " 'https://github.com/gbv/kos-registry',\n", - " 'https://github.com/shbhuk/barycorrpy',\n", - " 'https://github.com/UNCG-DAISY/psi-collect',\n", - " 'https://github.com/SolarArbiter/solarforecastarbiter-api',\n", - " 'https://github.com/HypothesisWorks/hypothesis',\n", - " 'https://github.com/vangorden/OUR2D2',\n", - " 'https://github.com/ctsit/research-subject-mapper',\n", - " 'https://github.com/ESMValGroup/ESMValTool',\n", - " 'https://github.com/adbar/trafilatura',\n", - " 'https://github.com/ufz/ogs-container-maker',\n", - " 'https://github.com/AstraZeneca-NGS/simple_sv_annotation',\n", - " 'https://github.com/hibernator11/notebook-texts-metadata',\n", - " 'https://github.com/pzeidler89/MUSEpack',\n", - " 'https://github.com/ADicksonLab/geomm',\n", - " 'https://github.com/UCATLAS/xAODAnaHelpers',\n", - " 'https://github.com/tdwg/dwc',\n", - " 'https://github.com/asergiobranco/ArchNet',\n", - " 'https://github.com/enolfc/d4science-galaxy-authn',\n", - " 'https://github.com/cgat-developers/cgat-core',\n", - " 'https://github.com/enolfc/d4scienceauth',\n", - " 'https://github.com/CDAT/ci-bots',\n", - " 'https://github.com/dimazest/google-ngram-downloader',\n", - " 'https://github.com/keflavich/pyradex',\n", - " 'https://github.com/kizniche/Mycodo',\n", - " 'https://github.com/davidhin/stringmatching',\n", - " 'https://github.com/harnesscloud/bqwm',\n", - " 'https://github.com/mila-iqia/blocks',\n", - " 'https://github.com/gchrupala/visually-grounded-speech',\n", - " 'https://github.com/rvhonorato/cazy-parser',\n", - " 'https://github.com/cemac/SWIFTDB',\n", - " 'https://github.com/erdc/spt_compute',\n", - " 'https://github.com/nschloe/tikzplotlib',\n", - " 'https://github.com/spacetelescope/mirage',\n", - " 'https://github.com/dpla/ingestion',\n", - " 'https://github.com/erdc/spt_dataset_manager',\n", - " 'https://github.com/gher-ulg/DINCAE',\n", - " 'https://github.com/samapriya/plantpy',\n", - " 'https://github.com/proycon/codemetapy',\n", - " 'https://github.com/harnesscloud/irm-nova',\n", - " 'https://github.com/BerkeleyPhotonicsGenerator/BPG',\n", - " 'https://github.com/GeoscienceAustralia/tcrm'],\n", - " 2: ['https://github.com/gwu-libraries/sfm-docker',\n", - " 'https://github.com/dejac001/MCFlow',\n", - " 'https://github.com/tferr/hIPNAT',\n", - " 'https://github.com/midas-isg/PITT-SEIR-model',\n", - " 'https://github.com/smart-facility/cognicity-reports-twitter',\n", - " 'https://github.com/clij/clij',\n", - " 'https://github.com/TRACMASS/tracmass',\n", - " 'https://github.com/dejac001/RealGas',\n", - " 'https://github.com/bonej-org/BoneJ2',\n", - " 'https://github.com/fiji/KymographBuilder',\n", - " 'https://github.com/clij/clij-docs',\n", - " 'https://github.com/clij/clij-core',\n", - " 'https://github.com/ihmwg/python-ihm',\n", - " 'https://github.com/fmalmeida/ngs-preprocess',\n", - " 'https://github.com/thorstenwagner/ij-trackmate-findmaxima',\n", - " 'https://github.com/RCHG/FunFAN',\n", - " 'https://github.com/fmi-faim/fmi-trackmate-addons',\n", - " 'https://github.com/fmalmeida/bacannot',\n", - " 'https://github.com/dejac001/adsorption_isotherm_fitting',\n", - " 'https://github.com/clij/clij-ops',\n", - " 'https://github.com/thorstenwagner/ij-particlesizer',\n", - " 'https://github.com/PCMSolver/pcmsolver',\n", - " 'https://github.com/adaerr/pendent-drop',\n", - " 'https://github.com/salilab/imp',\n", - " 'https://github.com/fiji/Trainable_Segmentation',\n", - " 'https://github.com/smart-facility/cognicity-reports',\n", - " 'https://github.com/fmalmeida/MpGAP',\n", - " 'https://github.com/tferr/Scripts',\n", - " 'https://github.com/smart-facility/cognicity-reports-qlue',\n", - " 'https://github.com/smart-facility/cognicity-reports-floodgauge',\n", - " 'https://github.com/thorstenwagner/ij-shape-smoothing',\n", - " 'https://github.com/NeuPhysics/neutrino',\n", - " 'https://github.com/thorstenwagner/ij-shape-filter'],\n", - " 6: ['https://github.com/javaparser/javaparser',\n", - " 'https://github.com/GlobalNamesArchitecture/gnresolver',\n", - " 'https://github.com/mayconbordin/storm-applications',\n", - " 'https://github.com/cerebis/shap',\n", - " 'https://github.com/thorstenwagner/ij-trajectory-classifier',\n", - " 'https://github.com/qbicsoftware/omero-client-portlet',\n", - " 'https://github.com/Yi-ran/Omnetpp',\n", - " 'https://github.com/globalbioticinteractions/globalbioticinteractions',\n", - " 'https://github.com/JDRomano2/smdb_search',\n", - " 'https://github.com/clij/clij2',\n", - " 'https://github.com/saschneider/VMV',\n", - " 'https://github.com/ltrr-arizona-edu/tellervo',\n", - " 'https://github.com/egonw/jqudt',\n", - " 'https://github.com/paberlo/FastFeatureSelection',\n", - " 'https://github.com/GlobalNamesArchitecture/gn_uuid',\n", - " 'https://github.com/wild-fire/twitter-graph-segmenter',\n", - " 'https://github.com/jfsantos/mushra-ruby-server',\n", - " 'https://github.com/petebrew/fhaes',\n", - " 'https://github.com/justinnk/bss-simulation-study',\n", - " 'https://github.com/bowsersenior/itu_codes',\n", - " 'https://github.com/ruby-rdf/rdf',\n", - " 'https://github.com/comodide/CoModIDE',\n", - " 'https://github.com/dnet-team/dnet-basic-aggregator',\n", - " 'https://github.com/fusion-jena/abecto',\n", - " 'https://github.com/ameyaKetkar/TypeChangeMiner',\n", - " 'https://github.com/ag-gipp/FormulaCloudData',\n", - " 'https://github.com/rinde/vanLon17-JAAMAS-code',\n", - " 'https://github.com/lucasberent/ds',\n", - " 'https://github.com/datapoet/hubminer',\n", - " 'https://github.com/rinde/vanLon16-EJOR-code',\n", - " 'https://github.com/rinde/RinLog',\n", - " 'https://github.com/dvasilen/Hive-XML-SerDe',\n", - " 'https://github.com/gousiosg/pullreqs',\n", - " 'https://github.com/mmhss/sstrong-webhook',\n", - " 'https://github.com/GlobalNamesArchitecture/gn_crossmap',\n", - " 'https://github.com/owlcollab/expression-materializing-reasoner',\n", - " 'https://github.com/governit/GovernIT',\n", - " 'https://github.com/qbicsoftware/omero-client-lib',\n", - " 'https://github.com/ncrncornell/ced2ar',\n", - " 'https://github.com/rockt/SETH',\n", - " 'https://github.com/EHadoux/aptimizer',\n", - " 'https://github.com/amuslija/fbd-complexity-tool',\n", - " 'https://github.com/cwi-swat/bacata',\n", - " 'https://github.com/Sentimentron/PRJ9081',\n", - " 'https://github.com/meteoinfo/MeteoInfo',\n", - " 'https://github.com/sojamo/oscp5',\n", - " 'https://github.com/gbif/gbif-api',\n", - " 'https://github.com/Ayllonbe/gsan',\n", - " 'https://github.com/ALIADA/aliada-tool',\n", - " 'https://github.com/stain/ro-combine-archive',\n", - " 'https://github.com/postnathalie/WallTalk',\n", - " 'https://github.com/vivo-project/VIVO',\n", - " 'https://github.com/RBVI/CyAnimator',\n", - " 'https://github.com/SciCrunch/resource_disambiguator',\n", - " 'https://github.com/phenoscape/phenoday-reasoning-paper',\n", - " 'https://github.com/sisinflab-swot/ldp-coap-framework',\n", - " 'https://github.com/TomDemeranville/orcid-update-java',\n", - " 'https://github.com/yogo/VOEIS',\n", - " 'https://github.com/midas-isg/PITT-Anthrax-model',\n", - " 'https://github.com/aderidder/iCRFGenerator',\n", - " 'https://github.com/jyrkioraskari/OnlineMvdXMLChecker',\n", - " 'https://github.com/histogrammar/histogrammar-scala',\n", - " 'https://github.com/midas-isg/digital-commons',\n", - " 'https://github.com/LiberalHD/gudagudaACG',\n", - " 'https://github.com/piazentin/ksets',\n", - " 'https://github.com/smd-faizan/CySpanningTree',\n", - " 'https://github.com/javadch/quis',\n", - " 'https://github.com/scijava/scijava-common',\n", - " 'https://github.com/jgreener64/pdb-benchmarks',\n", - " 'https://github.com/scholarslab/prism',\n", - " 'https://github.com/thorstenwagner/ij-blob',\n", - " 'https://github.com/PBR/Marker2Sequence',\n", - " 'https://github.com/MCZbase/PreCapture',\n", - " 'https://github.com/edwardcapriolo/filecrush',\n", - " 'https://github.com/miledrousset/opentheso',\n", - " 'https://github.com/globalbioticinteractions/nomer',\n", - " 'https://github.com/urmi-21/MetaOmGraph',\n", - " 'https://github.com/altmetric/aho_corasick_matcher',\n", - " 'https://github.com/DECLARE-Project/fastpan',\n", - " 'https://github.com/felicitia/EventExtractor',\n", - " 'https://github.com/marco-ka/semantic-annotation-writer',\n", - " 'https://github.com/medusa-project/databank',\n", - " 'https://github.com/Lane-Library/wiki-extract',\n", - " 'https://github.com/NLeSC/fairdatapoint',\n", - " 'https://github.com/usethesource/capsule',\n", - " 'https://github.com/davidenunes/context-permeability',\n", - " 'https://github.com/Tyler-Yates/AestheticFractals',\n", - " 'https://github.com/Terradue/dcs-insar-roipac',\n", - " 'https://github.com/j-stone/cog-tasks',\n", - " 'https://github.com/unipept/unipept-cli',\n", - " 'https://github.com/skp703/RainInterpolator',\n", - " 'https://github.com/anil88/population-origin-calculator',\n", - " 'https://github.com/3D-e-Chem/knime-klifs',\n", - " 'https://github.com/globalbioticinteractions/elton',\n", - " 'https://github.com/felicitia/TestBenchmark-Java-client',\n", - " 'https://github.com/arfon/metamatter',\n", - " 'https://github.com/piyush82/expression-evaluator',\n", - " 'https://github.com/nomencurator/taxonaut',\n", - " 'https://github.com/willpearse/data_frame',\n", - " 'https://github.com/jameshowison/softcite',\n", - " 'https://github.com/mgiorgio/comet-utilities',\n", - " 'https://github.com/myGrid/ruby-zip-container',\n", - " 'https://github.com/jeremyf/orcid_album_cover',\n", - " 'https://github.com/theblackunknown/creative-ecosystems',\n", - " 'https://github.com/FedUni/caliko',\n", - " 'https://github.com/aleksandarsibincic/ExcelAudit',\n", - " 'https://github.com/silviodc/Gazetteer',\n", - " 'https://github.com/timtroendle/energy-agents',\n", - " 'https://github.com/sojamo/midimapper',\n", - " 'https://github.com/dicom/rtp-connect',\n", - " 'https://github.com/myGrid/ruby-ucf',\n", - " 'https://github.com/Sentimentron/Nebraska-public',\n", - " 'https://github.com/korpling/ANNIS',\n", - " 'https://github.com/sayounara/Green_training',\n", - " 'https://github.com/thorstenwagner/TraJ',\n", - " 'https://github.com/dgarijo/Widoco',\n", - " 'https://github.com/PecanProject/bety',\n", - " 'https://github.com/rvanheest/feedback4s',\n", - " 'https://github.com/DataFusion4NetBio/Paper16-SCODE',\n", - " 'https://github.com/lifs-tools/jmzTab-m',\n", - " 'https://github.com/KnowledgeCaptureAndDiscovery/DISK',\n", - " 'https://github.com/SeqWare/oozie-sge',\n", - " 'https://github.com/NLeSC/eEcology-Classification',\n", - " 'https://github.com/shiyy123/FCDetector',\n", - " 'https://github.com/mayconbordin/streaminer',\n", - " 'https://github.com/vuw-sim-stia/TICJ',\n", - " 'https://github.com/cyverse-gis/suas-metadata',\n", - " 'https://github.com/DennisRippinger/spade',\n", - " 'https://github.com/fcproj/agrotagger',\n", - " 'https://github.com/quadrama/DramaNLP',\n", - " 'https://github.com/milaboratory/mixcr',\n", - " 'https://github.com/SciGraph/SciGraph',\n", - " 'https://github.com/nilsreiter/CorefAnnotator',\n", - " 'https://github.com/Rothamsted/knetminer',\n", - " 'https://github.com/owlcollab/owltools',\n", - " 'https://github.com/mmhss/sstrong-import',\n", - " 'https://github.com/Smart-Contract-Modelling-uOttawa/Symboleo-Compliance-Checker',\n", - " 'https://github.com/klugem/watchdog',\n", - " 'https://github.com/rcsb/ciftools-java',\n", - " 'https://github.com/scalaris-team/scalaris',\n", - " 'https://github.com/DeathStar3/symfinder',\n", - " 'https://github.com/opentox/lazar-rest',\n", - " 'https://github.com/SeqWare/seqware',\n", - " 'https://github.com/sjcross/MIA',\n", - " 'https://github.com/TGAC/brassica',\n", - " 'https://github.com/oicr-gsi/shesmu',\n", - " 'https://github.com/constantinpape/z5',\n", - " 'https://github.com/ISA-tools/stato',\n", - " 'https://github.com/diging/giles-eco-cepheus',\n", - " 'https://github.com/alexrashed/eval_rest',\n", - " 'https://github.com/dannyboscan/angular-and-rails',\n", - " 'https://github.com/thorstenwagner/spie-photonics-europe-2016',\n", - " 'https://github.com/slimsuite/SLiMScape',\n", - " 'https://github.com/diging/citesphere-importer',\n", - " 'https://github.com/rinde/RinECJ',\n", - " 'https://github.com/Terradue/rOpenSearch',\n", - " 'https://github.com/sckott/serrano',\n", - " 'https://github.com/shah314/graphcoloring',\n", - " 'https://github.com/CeON/CERMINE',\n", - " 'https://github.com/scleveland/NADV',\n", - " 'https://github.com/nextcloud/android',\n", - " 'https://github.com/BMKEG/UimaBioC',\n", - " 'https://github.com/ICGC-TCGA-PanCancer/OxoGWrapperWorkflow',\n", - " 'https://github.com/CharafeddineMechalikh/PureEdgeSim',\n", - " 'https://github.com/GlobalNamesArchitecture/taxamatch_rb',\n", - " 'https://github.com/SELAB-AA/arvue-platform',\n", - " 'https://github.com/aquariumbio/aquarium',\n", - " 'https://github.com/mbari-media-management/vars-avfoundation',\n", - " 'https://github.com/phon-ca/phon',\n", - " 'https://github.com/manoelcampos/cloudsim-plus',\n", - " 'https://github.com/qbicsoftware/projectwizard-portlet',\n", - " 'https://github.com/dockstore/dockstore',\n", - " 'https://github.com/nilsreiter/uima-util',\n", - " 'https://github.com/JonnyDaenen/Gumbo',\n", - " 'https://github.com/piyush82/iot-simulator',\n", - " 'https://github.com/thiagotts/CloudReports',\n", - " 'https://github.com/lagotto/lagotto',\n", - " 'https://github.com/CloudBindle/youxia',\n", - " 'https://github.com/hcadavid/TimeWarpScheduleLibrary',\n", - " 'https://github.com/gbif/registry',\n", - " 'https://github.com/miso-lims/miso-lims',\n", - " 'https://github.com/korpling/pepper',\n", - " 'https://github.com/CERNatschool/LUCIDITY',\n", - " 'https://github.com/myGrid/t2-server-gem',\n", - " 'https://github.com/cmorty/realsim',\n", - " 'https://github.com/antlr/codebuff',\n", - " 'https://github.com/vdenotaris/spring-boot-security-saml-sample',\n", - " 'https://github.com/bio-guoda/preston',\n", - " 'https://github.com/fusion-jena/CoMerger',\n", - " 'https://github.com/peterbanda/coel',\n", - " 'https://github.com/kotik-coder/PULsE',\n", - " 'https://github.com/klout/brickhouse',\n", - " 'https://github.com/psambit9791/jDSP',\n", - " 'https://github.com/cgvwzq/polca',\n", - " 'https://github.com/davidenunes/jnetwork',\n", - " 'https://github.com/RMLio/rmlmapper-java',\n", - " 'https://github.com/d-tear/SIAL',\n", - " 'https://github.com/milaboratory/mitools',\n", - " 'https://github.com/faustusdotbe/topic-modeling-tool-FR',\n", - " 'https://github.com/powerpak/pathogendb-pipeline',\n", - " 'https://github.com/biojava/biojava',\n", - " 'https://github.com/IvanPaez/Proact',\n", - " 'https://github.com/SymbioticLab/tensorflow-salus',\n", - " 'https://github.com/LukasEttel/YoshikoStandalone',\n", - " 'https://github.com/ISA-tools/NanoMaton',\n", - " 'https://github.com/luosolo/OAiZer',\n", - " 'https://github.com/DECLARE-Project/palladio-headless',\n", - " 'https://github.com/claudioatzori/dnet-gdup',\n", - " 'https://github.com/brics-dev/brics',\n", - " 'https://github.com/cismet/cids-custom-sudplan-linz',\n", - " 'https://github.com/datacite/omniauth-orcid',\n", - " 'https://github.com/stain/profilechecker',\n", - " 'https://github.com/byu-vv-lab/mercury',\n", - " 'https://github.com/schxslt/schxslt',\n", - " 'https://github.com/lejon/PartiallyCollapsedLDA',\n", - " 'https://github.com/phillima/asniffer',\n", - " 'https://github.com/ncsa/OA4MP',\n", - " 'https://github.com/meraki-analytics/orianna',\n", - " 'https://github.com/saeg/asm-defuse',\n", - " 'https://github.com/midas-isg/object-serializer',\n", - " 'https://github.com/sotorrent/posthistory-extractor',\n", - " 'https://github.com/CESNET/perun',\n", - " 'https://github.com/ace-design/cosmic',\n", - " 'https://github.com/ebimodeling/ghgvc',\n", - " 'https://github.com/KnowledgeCaptureAndDiscovery/OBA',\n", - " 'https://github.com/diging/virtual-spaces-2.0',\n", - " 'https://github.com/andremann/MoniQ',\n", - " 'https://github.com/ideaconsult/appdomain',\n", - " 'https://github.com/mbdemoraes/moafs',\n", - " 'https://github.com/alexvoronov/geonetworking',\n", - " 'https://github.com/nicysneiros/SemMatcher',\n", - " 'https://github.com/locked-fg/JFeatureLib',\n", - " 'https://github.com/SP7-Ritmare/EDI-NG_server',\n", - " 'https://github.com/rinde/pdptw-dataset-generator',\n", - " 'https://github.com/geneontology/obographs',\n", - " 'https://github.com/TreeCmp/TreeCmpWEB',\n", - " 'https://github.com/VIDA-NYU/domain-discovery-d4',\n", - " 'https://github.com/mayconbordin/cdr-gen',\n", - " 'https://github.com/nismod/transport',\n", - " 'https://github.com/blahah/transrate',\n", - " 'https://github.com/sbmlteam/jsbml',\n", - " 'https://github.com/jaclaes/SPMM2015',\n", - " 'https://github.com/plt-tud/r43ples',\n", - " 'https://github.com/mbari-media-management/vcr4j',\n", - " 'https://github.com/mbari-media-management/vars-query',\n", - " 'https://github.com/ISOBlue/isoblue-android',\n", - " 'https://github.com/egonw/ops4j',\n", - " 'https://github.com/alamar/microbe',\n", - " 'https://github.com/arbox/shalmaneser',\n", - " 'https://github.com/myGrid/ruby-ro-bundle',\n", - " 'https://github.com/jjnp/dss-ue2',\n", - " 'https://github.com/TGAC/RAMPART',\n", - " 'https://github.com/repseqio/repseqio',\n", - " 'https://github.com/russianwordnet/yarn',\n", - " 'https://github.com/ameyaKetkar/SimpleTypeChangeMiner',\n", - " 'https://github.com/lifs-tools/jmzTab-m-webapp',\n", - " 'https://github.com/rinde/vanLon17-GPEM-code',\n", - " 'https://github.com/cicirello/JavaPermutationTools',\n", - " 'https://github.com/CESNET/perun-mitreid',\n", - " 'https://github.com/jiemakel/seco-hfst',\n", - " 'https://github.com/infraling/atomic',\n", - " 'https://github.com/ijpb/MorphoLibJ',\n", - " 'https://github.com/yogo/sapphire',\n", - " 'https://github.com/arselzer/HTQueryOptimizer'],\n", - " 9: ['https://github.com/nevenjovanovic/treebank-polybius',\n", - " 'https://github.com/FNNDSC/ChRIS_ui',\n", - " 'https://github.com/GLAM-Workbench/te-papa-api',\n", - " 'https://github.com/CCMi-FIT/ontouml-code-generator',\n", - " 'https://github.com/diging/tethne',\n", - " 'https://github.com/xldrkp/zocurelia',\n", - " 'https://github.com/encompasslabs/encompass-aquiferium',\n", - " 'https://github.com/maikherbig/AIDeveloper',\n", - " 'https://github.com/isle-project/isle-editor',\n", - " 'https://github.com/cytoscape/cytoscape.js',\n", - " 'https://github.com/Andros-Spica/EAA2018_ceramics',\n", - " 'https://github.com/molbiodiv/biojs-io-biom',\n", - " 'https://github.com/leilaicruz/Experimental-journal-deploy',\n", - " 'https://github.com/mathjax/MathJax-src',\n", - " 'https://github.com/zero323/developing-data-products-shiny',\n", - " 'https://github.com/etnbrd/flx-example',\n", - " 'https://github.com/sanshu/protaeljs',\n", - " 'https://github.com/karimamufidah/karimamufidah.github.io',\n", - " 'https://github.com/biasmv/pv',\n", - " 'https://github.com/LDflex/LDflex',\n", - " 'https://github.com/cggh/panoptes',\n", - " 'https://github.com/bionode/bionode-sra',\n", - " 'https://github.com/neuroscout/neuroscout',\n", - " 'https://github.com/NESCent/fcdb-api',\n", - " 'https://github.com/SP7-Ritmare/EDI-NG_client',\n", - " 'https://github.com/tobysmith568/TestEnv',\n", - " 'https://github.com/IbrahimTanyalcin/RafX',\n", - " 'https://github.com/ebmdatalab/trialstracker',\n", - " 'https://github.com/zakandrewking/escher',\n", - " 'https://github.com/EMAPS/climaps-platform',\n", - " 'https://github.com/yeeking/evosynth',\n", - " 'https://github.com/speckleworks/SpeckleServer',\n", - " 'https://github.com/qPRC/qPRC',\n", - " 'https://github.com/ecds/readux',\n", - " 'https://github.com/cfe-lab/Kive',\n", - " 'https://github.com/brown-ccv/neuro-task-starter',\n", - " 'https://github.com/densitymodelling/dsmextra',\n", - " 'https://github.com/asherpasha/Araport_GeneSlider',\n", - " 'https://github.com/HuckleyLab/phyto-mhw',\n", - " 'https://github.com/dmitriz/cpsfy',\n", - " 'https://github.com/InsightSoftwareConsortium/itk-js',\n", - " 'https://github.com/rodighiero/COVID-19',\n", - " 'https://github.com/darribas/gds16',\n", - " 'https://github.com/GeriLife/wellbeing',\n", - " 'https://github.com/scienceai/neocortex',\n", - " 'https://github.com/hyperwell/gateway',\n", - " 'https://github.com/a-callahan/MechWolf_Pull',\n", - " 'https://github.com/ropensci/lingtypology',\n", - " 'https://github.com/MoritzStefaner/ach-ingen-zell',\n", - " 'https://github.com/bionode/fasta-parser',\n", - " 'https://github.com/hyperwell/playground',\n", - " 'https://github.com/rcfduarte/nmsat',\n", - " 'https://github.com/atrisovic/weather-panel.github.io',\n", - " 'https://github.com/clarity-h2020/map-component',\n", - " 'https://github.com/iomega/zenodo-upload',\n", - " 'https://github.com/RomainBey/stratified-cross-validation',\n", - " 'https://github.com/opencv/cvat',\n", - " 'https://github.com/smart-facility/cognicity-floodsensor',\n", - " 'https://github.com/vibbits/phyd3',\n", - " 'https://github.com/gcube-team/gcube-releases',\n", - " 'https://github.com/xieguigang/Data.GIS',\n", - " 'https://github.com/blobtoolkit/viewer',\n", - " 'https://github.com/schema-app/schema',\n", - " 'https://github.com/Capitains/Sparrow',\n", - " 'https://github.com/filips123/ZeroFrameJS',\n", - " 'https://github.com/georgeOsdDev/longo',\n", - " 'https://github.com/evanodell/ukpolice',\n", - " 'https://github.com/AlgolLLC/phonetop',\n", - " 'https://github.com/rodighiero/DH2019',\n", - " 'https://github.com/nawrs/nawrs',\n", - " 'https://github.com/datproject/dat',\n", - " 'https://github.com/Lonero-Team/Decentralized-Internet',\n", - " 'https://github.com/ElektraInitiative/libelektra',\n", - " 'https://github.com/Andros-Spica/PhD-defense',\n", - " 'https://github.com/prevwong/craft.js',\n", - " 'https://github.com/darribas/wmn',\n", - " 'https://github.com/NUStreaming/acm-mmsys-2020-grand-challenge',\n", - " 'https://github.com/bionode/bionode-template',\n", - " 'https://github.com/WikiWatershed/model-my-watershed',\n", - " 'https://github.com/sealuzh/lightweight-effectiveness',\n", - " 'https://github.com/phiresky/backchannel-prediction',\n", - " 'https://github.com/allucas/allucas.github.io',\n", - " 'https://github.com/AABoyles/MicrobeTrace',\n", - " 'https://github.com/OpenGeoscience/geojs',\n", - " 'https://github.com/CDAT/jupyter-vcdat',\n", - " 'https://github.com/butcer0/SequenceOne',\n", - " 'https://github.com/InsightSoftwareConsortium/itkwidgets',\n", - " 'https://github.com/ryanpeek/mapping-in-R-workshop',\n", - " 'https://github.com/kks32-slides/2016-berkeley',\n", - " 'https://github.com/midas-isg/epicasemap',\n", - " 'https://github.com/dockstore/dockstore-ui2',\n", - " 'https://github.com/rOpenGov/eurostat',\n", - " 'https://github.com/joshje/drawpath',\n", - " 'https://github.com/bio-ontology-research-group/DDIEM',\n", - " 'https://github.com/prajankya/Lidar-Robot',\n", - " 'https://github.com/MonashBioinformaticsPlatform/laxy',\n", - " 'https://github.com/LinkedDataFragments/Server.js',\n", - " 'https://github.com/lgsvl/simulator',\n", - " 'https://github.com/jtmccr1/figtreejs-react',\n", - " 'https://github.com/AbhinavMir/Decentralized-Journalism-Using-Ethereum',\n", - " 'https://github.com/UNCG-DAISY/Coastal-Image-Labeler',\n", - " 'https://github.com/cosmo-epfl/chemiscope',\n", - " 'https://github.com/filips123/EthAvatar.JS',\n", - " 'https://github.com/Kitware/itk-vtk-viewer',\n", - " 'https://github.com/arose/ngl',\n", - " 'https://github.com/sdss/marvin',\n", - " 'https://github.com/sigsep/sigsep-mus-2018-website',\n", - " 'https://github.com/bwbohl/introduction-to-mei',\n", - " 'https://github.com/JaneliaSciComp/SharkViewer',\n", - " 'https://github.com/cogan-shimizu-wsu/ExperimentAnnotationTracker',\n", - " 'https://github.com/aaronSig/rainforest-rhythms',\n", - " 'https://github.com/mjuez/TFM2016_Analisis-Visual-Revisiones-Codigo',\n", - " 'https://github.com/sgsaenger/vipster',\n", - " 'https://github.com/Thales1330/PSP',\n", - " 'https://github.com/ufbmi/mdc_search',\n", - " 'https://github.com/Andros-Spica/EMAC-Angourakis-et-al-2019',\n", - " 'https://github.com/plantinformatics/pretzel',\n", - " 'https://github.com/OpenKnowledgeMaps/Headstart',\n", - " 'https://github.com/Irstea/otolithe',\n", - " 'https://github.com/bionode/bionode',\n", - " 'https://github.com/evanodell/parlitools',\n", - " 'https://github.com/rodighiero/DH2020',\n", - " 'https://github.com/Sulstice/datacity',\n", - " 'https://github.com/lucasberent/mapleDocs',\n", - " 'https://github.com/University-of-Potsdam-MM/Reflect.UP',\n", - " 'https://github.com/cronelab/bci2000web',\n", - " 'https://github.com/AliTVTeam/AliTV',\n", - " 'https://github.com/essepuntato/rash',\n", - " 'https://github.com/falafeljan/recogito-user-testing',\n", - " 'https://github.com/mfroeling/QMRITools',\n", - " 'https://github.com/delphi-hub/delphi-webapp',\n", - " 'https://github.com/dohalloran/phylo-node',\n", - " 'https://github.com/GRIFFINCollaboration/beamCompanionExplorer',\n", - " 'https://github.com/Andros-Spica/Postdocs-Angourakis-2019',\n", - " 'https://github.com/ARGOeu/poem-2',\n", - " 'https://github.com/liminoid/liminoid-react',\n", - " 'https://github.com/sigsep/website',\n", - " 'https://github.com/rsa-tools/rsat-code',\n", - " 'https://github.com/tompollard/phd_thesis_markdown',\n", - " 'https://github.com/calipho-sib/feature-viewer',\n", - " 'https://github.com/sherlock-clustering/Sherlock_DiVE',\n", - " 'https://github.com/cytoscape/cytoscape.js-cxtmenu',\n", - " 'https://github.com/lewisacidic/synergy-maps',\n", - " 'https://github.com/bongadi/ARV-Predictor-OngadiB',\n", - " 'https://github.com/matthiaskoenig/pkdb',\n", - " 'https://github.com/craws/OpenAtlas',\n", - " 'https://github.com/jacobwindsor/kaavio-showdown',\n", - " 'https://github.com/bionode/bionode-ncbi',\n", - " 'https://github.com/NLeSC/nlesc-serverless-boilerplate',\n", - " 'https://github.com/Princeton-CDH/mep-django',\n", - " 'https://github.com/SmartAPI/smartAPI-editor',\n", - " 'https://github.com/chaoss/augur',\n", - " 'https://github.com/njss/SpaceTimeCube3D',\n", - " 'https://github.com/plertvilai/IPAX',\n", - " 'https://github.com/MicroPasts/MicroPasts-pybossa-theme',\n", - " 'https://github.com/fzyukio/koe',\n", - " 'https://github.com/smart-facility/petajakarta-web',\n", - " 'https://github.com/cytoscape/cytoscape.js-euler',\n", - " 'https://github.com/macarthur-lab/seqr',\n", - " 'https://github.com/openearth/wpsbuilder',\n", - " 'https://github.com/ufbmi/mdc_api',\n", - " 'https://github.com/Andros-Spica/CDAL-Angourakis-2019',\n", - " 'https://github.com/Andros-Spica/TIPC2-Angourakis-Graham-2018',\n", - " 'https://github.com/ci-for-research/zenodo',\n", - " 'https://github.com/laduplessis/SARS-CoV-2_Guangdong_genomic_epidemiology',\n", - " 'https://github.com/ivanhercaz/research',\n", - " 'https://github.com/nismod/smif',\n", - " 'https://github.com/mgndolan/phagesdb',\n", - " 'https://github.com/rdfjs/N3.js',\n", - " 'https://github.com/molstar/molstar',\n", - " 'https://github.com/na399/VAST-Challenge-2019-MC1',\n", - " 'https://github.com/Dash-Industry-Forum/dash.js',\n", - " 'https://github.com/cytoscape/cytoscape.js-popper',\n", - " 'https://github.com/RADAR-base/RADAR-Questionnaire',\n", - " 'https://github.com/nichtich/wikidata-taxonomy',\n", - " 'https://github.com/Kitware/vtk-js',\n", - " 'https://github.com/tdurieux/Travis-Listener',\n", - " 'https://github.com/ufbmi/mdc_meter',\n", - " 'https://github.com/benchoufi/DocChain',\n", - " 'https://github.com/Zettlr/Zettlr',\n", - " 'https://github.com/RADAR-base/ManagementPortal',\n", - " 'https://github.com/chanzuckerberg/cellxgene',\n", - " 'https://github.com/University-of-Potsdam-MM/Mobile.UP',\n", - " 'https://github.com/DukeLearningInnovation/muser',\n", - " 'https://github.com/fablabbcn/smartcitizen-kit-21',\n", - " 'https://github.com/Andros-Spica/ENE-Angourakis-et-al-2019',\n", - " 'https://github.com/planetserver/webclient-neo',\n", - " 'https://github.com/galaxyproject/SARS-CoV-2',\n", - " 'https://github.com/smart-facility/cognicity-server',\n", - " 'https://github.com/FelixHenninger/lab.js',\n", - " 'https://github.com/sonjageorgievska/CClusTera',\n", - " 'https://github.com/liminoid/liminoid-cli',\n", - " 'https://github.com/ben-aaron188/netanos',\n", - " 'https://github.com/Duke-GCB/iMADS',\n", - " 'https://github.com/michael-pagan/Netflix-Analysis',\n", - " 'https://github.com/Alan-Cha/graphql-complexity-paper-artifact',\n", - " 'https://github.com/rodighiero/Affinity-Map',\n", - " 'https://github.com/trtcrd/SLIM',\n", - " 'https://github.com/mrc-ide/squire_js',\n", - " 'https://github.com/ericmandel/js9',\n", - " 'https://github.com/ocean-data-qc/ocean-data-qc',\n", - " 'https://github.com/sosy-lab/benchexec',\n", - " 'https://github.com/camomile-project/camomile-server',\n", - " 'https://github.com/zebateira/rama-spotify',\n", - " 'https://github.com/eWaterCycle/Cesium-NcWMS',\n", - " 'https://github.com/CMLPlatform/ramascene',\n", - " 'https://github.com/schimatos/schimatos.org',\n", - " 'https://github.com/Andros-Spica/EAA2018_simulation',\n", - " 'https://github.com/LDflex/LDflex-Comunica',\n", - " 'https://github.com/research-software-directory/research-software-directory',\n", - " 'https://github.com/erwinkendo/polaruob',\n", - " 'https://github.com/sept08/WebToys',\n", - " 'https://github.com/comses/comses.net',\n", - " 'https://github.com/njss/Sense.me',\n", - " 'https://github.com/encompasslabs/mcsdss-watermark',\n", - " 'https://github.com/jpdias/node-red-contrib-self-healing',\n", - " 'https://github.com/dzhw/metadatamanagement',\n", - " 'https://github.com/planetserver/ps2-www-client',\n", - " 'https://github.com/ropensci/stplanr',\n", - " 'https://github.com/digitallinguistics/app',\n", - " 'https://github.com/netsage-project/netsage-pipeline',\n", - " 'https://github.com/liminoid/liminoid-js',\n", - " 'https://github.com/Jollyfant/PMAG2',\n", - " 'https://github.com/rodighiero/AIUCD2020',\n", - " 'https://github.com/bionode/bionode-fasta',\n", - " 'https://github.com/chasemc/IDBacApp',\n", - " 'https://github.com/fruchtfolge/client',\n", - " 'https://github.com/newcastle-living-lab/living-lab',\n", - " 'https://github.com/ufbmi/mdc_tree',\n", - " 'https://github.com/bigbadcrad/PUFFIN',\n", - " 'https://github.com/eweitz/ideogram',\n", - " 'https://github.com/kach/nearley',\n", - " 'https://github.com/direwolf/direwolf-app',\n", - " 'https://github.com/bids-standard/bids-validator',\n", - " 'https://github.com/trendscenter/coinstac',\n", - " 'https://github.com/sbalci/clinicopathological'],\n", - " 4: ['https://github.com/metomi/isodatetime',\n", - " 'https://github.com/jyrkioraskari/IFCtoLBD_OpenAPI',\n", - " 'https://github.com/digitallinguistics/scription2dlx',\n", - " 'https://github.com/RubenVerborgh/WebFundamentals',\n", - " 'https://github.com/nickk124/RCR',\n", - " 'https://github.com/biowdl/QC',\n", - " 'https://github.com/biowdl/structural-variantcalling',\n", - " 'https://github.com/LispTO/llthw',\n", - " 'https://github.com/biowdl/tasks',\n", - " 'https://github.com/HSF/phoenix',\n", - " 'https://github.com/machawk1/warcreate',\n", - " 'https://github.com/ENCODE-DCC/croo',\n", - " 'https://github.com/dwhieb/Nuuchahnulth',\n", - " 'https://github.com/tobysmith568/License-Sorter',\n", - " 'https://github.com/digitallinguistics/transliterate',\n", - " 'https://github.com/jupiterbak/FAPSDemoOPCUAServer2',\n", - " 'https://github.com/ufz/ogs',\n", - " 'https://github.com/supercollider/supercollider',\n", - " 'https://github.com/GerardBalaoro/jQuery-Tourer',\n", - " 'https://github.com/biowdl/germline-DNA',\n", - " 'https://github.com/fg-inet/DASH-streaming-setup',\n", - " 'https://github.com/mlbernauer/drugstandards',\n", - " 'https://github.com/pymedphys/pymedphys',\n", - " 'https://github.com/worldsensing/xyz-iot-monitoring',\n", - " 'https://github.com/numenta/gridcodingrange',\n", - " 'https://github.com/meijer-jeroen/contingent-evolution-2020',\n", - " 'https://github.com/jbathmann/pyMANGA',\n", - " 'https://github.com/pabloaaf/Factor-TranscriptionCaseStudy',\n", - " 'https://github.com/docable/docable',\n", - " 'https://github.com/jupiterbak/FAPSDemoOPCUAServer0',\n", - " 'https://github.com/jupiterbak/FAPSDemoOPCUAServer',\n", - " 'https://github.com/biowdl/RNA-seq',\n", - " 'https://github.com/aulasoftwarelibre/taller-de-git',\n", - " 'https://github.com/digitallinguistics/word-aligner',\n", - " 'https://github.com/feelpp/book.feelpp.org',\n", - " 'https://github.com/Karel-Kroeze/adaptive-hypothesis-grammars',\n", - " 'https://github.com/onnovalkering/brane',\n", - " 'https://github.com/liminoid/liminoid-mdx',\n", - " 'https://github.com/biowdl/expression-quantification',\n", - " 'https://github.com/thomas-crane/networking-project',\n", - " 'https://github.com/OPEnSLab-OSU/SlideSentinel',\n", - " 'https://github.com/Edirom/WeGA-WebApp',\n", - " 'https://github.com/biowdl/BamMetrics',\n", - " 'https://github.com/JustinGOSSES/wellio.js',\n", - " 'https://github.com/clarity-h2020/data-management-plan',\n", - " 'https://github.com/tobysmith568/Generate-License-File',\n", - " 'https://github.com/chembl/FPSim2',\n", - " 'https://github.com/digitallinguistics/spec',\n", - " 'https://github.com/biowdl/gatk-preprocess'],\n", - " 7: ['https://github.com/openphacts/explorer2',\n", - " 'https://github.com/KnowledgeCaptureAndDiscovery/OBA_sparql',\n", - " 'https://github.com/K3D-tools/K3D-jupyter',\n", - " 'https://github.com/firedrakeproject/firedrake',\n", - " 'https://github.com/MegaAttitude/frequency-acceptability-selection',\n", - " 'https://github.com/jiemakel/snapper',\n", - " 'https://github.com/africanmathsinitiative/R-Instat',\n", - " 'https://github.com/dmj/PicaRecord',\n", - " 'https://github.com/casmlab/facebook_group_collector',\n", - " 'https://github.com/dalmia/siren',\n", - " 'https://github.com/Capitains/Hook-Worker',\n", - " 'https://github.com/rdmorganiser/rdmo',\n", - " 'https://github.com/assafZaritskyLab/IRM-Spreading-Dynamics',\n", - " 'https://github.com/cescalara/minieuso_cpu',\n", - " 'https://github.com/CCS-Lab/easyml',\n", - " 'https://github.com/bionode/bionode-bbi',\n", - " 'https://github.com/tsamsonov/generalize-dem',\n", - " 'https://github.com/CiTR/djland',\n", - " 'https://github.com/bakery-cg2at/bakery',\n", - " 'https://github.com/jonathanmorgan/django_config',\n", - " 'https://github.com/Phylu/csd',\n", - " 'https://github.com/jacobwindsor/MetabMaster',\n", - " 'https://github.com/rubenarslan/formr.org',\n", - " 'https://github.com/driehle/emobility-search-engine',\n", - " 'https://github.com/tripal/private_biodata',\n", - " 'https://github.com/SandstoneHPC/sandstone-spawner',\n", - " 'https://github.com/CESNET/proxystatistics-simplesamlphp-module',\n", - " 'https://github.com/NCBI-Hackathons/Structural_Variant_Comparison',\n", - " 'https://github.com/firedrakeproject/loopy',\n", - " 'https://github.com/bodkan/archaic-ychr',\n", - " 'https://github.com/daniel-dpk/distorted-motsfinder-public',\n", - " 'https://github.com/qzhu2017/PyXtal',\n", - " 'https://github.com/lightonphiri/etd_autoclassifier',\n", - " 'https://github.com/ishahid/django-gdm',\n", - " 'https://github.com/kevindoyle/geoscience-first-authorship',\n", - " 'https://github.com/fabfab1/EnCAB',\n", - " 'https://github.com/PedroMat8/micropy',\n", - " 'https://github.com/clld/glottolog3',\n", - " 'https://github.com/hibernator11/AprediendoJava',\n", - " 'https://github.com/mtinti/PIG-A',\n", - " 'https://github.com/clld/tsammalex',\n", - " 'https://github.com/deephdc/schema4deep',\n", - " 'https://github.com/opannekoucke/pdenetgen',\n", - " 'https://github.com/RDFLib/pyrdfa3',\n", - " 'https://github.com/filips123/MonologPHPMailer',\n", - " 'https://github.com/Sreyan88/Fatigue-Detection-using-Deep-Learning',\n", - " 'https://github.com/filips123/ZeroFramePy',\n", - " 'https://github.com/jfal027/Moodify',\n", - " 'https://github.com/LandscapeGeoinformatics/EstSoil-EH_sw_supplement',\n", - " 'https://github.com/arXiv/arxiv-browse',\n", - " 'https://github.com/pear2/Cache_SHM',\n", - " 'https://github.com/shh-dlce/python-nexus',\n", - " 'https://github.com/ODM2/ODM2DataSharingPortal',\n", - " 'https://github.com/davidbradway/Visualizing-Scholars-At-Duke-2017',\n", - " 'https://github.com/dkalisch/morgenstadtDB',\n", - " 'https://github.com/akxen/tps-parameterisation',\n", - " 'https://github.com/SandstoneHPC/sandstone-slurm-assist',\n", - " 'https://github.com/tgwizard/sexymp-data',\n", - " 'https://github.com/semplea/characters-meta',\n", - " 'https://github.com/evoldoers/wtfgenes',\n", - " 'https://github.com/janantala/speech-synthesis',\n", - " 'https://github.com/ishahid/django-blogg',\n", - " 'https://github.com/larslau/DETECT',\n", - " 'https://github.com/afnogueira/datasetsaner2017',\n", - " 'https://github.com/ivco19/brooks',\n", - " 'https://github.com/sandyherho/tutorial_xarray',\n", - " 'https://github.com/EricAlcaide/MiniFold',\n", - " 'https://github.com/UofS-Pulse-Binfo/nd_genotypes',\n", - " 'https://github.com/caltechlibrary/handprint',\n", - " 'https://github.com/freeknijweide/autoencoder-pdb-cleaning',\n", - " 'https://github.com/Clinical-Genomics/chanjo',\n", - " 'https://github.com/butcer0/found-diagnosis-network',\n", - " 'https://github.com/JustinGOSSES/predictatops',\n", - " 'https://github.com/GatorSense/HyperspectralAnalysisIntroduction',\n", - " 'https://github.com/specpose/stopeight',\n", - " 'https://github.com/hasantayyar/doi-tools',\n", - " 'https://github.com/tactcomplabs/xbgas-tools',\n", - " 'https://github.com/samik1986/ML_Semantic_Segmenation_NMI',\n", - " 'https://github.com/aldnav/abempy',\n", - " 'https://github.com/oblassers/tuw-servicebroker',\n", - " 'https://github.com/MAGIC-nexus/nis-graph-diagrams',\n", - " 'https://github.com/fnl/gnamed',\n", - " 'https://github.com/Flowminder/FlowKit',\n", - " 'https://github.com/LegoStormtroopr/django-spaghetti-and-meatballs',\n", - " 'https://github.com/ADicksonLab/wepy',\n", - " 'https://github.com/bexis/Module_LUI',\n", - " 'https://github.com/SSW-DataLab/randomizer',\n", - " 'https://github.com/RPGroup-PBoC/vdj_recombination',\n", - " 'https://github.com/carpyncho/carpyncho',\n", - " 'https://github.com/ubccr/xdmod',\n", - " 'https://github.com/DLR-RM/RAFCON',\n", - " 'https://github.com/Koushikphy/Interactive_Data_Editor',\n", - " 'https://github.com/cldf-clts/pyclts',\n", - " 'https://github.com/suryabaiarava/liferay-examples',\n", - " 'https://github.com/TBroTeam/TBro',\n", - " 'https://github.com/mattbit/active-network-er',\n", - " 'https://github.com/epiviz/Metaviz',\n", - " 'https://github.com/gwu-libraries/sfm-ui',\n", - " 'https://github.com/biocaddie/WG3-MetadataSpecifications',\n", - " 'https://github.com/4DNucleome/PartSeg',\n", - " 'https://github.com/priestoferis/animal-behaviour-analysis-2020',\n", - " 'https://github.com/BeckResearchLab/USP-inhibition',\n", - " 'https://github.com/fvalka/atc-reinforcement-learning',\n", - " 'https://github.com/bdw/GridKit',\n", - " 'https://github.com/ahamilton144/hamilton-2020-managing-financial-risk-tradeoffs-for-hydropower',\n", - " 'https://github.com/juliolugo96/ula-lang',\n", - " 'https://github.com/ctsit/qipr_approver',\n", - " 'https://github.com/Caltech-IPAC/Montage',\n", - " 'https://github.com/jiemakel/aether',\n", - " 'https://github.com/epiviz/epiviz',\n", - " 'https://github.com/academic/thesaurus-manager',\n", - " 'https://github.com/Fu-PusH/statement-finder',\n", - " 'https://github.com/DPBayes/DP-cross-silo-federated-learning',\n", - " 'https://github.com/tripal/tripal_galaxy',\n", - " 'https://github.com/hipster-philology/protogenie',\n", - " 'https://github.com/CLARIAH/grlc',\n", - " 'https://github.com/iimog/wikidata-game-flower-color',\n", - " 'https://github.com/automatedskip/homerent.io',\n", - " 'https://github.com/howardyclo/grammar-pattern',\n", - " 'https://github.com/aplowman/first-principles-zr-grain-boundaries',\n", - " 'https://github.com/dlozeve/tda-networks',\n", - " 'https://github.com/chrisma/ScrumLint',\n", - " 'https://github.com/jloveric/high-order-layers',\n", - " 'https://github.com/carnisj/bcdi',\n", - " 'https://github.com/felicitia/TestAnalyzer',\n", - " 'https://github.com/sshilpika/error-log-analysis',\n", - " 'https://github.com/NatLibFi/Skosmos',\n", - " 'https://github.com/jcchiba/GANSta',\n", - " 'https://github.com/chembience/chembience',\n", - " 'https://github.com/SandstoneHPC/sandstone-ide',\n", - " 'https://github.com/Colectica/curation',\n", - " 'https://github.com/huggingface/transformers',\n", - " 'https://github.com/vsoch/askci',\n", - " 'https://github.com/boutiques/boutiques',\n", - " 'https://github.com/laplizard/infoplot',\n", - " 'https://github.com/comic/grand-challenge.org',\n", - " 'https://github.com/amcpherson/remixt',\n", - " 'https://github.com/AVAuco/ssd_head_keras',\n", - " 'https://github.com/coderdj/emo',\n", - " 'https://github.com/faroit/CountNet',\n", - " 'https://github.com/greenape/mknotebooks',\n", - " 'https://github.com/bbglab/muts-needle-plot',\n", - " 'https://github.com/pylayers/pylayers',\n", - " 'https://github.com/Aletechdev/ava',\n", - " 'https://github.com/KWB-R/fakin',\n", - " 'https://github.com/afilipanog/afilipanog.github.io',\n", - " 'https://github.com/pear2/Net_Transmitter',\n", - " 'https://github.com/django-salesforce/django-salesforce',\n", - " 'https://github.com/jellis18/PAL2',\n", - " 'https://github.com/fnl/medic',\n", - " 'https://github.com/neglectos/dockerhub_analysis',\n", - " 'https://github.com/academic/vipa',\n", - " 'https://github.com/mikahama/akusanat',\n", - " 'https://github.com/laderast/ready_for_r_site',\n", - " 'https://github.com/BrennerG/DS1',\n", - " 'https://github.com/gvoysey/corti',\n", - " 'https://github.com/julemai/EEE-DA',\n", - " 'https://github.com/streamreasoning/rsplib',\n", - " 'https://github.com/NLeSC/docker-couch-admin',\n", - " 'https://github.com/cs-education/sysbuild',\n", - " 'https://github.com/mikel-egana-aranguren/SADI-Galaxy-Docker',\n", - " 'https://github.com/acdh-oeaw/apis-core',\n", - " 'https://github.com/peterpeterp/atlantic_ace_seasonal_forecast',\n", - " 'https://github.com/bihealth/sodar_core',\n", - " 'https://github.com/quicklizard99/cheddar',\n", - " 'https://github.com/passaH2O/GeoFlood',\n", - " 'https://github.com/horizon-institute/artmaps-azure',\n", - " 'https://github.com/theosysbio/gene-expression-models',\n", - " 'https://github.com/Amber-MD/pytraj',\n", - " 'https://github.com/starschema/COVID-19-data',\n", - " 'https://github.com/spacetx/starfish',\n", - " 'https://github.com/dapperstats/salvage',\n", - " 'https://github.com/TonyKaravasilev/CryptoManana',\n", - " 'https://github.com/TiKeil/perturbations-for-2d-data',\n", - " 'https://github.com/SysBioChalmers/yeast-GEM',\n", - " 'https://github.com/FNNDSC/ChRIS_ultron_backEnd',\n", - " 'https://github.com/sealuzh/cd-linter-artifacts',\n", - " 'https://github.com/BenediktKleppmann/TreeOfKnowledge',\n", - " 'https://github.com/AndrewIOM/global-pollen-project',\n", - " 'https://github.com/caltechlibrary/eprints2bags',\n", - " 'https://github.com/SuLab/Wikidata-phenomizer',\n", - " 'https://github.com/pear2/Net_RouterOS',\n", - " 'https://github.com/JULIELab/MEmoLon',\n", - " 'https://github.com/sand-ci/TRACe-ExploRer-TRACER',\n", - " 'https://github.com/ivco19/epyRba',\n", - " 'https://github.com/GMOD/Apollo',\n", - " 'https://github.com/DigitalPreservationTuWien2017/dp-task3',\n", - " 'https://github.com/ebmdatalab/fdaaa_trends',\n", - " 'https://github.com/rasmuse/subnational-p-budgets',\n", - " 'https://github.com/dams-mcda/Dams-MCDA',\n", - " 'https://github.com/juy/setting',\n", - " 'https://github.com/simetenn/uncertainpy',\n", - " 'https://github.com/holoviz/panel',\n", - " 'https://github.com/randlab/geocv',\n", - " 'https://github.com/gossi/docblock',\n", - " 'https://github.com/glottolog/pyglottolog',\n", - " 'https://github.com/par12005/TPPS',\n", - " 'https://github.com/Met4FoF/Code',\n", - " 'https://github.com/toniher/mediawiki-BioDB',\n", - " 'https://github.com/villevaara/dhum-topic-gutfin',\n", - " 'https://github.com/philip-mach/herd-immunity',\n", - " 'https://github.com/fphammerle/freesurfer-volume-reader',\n", - " 'https://github.com/collaborative-open-plant-omics/COPO',\n", - " 'https://github.com/cylc/cylc-flow',\n", - " 'https://github.com/genenetwork/genenetwork2',\n", - " 'https://github.com/moschlar/SAUCE',\n", - " 'https://github.com/tripal/tripal',\n", - " 'https://github.com/qutech/qupulse',\n", - " 'https://github.com/filips123/ConfigWriter',\n", - " 'https://github.com/karkirowle/oral_cancer_analysis',\n", - " 'https://github.com/jupyter/nbgrader',\n", - " 'https://github.com/casmlab/twitter_user_collector',\n", - " 'https://github.com/QCoDeS/Qcodes',\n", - " 'https://github.com/neurodata/ndstore',\n", - " 'https://github.com/Social-Evolution-and-Behavior/anTraX',\n", - " 'https://github.com/VIDA-NYU/reproserver',\n", - " 'https://github.com/TeamRegio/EpiRegioDB',\n", - " 'https://github.com/Aetf/tf_benchmarks',\n", - " 'https://github.com/INVEST-flagship/Randomized-picture-rating-tool-for-surveys',\n", - " 'https://github.com/havok2063/boolean_parser',\n", - " 'https://github.com/NYUCCL/psiTurk',\n", - " 'https://github.com/CambridgeSemiticsLab/BH_time_collocations',\n", - " 'https://github.com/lanecodes/cymod',\n", - " 'https://github.com/jongablop/MinervaLab',\n", - " 'https://github.com/clld/concepticon',\n", - " 'https://github.com/FNNDSC/ChRIS_store',\n", - " 'https://github.com/clld/csd',\n", - " 'https://github.com/colbyj/bride-of-frankensystem',\n", - " 'https://github.com/acdh-oeaw/4dpuzzle',\n", - " 'https://github.com/arman2/equal_public',\n", - " 'https://github.com/RDFLib/pymicrodata',\n", - " 'https://github.com/blokhin/genealogical-trees',\n", - " 'https://github.com/HBLL-Collection-Development/omeka-s-any-cloud',\n", - " 'https://github.com/dgnest/foottrial',\n", - " 'https://github.com/cheeseywhiz/cheeseywhiz',\n", - " 'https://github.com/mmalekzadeh/privacy-preserving-bandits',\n", - " 'https://github.com/TrapperTeam/Trapper',\n", - " 'https://github.com/MatthijsKaminski/AnalyzeTool',\n", - " 'https://github.com/stoqs/stoqs',\n", - " 'https://github.com/WIPACrepo/iceprod',\n", - " 'https://github.com/metomi/rose',\n", - " 'https://github.com/msmbuilder/msmbuilder',\n", - " 'https://github.com/jhrmnn/pyberny',\n", - " 'https://github.com/scharom16/evolutionary-nas-with-performance-estimation',\n", - " 'https://github.com/NESCent/dplace',\n", - " 'https://github.com/vpasumarthi/PyCD',\n", - " 'https://github.com/concepticon/pynorare',\n", - " 'https://github.com/kuechenrole/antarctic_melting'],\n", - " 1: ['https://github.com/JiaxiangBU/dynamic_topic_modeling',\n", - " 'https://github.com/vboyce/Maze',\n", - " 'https://github.com/NBISweden/workshop_omics_integration',\n", - " 'https://github.com/pyhf/neos',\n", - " 'https://github.com/intelaligent/tctb',\n", - " 'https://github.com/kantale/MutationInfo',\n", - " 'https://github.com/zih-a35/trinityvm',\n", - " 'https://github.com/MRChemSoft/mrchem',\n", - " 'https://github.com/vsoch/gridtest',\n", - " 'https://github.com/pitmonticone/Torino-Lione',\n", - " 'https://github.com/oblassers/dmap-mockups',\n", - " 'https://github.com/PhenixCollaboration/web',\n", - " 'https://github.com/terraref/terraref.github.io',\n", - " 'https://github.com/CellMigStandOrg/Tracks',\n", - " 'https://github.com/lerkoah/ComplexBehaviorDetector',\n", - " 'https://github.com/parsa-epfl/qflex',\n", - " 'https://github.com/JolleJolles/pirecorder',\n", - " 'https://github.com/sabgaby/sabgaby',\n", - " 'https://github.com/ctsit/redcap_external_module_development_guide',\n", - " 'https://github.com/feelpp/feelpp',\n", - " 'https://github.com/reflectivity/reflectivity.github.io',\n", - " 'https://github.com/UWDIRECT/UWDIRECT.github.io',\n", - " 'https://github.com/zeeguu-ecosystem/Zeeguu-API',\n", - " 'https://github.com/tigefa4u/tigefa4u.github.io',\n", - " 'https://github.com/amlalejini/ALife-2020--SignalGP-Genetic-Regulation',\n", - " 'https://github.com/FitzwilliamMuseum/ahrc-linking-islands',\n", - " 'https://github.com/hugomilan/tlmbht',\n", - " 'https://github.com/HelioML/HelioML',\n", - " 'https://github.com/kbroman/AdvData',\n", - " 'https://github.com/underworldcode/underworld2',\n", - " 'https://github.com/hdcaicyt/La-Argentina-Manuscrita',\n", - " 'https://github.com/TuringLang/Turing.jl',\n", - " 'https://github.com/gchure/phd',\n", - " 'https://github.com/AAROC/CODE-RADE',\n", - " 'https://github.com/PCMDI/cmor3_documentation',\n", - " 'https://github.com/gge-ucd/wRangling-Ecology',\n", - " 'https://github.com/feelpp/toolbox',\n", - " 'https://github.com/dyskurs/bel.esperanto',\n", - " 'https://github.com/mattam82/Coq-Equations',\n", - " 'https://github.com/MRChemSoft/mrcpp',\n", - " 'https://github.com/AAROC/hackfest-site',\n", - " 'https://github.com/sagemathinc/cocalc_tutorial',\n", - " 'https://github.com/dhimmel/gene-ontology',\n", - " 'https://github.com/HexaPlant/pixeldragon',\n", - " 'https://github.com/pythoninchemistry/intro_python_chemists',\n", - " 'https://github.com/mastrogeppetto/OCCI4IOT',\n", - " 'https://github.com/astrojs/fitsjs',\n", - " 'https://github.com/juoceano/lecture_figures'],\n", - " 8: ['https://github.com/aalzubidy/ssrt',\n", - " 'https://github.com/SommerEngineering/NoiseEngine',\n", - " 'https://github.com/PhiliPdB/treedepth-exact',\n", - " 'https://github.com/RobotExMachina/Machina.NET',\n", - " 'https://github.com/hshsl-training/outreach-toolkit',\n", - " 'https://github.com/Colectica/ddiregistry',\n", - " 'https://github.com/SommerEngineering/Encrypter',\n", - " 'https://github.com/SommerEngineering/Ed25519',\n", - " 'https://github.com/holoviz/geoviews',\n", - " 'https://github.com/holoviz/colorcet',\n", - " 'https://github.com/mpostol/TP',\n", - " 'https://github.com/fmannhardt/pddp',\n", - " 'https://github.com/explosion/spaCy',\n", - " 'https://github.com/austindrenski/AD.PartialEquilibriumApi',\n", - " 'https://github.com/speckleworks/SpeckleRhino',\n", - " 'https://github.com/eeditiones/shakespeare',\n", - " 'https://github.com/ApirsAL/GeoReVi',\n", - " 'https://github.com/CCMi-FIT/ontouml-csharp-utils',\n", - " 'https://github.com/WormieCorp/Localization.AspNetCore.TagHelpers',\n", - " 'https://github.com/lacinoire/chunk-retrieval-replication',\n", - " 'https://github.com/speckleworks/SpeckleCore',\n", - " 'https://github.com/CESEL/RelationalGit',\n", - " 'https://github.com/MrShoenel/git-density',\n", - " 'https://github.com/ph463/Gygax',\n", - " 'https://github.com/liminoid/liminoid',\n", - " 'https://github.com/xBimTeam/XbimEssentials',\n", - " 'https://github.com/fo-am/mongoose-2000'],\n", - " 0: ['https://github.com/ctsit/redi-dropper-client',\n", - " 'https://github.com/CentreForCorpusResearch/clic',\n", - " 'https://github.com/SotosTsepe/invenio-madmp']}" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "topic_dict" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "# Visualize the topics\n", - "pyLDAvis.enable_notebook()\n", - "vis = pyLDAvis.gensim.prepare(lda_model, corpus, id2word)\n", - "pyLDAvis.save_html(vis, 'lda.html')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Knowledge_Graph", - "language": "python", - "name": "knowledge_graph" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.6.10" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/cluster_analysis/lda.html b/cluster_analysis/lda.html deleted file mode 100644 index bd728ae..0000000 --- a/cluster_analysis/lda.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - -
- \ No newline at end of file diff --git a/data/result_13k.json b/data/result_13k.json deleted file mode 100644 index 6368187..0000000 --- a/data/result_13k.json +++ /dev/null @@ -1 +0,0 @@ -{"https://github.com/AgriculturalModelExchangeInitiative/Crop2ML": ["ipython", "jupyter-sphinx", "nbformat", "nbsphinx", "path-py", "six", "sphinx", "sphinx-hoverxref", "sphinx-rtd-theme"], "https://github.com/natcap/natgeo-dams": ["pypng", "requests"], "https://github.com/hlgirard/CrystalML": ["bleach", "click", "docutils", "joblib", "keras", "matplotlib", "numpy", "opencv-python", "pandas", "pillow", "pkginfo", "plotly", "pygments", "scikit-image", "scipy", "seaborn", "setuptools", "tensorboard", "tensorflow", "tqdm"], "https://github.com/houghb/ligpy": ["numpy"], "https://github.com/oschwengers/referenceseeker": ["biopython"], "https://github.com/LPDI-EPFL/trivalent_cocktail": ["libconfig", "matplotlib", "numpy", "pandas", "rstoolbox", "scipy", "seaborn", "transforms3d"], "https://github.com/CIRA-Pulsars-and-Transients-Group/vcstools": ["argparse", "astropy", "matplotlib", "mwa-pb", "mwa-voltage", "numpy", "psrqpy", "pytest"], "https://github.com/usc-isi-i2/kgtk": ["coverage", "mkdocs", "mkdocs-material", "tox", "loguru", "mypy", "pyrallel-lib", "rdflib", "redis", "rltk", "seaborn", "sentence-transformers", "simplejson", "sklearn", "sparqlwrapper", "tqdm", "attrs", "etk", "iso-639", "lz4", "plac", "pycountry", "rfc3986", "sh", "shortuuid", "thinc"], "https://github.com/garciagenrique/template_project_escape": ["numpy", "pytest"], "https://github.com/gwu-libraries/sfm-docker": ["pyrabbit", "pyvirtualdisplay", "selenium", "splinter"], "https://github.com/javaparser/javaparser": ["biz.aQute.bnd:bnd-maven-plugin", "com.google.guava:guava", "com.helger.maven:ph-javacc-maven-plugin", "javax.xml.bind:jaxb-api", "junit:junit", "org.apache.maven.plugins:maven-clean-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-install-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:build-helper-maven-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.codehaus.mojo:templating-maven-plugin", "org.codehaus.mojo:versions-maven-plugin", "org.eluder.coveralls:coveralls-maven-plugin", "org.hamcrest:hamcrest-library", "org.jacoco:jacoco-maven-plugin", "org.javassist:javassist", "org.junit-pioneer:junit-pioneer", "org.junit.jupiter:junit-jupiter-engine", "org.junit.jupiter:junit-jupiter-params", "org.junit.vintage:junit-vintage-engine", "org.mockito:mockito-core", "com.github.javaparser:javaparser-core", "com.squareup.okhttp3:okhttp", "org.assertj:assertj-core", "com.github.valfirst:jbehave-junit-runner", "org.jbehave:jbehave-core", "javax.json:javax.json-api", "org.glassfish:javax.json", "com.github.javaparser:javaparser-symbol-solver-core"], "https://github.com/williamjameshandley/anesthetic": ["matplotlib", "numpy", "pandas", "scipy", "astropy", "fastkde", "getdist", "pytest", "cython", "numpydoc", "sphinx", "sphinx-rtd-theme"], "https://github.com/yardencsGitHub/tweetynet": ["torch", "vak"], "https://github.com/jagalindo/A-Python-QX-implementation": ["numpy", "python-sat"], "https://github.com/jbkinney/mavenn": ["logomaker", "matplotlib", "numpy", "numpydoc", "pandas", "seaborn", "sklearn", "sphinx-rtd-theme", "suftware", "tensorflow", "scipy"], "https://github.com/GeoCode-polymtl/Seis_float16": ["hdf5storage", "matplotlib", "scipy", "segyio", "seiscl", "tensorflow-gpu"], "https://github.com/sebp/scikit-survival": ["ipython", "nbsphinx", "pydata-sphinx-theme", "setuptools-scm", "sphinx", "cython", "pytest", "pytest-cov", "cvxopt", "cvxpy", "joblib", "numexpr", "numpy", "osqp", "pandas", "scikit-learn", "scipy"], "https://github.com/similitude/sumo-simmer": ["pyhamcrest"], "https://github.com/GlobalNamesArchitecture/gnresolver": ["actionpack", "activerecord", "byebug", "pg", "rake", "sinatra-activerecord", "actionview", "activemodel", "activesupport", "arel", "builder", "erubis", "i18n", "json", "loofah", "minitest", "mini_portile2", "nokogiri", "pkg-config", "rack", "rack-protection", "rack-test", "rails-deprecated_sanitizer", "rails-dom-testing", "rails-html-sanitizer", "sinatra", "thread_safe", "tilt", "tzinfo"], "https://github.com/nevenjovanovic/treebank-polybius": ["express", "grunt", "grunt-autoprefixer", "grunt-cli", "grunt-contrib-connect", "grunt-contrib-cssmin", "grunt-contrib-jshint", "grunt-contrib-qunit", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-sass", "grunt-zip", "mustache", "node-sass", "socket.io"], "https://github.com/Biophotonics-COMI/flimview": ["-", "h5py", "matplotlib", "numpy", "pandas", "pillow", "pooch", "scipy", "sdtfile", "tqdm"], "https://github.com/joshspeagle/brutus": ["h5py", "healpy", "matplotlib", "numba", "numpy", "scipy", "six"], "https://github.com/metomi/isodatetime": ["coverage", "flake8", "pytest", "pytest-cov", "pytest-env", "@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@types/color-name", "acorn", "acorn-jsx", "ajv", "ansi-colors", "ansi-regex", "ansi-styles", "argparse", "astral-regex", "balanced-match", "brace-expansion", "callsites", "chalk", "color-convert", "color-name", "concat-map", "cross-spawn", "debug", "deep-is", "doctrine", "emoji-regex", "enquirer", "escape-string-regexp", "eslint", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "file-entry-cache", "flat-cache", "flatted", "fs.realpath", "functional-red-black-tree", "glob", "glob-parent", "globals", "has-flag", "ignore", "import-fresh", "imurmurhash", "inflight", "inherits", "is-extglob", "is-fullwidth-code-point", "is-glob", "isexe", "js-tokens", "js-yaml", "json-schema-traverse", "json-stable-stringify-without-jsonify", "levn", "lodash", "minimatch", "minimist", "mkdirp", "ms", "natural-compare", "once", "optionator", "parent-module", "path-is-absolute", "path-key", "prelude-ls", "progress", "punycode", "regexpp", "resolve-from", "rimraf", "semver", "shebang-command", "shebang-regex", "slice-ansi", "sprintf-js", "string-width", "strip-ansi", "strip-json-comments", "supports-color", "table", "text-table", "type-check", "type-fest", "uri-js", "v8-compile-cache", "which", "word-wrap", "wrappy", "write"], "https://github.com/indralab/pybiopax": ["lxml", "requests", "tqdm"], "https://github.com/FNNDSC/ChRIS_ui": ["@fnndsc/chrisapi", "@fortawesome/fontawesome-svg-core", "@fortawesome/free-regular-svg-icons", "@fortawesome/free-solid-svg-icons", "@fortawesome/react-fontawesome", "@material-ui/core", "@patternfly/patternfly", "@patternfly/react-core", "@patternfly/react-table", "@testing-library/jest-dom", "@testing-library/react", "@types/c3", "@types/classnames", "@types/d3", "@types/dat.gui", "@types/enzyme", "@types/hammerjs", "@types/history", "@types/jest", "@types/keymirror", "@types/lodash", "@types/material-ui", "@types/node", "@types/react", "@types/react-bootstrap-typeahead", "@types/react-dom", "@types/react-redux", "@types/react-router-dom", "@types/redux-logger", "@types/three", "@types/uuid", "antd", "axios", "bootstrap", "c3", "classnames", "cornerstone-core", "cornerstone-file-image-loader", "cornerstone-math", "cornerstone-tools", "cornerstone-wado-image-loader", "cornerstone-web-image-loader", "d3", "d3v4", "dicom-parser", "enzyme", "enzyme-adapter-react-16", "hammerjs", "history", "jest-enzyme", "jszip", "keymirror", "lodash", "moment", "node-sass", "pako", "rc-tree", "react", "react-bootstrap-typeahead", "react-cornerstone-viewport", "react-dom", "react-json-view", "react-moment", "react-redux", "react-router", "react-router-dom", "react-scripts", "react-ui-tree", "redux-logger", "redux-mock-store", "redux-saga", "reselect", "three", "tslint", "typesafe-actions", "typescript", "uuid", "webcola"], "https://github.com/openphacts/explorer2": ["activerecord-import", "bootstrap-sass", "coffee-rails", "daemons", "delayed_job_active_record", "execjs", "font-awesome-rails", "handlebars_assets", "quiet_assets", "qunit-rails", "rack-cache", "rails", "rake", "sass", "sass-rails", "sqlite3", "uglifier", "uuidtools", "handlebars", "karma", "karma-chrome-launcher", "karma-ember-preprocessor", "karma-firefox-launcher", "karma-phantomjs-launcher", "karma-qunit", "qunitjs"], "https://github.com/TDAmeritrade/stumpy": ["numba", "numpy", "scipy", "pytest", "nbsphinx", "sphinx-rtd-theme"], "https://github.com/habi/acinar-analysis": ["matplotlib", "matplotlib-scalebar", "numpy", "openpyxl", "pandas", "scipy", "seaborn", "statsmodels", "xlrd"], "https://github.com/mbernste/hypothesis-driven-SRA-queries": ["jupyter", "matplotlib", "pandas", "seaborn"], "https://github.com/JiaxiangBU/dynamic_topic_modeling": ["github-pages", "jekyll", "activesupport", "addressable", "coffee-script", "coffee-script-source", "colorator", "commonmarker", "concurrent-ruby", "dnsruby", "em-websocket", "ethon", "eventmachine", "execjs", "faraday", "ffi", "forwardable-extended", "gemoji", "github-pages-health-check", "html-pipeline", "http_parser.rb", "i18n", "jekyll-avatar", "jekyll-coffeescript", "jekyll-commonmark", "jekyll-commonmark-ghpages", "jekyll-default-layout", "jekyll-feed", "jekyll-gist", "jekyll-github-metadata", "jekyll-mentions", "jekyll-optional-front-matter", "jekyll-paginate", "jekyll-readme-index", "jekyll-redirect-from", "jekyll-relative-links", "jekyll-remote-theme", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-swiss", "jekyll-theme-architect", "jekyll-theme-cayman", "jekyll-theme-dinky", "jekyll-theme-hacker", "jekyll-theme-leap-day", "jekyll-theme-merlot", "jekyll-theme-midnight", "jekyll-theme-minimal", "jekyll-theme-modernist", "jekyll-theme-primer", "jekyll-theme-slate", "jekyll-theme-tactile", "jekyll-theme-time-machine", "jekyll-titles-from-headings", "jekyll-watch", "jemoji", "liquid", "listen", "mercenary", "minima", "minitest", "mini_portile2", "multipart-post", "nokogiri", "octokit", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "ruby-enum", "rubyzip", "ruby_dep", "safe_yaml", "sass", "sass-listen", "sawyer", "terminal-table", "thread_safe", "typhoeus", "tzinfo", "unicode-display_width"], "https://github.com/KnowledgeCaptureAndDiscovery/OBA_sparql": ["pyaml", "pyld", "pythonql3", "rdflib", "rdflib-jsonld", "requests", "simplejson", "six", "sparqltransformer", "urllib3", "validators", "webencodings", "werkzeug", "sparqlwrappermosorio", "codecov", "coverage", "pytest", "pytest-cov"], "https://github.com/maxscheurer/cppe": ["h5py", "numba", "numpy", "pybind11", "pytest", "scipy", "breathe"], "https://github.com/Sung-Huan/ANNOgesic": ["biopython", "matplotlib", "networkx", "numpy"], "https://github.com/mayconbordin/storm-applications": ["com.aliasi:lingpipe", "com.beust:jcommander", "com.codahale.metrics:metrics-core", "com.google.code.gson:gson", "com.google.guava:guava", "com.hmsonline:storm-cassandra", "com.maxmind.geoip2:geoip2", "commons-collections:commons-collections", "joda-time:joda-time", "junit:junit", "log4j:log4j", "org.apache.commons:commons-lang3", "org.apache.hadoop:hadoop-core", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpcore", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.storm:storm-core", "org.apache.storm:storm-kafka", "org.codehaus.jackson:jackson-mapper-asl", "org.geotools:gt-shapefile", "org.geotools:gt-xml", "org.postgis:postgis-jdbc", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "org.twitter4j:twitter4j-core", "org.twitter4j:twitter4j-stream", "redis.clients:jedis", "tabulate"], "https://github.com/gauteh/ibcao_py": ["cartopy", "matplotlib", "numpy", "scipy", "pyproj"], "https://github.com/GLAM-Workbench/te-papa-api": ["altair", "folium", "jupyterlab", "pandas", "requests", "tqdm", "vega"], "https://github.com/cerebis/shap": ["cglib:cglib", "com.thoughtworks.xstream:xstream", "commons-dbcp:commons-dbcp", "commons-fileupload:commons-fileupload", "commons-lang:commons-lang", "javax.servlet.jsp:jsp-api", "javax.servlet:jstl", "javax.servlet:servlet-api", "javax.transaction:jta", "junit:junit", "log4j:log4j", "net.sf.ehcache:ehcache-core", "ognl:ognl", "org.apache.derby:derby", "org.apache.lucene:lucene-fast-vector-highlighter", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-war-plugin", "org.codehaus.jackson:jackson-mapper-asl", "org.hibernate:hibernate-annotations", "org.hibernate:hibernate-search", "org.hibernate:hibernate-validator", "org.javassist:javassist", "org.mortbay.jetty:jetty", "org.mortbay.jetty:jsp-2.1-jetty", "org.opensymphony.quartz:quartz", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "org.springframework.security:spring-security-config", "org.springframework.security:spring-security-core", "org.springframework.security:spring-security-taglibs", "org.springframework.security:spring-security-web", "org.springframework:spring-beans", "org.springframework:spring-context", "org.springframework:spring-core", "org.springframework:spring-orm", "org.springframework:spring-web", "org.springframework:spring-webmvc", "org.tuckey:urlrewritefilter", "postgresql:postgresql", "shap-extra:commons-cli", "shap-extra:sun-drmaa"], "https://github.com/K3D-tools/K3D-jupyter": ["ipydatawidgets", "ipywidgets", "numpy", "six", "traitlets", "traittypes", "@jupyter-widgets/base", "chai", "components-webfontloader", "compression", "compression-webpack-plugin", "connect-livereload", "copy-webpack-plugin", "cors", "css-loader", "dom-to-image", "es6-promise", "express", "file-loader", "file-saver", "grunt", "grunt-contrib-clean", "grunt-contrib-connect", "grunt-contrib-jshint", "grunt-contrib-watch", "grunt-curl", "grunt-express-server", "grunt-jscs", "grunt-jsdoc", "grunt-karma", "grunt-open", "grunt-webpack", "jasmine-core", "jshint-stylish", "json-loader", "jupyter-dataserializers", "karma", "karma-firefox-launcher", "karma-jasmine", "karma-requirejs", "karma-spec-reporter", "katex", "load-grunt-tasks", "lodash", "msgpack-lite", "pako", "rasterizehtml", "raw-loader", "requirejs", "resemblejs", "screenfull", "stats.js", "style-loader", "three", "three-mesh-bvh", "time-grunt", "url-loader", "webpack", "webpack-cli", "webpack-combine-loaders", "webpack-node-externals", "webpack-visualizer-plugin", "worker-loader", "jupyter-sphinx", "nbsphinx", "nbsphinx-link", "sphinx-rtd-theme"], "https://github.com/CCMi-FIT/ontouml-code-generator": ["chai", "chai-as-promised", "command-line-args", "handlebars", "istanbul", "json-format", "lodash", "mkdirp", "mocha", "mock-fs", "q", "remap-istanbul", "tv4", "typescript", "typings", "xml2js"], "https://github.com/diging/tethne": ["chardet", "html5lib", "iso8601", "isodate", "networkx", "nltk", "numpy", "pdfdocument", "pdfminer-six", "python-magic", "rdflib", "requests", "unidecode", "bsh:bsh", "jgrapht:jgrapht", "junit:junit", "jwnl:jwnl", "mtj:mtj", "org.jdom:jdom", "trove:trove"], "https://github.com/mmhs013/pyHomogeneity": ["numpy", "pytest", "scipy"], "https://github.com/bukhsh/oats": ["ipython", "openpyxl", "pandas", "pymysql", "pyomo", "pypyodbc", "pyro4", "pyyaml", "sympy", "tabulate", "xlrd", "oatspower"], "https://github.com/mukil/pmic": ["org.apache.felix:maven-bundle-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "systems.dmx:dmx-accesscontrol", "systems.dmx:dmx-workspaces"], "https://github.com/pySTEPS/pysteps": ["jsmin", "jsonschema", "matplotlib", "netcdf4", "numpy", "opencv-python", "pillow", "pyproj", "scipy", "cartopy", "dask", "h5py", "pyfftw", "pytest", "python", "numpydoc", "sphinx", "sphinx-gallery", "sphinx-rtd-theme", "sphinxcontrib-bibtex"], "https://github.com/groupeLIAMG/ttcr": ["cython", "numpy", "scipy", "setuptools", "vtk"], "https://github.com/oujago/NumpyDL": ["coverage", "flask", "mock", "pep8", "pytest", "pytest-cov", "pytest-pep8", "python-coveralls", "requests", "six", "jinja2", "numpydoc", "sphinx", "sphinx-rtd-theme", "nltk", "numpy", "scikit-learn", "scipy"], "https://github.com/xldrkp/zocurelia": ["@babel/preset-env", "@vue/cli-plugin-babel", "@vue/cli-plugin-eslint", "@vue/cli-service", "@vue/test-utils", "axios", "babel-core", "babel-eslint", "babel-jest", "core-js", "eslint", "eslint-plugin-vue", "jest", "vue", "vue-async-computed", "vue-cli-plugin-axios", "vue-cli-plugin-i18n", "vue-cookie-law", "vue-date-filters", "vue-i18n", "vue-jest", "vue-js-modal", "vue-router", "vue-simple-markdown", "vue-template-compiler", "vuex", "zotero-api-client", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-create-class-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/runtime", "@babel/runtime-corejs2", "@babel/template", "@babel/traverse", "@babel/types", "@cnakazawa/watch", "@hapi/address", "@hapi/bourne", "@hapi/hoek", "@hapi/joi", "@hapi/topo", "@intervolga/optimize-cssnano-plugin", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@soda/friendly-errors-webpack-plugin", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/events", "@types/glob", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/minimatch", "@types/node", "@types/normalize-package-data", "@types/q", "@types/stack-utils", "@types/strip-bom", "@types/strip-json-comments", "@types/yargs", "@types/yargs-parser", "@vue/babel-helper-vue-jsx-merge-props", "@vue/babel-plugin-transform-vue-jsx", "@vue/babel-preset-app", "@vue/babel-preset-jsx", "@vue/babel-sugar-functional-vue", "@vue/babel-sugar-inject-h", "@vue/babel-sugar-v-model", "@vue/babel-sugar-v-on", "@vue/cli-overlay", "@vue/cli-shared-utils", "@vue/component-compiler-utils", "@vue/preload-webpack-plugin", "@vue/web-component-wrapper", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "abbrev", "accepts", "acorn", "acorn-globals", "acorn-jsx", "acorn-walk", "address", "ajv", "ajv-errors", "ajv-keywords", "alphanum-sort", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "any-promise", "anymatch", "aproba", "arch", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "astral-regex", "async", "async-each", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "babel-code-frame", "babel-generator", "babel-helpers", "babel-loader", "babel-messages", "babel-plugin-dynamic-import-node", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-plugin-module-resolver", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-strict-mode", "babel-preset-jest", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "bfj", "big.js", "binary-extensions", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browser-process-hrtime", "browser-resolve", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "bser", "buffer", "buffer-from", "buffer-indexof"], "https://github.com/encompasslabs/encompass-aquiferium": ["angular-animate", "connect-livereload", "delayed-stream", "eventemitter3", "grunt", "grunt-autoprefixer", "grunt-bower-install", "grunt-concurrent", "grunt-connect-proxy", "grunt-contrib-clean", "grunt-contrib-compass", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-htmlmin", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-google-cdn", "grunt-karma", "grunt-newer", "grunt-ngmin", "grunt-rev", "grunt-svgmin", "grunt-usemin", "jshint-stylish", "karma", "karma-chrome-launcher", "karma-jasmine", "karma-ng-html2js-preprocessor", "karma-ng-scenario", "karma-phantomjs-launcher", "load-grunt-tasks", "phantomjs", "time-grunt"], "https://github.com/deniederhut/niacin": ["fairseq", "fastbpe", "sacremoses", "torch", "nltk", "regex", "scipy", "pytest", "pytest-cov", "pandas", "torchtext"], "https://github.com/ZurichNLP/xstance": ["allennlp", "jsonlines", "scikit-learn", "fasttext"], "https://github.com/raotnameh/End-to-end-E2E-Named-Entity-Recognition-from-English-Speech": ["flask", "librosa", "matplotlib", "python-levenshtein", "torch", "tqdm", "visdom", "wget"], "https://github.com/clincolnoz/maDMP-rocrates-maDMP": ["argparse", "jsonschema", "requests"], "https://github.com/thorstenwagner/ij-trajectory-classifier": ["com.opencsv:opencsv", "de.biomedical-imaging.TraJ:traj", "junit:junit", "net.imagej:ij", "org.apache.commons:commons-lang3", "org.apache.commons:commons-math3", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.knowm.xchart:xchart", "org.renjin.cran:plyr", "org.renjin.cran:randomForest", "org.renjin:renjin-script-engine"], "https://github.com/danielrd6/ifscube": ["astropy", "matplotlib", "numpy", "pytest", "scipy", "tqdm"], "https://github.com/esteinig/sketchy": ["braceexpand", "click", "colorama", "dendropy", "deprecation", "networkx", "numpy", "pandas", "psutil", "pyfastx", "pysam", "pytest", "python-dateutil", "seaborn", "tqdm", "watchdog"], "https://github.com/opium-sh/prl": ["anybadge", "atari-py", "box2d", "box2d-kengz", "certifi", "chardet", "coverage", "future", "gym", "idna", "m2r", "matplotlib", "mne", "numba", "numpy", "pandas", "parameterized", "pillow", "protobuf", "pyglet", "pyriemann", "python-dateutil", "pytz", "recommonmark", "requests", "scikit-learn", "scipy", "six", "sklearn", "sphinx", "sphinx-autodoc-typehints", "sphinx-rtd-theme", "sphinxcontrib-apidoc", "tensorboardx", "torch", "torchvision", "urllib3"], "https://github.com/maikherbig/AIDeveloper": ["keras", "scikit-learn", "tensorflow", "@types/antd", "@types/dagre", "@types/enzyme-adapter-react-16", "@types/jest", "@types/node", "@types/react", "@types/react-dom", "@types/react-redux", "antd", "dagre", "enzyme", "enzyme-adapter-react-16", "react", "react-dom", "react-redux", "react-scripts-ts", "redux", "express", "pm2"], "https://github.com/LFPy/LFPy": ["cython", "h5py", "matplotlib", "meautility", "mpi4py", "neuron", "numpy", "scipy", "setuptools", "numpydoc", "sphinx"], "https://github.com/aalzubidy/ssrt": ["Newtonsoft.Json"], "https://github.com/1QB-Information-Technologies/COOL": ["gym", "numpy"], "https://github.com/morpheus-project/morpheus": ["tensorflow", "astropy", "colorama", "imageio", "matplotlib", "numpy", "scikit-image", "scipy", "tqdm"], "https://github.com/firedrakeproject/firedrake": ["cached-property", "cachetools", "ipython", "matplotlib", "pkgconfig", "pylint", "pytest", "pytest-xdist", "randomgen", "requests", "sympy", "vtk"], "https://github.com/leal26/AeroPy": ["numpy"], "https://github.com/arose/nglview": ["ase", "biopython", "coverage", "coveralls", "imageio", "ipywidgets", "matplotlib", "mock", "moviepy", "nose", "pandas", "parmed", "pillow", "pymatgen", "pytest", "pytest-cov", "pytraj", "simpletraj", "traitlets", "numpy", "@jupyter-widgets/base", "@types/chai", "@types/expect.js", "@types/mocha", "@types/node", "@types/requirejs", "babel-eslint", "babel-register", "css-loader", "eslint", "eslint-config-google", "file-loader", "jquery", "jquery-ui", "json-loader", "lodash", "ngl", "rimraf", "style-loader", "typescript", "underscore", "webpack"], "https://github.com/jpgill86/neurotic": ["readthedocs-sphinx-ext", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-programoutput", "ipython", "ipywidgets", "coveralls", "nose", "ephyviewer", "neo", "numpy", "packaging", "pandas", "pyqt5", "pyyaml", "quantities", "requests", "scipy", "setuptools", "tqdm"], "https://github.com/MegaAttitude/frequency-acceptability-selection": ["beautifulsoup4", "bleach", "bokeh", "boto3", "botocore", "click", "cloudpickle", "conda", "cycler", "cython", "dask", "decorator", "dill", "distributed", "docutils", "entrypoints", "enum34", "fastcache", "h5py", "heapdict", "html5lib", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "jmespath", "jsonschema", "jupyter-client", "jupyter-core", "jupyterhub", "jupyterlab", "llvmlite", "locket", "markdown", "markupsafe", "matplotlib", "mistune", "mpmath", "msgpack-python", "nbconvert", "nbformat", "networkx", "notebook", "numba", "numexpr", "numpy", "olefile", "pamela", "pandas", "pandocfilters", "partd", "patsy", "pexpect", "pickleshare", "pillow", "prompt-toolkit", "protobuf", "psutil", "ptyprocess", "pycosat", "pycrypto", "pygments", "pyparsing", "python-dateutil", "pytorch-pretrained-bert", "pytz", "pyyaml", "pyzmq", "regex", "requests", "rpy2", "s3fs", "s3transfer", "scikit-image", "scikit-learn", "scipy", "seaborn", "simplegeneric", "six", "sortedcontainers", "sqlalchemy", "statsmodels", "sympy", "tblib", "tensorflow", "tensorflow-tensorboard", "terminado", "testpath", "timeout-decorator", "toolz", "torch", "tornado", "tqdm", "traitlets", "vincent", "wcwidth", "webencodings", "werkzeug", "widgetsnbextension", "xlrd", "zict"], "https://github.com/bertrandcz/CrocO_toolbox": ["matplotlib", "netcdf4", "numpy", "pandas", "pytest", "scipy", "seaborn", "pyproj", "pyshp"], "https://github.com/andsor/gridjug": ["ipython", "pre-commit", "releases", "sphinx", "future", "pytest", "pytest-capturelog", "pytest-cov", "pytest-mock", "pytest-pep8", "gridmap", "jug"], "https://github.com/stfxecutables/empyricalRMT": ["colorama", "emd-signal", "matplotlib", "multiprocess", "nibabel", "numba", "numpy", "pandas", "progressbar33", "pyod", "pytest", "scikit-learn", "scipy", "seaborn", "statsmodels", "typing-extensions"], "https://github.com/wmayner/pyphi": ["black", "isort", "pylint", "readme-renderer", "setuptools", "sphinx", "twine", "watchdog", "wheel", "decorator", "joblib", "numpy", "psutil", "pyemd", "pymongo", "pyyaml", "redis", "scipy", "tblib", "toolz", "tqdm", "asv", "coverage", "pytest", "pytest-lazy-fixture", "virtualenv"], "https://github.com/isle-project/isle-editor": ["3d-view", "7zip-bin", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-call-delegate", "@babel/helper-create-class-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-default-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-default-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-constant-elements", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-inline-elements", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-react", "@babel/register", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@choojs/findup", "@cnakazawa/watch", "@develar/schema-utils", "@emotion/cache", "@emotion/core", "@emotion/css", "@emotion/hash", "@emotion/memoize", "@emotion/serialize", "@emotion/sheet", "@emotion/stylis", "@emotion/unitless", "@emotion/utils", "@emotion/weak-memoize", "@icons/material", "@iktakahiro/markdown-it-katex", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@mapbox/geojson-area", "@mapbox/geojson-rewind", "@mapbox/geojson-types", "@mapbox/jsonlint-lines-primitives", "@mapbox/mapbox-gl-supported", "@mapbox/point-geometry", "@mapbox/tiny-sdf", "@mapbox/unitbezier", "@mapbox/vector-tile", "@mapbox/whoots-js", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@plotly/d3-sankey", "@plotly/d3-sankey-circular", "@react-bootstrap/react-popper", "@restart/context", "@restart/hooks", "@sindresorhus/is", "@stdlib/stdlib", "@szmarczak/http-timer", "@turf/area", "@turf/centroid", "@turf/helpers", "@turf/meta", "@types/anymatch", "@types/asap", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/debug", "@types/events", "@types/glob", "@types/hoist-non-react-statics", "@types/invariant", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/json-schema", "@types/minimatch", "@types/node", "@types/prop-types", "@types/q", "@types/react", "@types/semver", "@types/shallowequal", "@types/source-list-map", "@types/stack-utils", "@types/tapable", "@types/uglify-js", "@types/unist", "@types/vfile", "@types/vfile-message", "@types/webpack", "@types/webpack-sources", "@types/yargs", "@types/yargs-parser", "@typescript-eslint/experimental-utils", "@typescript-eslint/typescript-estree", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "a-big-triangle", "abab", "abbrev", "abs-svg-path", "accepts", "acorn", "acorn-dynamic-import", "acorn-globals", "acorn-jsx", "acorn-loose", "acorn-node", "acorn-walk", "add-line-numbers", "affine-hull", "after", "agent-base", "airbnb-prop-types", "ajv", "ajv-errors", "ajv-keywords", "align-text", "almost-equal", "alpha-complex", "alpha-shape", "alphanum-sort", "amdefine", "anser", "ansi-align", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "ansi-to-react", "ansicolors", "anymatch", "app-builder-bin", "app-builder-lib", "aproba", "archiver", "archiver-utils", "are-we-there-yet", "argparse", "argv", "aria-query", "arr-diff", "arr-flatten", "arr-union", "array-bounds", "array-equal", "array-filter", "array-find-index", "array-flatten", "array-from", "array-includes", "array-normalize", "@pmmmwh/react-refresh-webpack-plugin", "autobind-decorator", "axios", "babel-eslint", "babel-jest", "babel-loader", "babel-plugin-module-resolver", "babel-plugin-transform-modern-regexp", "babel-plugin-transform-react-remove-prop-types", "codecov", "codemirror", "compute-argmax", "compute-chebyshev-distance", "compute-chunkify", "compute-cosine-distance", "compute-euclidean-distance", "compute-hamming", "compute-manhattan-distance", "concurrently", "core-js", "cross-env", "css", "css-loader", "css-modules-require-hook", "csv-parse", "csv-stringify", "d3", "d3-cloud", "debug", "deep-object-diff", "detect-csv", "doctrine", "dompurify", "electron", "electron-builder", "electron-devtools-installer", "electron-prompt", "electron-store", "electron-updater", "electron-window-state", "element-resize-event", "enzyme", "enzyme-adapter-react-16", "eslint", "eslint-plugin-enforce-ids-in-jsx", "eslint-plugin-import", "eslint-plugin-jest", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "eslint-plugin-react-hooks", "eslint-plugin-spellcheck", "file-loader", "form-data", "gh-pages", "happypack", "hard-source-webpack-plugin", "history", "html-to-image", "html-to-pdfmake", "html-webpack-plugin", "i18next", "i18next-browser-languagedetector", "ieee754", "is-extendable", "is-touch-device", "jest", "jest-cli", "js-yaml", "katex", "localforage", "lodash.debounce", "markdown-it", "mini-css-extract-plugin", "minimist", "ml-kmeans", "ml-matrix", "ml-pca", "ml-regression-multivariate-linear", "moment", "monaco-editor", "monaco-editor-webpack-plugin", "murmurhash3js", "node", "node-libs-browser", "node-pty", "npm", "null-loader", "optimize-css-assets-webpack-plugin", "pdfjs-dist", "pdfmake", "plotly.js", "preload-webpack-plugin", "pressure", "profanities", "prop-types", "prosemirror-collab", "prosemirror-commands", "prosemirror-dropcursor", "prosemirror-gapcursor", "prosemirror-history", "prosemirror-inputrules", "prosemirror-markdown", "prosemirror-schema-list", "prosemirror-state", "prosemirror-tables", "prosemirror-utils", "prosemirror-view", "qrcode", "raf", "raw-loader", "react", "react-bootstrap", "react-color", "react-contextmenu", "react-copy-to-clipboard", "react-dates", "react-dnd", "react-dnd-html5-backend", "react-dnd-touch-backend", "react-dom", "react-draggable", "react-floater", "react-grid-layout", "react-highlight-words", "react-i18next", "react-innertext", "react-input-range", "react-joyride", "react-json-tree", "react-json-view", "react-list", "react-live", "react-monaco-editor", "react-notification-system", "react-player", "react-plotly.js", "react-portal", "react-redux", "react-refresh", "react-rnd", "react-router", "react-router-dom", "react-select", "react-slick", "react-sortable-tree", "react-split-pane", "react-table", "react-test-renderer", "react-transition-group", "react-viewer", "react-virtualized", "recordrtc", "redux", "redux-devtools", "redux-devtools-dock-monitor", "redux-devtools-log-monitor", "redux-logger", "redux-thunk", "resolve-from", "smooth-scroll-into-view-if-needed", "socket.io-client", "source-map-explorer", "source-map-support", "speed-measure-webpack-plugin", "stemmer", "style-loader", "stylelint", "stylelint-config-standard", "svg-react-loader", "terser-webpack-plugin", "text-miner", "typo-js", "unicode-match-property-value-ecmascript", "uniq", "v8-compile-cache", "venn.js", "vex-js", "victory", "webpack", "webpack-cli", "webpack-dev-server", "webpack-manifest-plugin", "whatwg-fetch", "workbox-webpack-plugin", "worker-loader", "xterm", "xterm-addon-fit", "xterm-addon-search", "xterm-addon-web-links", "@babel/helper-create-regexp-features-plugin", "@babel/plugin-syntax-top-level-await", "@babel/polyfill", "@types/cheerio", "@types/color-name", "address", "ansi-red", "ansi-wrap", "arch", "archive-type", "array-union", "array-uniq", "array-unique", "arrify", "asn1", "assert-plus", "assign-symbols", "async", "async-each", "asynckit", "atob", "autolinker", "autoprefixer", "aws-sign2", "aws4", "babel-code-frame", "babel-plugin-dynamic-import-node", "babylon", "balanced-match", "base", "base64-js", "bcrypt-pbkdf", "big.js", "bin-build", "bin-check", "bin-version", "bin-version-check", "bin-wrapper", "binary-extensions", "bl", "body", "body-parser", "boolbase", "brace-expansion", "braces", "browserslist", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-crc32", "buffer-fill", "buffer-from", "bytes", "cache-base", "cacheable-request", "call-me-maybe", "caller-callsite", "caller-path", "callsites", "camelcase", "camelcase-keys", "caniuse-api", "caniuse-lite", "caseless", "caw", "chalk", "chardet", "cheerio", "chokidar", "class-utils", "classnames", "cli-cursor", "cli-width", "clipboard", "clone-response", "coa", "coffee-script", "collection-visit", "color", "color-convert", "color-name", "color-string", "combined-stream", "commander", "commondir", "component-emitter", "concat-map", "concat-stream", "concat-with-sourcemaps", "config-chain", "console-stream", "content-disposition", "content-type", "continuable-cache", "convert-source-map", "cookie", "cookie-signature", "copy-descriptor", "core-js-compat", "core-util-is", "cosmiconfig", "cross-spawn", "crowdin-cli", "css-color-names", "css-declaration-sorter", "css-select", "css-select-base-adapter", "css-tree", "css-unit-converter", "css-what", "cssesc", "cssnano", "cssnano-preset-default", "cssnano-util-get-arguments", "cssnano-util-get-match", "cssnano-util-raw-cache", "cssnano-util-same-parent", "csso", "currently-unhandled", "dashdash", "decamelize", "decode-uri-component", "decompress", "decompress-response", "decompress-tar", "decompress-tarbz2", "decompress-targz", "decompress-unzip", "deep-is", "define-properties", "define-property", "delayed-stream", "delegate", "depd", "destroy", "detect-port-alt", "diacritics-map", "dir-glob", "docusaurus", "dom-serializer", "domelementtype", "domhandler", "domutils", "dot-prop", "download", "duplexer", "duplexer3", "ecc-jsbn", "ee-first", "@docusaurus/core", "@docusaurus/preset-classic", "@docusaurus/theme-live-codeblock"], "https://github.com/cytoscape/cytoscape.js": ["@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/template", "@babel/traverse", "@babel/types", "@jest/types", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@rollup/plugin-babel", "@rollup/plugin-commonjs", "@rollup/plugin-node-resolve", "@rollup/plugin-replace", "@rollup/pluginutils", "@types/color-name", "@types/estree", "@types/events", "@types/glob", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/minimatch", "@types/minimist", "@types/node", "@types/normalize-package-data", "@types/resolve", "@types/yargs", "@types/yargs-parser", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "acorn", "acorn-jsx", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "ansi-colors", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "aproba", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-filter", "array-find-index", "array-map", "array-reduce", "array-union", "array-uniq", "array-unique", "arrify", "asn1.js", "assert", "assertion-error", "assign-symbols", "astral-regex", "async", "async-each", "async-limiter", "atob", "babel-plugin-dynamic-import-node", "balanced-match", "base", "base64-js", "basic-auth", "benchmark", "big.js", "binary-extensions", "bindings", "bl", "bluebird", "bn.js", "brace-expansion", "braces", "brorand", "browser-stdout", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-crc32", "buffer-fill", "buffer-from", "buffer-xor", "builtin-modules", "builtin-status-codes", "bytes", "cacache", "cache-base", "call-me-maybe", "callsites", "camelcase", "camelcase-keys", "caniuse-lite", "caw", "chai", "chalk", "chardet", "check-error", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "clean-stack", "cli-cursor", "cli-width", "cliui", "collection-visit", "color-convert", "color-name", "colors", "commander", "commenting", "commondir", "component-emitter", "concat-map", "concat-stream", "config-chain", "console-browserify", "constants-browserify", "content-disposition", "convert-source-map", "copy-concurrently", "copy-descriptor", "core-js-compat", "core-util-is", "corser", "cp-file", "cpy", "cpy-cli", "create-ecdh", "create-hash", "create-hmac", "cross-env", "cross-spawn", "crypto-browserify", "currently-unhandled", "cyclist", "debug", "decamelize", "decamelize-keys", "decode-uri-component", "decompress", "decompress-response", "decompress-tar", "decompress-tarbz2", "decompress-targz", "decompress-unzip", "deep-eql", "deep-is", "define-properties", "define-property", "des.js", "diff", "diff-sequences", "diffie-hellman", "download-cli", "eslint", "esm", "gh-pages", "handlebars", "heap", "highlight.js", "http-server", "jsonlint", "livereload", "lodash.debounce", "marked", "mocha", "npm-run-all", "rimraf", "rollup", "rollup-plugin-license", "rollup-plugin-size-snapshot", "rollup-plugin-terser"], "https://github.com/dejac001/MCFlow": ["cycler", "decorator", "kiwisolver", "matplotlib", "networkx", "numpy", "pyparsing", "python-dateutil", "six", "alabaster", "babel", "certifi", "chardet", "colorama", "commonmark", "docutils", "idna", "imagesize", "jinja2", "latexcodec", "markupsafe", "oset", "packaging", "pybtex", "pybtex-docutils", "pygments", "pytz", "pyyaml", "recommonmark", "requests", "snowballstemmer", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-applehelp", "sphinxcontrib-bibtex", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "urllib3"], "https://github.com/dragoon/kilogram": ["gensim", "lxml", "nltk", "pandas", "rdflib", "repoze-lru", "thrift", "unicodecsv", "pymongo"], "https://github.com/pysal/spaghetti": ["esda", "numpy", "pandas", "rtree", "scipy", "black", "pre-commit", "nbsphinx", "numpydoc", "sphinx", "sphinx-bootstrap-theme", "sphinx-gallery", "sphinxcontrib-bibtex", "descartes", "matplotlib", "pulp", "seaborn", "splot", "watermark", "matplotlib-scalebar", "mip", "ortools", "geopandas", "codecov", "pytest", "pytest-cov", "twine", "wheel"], "https://github.com/brisskit-uol/i2b2-install-procedures": ["ms.jdbc:sqljdbc", "oracle.jdbc:ojdbc", "org.brisskit.app.utils:config-merger", "postgresql.jdbc:postgresql"], "https://github.com/bast/runtest": ["black", "coverage", "flit", "pytest", "pytest-cov", "python-coveralls"], "https://github.com/VarIr/scikit-hubness": ["codecov", "flake8", "graphviz", "joblib", "mock", "nose", "numpy", "numpydoc", "pandas", "pytest", "pytest-cov", "scikit-learn", "scipy", "sphinx", "sphinx-automodapi", "sphinx-gallery", "sphinx-pdj-theme", "tqdm", "annoy", "nmslib", "falconn", "ngt", "pybind11"], "https://github.com/qbicsoftware/omero-client-portlet": ["commons-codec:commons-codec", "life.qbic:core-utils-lib", "life.qbic:omero-client-lib", "life.qbic:portal-utils-lib", "org.apache.httpcomponents:httpclient", "org.glassfish:javax.json", "org.spockframework:spock-core", "sphinx", "sphinx-automodapi"], "https://github.com/jyrkioraskari/IFCtoLBD_OpenAPI": ["com.github.galigator.openllet:openllet-jena", "com.github.galigator.openllet:openllet-owlapi", "com.google.guava:guava", "com.thoughtworks.xstream:xstream", "commons-codec:commons-codec", "commons-io:commons-io", "de.rwth-aachen.dc.lbd:IFCtoB4RGeometry", "org.apache.commons:commons-lang3", "javax.vecmath:vecmath", "org.apache.maven.plugins:maven-enforcer-plugin", "org.opensourcebim:ifcplugins", "org.slf4j:slf4j-api", "com.webcohesion.enunciate:enunciate-maven-plugin", "de.rwth-aachen.dc.ifctolbd:IFCtoB4R", "javax.ws.rs:javax.ws.rs-api", "org.apache.jena:apache-jena-libs", "org.apache.tomcat:tomcat-servlet-api", "org.glassfish.jersey.containers:jersey-container-servlet", "org.glassfish.jersey.core:jersey-client", "org.glassfish.jersey.core:jersey-server", "org.glassfish.jersey.ext:jersey-bean-validation", "org.glassfish.jersey.inject:jersey-hk2", "org.glassfish.jersey.media:jersey-media-json-jackson", "org.glassfish.jersey.media:jersey-media-moxy", "org.glassfish.jersey.media:jersey-media-multipart", "org.opensourcebim:bimserverclientlib"], "https://github.com/wright-group/WrightTools": ["-", "h5py", "imageio", "matplotlib", "numexpr", "numpy", "python-dateutil", "scipy", "tidy-headers"], "https://github.com/CamDavidsonPilon/lifelines": ["autograd", "autograd-gamma", "matplotlib", "numpy", "pandas", "patsy", "scipy", "black", "check-wheel-contents", "coverage", "dill", "flaky", "mypy", "pre-commit", "prospector", "pypandoc", "pytest", "pytest-cov", "pytest-icdiff", "scikit-learn", "statsmodels", "sybil", "ipykernel", "jupyter-client", "nbconvert", "nbsphinx", "sphinx", "sphinx-rtd-theme", "pytest-travis-fold", "python-coveralls", "seaborn"], "https://github.com/tpall/pynodo": ["requests", "pytest"], "https://github.com/rmkoesterer/uga": ["biopython", "cython", "numpy", "pandas", "progressbar", "psutil", "pysam", "rpy2", "scipy", "singledispatch"], "https://github.com/proycon/clam": ["flask", "lxml", "pycrypto", "requests", "requests-oauthlib", "requests-toolbelt", "certifi", "pyyaml"], "https://github.com/GoekeLab/xpore": ["h5py", "numpy", "pandas", "pyensembl", "pyyaml", "scipy"], "https://github.com/ml-evs/matador": ["black", "flake8", "pre-commit", "ipykernel", "nbsphinx", "sphinx", "sphinx-argparse", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "ascii-graph", "ase", "networkx", "pymatgen", "periodictable", "python-ternary", "seekpath", "spglib", "matplotlib", "numba", "numpy", "psutil", "pymongo", "pyyaml", "scipy", "tqdm", "codecov", "coverage", "mongomock", "nbval", "pytest", "pytest-cov", "nglview", "qmpy"], "https://github.com/stefsmeets/instamatic": ["check-manifest", "comtypes", "h5py", "ipython", "lmfit", "matplotlib", "mrcfile", "numpy", "pandas", "pillow", "pre-commit", "pywinauto", "pyyaml", "scikit-image", "scipy", "tifffile", "tqdm", "virtualbox", "pyserialem"], "https://github.com/danxhuber/isoclassify": ["astropy", "ephem", "h5py", "joblib", "mwdust", "pandas", "scipy"], "https://github.com/proycon/colibri-core": ["cython"], "https://github.com/Yi-ran/Omnetpp": ["org.apache.ant:ant", "org.apache.ant:ant-antlr", "org.apache.ant:ant-apache-bcel", "org.apache.ant:ant-apache-bsf", "org.apache.ant:ant-apache-log4j", "org.apache.ant:ant-apache-oro", "org.apache.ant:ant-apache-regexp", "org.apache.ant:ant-apache-resolver", "org.apache.ant:ant-apache-xalan2", "org.apache.ant:ant-commons-logging", "org.apache.ant:ant-commons-net", "org.apache.ant:ant-jai", "org.apache.ant:ant-javamail", "org.apache.ant:ant-jdepend", "org.apache.ant:ant-jmf", "org.apache.ant:ant-jsch", "org.apache.ant:ant-junit", "org.apache.ant:ant-junit4", "org.apache.ant:ant-junitlauncher", "org.apache.ant:ant-launcher", "org.apache.ant:ant-netrexx", "org.apache.ant:ant-swing", "org.apache.ant:ant-testutil", "org.apache.ant:ant-xz", "org.eclipse.tycho.extras:tycho-source-feature-plugin", "org.eclipse.tycho:tycho-p2-plugin", "org.eclipse.tycho:target-platform-configuration", "org.eclipse.tycho:tycho-source-plugin"], "https://github.com/alielhassouni/rl-multi-agent-simulation-for-e-health": ["keras", "matplotlib", "mongoengine", "numpy", "pandas", "pprint", "pymongo", "seaborn", "sklearn", "coverage", "flake8", "flake8-docstrings", "flake8-import-order", "flake8-quotes", "mccabe", "scipy", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "twine", "wheel"], "https://github.com/PTB-PSt1/time-series-metadata": ["alabaster", "appdirs", "attrs", "babel", "bleach", "certifi", "chardet", "click", "colorama", "commonmark", "distlib", "docutils", "filelock", "gitdb2", "gitpython", "idna", "imagesize", "importlib-metadata", "importlib-resources", "invoke", "jinja2", "markupsafe", "more-itertools", "ndebug", "packaging", "pathlib2", "pkginfo", "pluggy", "py", "pygments", "pyparsing", "python-gitlab", "pytz", "readme-renderer", "requests", "requests-toolbelt", "semver", "six", "smmap", "smmap2", "snowballstemmer", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "toml", "tqdm", "twine", "urllib3", "virtualenv", "wcwidth", "webencodings", "wheel", "zipp", "cffi", "click-log", "cryptography", "gitdb", "jeepney", "keyring", "pycparser", "rfc3986", "secretstorage"], "https://github.com/amueller/patsylearn": ["patsy", "scikit-learn"], "https://github.com/globalbioticinteractions/globalbioticinteractions": ["org.apache.maven.plugins:maven-dependency-plugin", "org.geotools:gt-shapefile", "com.vividsolutions:jts", "commons-io:commons-io", "commons-logging:commons-logging", "commons-net:commons-net", "joda-time:joda-time", "org.apache.commons:commons-collections4", "org.apache.commons:commons-lang3", "org.apache.commons:commons-text", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpmime", "org.codehaus.jackson:jackson-mapper-asl", "org.globalbioticinteractions:doi4j", "org.mapdb:mapdb", "org.ostermiller:utils", "com.fasterxml:jackson-xml-databind", "commons-validator:commons-validator", "javax.mail:mail", "javax.servlet:servlet-api", "javax.transaction:jta", "javax.validation:validation-api", "log4j:log4j", "org.aspectj:aspectjrt", "org.aspectj:aspectjweaver", "org.eclipse.jetty:jetty-maven-plugin", "org.eclipse.jetty:jetty-servlets", "org.hibernate:hibernate-validator", "org.neo4j:neo4j-cypher", "org.neo4j:neo4j-io", "org.neo4j:neo4j-kernel", "org.slf4j:jcl-over-slf4j", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "org.springframework:spring-aop", "org.springframework:spring-aspects", "org.springframework:spring-context-support", "org.springframework:spring-test", "org.springframework:spring-tx", "org.springframework:spring-webmvc", "org.neo4j:neo4j", "uk.org.mygrid.resources.jcoord:jcoord", "com.github.koraktor:mavanagaiata", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:versions-maven-plugin", "org.hamcrest:hamcrest-all", "org.mockito:mockito-core", "org.codehaus.mojo:exec-maven-plugin", "org.codehaus.mojo:wagon-maven-plugin", "org.codehaus.swizzle:swizzle-stream", "cglib:cglib-nodep", "commons-cli:commons-cli", "org.apache.maven.plugins:maven-shade-plugin", "com.healthmarketscience.jackcess:jackcess", "com.univocity:univocity-parsers", "org.apache.jena:jena-tdb", "org.gbif:dwca-io", "org.jsoup:jsoup", "rome:rome", "org.apache.lucene:lucene-core", "com.github.dfabulich:sitemapgen4j"], "https://github.com/jiemakel/snapper": ["browser-sync", "del", "gulp", "gulp-autoprefixer", "gulp-batch", "gulp-cache", "gulp-cached", "gulp-filter", "gulp-flatten", "gulp-gh-pages", "gulp-imagemin", "gulp-inject", "gulp-jade", "gulp-livescript", "gulp-load-plugins", "gulp-minify-css", "gulp-ng-annotate", "gulp-ng-html2js", "gulp-notify", "gulp-plumber", "gulp-print", "gulp-replace", "gulp-rev", "gulp-rev-replace", "gulp-size", "gulp-sourcemaps", "gulp-stylus", "gulp-uglify", "gulp-useref", "gulp-watch", "livescript", "main-bower-files", "nib", "require-dir", "run-sequence", "uglify-save-license", "wiredep"], "https://github.com/digitallinguistics/scription2dlx": ["@babel/code-frame", "@babel/highlight", "@types/color-name", "acorn-jsx", "ajv", "ansi-colors", "ansi-regex", "ansi-styles", "anymatch", "argparse", "array.prototype.map", "astral-regex", "balanced-match", "binary-extensions", "brace-expansion", "braces", "browser-stdout", "callsites", "camelcase", "chalk", "chokidar", "cliui", "color-convert", "color-name", "concat-map", "debug", "decamelize", "deep-is", "define-properties", "diff", "doctrine", "emoji-regex", "enquirer", "es-abstract", "es-array-method-boxes-properly", "es-get-iterator", "es-to-primitive", "escape-string-regexp", "eslint", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "expect.js", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "file-entry-cache", "fill-range", "find-up", "flat", "flat-cache", "flatted", "fs.realpath", "fsevents", "function-bind", "functional-red-black-tree", "get-caller-file", "glob", "glob-parent", "growl", "has", "has-flag", "has-symbols", "he", "ignore", "import-fresh", "imurmurhash", "inflight", "inherits", "is-arguments", "is-binary-path", "is-buffer", "is-callable", "is-date-object", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-map", "is-number", "is-regex", "is-set", "is-string", "is-symbol", "isarray", "isexe", "iterate-iterator", "iterate-value", "js-tokens", "js-yaml", "json-schema-traverse", "json-stable-stringify-without-jsonify", "levn", "locate-path", "lodash", "log-symbols", "minimatch", "mkdirp", "mocha", "ms", "natural-compare", "normalize-path", "object-inspect", "object-keys", "object.assign", "once", "optionator", "p-limit", "p-locate", "p-try", "parent-module", "path-exists", "path-is-absolute", "picomatch", "prelude-ls", "progress", "promise.allsettled", "punycode", "readdirp", "regexpp", "require-directory", "require-main-filename", "resolve-from", "rimraf", "serialize-javascript", "set-blocking", "slice-ansi", "sprintf-js", "string-width", "string.prototype.trimend", "string.prototype.trimstart", "strip-ansi", "strip-json-comments", "supports-color", "table", "text-table", "to-regex-range", "type-check", "type-fest", "uri-js", "which", "which-module", "wide-align", "word-wrap", "workerpool", "wrap-ansi", "wrappy", "write", "y18n", "yamljs", "yargs", "yargs-parser", "yargs-unparser"], "https://github.com/lacava/few": ["cython", "distanceclassifier", "eigency", "joblib", "nose", "numpy", "pandas", "scikit-learn", "scikit-mdr", "scipy", "tqdm", "update-checker"], "https://github.com/mheikenfeld/ramscube": ["cf-units", "iris", "numpy", "scipy"], "https://github.com/python-pillow/Pillow": ["black", "check-manifest", "coverage", "jarn-viewdoc", "olefile", "pycodestyle", "pyflakes", "pyroma", "pytest", "pytest-cov", "sphinx", "sphinx-removed-in", "sphinx-rtd-theme"], "https://github.com/Silmathoron/NNGT": ["cython", "dxfgrabber", "numpy", "scipy", "setuptools", "shapely", "svg-path", "matplotlib", "networkx", "peewee", "sphinx-bootstrap-theme", "sphinx-gallery"], "https://github.com/RubenVerborgh/WebFundamentals": ["accepts", "anymatch", "apache-crypt", "apache-md5", "arr-diff", "arr-flatten", "arr-union", "array-unique", "assign-symbols", "async-each", "atob", "base", "basic-auth", "batch", "bcryptjs", "binary-extensions", "bindings", "braces", "cache-base", "chokidar", "class-utils", "collection-visit", "colors", "component-emitter", "connect", "copy-descriptor", "core-util-is", "cors", "debug", "decode-uri-component", "define-property", "depd", "destroy", "duplexer", "ee-first", "encodeurl", "escape-html", "etag", "event-stream", "expand-brackets", "extend-shallow", "extglob", "faye-websocket", "file-uri-to-path", "fill-range", "finalhandler", "for-in", "fragment-cache", "fresh", "from", "fsevents", "get-value", "glob-parent", "graceful-fs", "has-value", "has-values", "http-auth", "http-errors", "http-parser-js", "inherits", "is-accessor-descriptor", "is-binary-path", "is-buffer", "is-data-descriptor", "is-descriptor", "is-extendable", "is-extglob", "is-glob", "is-number", "is-plain-object", "is-windows", "is-wsl", "isarray", "isobject", "kind-of", "live-server", "map-cache", "map-stream", "map-visit", "micromatch", "mime", "mime-db", "mime-types", "mixin-deep", "morgan", "ms", "nan", "nanomatch", "negotiator", "normalize-path", "object-assign", "object-copy", "object-visit", "object.pick", "on-finished", "on-headers", "opn", "parseurl", "pascalcase", "path-dirname", "path-is-absolute", "pause-stream", "posix-character-classes", "process-nextick-args", "proxy-middleware", "range-parser", "readable-stream", "readdirp", "regex-not", "remove-trailing-separator", "repeat-element", "repeat-string", "resolve-url", "ret", "safe-buffer", "safe-regex", "send", "serve-index", "set-value", "setprototypeof", "snapdragon", "snapdragon-node", "snapdragon-util", "source-map", "source-map-resolve", "source-map-url", "split", "split-string", "static-extend", "statuses", "stream-combiner", "string_decoder", "through", "to-object-path", "to-regex", "to-regex-range", "toidentifier", "union-value", "unix-crypt-td-js", "unpipe", "unset-value", "upath", "urix", "use", "util-deprecate", "utils-merge", "uuid", "vary", "websocket-driver", "websocket-extensions"], "https://github.com/ariercole/Cambridge_COVID-19_ICU": ["dash", "matplotlib", "numpy", "pandas", "scikit-learn", "statsmodels"], "https://github.com/JDRomano2/smdb_search": ["mysql2"], "https://github.com/matthiasweiss/dsue1-2020s": ["matplotlib", "numpy", "pandas"], "https://github.com/jenojp/negspacy": ["pytest", "spacy"], "https://github.com/MartinPdS/OCT_calibration": ["napari", "numpy", "scipy"], "https://github.com/cmsopendata-finland/kurssimateriaali": ["matplotlib", "numpy", "pandas", "scipy"], "https://github.com/africanmathsinitiative/R-Instat": ["bootstrap", "browser-sync", "font-awesome", "gulp", "gulp-clean-css", "gulp-header", "gulp-less", "gulp-rename", "gulp-uglify", "jquery", "magnific-popup", "scrollreveal", "DynamicInterop", "Microsoft.CSharp", "Microsoft.Win32.Registry", "R.NET", "System.Security.AccessControl", "System.Security.Principal.Windows", "unvell.ReoGrid.dll"], "https://github.com/SDM-TIB/SDM-RDFizer": ["flask", "isodate", "mysql-connector-python", "psycopg2-binary", "pyparsing", "rdflib", "six"], "https://github.com/HERA-Team/librarian": ["astropy", "pytest", "pytest-console-scripts", "pytest-datafiles"], "https://github.com/tkralphs/CuPPy": ["coinor-grumpy", "cylp", "pulp", "pypolyhedron"], "https://github.com/r9y9/pylibfreenect2": ["coverage", "nose", "numpy"], "https://github.com/dmj/PicaRecord": ["phan/phan", "php", "phpstan/phpstan", "phpunit/phpunit", "composer/semver", "composer/xdebug-handler", "doctrine/instantiator", "felixfbecker/advanced-json-rpc", "jean85/pretty-package-versions", "microsoft/tolerant-php-parser", "myclabs/deep-copy", "netresearch/jsonmapper", "nette/bootstrap", "nette/di", "nette/finder", "nette/neon", "nette/php-generator", "nette/robot-loader", "nette/schema", "nette/utils", "nikic/php-parser", "ocramius/package-versions", "phar-io/manifest", "phar-io/version", "phpdocumentor/reflection-common", "phpdocumentor/reflection-docblock", "phpdocumentor/type-resolver", "phpspec/prophecy", "phpstan/phpdoc-parser", "phpunit/php-code-coverage", "phpunit/php-file-iterator", "phpunit/php-text-template", "phpunit/php-timer", "phpunit/php-token-stream", "psr/container", "psr/log", "sabre/event", "sebastian/code-unit-reverse-lookup", "sebastian/comparator", "sebastian/diff", "sebastian/environment", "sebastian/exporter", "sebastian/global-state", "sebastian/object-enumerator", "sebastian/object-reflector", "sebastian/recursion-context", "sebastian/resource-operations", "sebastian/type", "sebastian/version", "symfony/console", "symfony/finder", "symfony/polyfill-ctype", "symfony/polyfill-mbstring", "symfony/polyfill-php73", "symfony/service-contracts", "theseer/tokenizer", "webmozart/assert"], "https://github.com/smartbugs/smartbugs": ["docker", "gitpython", "pyyaml", "solidity-parser", "pandoc-attributes", "rlp", "web3", "z3-solver"], "https://github.com/Andros-Spica/EAA2018_ceramics": ["express", "grunt-cli", "mustache", "socket.io"], "https://github.com/arm61/uravu": ["dynesty", "emcee", "matplotlib", "numpy", "pytest", "scipy", "seaborn", "uncertainties", "tqdm", "corner", "coverage", "coveralls", "jupyter-sphinx", "nbsphinx", "sphinx-rtd-theme"], "https://github.com/casmlab/facebook_group_collector": ["apiclient", "appnope", "decorator", "gnureadline", "google-api-python-client", "httplib2", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jinja2", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "markupsafe", "mistune", "nbconvert", "nbformat", "notebook", "oauth2client", "path-py", "pexpect", "pickleshare", "ptyprocess", "pyasn1", "pyasn1-modules", "pygments", "pyzmq", "qtconsole", "rsa", "selenium", "simplegeneric", "simplejson", "six", "terminado", "tornado", "traitlets", "unicodecsv", "uritemplate"], "https://github.com/vboyce/Maze": ["github-pages", "activesupport", "addressable", "coffee-script", "coffee-script-source", "colorator", "commonmarker", "concurrent-ruby", "dnsruby", "em-websocket", "ethon", "eventmachine", "execjs", "faraday", "ffi", "forwardable-extended", "gemoji", "github-pages-health-check", "html-pipeline", "http_parser.rb", "i18n", "jekyll", "jekyll-avatar", "jekyll-coffeescript", "jekyll-commonmark", "jekyll-commonmark-ghpages", "jekyll-default-layout", "jekyll-feed", "jekyll-gist", "jekyll-github-metadata", "jekyll-mentions", "jekyll-optional-front-matter", "jekyll-paginate", "jekyll-readme-index", "jekyll-redirect-from", "jekyll-relative-links", "jekyll-remote-theme", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-swiss", "jekyll-theme-architect", "jekyll-theme-cayman", "jekyll-theme-dinky", "jekyll-theme-hacker", "jekyll-theme-leap-day", "jekyll-theme-merlot", "jekyll-theme-midnight", "jekyll-theme-minimal", "jekyll-theme-modernist", "jekyll-theme-primer", "jekyll-theme-slate", "jekyll-theme-tactile", "jekyll-theme-time-machine", "jekyll-titles-from-headings", "jekyll-watch", "jemoji", "kramdown", "liquid", "listen", "mercenary", "minima", "minitest", "mini_portile2", "multipart-post", "nokogiri", "octokit", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "ruby-enum", "rubyzip", "ruby_dep", "safe_yaml", "sass", "sass-listen", "sawyer", "terminal-table", "thread_safe", "typhoeus", "tzinfo", "unicode-display_width"], "https://github.com/acoular/acoular": ["ipython", "scipy", "traits"], "https://github.com/smarie/python-autoclass": ["decopatch", "enforce", "funcsigs", "makefun", "pycontracts", "pyfields", "pytest", "pytypes", "valid8", "mini-lambda", "pandoc", "pypandoc", "pytest-html", "pytest-logging", "pytest-runner", "setuptools-scm", "xunitparser"], "https://github.com/underworldcode/UWGeodynamics": ["h5py", "mpi4py", "numpy", "pandas", "pint", "scipy"], "https://github.com/clij/clij2": ["junit:junit", "net.haesleinhuepf:clij-clearcl", "net.haesleinhuepf:clij_", "org.apache.maven.plugins:maven-surefire-plugin"], "https://github.com/sherbold/autorank": ["matplotlib", "numpy", "pandas", "scipy", "statsmodels"], "https://github.com/saschneider/VMV": ["com.beust:jcommander", "com.fasterxml.jackson.dataformat:jackson-dataformat-csv", "commons-io:commons-io", "org.apache.maven.plugins:maven-javadoc-plugin", "org.bouncycastle:bcprov-jdk15on", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-test", "org.springframework.shell:spring-shell-starter"], "https://github.com/CENER-EPR/OWAbench": ["alphashape", "matplotlib", "netcdf4", "numpy", "pandas", "scipy", "seaborn", "tqdm", "windrose", "xarray"], "https://github.com/tempdata73/tic-tac-toe": ["keras", "numpy", "opencv-contrib-python", "pillow"], "https://github.com/molbiodiv/biojs-io-biom": ["babel-core", "babel-polyfill", "babel-preset-es2015", "babel-register", "base64-js", "browserify", "chai", "del", "gulp", "gulp-babel", "gulp-chmod", "gulp-coveralls", "gulp-gzip", "gulp-istanbul", "gulp-jshint", "gulp-mocha", "gulp-rename", "gulp-streamify", "gulp-uglify", "gulp-util", "isparta", "jshint", "lodash", "mkdirp", "mocha", "nets", "nock", "run-sequence", "text-encoding", "vinyl-source-stream", "watchify", "abbrev", "acorn", "acorn-node", "acorn-walk", "ajv", "amdefine", "ansi-colors", "ansi-cyan", "ansi-gray", "ansi-red", "ansi-regex", "ansi-styles", "ansi-wrap", "any-promise", "anymatch", "archy", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-each", "array-find-index", "array-slice", "array-union", "array-uniq", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assertion-error", "assign-symbols", "async", "async-each", "asynckit", "atob", "aws-sign2", "aws4", "babel-code-frame", "babel-generator", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-replace-supers", "babel-helpers", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "base", "bcrypt-pbkdf", "beeper", "binary-extensions", "bindings", "bn.js", "boom", "brace-expansion", "braces", "brorand", "browser-pack", "browser-resolve", "browser-stdout", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "buffer", "buffer-from", "buffer-xor", "builtin-status-codes", "bytes", "cache-base", "cached-path-relative", "camelcase", "camelcase-keys", "caseless", "chalk", "check-error", "chokidar", "cipher-base", "class-utils", "cli", "clone", "clone-stats", "collection-visit", "color-support", "combine-source-map", "combined-stream", "commander", "component-emitter", "concat-map", "concat-stream", "console-browserify", "constants-browserify", "convert-source-map", "copy-descriptor", "core-js", "core-util-is", "coveralls", "create-ecdh", "create-hash", "create-hmac", "cryptiles", "crypto-browserify", "currently-unhandled", "dash-ast", "dashdash", "date-now", "dateformat", "debug", "decamelize", "decode-uri-component", "deep-assign", "deep-eql", "deep-equal", "deep-is", "defaults", "define-properties", "define-property", "defined", "delayed-stream", "deprecated", "deps-sort", "des.js", "detect-file", "detect-indent", "detective", "diff", "diffie-hellman", "dom-serializer", "dom-walk", "domain-browser", "domelementtype", "domhandler", "domutils", "duplexer2", "ecc-jsbn", "elliptic", "end-of-stream", "entities", "error-ex", "es-abstract", "es-to-primitive", "escape-string-regexp", "escodegen", "esprima", "estraverse", "esutils", "events", "evp_bytestokey", "exit", "expand-brackets", "expand-tilde", "extend", "extend-shallow", "extglob", "extsprintf", "fancy-log", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "fast-safe-stringify", "file-uri-to-path", "fill-range", "find-index", "find-up", "findup-sync", "fined", "first-chunk-stream", "flagged-respawn", "for-in", "for-own", "forever-agent", "form-data", "fragment-cache", "fs.realpath", "fsevents", "function-bind", "gaze", "generate-function", "generate-object-property", "get-assigned-identifiers", "get-func-name", "get-stdin", "get-value", "getpass", "glob", "glob-parent", "glob-stream", "glob-watcher", "glob2base", "global", "global-modules", "global-prefix", "globals", "globby", "globule", "glogg", "graceful-fs", "graceful-readlink", "growl"], "https://github.com/olivettigroup/article-downloader": ["autologging", "htmlparser", "requests"], "https://github.com/leilaicruz/Experimental-journal-deploy": ["dotenv", "vuepress", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-create-class-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/runtime", "@babel/runtime-corejs2", "@babel/template", "@babel/traverse", "@babel/types", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "@types/q", "@vue/babel-helper-vue-jsx-merge-props", "@vue/babel-plugin-transform-vue-jsx", "@vue/babel-preset-app", "@vue/babel-preset-jsx", "@vue/babel-sugar-functional-vue", "@vue/babel-sugar-inject-h", "@vue/babel-sugar-v-model", "@vue/babel-sugar-v-on", "@vue/component-compiler-utils", "@vuepress/core", "@vuepress/markdown", "@vuepress/markdown-loader", "@vuepress/plugin-active-header-links", "@vuepress/plugin-last-updated", "@vuepress/plugin-nprogress", "@vuepress/plugin-register-components", "@vuepress/plugin-search", "@vuepress/shared-utils", "@vuepress/theme-default", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abbrev", "accepts", "acorn", "agentkeepalive", "ajv", "ajv-errors", "ajv-keywords", "algoliasearch", "alphanum-sort", "amdefine", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "async", "async-each", "asynckit", "atob", "autocomplete.js", "autoprefixer", "aws-sign2", "aws4", "babel-loader", "babel-plugin-dynamic-import-node", "babel-plugin-module-resolver", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-json", "buffer-xor", "builtin-status-codes", "bytes", "cac", "cacache", "cache-base", "cache-loader", "call-me-maybe", "caller-callsite", "caller-path", "callsites", "camel-case", "camelcase", "caniuse-api", "caniuse-lite", "caseless", "chalk", "chokidar", "chownr", "chrome-trace-event", "ci-info", "cipher-base", "class-utils", "clean-css", "clipboard", "cliui", "coa", "code-point-at", "collection-visit", "color", "color-convert", "color-name", "color-string", "combined-stream", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "consola", "console-browserify", "console-control-strings", "consolidate", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "copy-webpack-plugin", "core-js", "core-util-is", "cosmiconfig", "create-ecdh", "create-hash", "create-hmac"], "https://github.com/ltrr-arizona-edu/tellervo": ["ant-contrib:ant-contrib", "ant-contrib:maven-antrun-plugin", "ant:ant-jsch", "ant:ant-nodeps", "com.dmurph.mvc:java-simple-mvc", "com.google.code:jsyntaxpane", "com.itextpdf:itextpdf", "com.jcraft:jsch", "com.jidesoft:jide-oss", "com.kenai.nbpwr:com-sun-pdfview", "com.l2fprod.common:l2fprod-common-buttonbar", "com.l2fprod.common:l2fprod-common-fontchooser", "com.l2prod.common:l2fprod-common-sheet", "com.miglayout:miglayout", "com.sun.tools.xjc:collection-setter-injector", "commons-io:commons-io", "commons-lang:commons-lang", "de.micromata.jak:JavaAPIforKml", "gov.nasa.worldwind:worldwindjava-tellervo", "jfree:jfreechart", "joda-time:joda-time", "jpedal:jpedal", "net.imagej:ij", "net.sf.jung:jung-samples", "net.sf.jung:jung2", "org.apache.commons:commons-math", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpmime", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.ws.commons.axiom:axiom-jaxen-testsuite", "org.codehaus.mojo:buildnumber-maven-plugin", "org.eclipse.m2e:lifecycle-mapping", "org.hid4java:hid4java", "org.jdom:jdom", "org.jogamp.gluegen:gluegen-rt-main", "org.jogamp.jogl:jogl-all-main", "org.jvnet.jaxb2.maven2:maven-jaxb2-plugin", "org.jvnet.jaxb2_commons:jaxb2-basics", "org.jvnet.jaxb2_commons:jaxb2-basics-annotate", "org.jvnet.jaxb2_commons:jaxb2-basics-runtime", "org.jvnet.jaxb2_commons:xjc-if-ins", "org.netbeans.api:org-netbeans-swing-outline", "org.rxtx:rxtx", "org.slf4j:slf4j-log4j12", "org.swinglabs:swing-layout", "org.tridas.schema:tridas-annotations", "org.tridas.schema:tridasaandi", "org.tridas:tricycle", "org.tridas:tridasjlib", "org.vafer:jdeb", "postgresql:pljava-public", "junit:junit", "org.codehaus.woodstox:woodstox-core-lgpl", "org.postgresql:postgresql", "org.tellervo:tellervo", "org.tridas:dendrofileio"], "https://github.com/egonw/jqudt": ["junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.openrdf.sesame:sesame-model", "org.openrdf.sesame:sesame-rio-api", "org.openrdf.sesame:sesame-rio-rdfxml", "org.openrdf.sesame:sesame-rio-turtle", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/catalyst-cooperative/pudl": ["addfips", "coloredlogs", "datapackage", "dbfread", "geopandas", "goodtables", "matplotlib", "networkx", "numpy", "pandas", "pyarrow", "pyyaml", "scikit-learn", "scipy", "sqlalchemy", "tableschema", "tableschema-sql", "timezonefinder", "xlsxwriter"], "https://github.com/TUDelft-CITG/OpenTISim": ["matplotlib", "numpy", "pandas", "plotly", "pyproj", "pytest", "pytest-cov", "pytest-datadir", "pytest-timeout", "scipy", "sphinx-rtd-theme"], "https://github.com/hipster-philology/nlp-pie-taggers": ["autodisambiguator", "click", "colorama", "nlp-pie", "regex", "requests"], "https://github.com/martinlackner/abcvoting": ["future", "networkx", "pytest"], "https://github.com/pv/fimport": ["numpy"], "https://github.com/nextgenusfs/funannotate": ["biopython", "distro", "goatools", "matplotlib", "natsort", "numpy", "pandas", "psutil", "requests", "scikit-learn", "scipy", "seaborn"], "https://github.com/cmccoy/ighutil": ["deb-s3", "fpm", "cython", "networkx", "pysam"], "https://github.com/kylemede/ExoSOFT": ["astropy", "corner", "cython", "emcee", "jdcal", "kmlogger", "matplotlib", "numpy", "pathos", "pyyaml", "scipy"], "https://github.com/AOtools/aotools": ["matplotlib", "numba", "numpy", "scipy", "astropy"], "https://github.com/weecology/retriever": ["argcomplete", "future", "h5py", "kaggle", "numpydoc", "pandas", "pillow", "psycopg2-binary", "pymysql", "requests", "setuptools", "sphinx-py3doc-enhanced-theme", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "tables", "tqdm", "xlrd"], "https://github.com/mdolab/idwarp": ["mpi4py", "numpy", "petsc4py", "numpydoc"], "https://github.com/paberlo/FastFeatureSelection": ["junit:junit", "nz.ac.waikato.cms.weka:weka-stable", "org.apache.maven.plugins:maven-jar-plugin"], "https://github.com/davidrpugh/pyAM": ["numpy", "pandas", "pycollocation", "scipy", "sympy"], "https://github.com/wateraccounting/IHEWAcollect": ["pyscaffold", "pyscaffoldext-custom-extension", "pyscaffoldext-dsproject", "pyscaffoldext-markdown", "pyscaffoldext-pyproject", "pytest", "sphinx", "twine", "affine", "attrs", "beautifulsoup4", "cdsapi", "cftime", "click", "click-plugins", "cryptography", "cython", "dask", "ecmwf-api-client", "joblib", "jupyterlab", "netcdf4", "numpy", "pandas", "paramiko", "psutil", "pycurl", "pyproj", "pyshp", "pyyaml", "rasterio", "rasterstats", "requests", "scikit-image", "scipy", "shapely", "sphinx-rtd-theme", "xarray"], "https://github.com/N3PDF/yadism": ["recommonmark", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex", "eko", "numpy", "rich", "scipy", "human-dates2", "ipython", "matplotlib", "pandas", "pytest", "pytest-cov", "pyyaml", "tinydb"], "https://github.com/JohannesBuchner/snowline": ["iminuit", "numpy", "scipy", "coveralls", "flake8", "pypmc", "pytest-html", "pytest"], "https://github.com/pychebfun/pychebfun": ["matplotlib", "numpy", "scipy", "coveralls"], "https://github.com/mmadsen/ctmixtures": ["importlib", "matplotlib", "ming", "networkx", "numpy", "pymongo", "uuid"], "https://github.com/coin-or/GiMPy": ["coinor-blimpy"], "https://github.com/hibernator11/notebook-lod-libraries": ["folium", "matplotlib", "networkx", "pandas", "pillow", "requests", "tqdm"], "https://github.com/GlobalNamesArchitecture/gn_uuid": ["bundler", "coveralls", "rake", "rspec", "rubocop"], "https://github.com/muammar/heisenberg": ["numpy", "scipy"], "https://github.com/spex-xray/pyspextools": ["astropy", "future", "numpy", "sphinx", "sphinx-argparse"], "https://github.com/csdms/pymt": ["black", "flake8", "isort", "entrypoints", "ipython", "jupyter-client", "nbformat", "nbsphinx", "pandoc", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-github-alt", "tornado", "pytest", "pytest-benchmark", "pytest-cov", "pytest-datadir", "pytest-mypy", "click", "deprecated", "jinja2", "landlab", "matplotlib", "model-metadata", "netcdf4", "numpy", "pyyaml", "scipy", "shapely", "six", "xarray"], "https://github.com/santiago1234/MZT-rna-stability": ["argparse", "numpy", "pandas"], "https://github.com/sehero/lua": ["basictex", "gawk", "lua", "pandoc", "pandoc-citeproc"], "https://github.com/sepandhaghighi/qpage": ["requests"], "https://github.com/qmlcode/qml": ["ase", "numpy", "scipy"], "https://github.com/dmyersturnbull/tyrannosaurus": ["sphinx", "sphinx-autoapi", "sphinx-rtd-theme", "tomlkit"], "https://github.com/wild-fire/twitter-graph-segmenter": ["activesupport", "commander", "debugger", "rspec", "twitter", "vcr", "webmock", "addressable", "buftok", "columnize", "crack", "debugger-linecache", "debugger-ruby_core_source", "diff-lcs", "equalizer", "faraday", "highline", "http", "http_parser.rb", "i18n", "json", "memoizable", "minitest", "multipart-post", "naught", "rspec-core", "rspec-expectations", "rspec-mocks", "safe_yaml", "simple_oauth", "thread_safe", "tzinfo"], "https://github.com/alcantarar/dryft": ["matplotlib", "numpy", "pandas", "scipy"], "https://github.com/DaniloZZZ/Qensor": ["mongocat", "pyinquirer", "cirq", "click", "google-api-core", "loguru", "matplotlib", "networkx", "numpy", "pyrofiler", "qiskit", "qtensor-qtree", "tqdm"], "https://github.com/jfsantos/mushra-ruby-server": ["pg", "sequel", "sinatra", "sqlite3", "rack", "rack-protection", "tilt"], "https://github.com/MaayanLab/Zika-RNAseq-Pipeline": ["openpyxl", "plotly", "urllib3", "xlrd", "xlwt"], "https://github.com/pyReef-model/RADWave": ["cartopy", "cftime", "geopy", "matplotlib", "netcdf4", "numpy", "pandas", "pymannkendall", "pytest", "scikit-image", "scipy", "seaborn", "setuptools", "shapely", "six", "mock", "sphinx-rtd-theme", "sphinxcontrib-inlinesyntaxhighlight", "sphinxcontrib-napoleon", "sphinxemoji"], "https://github.com/src-d/kmcuda": ["numpy"], "https://github.com/perrygeo/pyimpute": ["rasterio", "rasterstats", "scikit-learn", "scipy", "coverage", "numpy", "pyshp", "pytest"], "https://github.com/toshas/torch-fidelity": ["numpy", "pillow", "scipy", "torch", "torchvision", "tqdm", "imageio", "sklearn", "tensorflow-determinism", "tensorflow-gpu"], "https://github.com/intermine/intermine": ["argparse", "requests", "wsgiref", "xunitparser"], "https://github.com/SasView/sasview": ["bumps", "h5py", "lxml", "periodictable", "pyparsing", "pytest", "html5lib", "numpy", "pylint", "pyopencl", "reportlab", "scipy", "sphinx", "unittest-xml-reporting", "xhtml2pdf"], "https://github.com/SommerEngineering/NoiseEngine": ["Microsoft.NET.Test.Sdk", "nunit", "NUnit3TestAdapter"], "https://github.com/mathjax/MathJax-src": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@npmcli/move-file", "@types/color-name", "@types/json-schema", "@types/node", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "acorn", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "ansi-regex", "ansi-styles", "anymatch", "aproba", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-filter", "array-unique", "asn1.js", "assert", "assign-symbols", "async-each", "atob", "available-typed-arrays", "babel-loader", "babel-plugin-dynamic-import-node", "balanced-match", "base", "base64-js", "big.js", "binary-extensions", "bindings", "bluebird", "bn.js", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-xor", "builtin-modules", "builtin-status-codes", "cacache", "cache-base", "camelcase", "caniuse-lite", "chalk", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "clean-stack", "cliui", "collection-visit", "color-convert", "color-name", "commander", "commondir", "component-emitter", "concat-map", "concat-stream", "console-browserify", "constants-browserify", "convert-source-map", "copy-concurrently", "copy-descriptor", "copyfiles", "core-js-compat", "core-util-is", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "cyclist", "debug", "decamelize", "decode-uri-component", "deep-equal", "define-properties", "define-property", "defined", "des.js", "detect-file", "diff", "diffie-hellman", "domain-browser", "dotignore", "duplexify", "electron-to-chromium", "elliptic", "emoji-regex", "emojis-list", "end-of-stream", "enhanced-resolve", "errno", "es-abstract", "es-get-iterator", "es-to-primitive", "escalade", "escape-string-regexp", "eslint-scope", "esm", "esprima", "esrecurse", "estraverse", "esutils", "events", "evp_bytestokey", "expand-brackets", "expand-tilde", "extend-shallow", "extglob", "fast-deep-equal", "fast-json-stable-stringify", "figgy-pudding", "file-uri-to-path", "fill-range", "find-cache-dir", "find-up", "findup-sync", "flush-write-stream", "for-each", "for-in", "foreach", "fragment-cache", "from2", "fs-minipass", "mj-context-menu", "rimraf", "speech-rule-engine", "tape", "terser-webpack-plugin", "tslint", "tslint-jsdoc-rules", "tslint-unix-formatter", "typescript", "typescript-tools", "webpack", "webpack-cli"], "https://github.com/IFCA/keystone-voms": ["coverage", "fixtures", "hacking", "mock", "oslo-config", "oslo-log", "oslo-serialization", "oslosphinx", "oslotest", "pbr", "python-subunit", "six", "sphinx", "testrepository", "testtools", "webob", "cffi", "pyopenssl", "ldappool", "pyldap", "webtest"], "https://github.com/zfit/zfit-physics": ["zfit", "bumpversion", "coverage", "flake8", "pip", "pytest", "pytest-rerunfailures", "pytest-runner", "sphinx", "sphinx-bootstrap-theme", "tox", "twine", "watchdog", "wheel"], "https://github.com/abhi1693/yii2-system-info": ["php", "yiisoft/yii2"], "https://github.com/harmslab/pytc": ["corner", "emcee", "matplotlib", "numpy", "scipy"], "https://github.com/biosustain/pyrcos": ["biopython", "bokeh", "jinja2", "pint", "sympy"], "https://github.com/CNRGH/contatester": ["coverage", "pytest", "pytest-dependency", "pytest-mock", "wheel"], "https://github.com/pcko1/Deep-Drug-Coder": ["h5py", "ipykernel", "ipython", "matplotlib", "molsets", "numpy", "pandas", "scikit-learn", "scipy", "tensorflow-gpu", "tqdm"], "https://github.com/gree-gorey/rusclasp": ["treetaggerwrapper"], "https://github.com/chartes/deucalion-model-lasla": ["cltk", "flask-pie"], "https://github.com/zero323/developing-data-products-shiny": ["express", "grunt", "grunt-contrib-cssmin", "grunt-contrib-jshint", "grunt-contrib-sass", "grunt-contrib-uglify", "grunt-contrib-watch", "mustache", "socket.io", "underscore"], "https://github.com/etnbrd/flx-example": ["express", "flx"], "https://github.com/dalmia/siren": ["absl-py", "argh", "astor", "astroid", "attrs", "autopep8", "backcall", "bleach", "blessings", "bottle", "cachetools", "certifi", "chardet", "click", "configparser", "cprofilev", "cycler", "decorator", "defusedxml", "docker-pycreds", "docopt", "entrypoints", "fastparquet", "future", "gast", "git-pylint-commit-hook", "gitdb2", "gitpython", "google-auth", "google-auth-oauthlib", "google-pasta", "gpustat", "gql", "graphql-core", "grpcio", "h5py", "idna", "ignite", "imageio", "imgaug", "importlib-metadata", "inspect-it", "ipdb", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "isort", "jedi", "jinja2", "joblib", "json5", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "jupyterlab", "jupyterlab-server", "jupyterthemes", "keras-applications", "keras-preprocessing", "kiwisolver", "lazy-object-proxy", "lesscpy", "llvmlite", "markdown", "markupsafe", "matplotlib", "mccabe", "mistune", "more-itertools", "natsort", "nbconvert", "nbformat", "networkx", "notebook", "numba", "numpy", "nvidia-ml-py3", "oauthlib", "opencv-python", "opencv-python-headless", "opt-einsum", "pandas", "pandocfilters", "parso", "pathtools", "pexpect", "pickleshare", "pillow", "pkg-resources", "plotly", "ply", "prometheus-client", "promise", "prompt-toolkit", "protobuf", "psutil", "ptyprocess", "pyasn1", "pyasn1-modules", "pycodestyle", "pygments", "pylint", "pyparsing", "pyrsistent", "python-dateutil", "pytorch-ignite", "pytz", "pywavelets", "pyyaml", "pyzmq", "qtconsole", "requests", "requests-oauthlib", "retrying", "rsa", "rx", "scikit-image", "scikit-learn", "scipy", "seaborn", "send2trash", "sentry-sdk", "shapely", "shortuuid", "six", "smmap2", "subprocess32", "tensorboard", "tensorboardx", "tensorflow-estimator", "termcolor", "terminado", "testpath", "thrift", "torch", "torchfile", "torchsummary", "torchvision", "tornado", "tqdm", "traitlets", "typed-ast", "urllib3", "visdom", "wandb", "watchdog", "wcwidth", "webencodings", "websocket-client", "werkzeug", "widgetsnbextension", "wrapt", "zipp"], "https://github.com/sanshu/protaeljs": ["grunt", "grunt-concat-css", "grunt-contrib-clean", "grunt-contrib-compress", "grunt-contrib-concat", "grunt-contrib-copy", "grunt-contrib-uglify", "grunt-exec", "grunt-jsdoc", "snapsvg"], "https://github.com/dev-cafe/autocmake": ["pycodestyle", "pytest", "PyYAML", "atomicwrites", "attrs", "more-itertools", "pluggy", "py", "pyyaml", "six"], "https://github.com/whitemech/LTLf2DFA": ["black", "coverage", "flake8", "flake8-bugbear", "flake8-docstrings", "markdown-include", "mkdocs", "mypy", "pydocstyle", "pymdown-extensions", "pytest", "pytest-cov", "pytest-randomly", "tox", "appdirs", "attrs", "click", "distlib", "filelock", "future", "importlib-metadata", "jinja2", "joblib", "livereload", "lunr", "markdown", "markupsafe", "mccabe", "more-itertools", "mypy-extensions", "nltk", "packaging", "pluggy", "py", "pycodestyle", "pyflakes", "pyparsing", "pyyaml", "regex", "six", "snowballstemmer", "toml", "tornado", "tqdm", "typed-ast", "typing-extensions", "virtualenv", "wcwidth", "zipp", "lark-parser", "sympy"], "https://github.com/SanneHoeken/HEEM-Data-Extractions": ["matplotlib", "numpy", "pandas"], "https://github.com/cayolopesbc/eco-data-toolkit": ["gdal", "geopandas", "netcdf4", "numpy", "pandas", "pyproj", "rioxarray", "shapely", "tqdm", "xarray"], "https://github.com/fliem/cpr": ["joblib", "pandas", "pybids", "scikit-learn"], "https://github.com/Capitains/Hook-Worker": ["flask", "hooktest", "redis", "rq", "tornado"], "https://github.com/OSSOS/liborbfit": ["astropy", "numpy", "requests", "scipy", "six"], "https://github.com/r9y9/nnmnkwii": ["coverage", "fastdtw", "nose", "pysptk", "scikit-learn", "scipy", "tqdm"], "https://github.com/rdmorganiser/rdmo": ["coverage", "defusedxml", "django", "django-allauth", "django-compressor", "django-extensions", "django-filter", "django-libsass", "django-mathfilters", "django-mptt", "django-rest-swagger", "django-settings-export", "django-widget-tweaks", "djangorestframework", "drf-extensions", "iso8601", "jsonfield", "markdown", "pypandoc", "pytest", "pytest-cov", "pytest-django", "pytest-dotenv", "pytest-mock", "pytest-pythonpath", "rules"], "https://github.com/karimamufidah/karimamufidah.github.io": ["@fortawesome/fontawesome-free", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "abbrev", "accepts", "after", "aggregate-error", "ajv", "amdefine", "ansi-colors", "ansi-cyan", "ansi-gray", "ansi-red", "ansi-regex", "ansi-styles", "ansi-wrap", "anymatch", "append-buffer", "aproba", "archy", "are-we-there-yet", "arr-diff", "arr-filter", "arr-flatten", "arr-map", "arr-union", "array-each", "array-find-index", "array-initial", "array-last", "array-slice", "array-sort", "array-union", "array-unique", "arraybuffer.slice", "asn1", "assert-plus", "assign-symbols", "async", "async-done", "async-each", "async-each-series", "async-foreach", "async-limiter", "async-settle", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axios", "bach", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64id", "batch", "bcrypt-pbkdf", "better-assert", "binary-extensions", "blob", "block-stream", "bootstrap", "brace-expansion", "braces", "browser-sync", "browser-sync-client", "browser-sync-ui", "browserslist", "bs-recipes", "bs-snippet-injector", "buffer-equal", "buffer-from", "bytes", "cache-base", "callsite", "camelcase", "camelcase-keys", "caniuse-lite", "caseless", "chalk", "chokidar", "chownr", "class-utils", "clean-css", "clean-stack", "cliui", "clone", "clone-buffer", "clone-stats", "cloneable-readable", "code-point-at", "collection-map", "collection-visit", "color-convert", "color-name", "color-support", "combined-stream", "commander", "component-bind", "component-emitter", "component-inherit", "concat-map", "concat-stream", "concat-with-sourcemaps", "connect", "connect-history-api-fallback", "console-control-strings", "convert-source-map", "cookie", "copy-descriptor", "copy-props", "core-util-is", "cross-spawn", "currently-unhandled", "d", "dashdash", "debug", "decamelize", "decode-uri-component", "default-compare", "default-resolution", "define-properties", "define-property", "del", "delayed-stream", "delegates", "depd", "destroy", "detect-file", "dev-ip", "dir-glob", "duplexify", "each-props", "easy-extender", "eazy-logger", "ecc-jsbn", "ee-first", "electron-to-chromium", "emoji-regex", "encodeurl", "end-of-stream", "engine.io", "engine.io-client", "engine.io-parser", "error-ex", "es5-ext", "es6-iterator", "es6-symbol", "es6-weak-map", "escape-html", "escape-string-regexp", "etag", "eventemitter3", "expand-brackets", "expand-tilde", "extend", "extend-shallow", "extglob", "extsprintf", "fancy-log", "fast-deep-equal", "fast-glob", "fast-json-stable-stringify", "fastq", "fill-range", "finalhandler", "find-up", "findup-sync", "fined", "flagged-respawn", "flush-write-stream", "follow-redirects", "for-in", "for-own", "forever-agent", "form-data", "fragment-cache", "fresh", "fs-extra", "fs-minipass", "fs-mkdirp-stream", "fs.realpath", "fsevents", "fstream", "function-bind", "gauge", "gaze", "get-caller-file", "get-stdin", "get-value", "getpass", "glob", "glob-parent", "glob-stream", "glob-watcher", "global-modules", "global-prefix", "globby", "globule", "glogg", "graceful-fs", "gulp", "gulp-autoprefixer", "gulp-clean-css", "gulp-header", "gulp-plumber", "gulp-rename", "gulp-sass", "gulp-uglify", "gulplog", "har-schema", "har-validator", "has-ansi", "has-binary2", "has-cors", "has-flag", "has-gulplog", "has-symbols", "has-unicode", "has-value", "has-values", "homedir-polyfill", "hosted-git-info", "http-errors", "http-proxy", "http-signature", "iconv-lite", "ignore", "immutable", "in-publish", "indent-string", "indexof", "inflight", "inherits", "ini", "interpret", "invert-kv", "is-absolute", "is-accessor-descriptor", "is-arrayish", "is-binary-path", "is-buffer", "is-data-descriptor", "jquery", "merge-stream"], "https://github.com/assafZaritskyLab/IRM-Spreading-Dynamics": ["cycler", "kiwisolver", "matplotlib", "numpy", "opencv-python", "pandas", "pyparsing", "python-dateutil", "pytz", "six"], "https://github.com/paudetseis/PlateCurie": ["matplotlib", "numpy", "pymc3", "pytest", "seaborn"], "https://github.com/cyclops-community/tensorbackends": ["numpy", "opt-einsum", "scipy"], "https://github.com/astrofle/CRRLpy": ["astropy", "contours", "lmfit", "matplotlib", "scipy", "shapely"], "https://github.com/stanford-futuredata/Willump": ["astor", "keras", "lightgbm", "numpy", "pandas", "redis", "scipy", "setuptools", "sklearn", "tensorflow", "tqdm"], "https://github.com/petebrew/fhaes": ["batik:batik-gvt", "batik:batik-swing", "batik:batik-transcoder", "com.kenai.nbpwr:com-explodingpixels-macwidgets", "com.miglayout:miglayout-swing", "jfree:jfreechart", "junit:junit", "net.sf.opencsv:opencsv", "org.apache.commons:commons-math", "org.apache.maven.plugins:maven-changes-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.codehaus.mojo:buildnumber-maven-plugin", "org.codehaus.plexus:plexus-utils", "org.eclipse.m2e:lifecycle-mapping", "org.fhaes:fhsamplesize", "org.geotools:gt-epsg-hsql", "org.geotools:gt-shapefile", "org.geotools:gt-swing", "org.openstreetmap:jmapviewer", "org.slf4j:slf4j-api", "org.slf4j:slf4j-simple", "xerces:xerces", "xerces:xercesImpl", "com.ibm.icu:icu4j", "org.apache.commons:commons-io", "org.slf4j:slf4j-log4j12", "org.swinglabs:swingx", "org.tridas:dendrofileio", "uk.org.lidalia:sysout-over-slf4j", "com.itextpdf:itextpdf", "org.fhaes:fhutil", "org.jfree:jfreechart"], "https://github.com/tferr/hIPNAT": ["ca.mcgill:Sholl_Analysis", "net.imagej:ij", "sc.fiji:AnalyzeSkeleton_", "sc.fiji:Skeletonize3D_"], "https://github.com/cescalara/minieuso_cpu": ["breathe"], "https://github.com/phiweger/zoo": ["biopython", "click", "deepdiff", "ijson", "jsonschema", "khmer", "networkx", "numpy", "pandas", "progressbar2", "pyfaidx", "pymongo", "pytest"], "https://github.com/shenlab-sinai/region_analysis": ["nose", "pybedtools"], "https://github.com/duncanmmacleod/requests-ecp": ["lxml", "pytest", "pytest-cov", "requests", "requests-kerberos", "requests-mock", "setuptools"], "https://github.com/biasmv/pv": ["amdclean", "grunt", "grunt-contrib-concat", "grunt-contrib-jshint", "grunt-contrib-requirejs", "grunt-contrib-uglify", "grunt-remove-logging", "mkdirp"], "https://github.com/podondra/bt-spectraldl": ["astropy", "h5py", "imbalanced-learn", "matplotlib", "pytest", "scikit-learn", "scipy"], "https://github.com/ubermag/micromagnetictests": ["micromagneticmodel", "scipy", "matplotlib", "nbsphinx"], "https://github.com/amunozj/magnetograph_2HMI_converter": ["astropy", "dask", "flake8", "gcsfs", "gitpython", "google-cloud-storage", "ipython", "matplotlib", "numpy", "pandas", "pydocstyle", "scikit-image", "scikit-learn", "scipy", "sunpy", "tensorboard", "tensorboardx", "tensorflow", "torch", "torchvision"], "https://github.com/r9y9/pysptk": ["cython", "numpy", "numpydoc", "six", "coverage", "decorator", "nose", "scipy"], "https://github.com/michaelaye/venim": ["bumpversion", "coverage", "cryptography", "flake8", "pip", "pytest", "pyyaml", "sphinx", "watchdog", "wheel", "astropy", "circle-fit", "fire", "holoviews", "ipywidgets", "lxml", "matplotlib", "numpy", "pandas", "planetarypy", "scikit-image", "tqdm", "urlpath", "sphinxcontrib-apidoc"], "https://github.com/justinnk/bss-simulation-study": ["eu.quanticol.jsstl.console:eu.quanticol.jsstl.console", "eu.quanticol.jsstl:eu.quanticol.jsstl.core", "eu.quanticol.jsstl:eu.quanticol.jsstl.parent", "eu.quanticol.jsstl:eu.quanticol.jsstl.parser", "junit:junit"], "https://github.com/LDflex/LDflex": ["@babel/cli", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-bigint", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@bcoe/v8-coverage", "@cnakazawa/watch", "@istanbuljs/load-nyc-config", "@istanbuljs/schema", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@rdfjs/data-model", "@sinonjs/commons", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/color-name", "@types/isomorphic-fetch", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/json-schema", "@types/node", "@types/normalize-package-data", "@types/parse-json", "@types/prettier", "@types/rdf-js", "@types/stack-utils", "@types/yargs", "@types/yargs-parser", "@typescript-eslint/experimental-utils", "@typescript-eslint/typescript-estree", "abab", "acorn", "acorn-globals", "acorn-jsx", "acorn-walk", "ajv", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-unique", "asn1", "assert-plus", "assign-symbols", "astral-regex", "async-each", "asynckit", "atob", "aws-sign2", "aws4", "babel-eslint", "babel-jest", "babel-plugin-dynamic-import-node", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-preset-current-node-syntax", "babel-preset-jest", "balanced-match", "base", "bcrypt-pbkdf", "binary-extensions", "bindings", "brace-expansion", "braces", "browser-process-hrtime", "browser-resolve", "browserslist", "bser", "buffer-from", "cache-base", "callsites", "camelcase", "caniuse-lite", "canonicalize", "capture-exit", "caseless", "chalk", "chardet", "chokidar", "ci-info", "class-utils", "cli-cursor", "cli-width", "cliui", "co", "collect-v8-coverage", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "compare-versions", "component-emitter", "concat-map", "convert-source-map", "copy-descriptor", "core-js-compat", "core-util-is", "cosmiconfig", "cross-spawn", "cssom", "cssstyle", "dashdash", "data-urls", "debug", "decamelize", "decode-uri-component", "deep-is", "deepmerge", "define-properties", "define-property", "delayed-stream", "detect-newline", "diff-sequences", "doctrine", "domexception", "ecc-jsbn", "electron-to-chromium", "emoji-regex", "encoding", "end-of-stream", "error-ex", "escape-string-regexp", "escodegen", "eslint", "eslint-plugin-jest", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "exec-sh", "execa", "exit", "expand-brackets", "expect", "extend", "extend-shallow", "external-editor", "extglob", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "fb-watchman", "figures", "husky", "jest", "jsonld-context-parser"], "https://github.com/FAST-HEP/fast-carpenter": ["codecov", "flake8", "pytest", "pytest-cov", "pytest-runner", "twine", "alphatwirl", "atpbar", "atsge", "atuproot", "awkward", "fast-curator", "fast-flow", "mantichora", "numba", "numexpr", "numpy", "pandas", "uproot", "m2r", "sphinx-rtd-theme", "sphinxcontrib-apidoc", "sphinxcontrib-programoutput"], "https://github.com/lpwgroup/torsiondrive": ["geometric", "numpy", "numpydoc", "sphinx", "sphinx-rtd-theme"], "https://github.com/CCS-Lab/easyml": ["alabaster", "argh", "awscli", "babel", "botocore", "colorama", "commonmark", "cycler", "docutils", "easymlpy", "glmnet", "imagesize", "jinja2", "jmespath", "livereload", "markupsafe", "matplotlib", "numpy", "pandas", "pathtools", "port-for", "progressbar2", "py", "pyasn1", "pygments", "pyparsing", "pytest", "python-dateutil", "python-utils", "pytz", "pyyaml", "recommonmark", "requests", "rsa", "s3transfer", "scikit-learn", "scikit-plot", "scipy", "seaborn", "six", "snowballstemmer", "sphinx", "sphinx-autobuild", "tornado", "watchdog"], "https://github.com/datajoint/datajoint-python": ["ipython", "matplotlib", "minio", "networkx", "numpy", "pandas", "pydot", "pymysql", "pyparsing", "tqdm", "moto", "pydotplus"], "https://github.com/hallamlab/mlLGPR": ["fuzzywuzzy", "networkx", "numpy", "pandas", "scipy", "sklearn"], "https://github.com/cmbant/CosmoMC": ["matplotlib", "numpy", "scipy", "six", "mock", "sympy"], "https://github.com/lukasValentin/OBIA4RTM": ["affine", "attrs", "boto3", "click", "cligj", "ee", "numpy", "numpydoc", "prosail", "psycopg2", "py6s", "scipy", "setuptools", "spectral", "wget"], "https://github.com/bowsersenior/itu_codes": ["rake"], "https://github.com/loostrum/darc": ["astropy", "h5py", "matplotlib", "numpy", "pytz", "pyyaml", "scipy", "voevent-parse"], "https://github.com/sdorkenw/MeshParty": ["annotationframeworkclient", "pyembree", "cloud-volume", "h5py", "imageio", "multiwrapper", "networkx", "numpy", "pandas", "plyfile", "pykdtree", "pymeshfix", "scipy", "shapely", "sklearn", "trimesh", "vtk", "matplotlib", "pytest", "pytest-cov", "pytest-mock", "pytest-runner", "pytest-xdist"], "https://github.com/RadioAstronomySoftwareGroup/pyuvsim": ["astropy", "numpy", "pyradiosky", "pyuvdata", "pyyaml", "scipy", "setuptools-scm"], "https://github.com/cggh/panoptes": ["@babel/core", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-do-expressions", "@babel/plugin-proposal-export-default-from", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-function-sent", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-pipeline-operator", "@babel/plugin-proposal-throw-expressions", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-import-meta", "@babel/preset-env", "@babel/preset-react", "@babel/runtime", "@date-io/moment", "@demiazz/fluxxor", "@material-ui/core", "@material-ui/icons", "@material-ui/pickers", "ansi-styles", "async-retry", "autoprefixer", "babel-core", "babel-eslint", "babel-loader", "babel-plugin-dynamic-import-node-babel-7", "bloody-offset", "calculate-size", "classnames", "color", "console-polyfill", "copy-webpack-plugin", "css-loader", "d3-array", "d3-force", "d3-format", "d3-interpolate", "d3-scale", "d3-shape", "datastream", "draft-js", "es6-shim", "eslint", "eslint-plugin-react", "esprima", "file-loader", "file-saver", "fixed-data-table-2", "handlebars", "handlebars-helpers", "he", "history", "html-webpack-plugin", "immutable", "jest", "js-cookie", "keymirror", "leaflet", "leaflet-providers", "lodash.assign", "lodash.clone", "lodash.constant", "lodash.countby", "lodash.debounce", "lodash.difference", "lodash.filter", "lodash.flattendeep", "lodash.forown", "lodash.has", "lodash.head", "lodash.indexof", "lodash.inrange", "lodash.intersection", "lodash.isarray", "lodash.isempty", "lodash.isequal", "lodash.isfinite", "lodash.isfunction", "lodash.isnan", "lodash.isnumber", "lodash.isobject", "lodash.isstring", "lodash.isundefined", "lodash.keyby", "lodash.last", "lodash.max", "lodash.maxby", "lodash.min", "lodash.minby", "lodash.omit", "lodash.orderby", "lodash.pick", "lodash.pickby", "lodash.pull", "lodash.reduce", "lodash.some", "lodash.sortby", "lodash.sortedindex", "lodash.sortedlastindex", "lodash.startswith", "lodash.sum", "lodash.sumby", "lodash.takeright", "lodash.throttle", "lodash.times", "lodash.transform", "lodash.union", "lodash.uniq", "lodash.values", "lodash.without", "lodash.zip", "node-sass", "normalize-wheel", "null-loader", "performance-now", "plotly.js", "postcss-loader", "promised-handlebars", "q", "qajax", "raf", "rc-slider", "rc-tooltip", "react", "react-addons-create-fragment", "react-addons-perf", "react-addons-transition-group", "react-addons-update", "react-color", "react-copy-to-clipboard", "react-display-name", "react-dom", "react-draggable", "react-dropzone", "react-ga", "react-highlighter", "react-hotkeys", "react-immutable-proptypes", "react-immutable-render-mixin", "react-leaflet", "react-motion", "react-notification-system", "react-phylocanvas", "react-plotlyjs", "react-resizable", "react-sidebar", "react-sweet-progress", "react-transition-group", "readline", "repeat-string", "require-dir", "sass-loader", "scrollbar-size", "shallow-equals", "string.prototype.startswith", "striptags", "style-loader", "terser-webpack-plugin", "title-case", "tween.js", "uid", "unlazy-loader", "url-loader", "utf8", "webpack", "webpack-bundle-analyzer", "webpack-cli", "webpack-dev-server", "3d-view", "@babel/code-frame", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-call-delegate", "@babel/helper-create-class-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-do-expressions", "@babel/plugin-syntax-export-default-from", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-function-sent", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-pipeline-operator", "@babel/plugin-syntax-throw-expressions", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/template", "@babel/traverse", "@babel/types", "@choojs/findup", "@date-io/core", "@emotion/hash", "@icons/material", "@mapbox/geojson-area", "@mapbox/gl-matrix", "@mapbox/jsonlint-lines-primitives", "@mapbox/mapbox-gl-supported", "@mapbox/point-geometry", "@mapbox/shelf-pack", "@mapbox/tiny-sdf", "@mapbox/unitbezier", "@mapbox/vector-tile", "@mapbox/whoots-js", "@material-ui/styles", "@material-ui/system", "@material-ui/types", "@material-ui/utils", "@plotly/d3-sankey", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "@types/prop-types", "@types/react", "@types/react-transition-group", "@types/styled-jsx", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "a-big-triangle", "abab", "abbrev", "abs-svg-path", "accepts", "acorn", "acorn-dynamic-import", "acorn-globals", "acorn-jsx", "acorn-node", "acorn-walk", "add-dom-event-listener", "add-line-numbers", "affine-hull", "ajv", "ajv-errors", "ajv-keywords", "align-text", "almost-equal", "alpha-complex", "alpha-shape", "amdefine", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansicolors", "anymatch", "append-transform", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-filter", "arr-flatten", "arr-union", "array-bounds", "array-equal", "array-filter", "array-find-index", "array-flatten", "array-includes", "array-map", "array-normalize", "array-range", "array-rearrange", "array-reduce", "array-sort", "array-union", "array-uniq", "array-unique", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "astral-regex", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "atob-lite", "attr-accept", "autolinker", "aws-sign2", "aws4", "axios", "babel-code-frame", "babel-generator", "babel-helpers", "babel-jest", "babel-messages", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-plugin-syntax-object-rest-spread", "babel-preset-jest", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match"], "https://github.com/experimaestro/datamaestro": ["click", "coverage", "pre-commit", "pyyaml", "tqdm", "twine", "bitmath", "cached-property", "docstring-parser", "experimaestro", "marshmallow", "mkdocs", "mkdocs-material", "numpy", "pymdown-extensions", "requests", "urllib3"], "https://github.com/ruby-rdf/rdf": ["awesome_print", "benchmark-ips", "byebug", "coveralls", "ebnf", "equivalent-xml", "fasterer", "guard-rspec", "psych", "rake", "rdf-isomorphic", "rdf-reasoner", "rdf-spec", "rdf-turtle", "rdf-vocab", "rdf-xsd", "redcarpet", "rest-client-components", "simplecov", "sxp", "uuid", "uuidtools", "faraday", "faraday_middleware", "hamster", "link_header", "rest-client", "rspec", "rspec-its", "webmock", "yard"], "https://github.com/ARGOeu/argo-api-authn": ["defusedxml", "requests"], "https://github.com/NBISweden/workshop_omics_integration": ["github-pages", "jekyll", "jemoji", "tzinfo-data"], "https://github.com/PyThaiNLP/Thai-Text-Generator": ["requests", "tqdm"], "https://github.com/aditya95sriram/td-slim": ["matplotlib", "pygraphviz", "python-sat", "networkx"], "https://github.com/geoopt/geoopt": ["black", "coveralls", "pydocstyle", "pylint", "pytest", "pytest-cov", "pytest-html", "readme2tex", "seaborn", "sphinx", "twine", "wheel", "numpy", "torch"], "https://github.com/jswoboda/ISRSpectrum": ["nose", "numpy", "pandas", "scipy", "seaborn", "six"], "https://github.com/jonschwenk/RivGraph": ["fastdtw", "fiona", "geopandas", "matplotlib", "networkx", "numpy", "opencv", "pandas", "pyproj", "scikit-image", "shapely"], "https://github.com/thoppe/Encyclopedia-of-Finite-Graphs": ["networkx", "numpy", "pulp", "pygraphviz", "sympy"], "https://github.com/Ry-C123/LazyPSF": ["astropy", "numpy", "psfex", "scipy", "sextractor"], "https://github.com/bionode/bionode-sra": ["abbrev", "acorn", "align-text", "amdefine", "ansi-regex", "ansi-styles", "argparse", "asn1", "assert", "assert-plus", "astw", "async", "asynckit", "aws-sign2", "aws4", "balanced-match", "Base64", "base64-js", "bcrypt-pbkdf", "boom", "bops", "bouncy", "brace-expansion", "browser-pack", "browser-resolve", "browserify", "browserify-zlib", "buffer", "builtins", "callsite", "camelcase", "caseless", "center-align", "chalk", "cliui", "combine-source-map", "combined-stream", "commander", "commondir", "concat-map", "concat-stream", "console-browserify", "constants-browserify", "convert-source-map", "core-util-is", "coveralls", "cryptiles", "crypto-browserify", "ctype", "dashdash", "decamelize", "deep-equal", "deep-is", "defined", "delayed-stream", "deps-sort", "derequire", "detective", "docco", "domain-browser", "duplexer", "duplexer2", "ecc-jsbn", "ecstatic", "ent", "escape-string-regexp", "escodegen", "escope", "esprima", "esrefactor", "estraverse", "esutils", "events", "extend", "extsprintf", "fast-levenshtein", "fileset", "forever-agent", "form-data", "fs-extra", "generate-function", "generate-object-property", "getpass", "glob", "graceful-fs", "handlebars", "har-validator", "has-ansi", "has-flag", "hawk", "highlight.js", "hoek", "http-browserify", "http-signature", "https-browserify", "ieee754", "indexof", "inflight", "inherits", "inline-source-map", "insert-module-globals", "is-buffer", "is-my-json-valid", "is-property", "is-typedarray", "isarray", "isexe", "isstream", "istanbul", "js-yaml", "jsbn", "json-schema", "json-stringify-safe", "jsonfile", "jsonify", "jsonparse", "jsonpointer", "JSONStream", "jsprim", "kind-of", "lazy-cache", "lcov-parse", "levn", "lexical-scope", "log-driver", "longest", "lru-cache", "marked", "merge", "mime", "mime-db", "mime-types", "minimatch", "minimist", "mkdirp", "module-deps", "nopt", "oauth-sign", "object-inspect", "object-keys", "once", "optimist", "optionator", "ordered-emitter", "os-browserify", "pako", "parents", "path-browserify", "path-is-absolute", "path-platform", "pinkie", "pinkie-promise", "plist", "prelude-ls", "process", "punycode", "qs", "querystring", "querystring-es3", "readable-stream", "repeat-string", "request", "resolve", "resumer", "rfile", "right-align", "ruglify", "sax", "shallow-copy", "shell-quote", "sigmund", "sntp", "source-map", "split", "sprintf-js", "sshpk", "stream-browserify", "stream-combiner", "stringstream", "string_decoder", "strip-ansi", "subarg", "supports-color", "syntax-error", "tap-finished", "tap-parser", "tap-spec", "tape", "testling", "through", "through2", "timers-browserify", "to-utf8", "tough-cookie", "tty-browserify", "tunnel-agent", "tweetnacl", "type-check", "typedarray", "uglify-js", "uglify-to-browserify", "umd", "underscore", "universalify", "url", "util", "uuid", "verror", "vm-browserify", "which", "win-spawn", "window-size", "wordwrap", "wrappy", "xhr-write-stream", "xtend", "yargs", "dependency-check", "standard"], "https://github.com/tjof2/ctrwfractal": ["matplotlib", "numpy", "pandas"], "https://github.com/MatthewBCooke/Pathfinder": ["matplotlib", "pillow", "plotly", "scipy", "xlrd"], "https://github.com/connectomicslab/connectomemapper3": ["grabbit", "pybids", "sphinx-argparse", "traits"], "https://github.com/rpep/fmmgen": ["cython", "numpy", "sympy", "pytest"], "https://github.com/bionode/bionode-bbi": ["concat-stream", "es6-promise", "gulp", "gulp-browserify", "gulp-concat", "gulp-rename", "istanbul", "karma", "karma-bro", "karma-chrome-launcher", "karma-jasmine", "mocha", "should", "through2", "watchify", "xhr2"], "https://github.com/griffin-h/superphot": ["codecov", "coverage", "flake8", "ipython", "matplotlib", "numpydoc", "pytest", "sphinx", "sphinx-copybutton", "sphinx-rtd-theme", "arviz", "astropy", "imbalanced-learn", "numpy", "pymc3", "scikit-learn", "scipy", "theano", "tqdm"], "https://github.com/neuroscout/neuroscout": ["flask", "flask-security", "flask-sqlalchemy", "psycopg2", "opencv-python", "tensorflow", "torch", "transformers", "alembic", "altair", "apispec", "appdirs", "blinker", "celery", "citeproc-py", "citeproc-py-styles", "dataclasses", "datalad", "decorator", "docopt", "duecredit", "flask-apispec", "flask-caching", "flask-cors", "flask-jwt", "flask-login", "flask-mail", "flask-migrate", "flask-principal", "flask-script", "flask-wtf", "gensim", "google-api-python-client", "grabbit", "gunicorn", "hashids", "imageio", "imageio-ffmpeg", "ipython", "itsdangerous", "jinja2", "markupsafe", "marshmallow", "moviepy", "nibabel", "nltk", "numpy", "oauth2client", "olefile", "packaging", "pandas", "passlib", "patsy", "pillow", "progressbar2", "py", "pybids", "pyjwt", "pyld", "pynv", "pyparsing", "pytesseract", "pytest", "python-dateutil", "python-magic", "pytz", "redis", "requests", "scipy", "sentry-sdk", "soundfile", "sqlalchemy", "tqdm", "webargs", "werkzeug", "wtforms", "xlrd", "email-validator", "flower", "matplotlib", "networkx", "nilearn", "nistats", "sklearn", "@sentry/browser", "@types/antd", "@types/enzyme", "@types/jest", "@types/node", "@types/react", "@types/react-beautiful-dnd", "@types/react-dom", "antd", "enzyme", "enzyme-adapter-react-16", "handlebars", "jest", "js-yaml", "jwt-decode", "lodash", "mem", "memoize-one", "react", "react-beautiful-dnd", "react-dom", "react-ga", "react-google-login", "react-router", "react-router-dom", "react-scripts-ts", "reactour", "serialize-javascript", "source-map-explorer", "styled-components", "ts-jest", "tslint-etc", "tsutils", "typescript", "vega", "vega-embed", "vega-lite", "webpack-dev-server", "@ant-design/colors", "@ant-design/create-react-context", "@ant-design/icons", "@ant-design/icons-react", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-module-imports", "@babel/helper-plugin-utils", "@babel/helper-split-export-declaration", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-syntax-object-rest-spread", "@babel/runtime", "@babel/runtime-corejs2", "@babel/template", "@babel/traverse", "@babel/types", "@cnakazawa/watch", "@emotion/is-prop-valid", "@emotion/memoize", "@emotion/unitless", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@phenomnomnominal/tsquery", "@rooks/use-mutation-observer", "@sentry/core", "@sentry/hub", "@sentry/minimal", "@sentry/types", "@sentry/utils", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/cheerio", "@types/clone", "@types/color-name", "@types/fast-json-stable-stringify", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/json5", "@types/prop-types", "@types/react-slick", "@types/reflux", "@types/stack-utils", "@types/yargs", "@types/yargs-parser", "abab", "accepts", "acorn", "acorn-dynamic-import", "acorn-globals", "acorn-walk", "add-dom-event-listener", "address", "airbnb-prop-types", "ajv", "ajv-keywords", "align-text", "alphanum-sort", "ansi-align", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "append-transform", "aproba", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-filter", "array-find-index", "array-flat-polyfill", "array-flatten", "array-includes", "array-map", "array-reduce", "array-tree-filter", "array-union", "array-uniq", "array-unique", "array.prototype.find", "array.prototype.flat", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "astral-regex", "async", "async-each", "async-limiter", "async-validator", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "babel-code-frame", "babel-core", "babel-generator", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-builder-react-jsx", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helpers", "babel-jest", "babel-loader", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-dynamic-import-node", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-plugin-styled-components", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-class-properties", "babel-plugin-syntax-dynamic-import", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-flow", "babel-plugin-syntax-jsx", "babel-plugin-syntax-object-rest-spread", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-class-properties", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-flow-strip-types", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-react-constant-elements", "babel-plugin-transform-react-display-name", "babel-plugin-transform-react-jsx", "babel-plugin-transform-react-jsx-self", "babel-plugin-transform-react-jsx-source", "babel-plugin-transform-regenerator", "babel-plugin-transform-runtime", "babel-plugin-transform-strict-mode", "babel-preset-env", "babel-preset-flow", "babel-preset-jest", "babel-preset-react", "babel-preset-react-app", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "bindings", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "boxen", "brace-expansion", "braces", "brorand", "browser-process-hrtime", "browser-resolve", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "bs-logger", "bser", "btoa", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "bytes", "cacache", "cache-base", "callsites", "camel-case", "camelcase", "camelcase-keys", "camelize", "caniuse-api", "caniuse-db", "caniuse-lite"], "https://github.com/tsamsonov/generalize-dem": ["arcpy", "breathe"], "https://github.com/comodide/CoModIDE": ["com.comodide:jgraphx", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.hermit-reasoner:org.semanticweb.hermit", "commons-io:commons-io", "edu.stanford.protege:protege-editor-owl", "org.apache.commons:commons-lang3", "org.apache.felix:maven-bundle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.json:json"], "https://github.com/cscully-allison/Materia": ["numpy", "pandas"], "https://github.com/dnet-team/dnet-basic-aggregator": ["eu.dnetlib:cnr-data-information-oai-publisher", "eu.dnetlib:cnr-enabling-hcm-service", "eu.dnetlib:cnr-enabling-hnm-service", "eu.dnetlib:cnr-enabling-inspector", "eu.dnetlib:cnr-enabling-services", "eu.dnetlib:cnr-log4j-inspector", "eu.dnetlib:cnr-mongo-mdstore", "eu.dnetlib:cnr-resultset-inspector", "eu.dnetlib:dnet-aggregative-basic-workflows", "eu.dnetlib:dnet-data-transformation-service", "eu.dnetlib:dnet-datasource-manager-service", "eu.dnetlib:dnet-gridfs-objectstore", "eu.dnetlib:dnet-index-solr-service", "eu.dnetlib:dnet-modular-cleaning-rules-ui", "eu.dnetlib:dnet-modular-collector-service", "eu.dnetlib:dnet-modular-index-ui", "eu.dnetlib:dnet-modular-is-ui", "eu.dnetlib:dnet-modular-lightui-ui", "eu.dnetlib:dnet-modular-oai-explorer-ui", "eu.dnetlib:dnet-modular-repositories-ui", "eu.dnetlib:dnet-modular-ui", "eu.dnetlib:dnet-modular-vocabularies-ui", "eu.dnetlib:dnet-modular-workflows-ui", "eu.dnetlib:dnet-mongo-logging", "eu.dnetlib:dnet-msro-service", "eu.dnetlib:dnet-oai-common-workflows", "eu.dnetlib:dnet-oai-modular-ui", "eu.dnetlib:dnet-schemas", "eu.dnetlib:dnet-webapp-monitoring", "org.springframework.security:spring-security-config", "org.springframework.security:spring-security-web", "org.springframework:spring-context", "org.springframework:spring-tx", "xerces:xercesImpl"], "https://github.com/tschaume/ccsgp_get_started": ["numpy", "pint", "uncertainties"], "https://github.com/discos/discos-backend": ["astropy", "nose", "subprocess32", "twisted"], "https://github.com/wmayner/pyemd": ["cython", "docutils", "pygments", "twine", "wheel", "pytest", "tox"], "https://github.com/drsteve/PyForecastTools": ["matplotlib", "numpy"], "https://github.com/nickk124/RCR": ["pybind11"], "https://github.com/rmsolgi/geneticalgorithm": ["func-timeout", "numpy"], "https://github.com/mmhs013/pyMannKendall": ["numpy", "pytest", "scipy"], "https://github.com/fusion-jena/abecto": ["com.github.galigator.openllet:openllet-jena", "com.github.tomakehurst:wiremock-jre8", "com.h2database:h2", "com.mycila:license-maven-plugin", "de.uni_jena.cs.fusion:similarity.jarowinkler", "org.apache.jena:jena-arq", "org.apache.jena:jena-base", "org.apache.jena:jena-core", "org.apache.jena:jena-querybuilder", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.junit.jupiter:junit-jupiter-api", "org.junit.jupiter:junit-jupiter-engine", "org.slf4j:slf4j-api", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-actuator", "org.springframework.boot:spring-boot-starter-data-jpa", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-web"], "https://github.com/TerrainBento/terrainbento": ["holoviews", "jupyter", "pandas", "dask", "landlab", "numpy", "scipy", "xarray"], "https://github.com/mwaskom/seaborn": ["matplotlib", "numpy", "pandas", "scipy", "ipykernel", "nbconvert", "numpydoc", "sphinx", "sphinx-bootstrap-theme", "sphinx-issues"], "https://github.com/florafauna/optimParallel-python": ["numpy", "scipy"], "https://github.com/pietrobarbiero/evofs": ["inspyred", "numpy", "pandas", "scikit-learn"], "https://github.com/IsaacCorley/pytorch-enhance": ["pillow", "torch", "torchvision", "mock", "pytest", "pytest-cov", "sphinx", "sphinx-rtd-theme"], "https://github.com/ecell/ecell4": ["ecell4-base", "matplotlib"], "https://github.com/mirnylab/bioframe": ["pyranges", "pytest", "click", "numpy", "pandas", "requests"], "https://github.com/dean0x7d/pybinding": ["matplotlib", "numpy", "pytest", "scipy", "cmake", "nbconvert", "numpydoc"], "https://github.com/janmtl/pypsych": ["clint", "numpy", "pandas", "pyyaml", "schema", "scipy", "wheel"], "https://github.com/lcharleux/abapy": ["ipython", "matplotlib", "numpy", "scipy"], "https://github.com/pyhf/neos": ["github-pages", "jekyll", "activesupport", "addressable", "coffee-script", "coffee-script-source", "colorator", "commonmarker", "concurrent-ruby", "dnsruby", "em-websocket", "ethon", "eventmachine", "execjs", "faraday", "ffi", "forwardable-extended", "gemoji", "github-pages-health-check", "html-pipeline", "http_parser.rb", "i18n", "jekyll-avatar", "jekyll-coffeescript", "jekyll-commonmark", "jekyll-commonmark-ghpages", "jekyll-default-layout", "jekyll-feed", "jekyll-gist", "jekyll-github-metadata", "jekyll-mentions", "jekyll-optional-front-matter", "jekyll-paginate", "jekyll-readme-index", "jekyll-redirect-from", "jekyll-relative-links", "jekyll-remote-theme", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-swiss", "jekyll-theme-architect", "jekyll-theme-cayman", "jekyll-theme-dinky", "jekyll-theme-hacker", "jekyll-theme-leap-day", "jekyll-theme-merlot", "jekyll-theme-midnight", "jekyll-theme-minimal", "jekyll-theme-modernist", "jekyll-theme-primer", "jekyll-theme-slate", "jekyll-theme-tactile", "jekyll-theme-time-machine", "jekyll-titles-from-headings", "jekyll-watch", "jemoji", "kramdown", "liquid", "listen", "mercenary", "minima", "minitest", "mini_portile2", "multipart-post", "nokogiri", "octokit", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "ruby-enum", "rubyzip", "ruby_dep", "safe_yaml", "sass", "sass-listen", "sawyer", "terminal-table", "thread_safe", "typhoeus", "tzinfo", "unicode-display_width"], "https://github.com/CiTR/djland": ["ezyang/htmlpurifier", "laravel/framework", "php", "phpunit/phpunit", "twitter/bootstrap", "xethron/migrations-generator", "babel-runtime", "bootstrap-sass", "gulp", "laravel-elixir", "lightbox2"], "https://github.com/nuest/ten-simple-rules-dockerfiles": ["csv23"], "https://github.com/OpenSourceEconomics/ruspy": ["sphinxcontrib-bibtex", "sphinxcontrib-napoleon"], "https://github.com/ameyaKetkar/TypeChangeMiner": ["com.github.mpkorstanje:simmetrics-core", "com.google.guava:guava", "com.google.protobuf:protobuf-java", "com.google.protobuf:protobuf-java-util", "com.jason-goodwin:better-monads", "com.sparkjava:spark-core", "commons-io:commons-io", "commons-lang:commons-lang", "gumtree:cleint-diff", "gumtree:client", "gumtree:core", "gumtree:gen-jdt", "io.vavr:vavr", "JarAnalyzer:JarAnalyzer", "junit:junit", "MigrationMiner:MigrationMiner", "net.sf.trove4j:trove4j", "org.apache.commons:commons-text", "org.apache.maven.plugin-tools:maven-plugin-annotations", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.shared:maven-invoker", "org.apache.tinkerpop:gremlin-core", "org.apache.tinkerpop:gremlin-driver", "org.apache.tinkerpop:tinkergraph-gremlin", "org.atteo.classindex:classindex", "org.codehaus.plexus:plexus-utils", "org.eclipse.jdt:org.eclipse.jdt.core", "org.eclipse.jgit:org.eclipse.jgit", "org.jgrapht:jgrapht-core", "org.kohsuke:github-api", "org.ow2.asm:asm", "org.ow2.asm:asm-tree", "org.refactoringminer:RefactoringMiner", "org.rendersnake:rendersnake", "TypeChange:Models", "boto3", "boto3-stubs", "botocore", "docutils", "jmespath", "protobuf", "python-dateutil", "s3transfer", "six", "urllib3"], "https://github.com/lingfeiwang/normalisr": ["argparse", "biothings-client", "goatools", "numpy", "pandas", "scikit-learn", "scipy"], "https://github.com/ShuhuaGao/geppy": ["deap"], "https://github.com/bgruening/galaxy_ie_helpers": ["bioblend"], "https://github.com/pyvideo/data": ["jinja2", "pelican", "requests", "six", "unidecode", "docutils", "jsonschema", "pygments"], "https://github.com/azedarach/matrix-factorization-case-studies": ["joblib", "numba", "numpy", "pylint", "pytest", "pytest-cov", "scikit-learn", "scipy"], "https://github.com/driplineorg/dripline-python": ["asteval", "colorlog", "psycopg2", "pytest", "pyyaml", "setuptools-scm", "sqlalchemy"], "https://github.com/LoLab-VU/Gleipnir": ["numpy", "pandas", "scipy"], "https://github.com/uwmadison-chm/scorify": ["docopt", "ipython", "openpyxl", "pytest", "schema"], "https://github.com/NESCent/fcdb-api": ["async", "body-parser", "express", "fast-csv", "flat", "mysql"], "https://github.com/csu-hmc/GaitAnalysisToolKit": ["mock", "numpydoc", "dynamicisttoolkit", "matplotlib", "nose", "numpy", "oct2py", "pandas", "pyyaml", "scipy", "tables", "coverage", "cython", "ipython", "sphinx"], "https://github.com/bakery-cg2at/bakery": ["ipdb", "mpi4py", "networkx", "numpy", "backports.shutil-get-terminal-size", "decorator", "enum34", "ipython", "ipython-genutils", "pathlib2", "pexpect", "pickleshare", "prompt-toolkit", "ptyprocess", "pygments", "scandir", "simplegeneric", "six", "traitlets", "wcwidth", "backports-shutil-get-terminal-size"], "https://github.com/radical-cybertools/radical.synapse": ["psutil", "pymongo", "radical-utils"], "https://github.com/MaineKuehn/usim": ["asyncstdlib", "pytest", "pytest-timeout", "sortedcontainers"], "https://github.com/ag-gipp/FormulaCloudData": ["org.apache.commons:commons-text", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-compiler-plugin"], "https://github.com/astrom-tom/dfitspy": ["astropy", "numpy", "python-magic", "fitsio"], "https://github.com/SP7-Ritmare/EDI-NG_client": ["grunt-bower-concat", "grunt-contrib-concat", "grunt-contrib-copy", "grunt-contrib-uglify", "grunt-contrib-watch", "load-grunt-tasks"], "https://github.com/jona-sassenhagen/statfail": ["apsw", "apt-btrfs-snapshot", "apt-xapian-index", "apturl", "argparse", "astroid", "autopep8", "beautifulsoup", "beautifulsoup4", "bibtexparser", "chardet", "cherrypy", "colorama", "command-not-found", "configglue", "configobj", "cssselect", "cssutils", "datamerger", "debtagshw", "decorator", "defer", "deluge", "dirspec", "dnspython", "dot2tex", "dulwich", "duplicity", "expyriment", "feedparser", "h5py", "html5lib", "httplib2", "iotop", "ipython", "jdcal", "jinja2", "joblib", "libleipzig", "lockfile", "logilab-common", "lxml", "mako", "markdown", "markupsafe", "matplotlib", "mechanize", "mercurial", "nemo-emblems", "netifaces", "nibabel", "nipy", "nltk", "nose", "numpy", "oauthlib", "oneconf", "openopt", "openpyxl", "opensesame", "pam", "pandas", "paramiko", "patsy", "pep8", "pexpect", "pgpdump", "pillow", "piston-mini-client", "pprocess", "progressbar", "protobuf", "psutil", "psychopy", "pyaudio", "pycrypto", "pycups", "pycurl", "pydns", "pygame", "pyglet", "pygments", "pygobject", "pygpgme", "pyinotify", "pylint", "pymvpa2", "pyo", "pyopengl", "pyopenssl", "pyparallel", "pyparsing", "pyserial", "pysmbc", "python-apt", "python-dateutil", "python-debian", "python-levenshtein", "python-libtorrent", "python-qprogedit", "pytz", "pywavelets", "pyxdg", "pyyaml", "pyzmq", "reportlab", "repoze-lru", "requests", "routes", "rpy2", "rubber", "scikit-image", "scikit-learn", "scipy", "sessioninstaller", "setproctitle", "simplegeneric", "simplejson", "singledispatch", "six", "spambayes", "statsmodels", "stevedore", "suds", "sympy", "system-service", "tornado", "tortoisehg", "twisted-core", "twisted-names", "twisted-web", "urllib3", "utidylib", "vboxapi", "virtualenv", "virtualenv-clone", "virtualenvwrapper", "wsgiref", "wxpython", "wxpython-common", "xlrd", "xlwt", "zope-interface"], "https://github.com/spacetelescope/jwql": ["asdf", "astropy", "astroquery", "authlib", "bokeh", "codecov", "crds", "django", "flake8", "inflection", "ipython", "jinja2", "jsonschema", "jwedb", "matplotlib", "nodejs", "numpy", "numpydoc", "pandas", "psycopg2", "pysiaf", "pytest", "pytest-cov", "scipy", "sphinx", "sqlalchemy", "stsci-rtd-theme", "twine", "pygments"], "https://github.com/ePSIC-DLS/ParticleSpy": ["coverage", "pytest", "pytest-cov", "hyperspy", "scikit-image", "scikit-learn", "trackpy"], "https://github.com/N3PDF/pineappl": ["numpy", "pkgconfig"], "https://github.com/rinde/vanLon17-JAAMAS-code": ["ch.qos.logback:logback-classic", "com.github.rinde:datgen", "com.github.rinde:rinlog", "com.github.rinde:rinsim-scenario-util", "com.google.auto.value:auto-value", "com.google.code.findbugs:jsr305", "com.google.guava:guava", "com.mycila:license-maven-plugin"], "https://github.com/pitthsls/pycounter": ["click", "lxml", "openpyxl", "pendulum", "requests"], "https://github.com/hippylib/hippylib": ["matplotlib", "mpi4py", "numpy", "scipy", "m2r"], "https://github.com/felixriese/CNN-SoilTextureClassification": ["codecov", "matplotlib", "pydot", "pytest", "pytest-cov", "requests", "scikit-learn", "seaborn", "tensorflow"], "https://github.com/IQuOD/wodpy": ["numpy", "pandas"], "https://github.com/ahendriksen/msd_pytorch": ["imageio", "pytest", "tifffile"], "https://github.com/tobysmith568/TestEnv": ["@angular-devkit/architect", "@angular-devkit/build-angular", "@angular-devkit/build-optimizer", "@angular-devkit/build-webpack", "@angular-devkit/core", "@angular-devkit/schematics", "@angular/animations", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/language-service", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/router", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@istanbuljs/schema", "@ngtools/webpack", "@schematics/angular", "@schematics/update", "@types/estree", "@types/events", "@types/glob", "@types/jasmine", "@types/jasminewd2", "@types/minimatch", "@types/mocha", "@types/node", "@types/q", "@types/selenium-webdriver", "@types/source-list-map", "@types/webpack-sources", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "@yarnpkg/lockfile", "accepts", "acorn", "adm-zip", "after", "agent-base", "agentkeepalive", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "alphanum-sort", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "app-root-path", "append-transform", "aproba", "arg", "argparse", "aria-query", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-types-flow", "async", "async-each", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axobject-query", "babel-loader", "babel-plugin-dynamic-import-node", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64-js", "base64id", "batch", "bcrypt-pbkdf", "better-assert", "big.js", "binary-extensions", "blob", "blocking-proxy", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browser-stdout", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "browserstack", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "builtins", "bytes", "cacache", "cache-base", "caller-callsite", "caller-path", "callsite", "callsites", "camelcase", "caniuse-api", "caniuse-lite", "canonical-path", "caseless", "chalk", "chardet", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "circular-dependency-plugin", "class-utils", "clean-stack", "cli-cursor", "cli-spinners", "cli-width", "cliui", "clone", "clone-deep", "coa", "code-point-at", "codelyzer", "collection-visit", "color", "jasmine-core", "jasmine-spec-reporter", "karma", "karma-chrome-launcher", "karma-coverage-istanbul-reporter", "karma-jasmine", "karma-jasmine-html-reporter", "mocha", "protractor", "rxjs", "ts-node", "tslib", "tslint", "typescript", "zone.js"], "https://github.com/lucasberent/ds": ["ch.qos.logback:logback-classic", "de.erichseifert.gral:gral-core", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-jar-plugin"], "https://github.com/sgoldenlab/simba": ["deeplabcut", "deepposekit", "dtreeviz", "eli5", "graphviz", "imblearn", "imgaug", "imutils", "matplotlib", "numpy", "opencv-python", "pandas", "pillow", "scikit-image", "scipy", "seaborn", "sklearn", "tabulate", "tensorflow-gpu", "tqdm", "xgboost", "yellowbrick"], "https://github.com/jonathanmorgan/django_config": ["django"], "https://github.com/IbrahimTanyalcin/RafX": ["@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-syntax-object-rest-spread", "@babel/runtime-corejs3", "@babel/template", "@babel/traverse", "@babel/types", "@cnakazawa/watch", "@hapi/address", "@hapi/bourne", "@hapi/hoek", "@hapi/joi", "@hapi/topo", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/color-name", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/stack-utils", "@types/yargs", "@types/yargs-parser", "abab", "abbrev", "acorn", "acorn-globals", "acorn-jsx", "acorn-walk", "agent-base", "ajv", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-includes", "array-unique", "array.prototype.flat", "asn1", "assert-plus", "assign-symbols", "astral-regex", "async-limiter", "asynckit", "atob", "aws-sign2", "aws4", "babel-eslint", "babel-jest", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-preset-jest", "balanced-match", "base", "bcrypt-pbkdf", "bindings", "brace-expansion", "braces", "browser-process-hrtime", "browser-resolve", "bser", "buffer-crc32", "buffer-from", "cache-base", "callsites", "camelcase", "capture-exit", "caseless", "chalk", "chardet", "ci-info", "class-utils", "cli-cursor", "cli-width", "cliui", "clone-deep", "co", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "component-emitter", "concat-map", "concat-stream", "config-chain", "confusing-browser-globals", "contains-path", "convert-source-map", "copy-descriptor", "core-js", "core-js-pure", "core-util-is", "cross-env", "cross-spawn", "cssom", "cssstyle", "cwd", "dashdash", "data-urls", "debug", "decamelize", "decode-uri-component", "deep-is", "define-properties", "define-property", "delayed-stream", "detect-newline", "diff-sequences", "doctrine", "domexception", "ecc-jsbn", "editorconfig", "emoji-regex", "end-of-stream", "error-ex", "es-abstract", "es-to-primitive", "es6-promise", "es6-promisify", "escape-string-regexp", "escodegen", "eslint", "eslint-config-airbnb-base", "eslint-config-airbnb-es5", "eslint-import-resolver-node", "eslint-module-utils", "eslint-plugin-import", "eslint-plugin-react", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "exec-sh", "execa", "exit", "expand-brackets", "expand-tilde", "expect", "expect-puppeteer", "extend", "extend-shallow", "external-editor", "extglob", "extract-zip", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "fb-watchman", "fd-slicer", "figures", "file-entry-cache", "file-uri-to-path", "fill-range", "find-file-up", "find-pkg", "find-process", "find-up", "flat-cache", "flatted", "for-in", "for-own", "forever-agent", "form-data", "fragment-cache", "fs-exists-sync", "fs.realpath", "fsevents", "function-bind", "functional-red-black-tree", "gensync", "get-caller-file", "get-stream", "get-value", "getpass", "glob", "glob-parent", "global-modules", "global-prefix", "globals", "graceful-fs", "growly", "har-schema", "har-validator", "has", "has-flag", "has-symbols", "has-value", "has-values", "homedir-polyfill", "hosted-git-info", "html-encoding-sniffer", "html-escaper", "http-signature", "https-proxy-agent", "iconv-lite", "ignore", "import-fresh", "import-local", "imurmurhash", "inflight", "inherits", "ini", "inquirer", "internal-slot", "invariant", "is-accessor-descriptor", "is-arrayish", "is-buffer", "is-callable", "is-ci", "is-data-descriptor", "is-date-object", "jest", "jest-puppeteer", "js-beautify", "puppeteer", "uglify-js"], "https://github.com/mdolab/adflow": ["baseclasses", "mpi4py", "numpy", "petsc4py", "numpydoc"], "https://github.com/Phylu/csd": ["bootstrap", "browserify", "browserify-css", "chartist", "chartist-plugin-legend", "font-awesome", "http-server", "jquery", "jquery-csv", "jstat", "moment", "taffydb"], "https://github.com/ebmdatalab/trialstracker": ["backoff", "cssselect", "jdcal", "lxml", "openpyxl", "pyquery", "python-slugify", "browserify", "chai", "d3", "d3-tip", "datatables.net", "datatables.net-bs", "mocha", "react", "uglifyjs", "watchify"], "https://github.com/datapoet/hubminer": ["colt:colt", "com.google.code.gson:gson", "com.google.inject:guice", "com.lowagie:itext", "commons-codec:commons-codec", "commons-httpclient:commons-httpclient", "commons-logging:commons-logging", "concurrent:concurrent", "gov.nist.math:jama", "javax.servlet:servlet-api", "jgraph:jgraph", "jtidy:jtidy", "junit:junit", "mdsj:mdsj", "net.sf.jung:jung-algorithms", "net.sf.jung:jung-graph-impl", "net.sf.jung:jung-visualization", "org.jdom:jdom", "org.jfree:jcommon", "org.jfree:jfreechart", "org.jsoup:jsoup", "org.mortbay.jetty:jetty", "org.mortbay.jetty:jetty-util", "org.openml:apiconnector", "org.swinglabs:swing-layout", "org.swinglabs:swingx", "org.swinglabs:swingx-ws", "rome:rome", "xmlunit:xmlunit"], "https://github.com/midas-isg/PITT-SEIR-model": ["junit:junit", "org.apache.commons:commons-math3"], "https://github.com/zakandrewking/escher": ["@jupyter-widgets/base", "babel-core", "babel-loader", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-react-jsx", "babel-preset-env", "baconjs", "chai", "coveralls", "cross-env", "css-loader", "d3-drag", "d3-dsv", "d3-request", "d3-scale", "d3-selection", "d3-zoom", "file-loader", "file-saver", "immutability-helper", "istanbul-instrumenter-loader", "jsdom", "mocha", "mochapack", "mousetrap", "null-loader", "nyc", "preact", "raw-loader", "standard", "style-loader", "uglifyjs-webpack-plugin", "underscore", "url-loader", "vkbeautify", "webpack", "webpack-cli", "webpack-dev-server", "webpack-merge", "webpack-node-externals", "@babel/code-frame", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-split-export-declaration", "@babel/highlight", "@babel/parser", "@babel/template", "@babel/traverse", "@babel/types", "@jupyterlab/coreutils", "@jupyterlab/observables", "@jupyterlab/services", "@phosphor/algorithm", "@phosphor/collections", "@phosphor/commands", "@phosphor/coreutils", "@phosphor/disposable", "@phosphor/domutils", "@phosphor/dragdrop", "@phosphor/keyboard", "@phosphor/messaging", "@phosphor/properties", "@phosphor/signaling", "@phosphor/virtualdom", "@phosphor/widgets", "@types/backbone", "@types/events", "@types/glob", "@types/jquery", "@types/lodash", "@types/minimatch", "@types/node", "@types/sizzle", "@types/underscore", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "abbrev", "accepts", "acorn", "acorn-globals", "acorn-jsx", "acorn-walk", "ajv", "ajv-errors", "ajv-keywords", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "append-transform", "aproba", "archy", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-flatten", "array-includes", "array-union", "array-uniq", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assertion-error", "assign-symbols", "async", "async-each", "async-limiter", "asynckit", "atob", "aws-sign2", "aws4", "babel-code-frame", "babel-generator", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-builder-react-jsx", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helpers", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-jsx", "babel-plugin-syntax-object-rest-spread", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "backbone", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "bluebird", "bn.js", "body-parser", "bonjour", "brace-expansion", "braces", "brorand", "browser-process-hrtime", "browser-stdout", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "caching-transform", "caller-path", "callsites", "camelcase", "caniuse-lite", "caseless", "chalk", "chardet", "check-error", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "circular-json", "class-utils", "cli-cursor", "cli-width", "cliui", "co", "code-point-at", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "console-browserify", "console-control-strings", "constants-browserify", "contains-path", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "core-js", "core-util-is", "cp-file", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "cssesc", "cssom", "cssstyle", "cyclist", "cobra", "ipywidgets", "jinja2", "jsonschema", "pandas", "pytest"], "https://github.com/EMAPS/climaps-platform": ["grunt", "grunt-autoprefixer", "grunt-concurrent", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-htmlmin", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-filerev", "grunt-google-cdn", "grunt-karma", "grunt-newer", "grunt-ng-annotate", "grunt-svgmin", "grunt-usemin", "grunt-wiredep", "jshint-stylish", "karma", "karma-jasmine", "karma-phantomjs-launcher", "load-grunt-tasks", "time-grunt"], "https://github.com/OpenChemistry/tomviz": ["diskcache", "mock", "pillow", "pytest", "requests", "h5py", "click", "numpy", "scipy", "tqdm"], "https://github.com/yeeking/evosynth": ["chai", "esdoc", "esdoc-standard-plugin", "mocha"], "https://github.com/rinde/vanLon16-EJOR-code": ["com.github.rinde:rinlog", "com.github.rinde:rinsim-experiment", "com.github.rinde:rinsim-scenario-util", "com.github.rinde:rinsim-ui", "com.google.code.findbugs:jsr305", "com.mycila:license-maven-plugin", "org.eclipse.m2e:lifecycle-mapping"], "https://github.com/biowdl/QC": ["cromwell", "miniwdl", "pytest-workflow", "wdl-aid"], "https://github.com/intelaligent/tctb": ["github-pages", "activesupport", "addressable", "coffee-script", "coffee-script-source", "colorator", "ethon", "execjs", "faraday", "forwardable-extended", "gemoji", "github-pages-health-check", "html-pipeline", "i18n", "jekyll-avatar", "jekyll-coffeescript", "jekyll-default-layout", "jekyll-feed", "jekyll-gist", "jekyll-github-metadata", "jekyll-mentions", "jekyll-optional-front-matter", "jekyll-paginate", "jekyll-readme-index", "jekyll-redirect-from", "jekyll-relative-links", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-swiss", "jekyll-theme-architect", "jekyll-theme-cayman", "jekyll-theme-dinky", "jekyll-theme-hacker", "jekyll-theme-leap-day", "jekyll-theme-merlot", "jekyll-theme-midnight", "jekyll-theme-minimal", "jekyll-theme-modernist", "jekyll-theme-primer", "jekyll-theme-slate", "jekyll-theme-tactile", "jekyll-theme-time-machine", "jekyll-titles-from-headings", "jekyll-watch", "jemoji", "json", "kramdown", "liquid", "listen", "mercenary", "minima", "minitest", "mini_portile2", "multipart-post", "net-dns", "octokit", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "safe_yaml", "sass", "sawyer", "terminal-table", "thread_safe", "typhoeus", "tzinfo", "unicode-display_width"], "https://github.com/rinde/RinLog": ["ch.qos.logback:logback-classic", "com.github.rinde:rinsim-central", "com.github.rinde:rinsim-core", "com.github.rinde:rinsim-event", "com.github.rinde:rinsim-experiment", "com.github.rinde:rinsim-pdptw", "com.github.rinde:rinsim-scenario-util", "com.google.auto.value:auto-value", "com.google.code.findbugs:jsr305", "com.google.guava:guava", "com.google.truth:truth", "com.mycila:license-maven-plugin", "it.unimi.dsi:fastutil", "junit:junit", "org.apache.commons:commons-math3", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.plexus:maven-compiler-plugin", "org.codehaus.plexus:plexus-compiler-javac-errorprone", "org.eclipse.m2e:lifecycle-mapping", "org.jacoco:jacoco-maven-plugin", "org.mockito:mockito-core", "org.optaplanner:optaplanner-benchmark", "org.optaplanner:optaplanner-core", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/sertansenturk/seyiranalyzer": ["matplotlib", "numpy", "scipy"], "https://github.com/sertansenturk/alignednotemodel": ["matplotlib", "numpy"], "https://github.com/miklos1/dijitso": ["numpy", "six"], "https://github.com/smart-facility/cognicity-reports-twitter": ["istanbul", "jsdoc", "jshint", "mocha", "moment", "ntwitter", "rsvp", "unit.js"], "https://github.com/speckleworks/SpeckleServer": ["@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@commitlint/execute-rule", "@commitlint/load", "@commitlint/resolve-extends", "@istanbuljs/load-nyc-config", "@istanbuljs/schema", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@octokit/auth-token", "@octokit/endpoint", "@octokit/plugin-paginate-rest", "@octokit/plugin-request-log", "@octokit/plugin-rest-endpoint-methods", "@octokit/request", "@octokit/request-error", "@octokit/rest", "@octokit/types", "@semantic-release/commit-analyzer", "@semantic-release/error", "@semantic-release/exec", "@semantic-release/github", "@semantic-release/npm", "@semantic-release/release-notes-generator", "@sinonjs/commons", "@sinonjs/formatio", "@sinonjs/samsam", "@sinonjs/text-encoding", "@types/chai", "@types/color-name", "@types/cookiejar", "@types/cross-spawn", "@types/debug", "@types/dedent", "@types/events", "@types/find-cache-dir", "@types/find-package-json", "@types/get-port", "@types/glob", "@types/lockfile", "@types/md5-file", "@types/minimatch", "@types/mkdirp", "@types/node", "@types/normalize-package-data", "@types/parse-json", "@types/retry", "@types/superagent", "@types/tmp", "@types/uuid", "accepts", "acorn", "acorn-jsx", "agent-base", "aggregate-error", "ajv", "ansi-colors", "ansi-escapes", "ansi-regex", "ansi-styles", "ansicolors", "append-transform", "archy", "argparse", "argv-formatter", "arr-diff", "arr-flatten", "arr-union", "array-find-index", "array-flatten", "array-ify", "array-includes", "array-union", "array-unique", "array.prototype.flat", "arrify", "asap", "asn1", "asn1.js", "assert-plus", "assertion-error", "assign-symbols", "astral-regex", "async", "async-limiter", "asynckit", "atob", "atob-lite", "aws-sign2", "aws4", "babel-runtime", "balanced-match", "base", "base64-js", "base64url", "bcrypt-nodejs", "bcrypt-pbkdf", "before-after-hook", "bl", "bluebird", "bn.js", "body-parser", "bottleneck", "brace-expansion", "braces", "brorand", "browser-stdout", "bson", "btoa-lite", "buffer", "buffer-crc32", "buffer-equal-constant-time", "bunyan", "bytes", "cache-base", "cache-manager", "cachedir", "caching-transform", "caller-callsite", "camelcase", "camelcase-keys", "cardinal", "caseless", "chai", "chai-http", "chai-subset", "chalk", "chardet", "check-error", "class-utils", "clean-stack", "cli-cursor", "cli-table", "cli-width", "cliui", "collection-visit", "color", "color-convert", "color-name", "color-string", "colornames", "colors", "colorspace", "combined-stream", "commander", "commitizen", "commondir", "compare-func", "component-emitter", "concat-map", "connect-redis", "contains-path", "content-disposition", "content-type", "conventional-changelog-angular", "conventional-changelog-writer", "conventional-commit-types", "conventional-commits-filter", "conventional-commits-parser", "convert-source-map", "cookie", "cookie-signature", "cookiejar", "copy-descriptor", "core-js", "core-util-is", "cors", "cosmiconfig", "countly-sdk-nodejs", "cross-spawn", "crypto-random-string", "currently-unhandled", "cycle", "cz-conventional-changelog", "dashdash", "dateformat", "debug", "decamelize", "decamelize-keys", "decode-uri-component", "dedent", "deep-eql", "deep-extend", "deep-is", "default-require-extensions", "define-properties", "define-property", "delayed-stream", "denque", "depd", "deprecation", "destroy", "detect-file", "detect-indent", "diagnostics", "diff", "dir-glob", "doctrine", "dot-prop", "dotenv", "double-ended-queue", "dtrace-provider", "duplexer2", "ecc-jsbn", "ecdsa-sig-formatter", "ee-first", "elliptic", "emoji-regex", "enabled", "encodeurl", "end-of-stream", "env-ci", "env-variable", "error-ex", "es-abstract", "es-to-primitive", "es6-error", "escape-html", "escape-string-regexp", "eslint", "eslint-config-standard", "eslint-import-resolver-node", "eslint-module-utils", "eslint-plugin-es", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-standard", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "express", "express-handlebars", "express-session", "express-winston", "hbs", "jsonwebtoken", "lodash", "mocha", "mongodb-memory-server", "mongoose", "node-machine-id", "nodemailer", "nyc", "passport", "passport-anonymous", "passport-auth0", "passport-azure-ad", "passport-github", "passport-jwt", "passport-local", "query-to-mongo", "redis", "redis-mock", "semantic-release", "shortid", "sinon", "uuid", "winston", "winston-daily-rotate-file", "ws"], "https://github.com/schwemro/diag-eff": ["matplotlib", "numpy", "pandas", "scipy", "seaborn", "autoapi", "ipython", "nbsphinx", "numpydoc", "recommonmark", "sphinx", "sphinx-rtd-theme"], "https://github.com/jacobwindsor/MetabMaster": ["@angular/animations", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/http", "@angular/material", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/router", "@types/jasmine", "@types/node", "@types/react", "@wikipathways/kaavio-showdown", "@wikipathways/pvjs", "bootstrap", "classlist.js", "codelyzer", "copy", "core-js", "firebase", "intl", "jasmine-core", "jasmine-spec-reporter", "karma", "karma-chrome-launcher", "karma-cli", "karma-coverage-istanbul-reporter", "karma-jasmine", "karma-jasmine-html-reporter", "ng2-validators", "noty", "promise-polyfill", "protractor", "rimraf", "rxjs", "showdown", "ts-node", "tslint", "typescript", "web-animations-js", "webpack", "webpack-dev-server", "whatwg-fetch", "zone.js", "firebase-admin", "firebase-functions"], "https://github.com/NLeSC/mcfly": ["h5py", "numpy", "scikit-learn", "scipy", "tensorflow"], "https://github.com/hahnec/plenopticam": ["certifi", "color-matcher", "color-space-converter", "colour", "colour-demosaicing", "depthy", "docutils", "imageio", "numpy", "pillow", "requests", "scipy", "jupyterlab", "plenopticam"], "https://github.com/ICB-DCM/AMICI": ["h5py", "pandas", "pkgconfig", "python-libsbml", "sympy", "wurlitzer", "breathe", "ipython", "matplotlib", "mock", "nbsphinx", "petab", "prompt-toolkit", "pygments", "pysb", "recommonmark", "setuptools", "sphinx", "sphinx-autodoc-typehints", "sphinx-rtd-theme", "sphinxcontrib-matlabdomain", "sphinxcontrib-napoleon"], "https://github.com/kundajelab/abstention": ["numpy", "scikit-learn", "scipy"], "https://github.com/qPRC/qPRC": ["numpy", "pandas", "scipy", "grunt", "grunt-autoprefixer", "grunt-bower-install", "grunt-build-control", "grunt-concurrent", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-htmlmin", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-mocha", "grunt-modernizr", "grunt-newer", "grunt-rev", "grunt-sass", "grunt-svgmin", "grunt-usemin", "jshint-stylish", "load-grunt-tasks", "time-grunt", "dj-database-url", "django", "gunicorn", "psycopg2", "pystache", "static", "django-extensions", "epc", "ipdb", "ipython", "jedi", "matplotlib", "nose", "sexpdata", "six", "werkzeug"], "https://github.com/ecds/readux": ["iiif_to_jekyll", "activesupport", "concurrent-ruby", "faraday", "i18n", "iiif-presentation", "json", "minitest", "multipart-post", "openssl", "thread_safe", "tzinfo", "zeitwerk", "@types/q", "abbrev", "accepts", "after", "ajv", "alphanum-sort", "amdefine", "ansi-colors", "ansi-cyan", "ansi-gray", "ansi-red", "ansi-regex", "ansi-styles", "ansi-wrap", "anymatch", "aproba", "archive-type", "archy", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-each", "array-find-index", "array-slice", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asn1", "assert-plus", "assign-symbols", "async", "async-each", "async-each-series", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axios", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64id", "batch", "bcrypt-pbkdf", "beeper", "better-assert", "bin-build", "bin-check", "bin-version", "bin-version-check", "bin-wrapper", "binary-extensions", "bl", "blob", "block-stream", "boolbase", "brace-expansion", "braces", "browser-sync", "browser-sync-client", "browser-sync-ui", "browserslist", "bs-recipes", "bs-snippet-injector", "buffer-alloc", "buffer-alloc-unsafe", "buffer-crc32", "buffer-fill", "buffer-from", "buffer-to-vinyl", "bytes", "cache-base", "callsite", "camelcase", "camelcase-keys", "caniuse-api", "caniuse-db", "caniuse-lite", "capture-stack-trace", "caseless", "caw", "chalk", "chokidar", "clap", "class-utils", "cliui", "clone", "clone-stats", "co", "coa", "code-point-at", "collection-visit", "color", "color-convert", "color-name", "color-string", "color-support", "colormin", "colors", "combined-stream", "commander", "component-bind", "component-emitter", "component-inherit", "concat-map", "concat-stream", "connect", "connect-history-api-fallback", "console-control-strings", "console-stream", "convert-source-map", "cookie", "copy-descriptor", "core-util-is", "create-error-class", "cross-spawn", "css-color-names", "css-select", "css-select-base-adapter", "css-tree", "css-what", "cssnano", "csso", "currently-unhandled", "dashdash", "dateformat", "debug", "decamelize", "decode-uri-component", "decompress", "decompress-tar", "decompress-tarbz2", "decompress-targz", "decompress-unzip", "deep-extend", "defaults", "define-properties", "define-property", "defined", "del", "delayed-stream", "delegates", "depd", "deprecated", "destroy", "detect-file", "dev-ip", "dom-serializer", "domelementtype", "domutils", "download", "duplexer2", "duplexify", "each-async", "easy-extender", "eazy-logger", "ecc-jsbn", "ee-first", "electron-to-chromium", "encodeurl", "end-of-stream", "engine.io", "engine.io-client", "engine.io-parser", "entities", "error-ex", "es-abstract", "es-to-primitive", "escape-html", "escape-string-regexp", "esprima", "etag", "eventemitter3", "exec-buffer", "exec-series", "execa", "executable", "expand-brackets", "expand-range", "expand-tilde", "extend", "extend-shallow", "extglob", "extsprintf", "fancy-log", "fast-deep-equal", "fast-json-stable-stringify", "fd-slicer", "figures", "file-type", "filename-regex", "filename-reserved-regex", "filenamify", "fill-range", "finalhandler", "find-index", "find-up", "find-versions", "findup-sync", "fined", "first-chunk-stream", "flagged-respawn", "flatten", "follow-redirects", "for-in", "for-own", "forever-agent", "form-data", "fragment-cache", "fresh", "fs-constants", "fs-extra", "fs.realpath", "fsevents", "fstream", "function-bind", "gauge", "gaze", "get-caller-file", "get-proxy", "get-stdin", "get-stream", "get-value", "getpass", "gifsicle", "glob", "glob-base", "glob-parent", "glob-stream", "glob-watcher", "glob2base", "global-modules", "global-prefix", "globby", "globule", "glogg", "got", "graceful-fs", "graceful-readlink", "gulp", "gulp-autoprefixer", "gulp-cssnano", "gulp-imagemin", "gulp-pixrem", "gulp-plumber", "gulp-rename", "gulp-sass", "gulp-uglify", "gulp-util", "run-sequence", "bs4", "django-background-tasks", "django-compressor", "django-import-export", "django-sass-processor", "gitdb2", "gitpython", "libsass", "progress", "pyyaml", "wagtail", "wagtail-condensedinlinepanel", "django-auth-ldap", "coverage", "django-debug-toolbar", "django-nose", "fabric", "graphviz", "mock", "pygments", "sphinx", "coveralls", "pyopenssl", "pytest-cov", "requests", "amqp", "asgi-redis", "asgiref", "bagit", "beautifulsoup4", "billiard", "boto", "celery", "channels", "daphne", "django", "django-downtime", "django-guardian", "django-image-tools", "django-mptt", "django-widget-tweaks", "eulcommon", "eulxml", "feincms", "fuzzywuzzy", "iiif", "jsonfield", "mistune", "pdfminer", "piffle", "progressbar", "python-magic", "python-social-auth", "pytz", "redis", "grunt-contrib-clean", "grunt-contrib-compress", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-nodeunit", "grunt-contrib-sass", "sass"], "https://github.com/cemac/COMET_VolcDB": ["-libgcc-mutex", "argon2-cffi", "asn1crypto", "bcrypt", "blas", "blinker", "branca", "ca-certificates", "certifi", "cffi", "chardet", "click", "cryptography", "flask", "flask-mail", "folium", "idna", "itsdangerous", "jinja2", "ld-impl-linux-64", "libedit", "libffi", "libgcc-ng", "libgfortran-ng", "libopenblas", "libstdcxx-ng", "markupsafe", "ncurses", "numpy", "numpy-base", "openssl", "pandas", "passlib", "pip", "pycparser", "pyopenssl", "pysocks", "python", "python-dateutil", "pytz", "readline", "requests", "setuptools", "six", "sqlite", "tk", "urllib3", "vincent", "werkzeug", "wheel", "wtforms", "xz", "zlib"], "https://github.com/transientlunatic/otter": ["bumpversion", "configparser", "coverage", "cryptography", "flake8", "pyyaml", "sphinx", "tabulate", "tox", "watchdog", "wheel", "jinja2", "markdown", "matplotlib"], "https://github.com/dftlibs/xcfun": ["breathe", "flake8", "numpy", "pytest", "pyyaml", "recommonmark", "Sphinx", "sphinx_rtd_theme", "yapf", "fprettify", "pathlib2", "sphinx", "sphinx-rtd-theme"], "https://github.com/IKNL/vantage6": ["colorama", "docker", "click", "ipython", "questionary", "schema", "sqlalchemy", "vantage6-client", "vantage6-common"], "https://github.com/PhiliPdB/treedepth-exact": ["Microsoft.CodeAnalysis.FxCopAnalyzers", "Microsoft.CodeAnalysis.VersionCheckAnalyzer", "Microsoft.CodeQuality.Analyzers", "Microsoft.NetCore.Analyzers", "Microsoft.NetFramework.Analyzers"], "https://github.com/deniederhut/weather_report": ["cryptography", "cython", "decorator", "docutils", "pycparser", "pycrypto", "pycurl", "pyopenssl", "pytest", "pytest-cov", "requests", "requests-oauthlib", "textblob"], "https://github.com/biowdl/structural-variantcalling": ["cromwell", "miniwdl", "pytest-workflow", "rtg-tools", "wdl-aid"], "https://github.com/kikuchipy/kikuchipy": ["dask", "diffsims", "h5py", "hyperspy", "matplotlib", "numba", "numpy", "orix", "scikit-image", "scikit-learn", "scipy"], "https://github.com/LispTO/llthw": ["components/jquery", "robloach/component-installer"], "https://github.com/cfe-lab/Kive": ["@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@metahub/karma-jasmine-jquery", "@npmcli/move-file", "@types/color-name", "@types/jasmine", "@types/jasmine-ajax", "@types/jasmine-jquery", "@types/jquery", "@types/json-schema", "@types/node", "@types/sizzle", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "abbrev", "accepts", "acorn", "after", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "amdefine", "ansi-colors", "ansi-regex", "ansi-styles", "anymatch", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-each", "array-find-index", "array-slice", "array-unique", "arraybuffer.slice", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "awesome-typescript-loader", "aws-sign2", "aws4", "backo2", "base", "base64-arraybuffer", "base64-js", "base64id", "bcrypt-pbkdf", "better-assert", "big.js", "binary-extensions", "bindings", "blob", "block-stream", "bluebird", "bn.js", "body-parser", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "buffer", "buffer-from", "buffer-xor", "builtin-modules", "builtin-status-codes", "bytes", "cacache", "cache-base", "callsite", "camelcase", "camelcase-keys", "canvas", "caseless", "chalk", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "clean-stack", "cli", "cliui", "clone-deep", "code-point-at", "collection-visit", "color-convert", "color-name", "colors", "combined-stream", "commander", "commondir", "component-bind", "component-emitter", "component-inherit", "concat-map", "concat-stream", "connect", "console-browserify", "console-control-strings", "constants-browserify", "content-type", "cookie", "copy-concurrently", "copy-descriptor", "core-js", "core-util-is", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "css-loader", "cssesc", "currently-unhandled", "custom-event", "cyclist", "d", "dashdash", "date-format", "date-now", "dateformat", "debug", "decamelize", "decode-uri-component", "decompress-response", "deep-extend", "define-properties", "define-property", "delayed-stream", "delegates", "depd", "des.js", "detect-file", "detect-libc", "di", "diff", "diffie-hellman", "dom-serialize", "dom-serializer", "domain-browser", "domelementtype", "domhandler", "domutils", "duplexify", "ecc-jsbn", "ee-first", "elliptic", "emoji-regex", "emojis-list", "encodeurl", "end-of-stream", "engine.io", "engine.io-client", "engine.io-parser", "enhanced-resolve", "ent", "entities", "errno", "error-ex", "es5-ext", "es6-iterator", "es6-symbol", "escape-html", "escape-string-regexp", "eslint-scope", "esprima", "esrecurse", "estraverse", "eventemitter2", "eventemitter3", "events", "evp_bytestokey", "exit", "expand-brackets", "expand-tilde", "extend", "extend-shallow", "extglob", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "figgy-pudding", "file-uri-to-path", "fill-range", "finalhandler", "find-cache-dir", "find-up", "findup-sync", "fined", "flagged-respawn", "flatted", "flush-write-stream", "follow-redirects", "for-in", "for-own", "forever-agent", "form-data", "fragment-cache", "from2", "fs-extra", "fs-minipass", "fs-write-stream-atomic", "fs.realpath", "fsevents", "fstream", "function-bind", "gauge", "gaze", "get-caller-file", "get-stdin", "get-value", "getobject", "getpass", "glob", "grunt", "grunt-cli", "grunt-contrib-jshint", "grunt-regex-replace", "grunt-tslint", "jasmine-ajax", "jasmine-core", "jasmine-jquery", "jquery", "jshint", "karma", "karma-chrome-launcher", "karma-jasmine", "karma-jasmine-ajax", "karma-sourcemap-loader", "karma-spec-reporter", "karma-webpack", "node-sass", "sass-loader", "script-loader", "shelljs", "source-map-loader", "style-loader", "terser-webpack-plugin", "tslint", "typescript", "webpack", "webpack-cli", "coverage", "django-extensions", "matplotlib", "pandas", "pygraphviz", "requests", "seaborn", "django-mock-queries", "flake8", "pytest", "pytest-django", "pytest-flake8", "binaryornot", "chardet", "django", "djangorestframework", "funcsigs", "pbr", "psycopg2-binary", "pytz", "scandir", "six", "ansible", "pymysql", "rotate-backups"], "https://github.com/gpauloski/kfac_pytorch": ["horovod", "torch"], "https://github.com/materialsproject/pymatgen": ["coverage", "coveralls", "doc2dash", "flake8", "mypy", "pycodestyle", "pydocstyle", "pylint", "pytest", "pytest-cov", "sphinx", "sphinx-rtd-theme", "ase", "boltztrap2", "chemview", "f90nml", "fdint", "h5py", "hiphive", "jarvis-tools", "netcdf4", "phonopy", "pybtex", "seekpath", "tqdm", "beautifulsoup4", "dataclasses", "matplotlib", "monty", "networkx", "numpy", "palettable", "pandas", "plotly", "requests", "ruamel-yaml", "scipy", "spglib", "sympy", "tabulate", "uncertainties"], "https://github.com/douglasdavis/pygram11": ["numpy", "sphinx", "sphinx-rtd-theme"], "https://github.com/jrkerns/pylinac": ["argue", "matplotlib", "numpy", "pillow", "pydicom", "pyyaml", "reportlab", "scikit-image", "scikit-learn", "scipy", "tqdm", "yagmail"], "https://github.com/dvasilen/Hive-XML-SerDe": ["junit:junit", "log4j:log4j", "org.apache.hadoop:hadoop-common", "org.apache.hadoop:hadoop-mapreduce-client-core", "org.apache.hive:hive-exec", "org.apache.hive:hive-serde", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-source-plugin"], "https://github.com/rubenarslan/formr.org": ["atrox/haikunator", "bshaffer/oauth2-server-php", "erusev/parsedown", "erusev/parsedown-extra", "ircmaxell/password-compat", "paragonie/halite", "php", "phpmailer/phpmailer", "phpoffice/phpspreadsheet", "phpunit/phpunit", "guzzle/guzzle", "league/oauth2-client", "markbaker/complex", "mhlavac/gearman", "paragonie/constant_time_encoding", "paragonie/random_compat", "paragonie/sodium_compat", "phpoffice/phpexcel", "phpunit/php-code-coverage", "phpunit/php-file-iterator", "phpunit/php-text-template", "phpunit/php-timer", "phpunit/php-token-stream", "phpunit/phpunit-mock-objects", "psr/simple-cache", "symfony/event-dispatcher", "symfony/yaml"], "https://github.com/yannforget/pylandsat": ["appdirs", "click", "fiona", "geopy", "numpy", "rasterio", "requests", "shapely", "tqdm"], "https://github.com/gousiosg/pullreqs": ["charlock_holmes", "github-linguist", "mongo", "mysql2", "parallel", "rugged", "sequel", "trollop"], "https://github.com/kantale/MutationInfo": ["appdirs", "beautifulsoup4", "biopython", "cruzdb", "feedparser", "hgvs", "myvariant", "pygr", "pyhgvs", "pyvep", "sqlalchemy"], "https://github.com/kdberends/coral": ["matplotlib", "netcdf4", "numpy", "pymc3", "pyscaffold", "salib", "scikit-learn", "scipy", "seaborn", "pytest", "pytest-cov"], "https://github.com/llondon6/positive": ["numpydoc", "sphinx", "h5py", "matplotlib", "numpy", "scipy", "six"], "https://github.com/josecastillolema/mini-nfv": ["Jinja2", "netaddr", "PyYAML", "jinja2", "markupsafe", "pyyaml"], "https://github.com/driehle/emobility-search-engine": ["php", "zendframework/zendframework", "zendframework/zendsearch", "zendframework/zendxml"], "https://github.com/LiyrAstroph/CDNest": ["mpi4py", "numpy"], "https://github.com/pysal/giddy": ["esda", "libpysal", "mapclassify", "quantecon", "scipy", "coverage", "coveralls", "matplotlib", "nose", "nose-exclude", "nose-progressive", "nbsphinx", "nbsphinx-link", "numpydoc", "sphinx", "sphinx-bootstrap-theme", "sphinx-gallery", "sphinxcontrib-bibtex", "sphinxcontrib-napoleon", "codecov", "ipywidgets", "pandas", "pytest", "pytest-cov", "splot"], "https://github.com/LeeBergstrand/BackBLAST_Reciprocal_BLAST": ["biopython"], "https://github.com/JanaLasser/salt-polygons-are-caused-by-convection": ["matplotlib", "numpy", "pandas", "pillow", "scipy"], "https://github.com/mediawiki-utilities/python-mwreverts": ["jsonable", "mwtypes"], "https://github.com/rbnvrw/semtracking": ["matplotlib", "nose", "numpy", "pandas", "pims", "pims-nd2", "pyyaml", "scipy", "six", "trackpy"], "https://github.com/coin-or/GrUMPy": ["coinor-gimpy", "pulp"], "https://github.com/nist-ionstorage/pdq2": ["sphinx-argparse"], "https://github.com/TLCFEM/suanPan": ["Microsoft.googletest.v140.windesktop.msvcstl.static.rt-static"], "https://github.com/dlilien/ImpDAR": ["matplotlib", "nose", "numpy", "scipy", "h5py", "nbsphinx", "sphinx-argparse"], "https://github.com/ihrke/pypillometry": ["matplotlib", "numpy", "pandas", "pystan", "requests", "scipy", "typing"], "https://github.com/willpearse/stalkless": ["argparse", "networkx", "numpy", "pytest", "scikit-image", "scipy", "six"], "https://github.com/mmhss/sstrong-webhook": ["com.googlecode.json-simple:json-simple", "org.projectlombok:lombok", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-actuator", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-web"], "https://github.com/RobotExMachina/Machina.NET": ["SharpDX", "SharpDX.XInput"], "https://github.com/tripal/private_biodata": ["statonlab/tripal-test-suite", "doctrine/instantiator", "fzaninotto/faker", "guzzlehttp/guzzle", "guzzlehttp/promises", "guzzlehttp/psr7", "myclabs/deep-copy", "phar-io/manifest", "phar-io/version", "phpdocumentor/reflection-common", "phpdocumentor/reflection-docblock", "phpdocumentor/type-resolver", "phpspec/prophecy", "phpunit/php-code-coverage", "phpunit/php-file-iterator", "phpunit/php-text-template", "phpunit/php-timer", "phpunit/php-token-stream", "phpunit/phpunit", "psr/container", "psr/http-message", "ralouphie/getallheaders", "sebastian/code-unit-reverse-lookup", "sebastian/comparator", "sebastian/diff", "sebastian/environment", "sebastian/exporter", "sebastian/global-state", "sebastian/object-enumerator", "sebastian/object-reflector", "sebastian/recursion-context", "sebastian/resource-operations", "sebastian/version", "symfony/console", "symfony/polyfill-ctype", "symfony/polyfill-intl-idn", "symfony/polyfill-mbstring", "symfony/polyfill-php72", "symfony/polyfill-php73", "symfony/service-contracts", "theseer/tokenizer", "webmozart/assert"], "https://github.com/brown-ccv/neuro-task-starter": ["@fortawesome/fontawesome-free", "babel-plugin-macros", "bootstrap", "chai", "concurrently", "cross-env", "electron", "electron-devtools-installer", "electron-log", "electron-packager", "electron-rebuild", "electron-squirrel-startup", "eslint", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-react", "eslint-plugin-standard", "jquery", "jspsych-react", "lodash", "popper.js", "react", "react-dom", "react-scripts", "require-context.macro", "typescript"], "https://github.com/FractalMedia/wheresmunna": ["click", "cnumpy", "dlib", "face-recognition-models", "nolearn", "nose", "numpy", "pandas", "pillow", "scikit-learn", "scipy"], "https://github.com/vivekbhr/scRIApipe": ["snakemake"], "https://github.com/coin-or/pulp": ["amply"], "https://github.com/Titan-C/slaveparticles": ["joblib", "matplotlib", "pillow", "scipy", "sphinx", "sphinx-gallery", "numpy", "pytest", "pytest-cov"], "https://github.com/GlobalNamesArchitecture/gn_crossmap": ["biodiversity", "bundler", "byebug", "concurrent-ruby", "coveralls", "gn_uuid", "logger-colors", "optimist", "rake", "rest-client", "rspec", "rubocop"], "https://github.com/indigo-dc/DEEPaaS": ["aiohttp", "aiohttp-apispec", "jsonschema", "marshmallow", "oslo-config", "oslo-log", "pbr", "six", "stevedore", "webargs", "werkzeug", "bandit", "coverage", "fixtures", "flake8", "hacking", "mock", "pyflakes", "pytest", "pytest-cov", "python-subunit", "recommonmark", "reno", "sphinx", "sphinx-rtd-theme", "stestr", "testtools"], "https://github.com/densitymodelling/dsmextra": ["chai", "eslint", "eslint-plugin-html", "mocha", "mocha-phantomjs-core", "mversion", "phantomjs-prebuilt", "uglify-js", "brfs", "browserify", "corslite", "csv2geojson", "jshint", "mapbox.js", "polyline", "st", "tape", "togeojson", "topojson", "wellknown", "zuul", "jake", "karma", "leaflet", "magic-string"], "https://github.com/SandstoneHPC/sandstone-spawner": ["alembic", "appdirs", "backports-abc", "backports-ssl-match-hostname", "bleach", "cerberus", "certifi", "decorator", "entrypoints", "funcsigs", "html5lib", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jinja2", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "jupyterhub", "mako", "markupsafe", "mistune", "mock", "nbconvert", "nbformat", "notebook", "packaging", "pamela", "pandocfilters", "pbr", "pexpect", "pickleshare", "pkg-resources", "prompt-toolkit", "ptyprocess", "pudb", "pygments", "pyparsing", "python-dateutil", "python-editor", "pyzmq", "qtconsole", "requests", "simplegeneric", "simplepam", "six", "sqlalchemy", "terminado", "testpath", "tornado", "traitlets", "urwid", "wcwidth", "webencodings", "widgetsnbextension"], "https://github.com/ENCODE-DCC/atac-seq-pipeline": ["bedtools", "bioconductor-rsamtools", "bowtie2", "bwa", "caper", "coreutils", "croo", "cutadapt", "deeptools", "ghostscript", "gnuplot", "grep", "gsl", "htslib", "idr", "java-jdk", "jinja2", "jsondiff", "libgcc", "libiconv", "macs2", "matplotlib", "ncurses", "nomkl", "numpy", "openssl", "pandas", "phantompeakqualtools", "picard", "preseq", "pybedtools", "pybigwig", "pyfaidx", "pysam", "r-bitops", "r-catools", "r-snow", "r-snowfall", "requests", "sambamba", "samstats", "samtools", "scipy", "sed", "tabix", "tar", "trimmomatic", "ucsc-bedclip", "ucsc-bedgraphtobigwig", "ucsc-bedtobigbed", "ucsc-bigwigaverageoverbed", "ucsc-bigwiginfo", "ucsc-twobittofa", "ucsc-wigtobigwig", "wget", "metaseq", "python", "python-dateutil"], "https://github.com/pnuehrenberg/multiviewtracks": ["ipykernel", "jupyter", "matplotlib", "nbsphinx", "numba", "numpy", "numpy-quaternion", "opencv-python", "plyfile", "scikit-learn", "scipy", "seaborn", "sphinx"], "https://github.com/cerndb/dist-keras": ["flask", "keras", "tensorflow", "theano"], "https://github.com/CESNET/proxystatistics-simplesamlphp-module": ["cesnet/simplesamlphp-module-perun", "ext-json", "ext-mysqli", "php", "simplesamlphp/simplesamlphp", "squizlabs/php_codesniffer", "symplify/easy-coding-standard"], "https://github.com/MatterMiners/cobald": ["entrypoints", "include", "pytest", "pytest-timeout", "pyyaml", "toposort", "trio", "typing-extensions"], "https://github.com/asherpasha/Araport_GeneSlider": ["grunt", "grunt-autoprefixer", "grunt-contrib-clean", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-jshint", "grunt-contrib-qunit", "grunt-contrib-watch", "grunt-includes", "grunt-inline", "grunt-wiredep", "jshint-stylish", "load-grunt-tasks", "lodash", "grunt-swaggertools", "swagger-ui"], "https://github.com/matthewfeickert/IRIS-HEP-2020-Poster-Session": ["black", "qrcode"], "https://github.com/r4ecology/nctoolkit": ["hvplot", "netcdf4", "pandas", "panel", "xarray", "ipykernel", "ipywidgets", "nbsphinx", "numpy", "numpydoc", "pygments", "sphinx", "sphinx-rtd-theme", "widgetsnbextension"], "https://github.com/transientlunatic/heron": ["cython", "elk-waveform", "emcee", "george", "gpytorch", "jinja2", "matplotlib", "nestle", "numpy", "progressbar", "pyyaml", "scipy", "torch", "torchvision", "nbsphinx", "numpydoc", "sphinx"], "https://github.com/capaulson/pyKriging": ["dill", "inspyred", "matplotlib", "numpy", "scipy"], "https://github.com/VlachosGroup/jl_spectra_2_structure": ["matplotlib", "numpy", "scipy"], "https://github.com/NCBI-Hackathons/Structural_Variant_Comparison": ["anaconda-client", "backports-abc", "backports-ssl-match-hostname", "biopython", "bx-python", "certifi", "clyent", "cycler", "decorator", "funcsigs", "functools32", "htseq", "ipykernel", "ipython", "ipython-genutils", "jinja2", "jsonschema", "jupyter-client", "jupyter-core", "markupsafe", "matplotlib", "mistune", "nbconvert", "nbformat", "notebook", "numexpr", "numpy", "pandas", "path-py", "pexpect", "pickleshare", "ptyprocess", "pygments", "pyparsing", "python-dateutil", "pytz", "pyyaml", "pyzmq", "requests", "scipy", "seaborn", "simplegeneric", "singledispatch", "six", "terminado", "tornado", "traitlets", "utils", "wheel"], "https://github.com/wradlib/wradlib": ["deprecation", "gdal", "h5netcdf", "h5py", "matplotlib", "netcdf4", "numpy", "requests", "scipy", "xarray", "xmltodict", "codecov", "coverage", "nbconvert", "nbformat", "pytest", "pytest-cov", "pytest-sugar", "pytest-xdist"], "https://github.com/CICE-Consortium/CICE": ["sphinxcontrib-bibtex"], "https://github.com/sherpa/sherpa": ["pytest", "pytest-xvfb"], "https://github.com/toros-astro/astroalign": ["numpy", "scikit-image", "scipy", "sep"], "https://github.com/bootphon/ABXpy": ["h5features", "h5py", "numpy", "pandas", "pytest", "pytest-cov", "scipy", "tables", "mock", "numpydoc", "sphinx"], "https://github.com/HuckleyLab/phyto-mhw": ["@babel/cli", "@babel/core", "@babel/plugin-proposal-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-react-constant-elements", "@babel/plugin-transform-react-inline-elements", "@babel/polyfill", "@babel/preset-env", "@babel/preset-react", "@babel/register", "@material-ui/core", "@material-ui/icons", "add-asset-html-webpack-plugin", "axios", "babel-core", "babel-eslint", "babel-loader", "babel-plugin-dynamic-import-node", "babel-plugin-lodash", "babel-plugin-react-intl", "babel-plugin-styled-components", "babel-plugin-transform-react-remove-prop-types", "chalk", "circular-dependency-plugin", "clsx", "compare-versions", "compression", "compression-webpack-plugin", "connected-react-router", "coveralls", "cross-env", "css-loader", "eslint", "eslint-config-airbnb", "eslint-config-airbnb-base", "eslint-config-prettier", "eslint-import-resolver-webpack", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-prettier", "eslint-plugin-react", "eslint-plugin-react-hooks", "eslint-plugin-redux-saga", "express", "file-loader", "fontfaceobserver", "history", "hoist-non-react-statics", "html-loader", "html-webpack-plugin", "image-webpack-loader", "immer", "imports-loader", "intl", "invariant", "ip", "jest-cli", "jest-dom", "jest-styled-components", "lint-staged", "lodash", "mapbox-gl", "material-ui", "minimist", "ngrok", "node-plop", "null-loader", "offline-plugin", "plop", "pre-commit", "prettier", "prop-types", "react", "react-app-polyfill", "react-dom", "react-helmet", "react-intl", "react-redux", "react-router-dom", "react-test-renderer", "react-testing-library", "redux", "redux-saga", "reselect", "rimraf", "sanitize.css", "shelljs", "style-loader", "styled-components", "stylelint", "stylelint-config-recommended", "stylelint-config-styled-components", "stylelint-processor-styled-components", "svg-url-loader", "terser-webpack-plugin", "url-loader", "webpack", "webpack-cli", "webpack-dev-middleware", "webpack-hot-middleware", "webpack-pwa-manifest", "whatwg-fetch"], "https://github.com/pdxgx/neoepiscope": ["intervaltree", "mhcflurry", "mhcnuggets", "networkx", "pysam"], "https://github.com/danforthcenter/plantcv": ["dask", "dask-jobqueue", "matplotlib", "numpy", "opencv-python", "pandas", "plotnine", "python-dateutil", "scikit-image", "scikit-learn", "scipy", "pytest", "mkdocs"], "https://github.com/jkitchin/pycse": ["numpy", "scipy"], "https://github.com/rraadd88/rohan": ["biopython", "fastparquet", "matplotlib", "numpy", "pandarallel", "pandas", "pyyaml", "regex", "requests", "scipy", "seaborn", "tqdm", "xlrd"], "https://github.com/compas-dev/compas_fea": ["attrs", "autopep8", "bump2version", "check-manifest", "doc8", "flake8", "invoke", "ipykernel", "ipython", "isort", "m2r", "nbsphinx", "pydocstyle", "pytest", "sphinx", "sphinx-compas-theme", "twine", "numpy", "scipy"], "https://github.com/Remdeht/ia_detector": ["earthengine-api", "folium", "monthdelta"], "https://github.com/justagist/panda_simulator": ["numpy", "numpy-quaternion", "rospy-message-converter"], "https://github.com/stemtool/stemtool": ["ase", "h5py", "matplotlib", "matplotlib-scalebar", "numba", "numpy", "pillow", "pyfftw", "pywavelets", "scikit-image", "scipy"], "https://github.com/mkoeppe/sage-numerical-interactive-mip": ["sage-numerical-backends-coin", "setuptools", "tox"], "https://github.com/Nu-AI/Livid-About-COVID": ["click", "jupyter", "keras", "matplotlib", "numpy", "pandas", "pydot", "scikit-learn", "scipy", "seaborn", "tensorflow-gpu", "torch", "xlrd"], "https://github.com/PyLorentz/PyLorentz": ["nbsphinx"], "https://github.com/firedrakeproject/loopy": ["ply", "cgen", "codepy", "colorama", "genpy", "islpy", "mako", "pymbolic", "pytools", "six"], "https://github.com/ctsit/dxster": ["nose"], "https://github.com/bodkan/archaic-ychr": ["attrs", "backcall", "bash-kernel", "biopython", "bleach", "certifi", "chardet", "colorama", "cycler", "decorator", "defusedxml", "entrypoints", "gitdb2", "gitpython", "h5py", "idna", "ipdb", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "json5", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "jupyterlab-server", "kiwisolver", "markupsafe", "matplotlib", "mistune", "msprime", "nbconvert", "nbdime", "nbformat", "notebook", "numpy", "pandas", "pandocfilters", "parso", "pexpect", "pickleshare", "prometheus-client", "prompt-toolkit", "ptyprocess", "pybedtools", "pygments", "pyparsing", "pyrsistent", "pysam", "python-dateutil", "pytz", "pyvcf", "pyzmq", "qtconsole", "requests", "send2trash", "six", "smmap2", "svgwrite", "terminado", "testpath", "tornado", "traitlets", "tskit", "urllib3", "wcwidth", "webencodings", "widgetsnbextension"], "https://github.com/PhysicsOfMobility/ridesharing_topology_dependence": ["ipython", "jupyter", "matplotlib", "networkx", "notebook", "numpy", "osmnx", "pandas", "requests", "scipy", "seaborn", "shapely"], "https://github.com/SuperKam91/twentyoneflow": ["matplotlib", "numpy", "seaborn", "sklearn", "tensorflow-gpu", "tensorflow"], "https://github.com/gwpy/gwosc": ["pytest", "pytest-cov", "pytest-socket", "requests", "requests-mock", "setuptools"], "https://github.com/duartegroup/cgbind": ["cython", "networkx", "numpy", "pytest", "rdkit", "scipy", "sphinx", "sphinx-rtd-theme"], "https://github.com/raphaelvallat/pingouin": ["codecov", "mpmath", "openpyxl", "pytest", "pytest-cov", "pytest-remotedata", "pytest-sugar", "pytest-travis-fold", "scipy", "matplotlib", "numpy", "outdated", "pandas", "pandas-flavor", "scikit-learn", "seaborn", "statsmodels", "tabulate", "pingouin"], "https://github.com/pnlbwh/dMRIharmonization": ["dipy", "nibabel", "numpy", "plumbum", "psutil", "pynrrd", "scikit-image", "scipy"], "https://github.com/choderalab/assaytools": ["mock", "nose", "numpy", "numpydoc", "argparse", "coverage", "coveralls", "importlib", "ipython", "nose-exclude", "ordereddict", "pyflakes", "scripttest", "ambermini", "ipython-notebook", "matplotlib", "mdtraj", "msmbuilder", "netcdf4", "openmm", "openmmtools", "pip", "pyyaml", "scipy", "cython", "dateutil", "hdf5", "numexpr", "openssl", "pandas", "pytables", "python", "pytz", "readline", "setuptools", "six", "sqlite", "system", "tk", "yaml", "zlib"], "https://github.com/cryotools/cosipy": ["coveralls", "dask-jobqueue", "distributed", "netcdf4", "numpy", "scipy", "xarray", "sphinx"], "https://github.com/N3PDF/vegasflow": ["joblib", "numpy"], "https://github.com/althonos/pronto": ["codacy-coverage", "codecov", "coverage", "pip", "twine", "ipython", "nbsphinx", "pygments", "pygments-style-monokailight", "recommonmark", "semantic-version", "sphinx"], "https://github.com/nipy/nipype": ["click", "etelemetry", "filelock", "networkx", "nibabel", "numpy", "packaging", "prov", "pydot", "python-dateutil", "rdflib", "scipy", "simplejson", "traits", "dipy", "ipython", "matplotlib", "nbsphinx", "niflow-nipype1-workflows", "sphinx", "sphinx-argparse", "sphinxcontrib-apidoc", "sphinxcontrib-napoleon"], "https://github.com/sgrieve/sinuosity": ["fiona", "shapely"], "https://github.com/boivinalex/permittivitycalc": ["asteval", "corner", "cycler", "emcee", "kiwisolver", "lmfit", "matplotlib", "numpy", "pandas", "pyparsing", "python-dateutil", "pytz", "scipy", "seaborn", "six", "tqdm", "uncertainties"], "https://github.com/BlueBrain/NeuroR": ["click", "matplotlib", "morph-tool", "morphio", "neurom", "nptyping", "numpy", "pandas", "pyquaternion", "scipy"], "https://github.com/Curtin-Open-Knowledge-Initiative/institutional-oa-evaluation-2020": ["ffmpeg", "jupyter", "matplotlib", "pandas", "seaborn"], "https://github.com/dgasmith/opt_einsum": ["numpy", "pytest", "pytest-cov", "pytest-pep8"], "https://github.com/knutankv/koma": ["matplotlib", "numpy", "plotly", "scipy", "nbsphinx", "recommonmark", "sphinx", "sphinxcontrib-bibtex", "sphinxcontrib-matlabdomain"], "https://github.com/foerstner-lab/READemption": ["biopython", "matplotlib", "pandas", "pysam", "sphinx-argparse"], "https://github.com/matthiaskoenig/fbc_curation": ["ipykernel", "nbsphinx", "pypandoc", "recommonmark", "sphinx", "sphinx-rtd-theme"], "https://github.com/dmitriz/cpsfy": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-builder-react-jsx-experimental", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-do-expressions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-default-from", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-function-bind", "@babel/plugin-proposal-function-sent", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-pipeline-operator", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-throw-expressions", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-do-expressions", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-default-from", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-flow", "@babel/plugin-syntax-function-bind", "@babel/plugin-syntax-function-sent", "@babel/plugin-syntax-import-meta", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-pipeline-operator", "@babel/plugin-syntax-throw-expressions", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-flow-strip-types", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-development", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-react-pure-annotations", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-flow", "@babel/preset-modules", "@babel/preset-react", "@babel/preset-stage-0", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@concordance/react", "@istanbuljs/load-nyc-config", "@istanbuljs/schema", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@sindresorhus/is", "@szmarczak/http-timer", "@types/color-name", "@types/glob", "@types/minimatch", "@types/minimist", "@types/node", "@types/normalize-package-data", "@types/unist", "acorn", "acorn-walk", "add-stream", "aggregate-error", "ansi-align", "ansi-html", "ansi-red", "ansi-regex", "ansi-styles", "ansi-wrap", "anymatch", "append-buffer", "append-transform", "archy", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-filter", "array-find-index", "array-ify", "array-union", "array-unique", "arrgv", "arrify", "assign-symbols", "astral-regex", "atob", "autolinker", "ava", "available-typed-arrays", "babel-plugin-dynamic-import-node", "babelify", "bail", "balanced-match", "base", "binary-extensions", "blueimp-md5", "body", "boxen", "brace-expansion", "braces", "browser-resolve", "browserslist", "buffer-equal", "buffer-from", "buffer-shims", "bytes", "cache-base", "cacheable-request", "cached-path-relative", "caching-transform", "callsites", "camelcase", "camelcase-keys", "caniuse-lite", "ccount", "chalk", "character-entities", "character-entities-html4", "character-entities-legacy", "character-reference-invalid", "chokidar", "chunkd", "ci-info", "ci-parallel-vars", "class-utils", "clean-stack", "clean-yaml-object", "cli-boxes", "cli-cursor", "cli-spinners", "cli-truncate", "cliui", "clone", "clone-buffer", "clone-response", "clone-stats", "cloneable-readable", "code-excerpt", "coffee-script", "collapse-white-space", "collection-visit", "color-convert", "color-name", "comma-separated-tokens", "common-path-prefix", "commondir", "compare-func", "component-emitter", "concat-map", "concat-stream", "concat-with-sourcemaps", "concordance", "configstore", "continuable-cache", "conventional-changelog", "conventional-changelog-angular", "conventional-changelog-atom", "conventional-changelog-codemirror", "conventional-changelog-config-spec", "conventional-changelog-conventionalcommits", "conventional-changelog-core", "conventional-changelog-ember", "conventional-changelog-eslint", "conventional-changelog-express", "conventional-changelog-jquery", "conventional-changelog-jshint", "conventional-changelog-preset-loader", "conventional-changelog-writer", "conventional-commits-filter", "conventional-commits-parser", "conventional-recommended-bump", "convert-source-map", "documentation", "markdown-toc", "nyc", "standard-version", "tape"], "https://github.com/sdey135/rtapylysis": ["peppercorn"], "https://github.com/CICE-Consortium/Icepack": ["sphinxcontrib-bibtex"], "https://github.com/Nikoleta-v3/blackbook": ["black", "loguru"], "https://github.com/daniel-dpk/distorted-motsfinder-public": ["attrs", "backcall", "bleach", "cycler", "decorator", "defusedxml", "doxypypy", "entrypoints", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-contrib-core", "jupyter-contrib-nbextensions", "jupyter-core", "jupyter-highlight-selected-word", "jupyter-latex-envs", "jupyter-nbextensions-configurator", "kiwisolver", "lxml", "markupsafe", "matplotlib", "mistune", "mpmath", "nbconvert", "nbformat", "notebook", "numpy", "packaging", "pandocfilters", "parso", "pexpect", "pickleshare", "pkg-resources", "prometheus-client", "prompt-toolkit", "ptyprocess", "pygments", "pyparsing", "pyrsistent", "python-dateutil", "pytz", "pyyaml", "pyzmq", "qtconsole", "scipy", "send2trash", "six", "sympy", "terminado", "testpath", "tornado", "traitlets", "wcwidth", "webencodings", "widgetsnbextension", "zipp"], "https://github.com/StevenGolovkine/FDApy": ["cython", "matplotlib", "mpldatacursor", "networkx", "numpy", "pandas", "patsy", "pillow", "pygam", "scikit-learn", "scipy", "sktime", "sphinx", "sphinx-gallery", "sphinx-rtd-theme", "ggplot", "nose", "sklearn"], "https://github.com/Leinadj/CREAM": ["h5py", "numpy", "pandas", "scipy"], "https://github.com/wjlei1990/spaceweight": ["flake8", "future", "matplotlib", "nose", "numpy", "obspy", "pytest", "scipy"], "https://github.com/genomematt/AmBiVErT": ["setuptools"], "https://github.com/InsightSoftwareConsortium/itk-js": ["@ava/babel-plugin-throws-helper", "@ava/babel-preset-stage-4", "@ava/babel-preset-transform-test-files", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/polyfill", "@babel/preset-env", "@babel/template", "@babel/traverse", "@babel/types", "@commitlint/execute-rule", "@commitlint/load", "@commitlint/resolve-extends", "@concordance/react", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@sindresorhus/is", "@szmarczak/http-timer", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "accepts", "acorn", "acorn-dynamic-import", "acorn-jsx", "acorn-node", "acorn-walk", "after", "ajv", "ajv-keywords", "align-text", "ansi-align", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-filter", "array-find-index", "array-includes", "array-map", "array-reduce", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asn1.js", "assert", "assign-symbols", "astral-regex", "async", "async-each", "async-limiter", "atob", "ava", "axios", "babel-loader", "babel-plugin-dynamic-import-node", "babel-plugin-espower", "babel-polyfill", "babel-runtime", "babelify", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64-js", "base64id", "base64url", "better-assert", "big.js", "binary-extensions", "blob", "bluebird", "blueimp-md5", "bn.js", "body-parser", "boxen", "brace-expansion", "braces", "brorand", "browser-pack", "browser-resolve", "browserify", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "buffer-shims", "buffer-xor", "bufferjs", "builtin-modules", "builtin-status-codes", "bytes", "cache-base", "cacheable-request", "cached-path-relative", "cachedir", "call-matcher", "call-signature", "caller-callsite", "callsite", "camelcase", "camelcase-keys", "caniuse-lite", "center-align", "chalk", "chardet", "chokidar", "chunkd", "ci-info", "ci-parallel-vars", "cipher-base", "class-utils", "clean-stack", "clean-yaml-object", "cli-boxes", "cli-cursor", "cli-spinners", "cli-truncate", "cli-width", "cliui", "clone", "clone-response", "code-excerpt", "code-point-at", "collection-visit", "color-convert", "color-name", "colors", "combine-source-map", "commander", "commitizen", "common-path-prefix", "commondir", "component-bind", "component-emitter", "component-inherit", "concat-map", "concat-stream", "concordance", "configstore", "connect", "console-browserify", "constants-browserify", "contains-path", "content-type", "conventional-commit-types", "convert-source-map", "convert-to-spaces", "cookie", "copy-descriptor", "core-js", "core-util-is", "cosmiconfig", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "crypto-random-string", "currently-unhandled", "custom-event", "cz-conventional-changelog", "d", "date-format", "date-now", "date-time", "debug", "debug-log", "decamelize", "decamelize-keys", "decode-uri-component", "decompress-response", "dedent", "@babel/plugin-transform-runtime", "@babel/runtime", "file-api", "fs-extra", "glob", "json-loader", "karma", "karma-chrome-launcher", "karma-tap", "karma-tap-pretty-reporter", "karma-webpack", "kw-doc", "mime-types", "promise-file-reader", "puppeteer", "ramda", "standard", "tap-spec", "tape", "uglifyify", "webpack", "webpack-cli", "webworker-promise", "local-web-server", "itk", "curry", "expose-loader", "webpack-dev-server", "copy-webpack-plugin"], "https://github.com/owlcollab/expression-materializing-reasoner": ["junit:junit", "net.sourceforge.owlapi:org.semanticweb.hermit", "net.sourceforge.owlapi:owlapi-distribution", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.maven.wagon:wagon-ssh", "org.semanticweb.elk:elk-owlapi", "org.slf4j:slf4j-log4j12", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/PEtab-dev/PEtab": ["colorama", "flake8", "jsonschema", "matplotlib", "numpy", "pandas", "pytest", "python-libcombine", "python-libsbml", "pyyaml", "seaborn", "sympy"], "https://github.com/ziatdinovmax/GPim": ["gpytorch", "jupyterlab", "m2r", "matplotlib", "numpy", "pyro-ppl", "pytest", "scikit-image", "setuptools", "sphinx", "sphinx-rtd-theme", "torch"], "https://github.com/gwappa/fitting2d": ["numpy", "scipy"], "https://github.com/aeonium/fakedatacite": ["flask", "flask-restful"], "https://github.com/boolsi/boolsi": ["btrees", "click", "matplotlib", "numpy", "persistent", "pillow", "pyyaml", "scipy", "seaborn", "transaction", "zodb"], "https://github.com/TomMonks/forecast-tools": ["joblib", "matplotlib", "numpy", "pandas", "scipy", "seaborn"], "https://github.com/biowdl/tasks": ["cromwell", "miniwdl"], "https://github.com/holoviz/hvplot": ["bokeh", "colorcet", "holoviews", "numpy", "pandas"], "https://github.com/mathjax/MathJax": ["mathjax-full"], "https://github.com/gwu-libraries/sfm-utils": ["idna", "iso8601", "kombu", "librabbitmq", "mock", "petl", "python-dateutil", "pytz", "requests", "vcrpy", "warcio", "xlsxwriter"], "https://github.com/ci-group/revolve": ["argparse", "asyncio", "futures", "graphviz", "joblib", "matplotlib", "neat-python", "numpy", "pandas", "protobuf", "psutil", "pycairo", "python-dateutil", "pyyaml", "pygazebo"], "https://github.com/matthiaskoenig/sbmlsim": ["ipykernel", "nbsphinx", "pypandoc", "recommonmark", "sphinx", "sphinx-rtd-theme"], "https://github.com/biobakery/phylophlan": ["biopython", "dendropy", "matplotlib", "numpy", "pandas", "seaborn"], "https://github.com/rodighiero/COVID-19": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@pixi/accessibility", "@pixi/app", "@pixi/constants", "@pixi/core", "@pixi/display", "@pixi/extract", "@pixi/filter-alpha", "@pixi/filter-blur", "@pixi/filter-color-matrix", "@pixi/filter-displacement", "@pixi/filter-fxaa", "@pixi/filter-noise", "@pixi/graphics", "@pixi/interaction", "@pixi/loaders", "@pixi/math", "@pixi/mesh", "@pixi/mesh-extras", "@pixi/mixin-cache-as-bitmap", "@pixi/mixin-get-child-by-name", "@pixi/mixin-get-global-position", "@pixi/particles", "@pixi/polyfill", "@pixi/prepare", "@pixi/runner", "@pixi/settings", "@pixi/sprite", "@pixi/sprite-animated", "@pixi/sprite-tiling", "@pixi/spritesheet", "@pixi/text", "@pixi/text-bitmap", "@pixi/ticker", "@pixi/utils", "@tarekraafat/autocomplete.js", "@types/anymatch", "@types/events", "@types/glob", "@types/html-minifier-terser", "@types/json-schema", "@types/minimatch", "@types/node", "@types/source-list-map", "@types/tapable", "@types/uglify-js", "@types/webpack", "@types/webpack-sources", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "accepts", "acorn", "afinn-165", "ajv", "ajv-errors", "ajv-keywords", "ansi-colors", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "apparatus", "aproba", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1.js", "assert", "assign-symbols", "async", "async-each", "async-limiter", "atob", "babel-loader", "babel-plugin-dynamic-import-node", "balanced-match", "base", "base64-js", "batch", "big.js", "binary-extensions", "bindings", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "camel-case", "camelcase", "caniuse-lite", "chalk", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "clean-css", "cliui", "collection-visit", "color-convert", "color-name", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "console-browserify", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "css-loader", "csv-parser", "d3", "d3-array", "d3-contour", "d3-fetch", "d3-force-reuse", "d3-polygon", "d3-scale", "d3-selection", "fast-dice-coefficient", "file-loader", "fps", "html-loader", "html-webpack-plugin", "mini-css-extract-plugin", "natural", "normalize.css", "pixi-viewport", "pixi.js", "remove-accents", "skmeans", "stopword", "webpack", "webpack-cli", "webpack-dev-server"], "https://github.com/qzhu2017/PyXtal": ["networkx", "pandas", "py3dmol", "pymatgen", "spglib", "ase", "certifi", "click", "cycler", "dominate", "flask", "flask-bootstrap", "flask-uploads", "flask-wtf", "itsdangerous", "jinja2", "kiwisolver", "llvmlite", "markupsafe", "matplotlib", "numba", "numpy", "plotly", "pyparsing", "python-dateutil", "python-dotenv", "pytz", "retrying", "scipy", "six", "tabulate", "visitor", "werkzeug", "wtforms"], "https://github.com/pnlbwh/multi-shell-dMRIharmonization": ["dipy", "nibabel", "numpy", "plumbum", "psutil", "pynrrd", "scikit-image", "scipy"], "https://github.com/loostrum/arts_tools": ["astropy", "numpy", "psrqpy", "tqdm"], "https://github.com/jboynyc/textnets": ["cairocffi", "click", "leidenalg", "pandas", "python-igraph", "scipy", "spacy", "toolz"], "https://github.com/python-adaptive/adaptive": ["atomicwrites", "scipy", "sortedcollections", "sortedcontainers"], "https://github.com/nfsi-canada/OBStools": ["numpy", "obspy", "stdb"], "https://github.com/tikk3r/lofar-grid-hpccloud": ["aplpy", "asn1crypto", "astropy", "astropy-helpers", "atomicwrites", "attrs", "backports-functools-lru-cache", "backports-shutil-get-terminal-size", "backports-ssl-match-hostname", "blurhash", "boost", "cachetools", "certifi", "chardet", "configparser", "cycler", "cython", "decorator", "funcsigs", "google-api-python-client", "google-auth", "google-auth-httplib2", "google-auth-oauthlib", "httplib2", "idna", "iniparse", "ipaddress", "ipy", "kitchen", "kiwisolver", "linecache2", "mastodon-py", "matplotlib", "mimeparse", "mock", "more-itertools", "nose", "numexpr", "numpy", "oauthlib", "pluggy", "pp", "progressbar", "py", "py-cpuinfo", "pyasn1", "pyasn1-modules", "pyliblzma", "pyparsing", "pyregion", "pytest", "python-dateutil", "python-magic", "python-monetdb", "pytz", "pyvo", "regions", "requests", "requests-oauthlib", "rsa", "scipy", "six", "sqlalchemy", "subprocess32", "tables", "tqdm", "traceback2", "unittest2", "uritemplate", "urllib3", "xmlrunner", "psycopg2"], "https://github.com/governit/GovernIT": ["coffee-rails", "distribution", "escenarios", "jbuilder", "jquery-rails", "jquery-ui-rails", "mapas", "paperclip", "rails", "sass-rails", "sdoc", "sqlite3", "turbolinks", "uglifier", "webrick", "actionmailer", "actionpack", "activemodel", "activerecord", "activerecord-deprecated_finders", "activesupport", "arel", "atomic", "builder", "climate_control", "cocaine", "coffee-script", "coffee-script-source", "erubis", "execjs", "hike", "i18n", "json", "mail", "mime-types", "minitest", "multi_json", "polyglot", "rack", "rack-test", "railties", "rake", "rdoc", "sass", "sprockets", "sprockets-rails", "thor", "thread_safe", "tilt", "treetop", "tzinfo"], "https://github.com/nestordemeure/tabularGP": ["fastai", "numpy", "pandas", "torch"], "https://github.com/AstraZeneca-NGS/disambiguate": ["pysam"], "https://github.com/dgilford/pyPI": ["numba", "numpy", "xarray"], "https://github.com/Jacob-yen/LEMON": ["pandas", "pillow", "redis", "scikit-image", "scikit-learn", "scipy"], "https://github.com/tasoc/photometry": ["astropy", "astroquery", "autograd", "bottleneck", "future", "h5py", "halophot", "jplephem", "matplotlib", "numpy", "opencv-python-headless", "photutils", "psycopg2-binary", "pytest", "pytest-mpl", "pyyaml", "scikit-image", "scikit-learn", "scipy", "spiceypy", "statsmodels"], "https://github.com/qbicsoftware/omero-client-lib": ["ome:formats-bsd", "ome:formats-gpl", "omero:blitz", "org.hibernate:hibernate-core", "org.spockframework:spock-core", "org.springframework.ldap:spring-ldap"], "https://github.com/ASaiM/group_humann2_uniref_abundances_to_GO": ["fisher", "goatools", "numpy"], "https://github.com/natashabatalha/virga": ["astropy", "bokeh", "joblib", "numpy", "pandas", "photutils", "pymiescatt", "scipy", "sphinx"], "https://github.com/lightonphiri/etd_autoclassifier": ["appdirs", "arrow", "asn1crypto", "attrs", "automat", "backcall", "beautifulsoup4", "bibtexparser", "bleach", "bs4", "cachetools", "certifi", "chardet", "click", "constantly", "cryptography", "cssselect", "cycler", "decorator", "defusedxml", "entrypoints", "facebook-scraper", "fake-useragent", "flask", "future", "google-api-python-client", "google-auth", "google-auth-httplib2", "google-auth-oauthlib", "gunicorn", "html5lib", "httplib2", "hyperlink", "idna", "incremental", "inflection", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "itsdangerous", "jedi", "jinja2", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "keyring", "keyrings-alt", "kiwisolver", "lxml", "macaroonbakery", "markupsafe", "matplotlib", "mistune", "more-itertools", "nb-pdf-template", "nbconvert", "nbformat", "netifaces", "nltk", "notebook", "numpy", "oauthlib", "olefile", "pandas", "pandocfilters", "parse", "parsel", "parso", "pexpect", "pickleshare", "pillow", "prometheus-client", "prompt-toolkit", "protego", "protobuf", "ptyprocess", "pyasn1", "pyasn1-modules", "pycairo", "pycrypto", "pycups", "pydispatcher", "pyee", "pygments", "pyhamcrest", "pymacaroons", "pymongo", "pynacl", "pyopenssl", "pyparsing", "pyppeteer", "pyquery", "pyrfc3339", "pyrsistent", "python-dateutil", "python-debian", "pytz", "pyxdg", "pyyaml", "pyzmq", "qtconsole", "quandl", "queuelib", "reportlab", "requests", "requests-html", "requests-oauthlib", "requests-unixsocket", "rsa", "scholarly", "scikit-learn", "scipy", "scour", "scrapy", "seaborn", "secretstorage", "selenium", "send2trash", "service-identity", "singledispatch", "six", "sklearn", "soupsieve", "systemd-python", "terminado", "testpath", "textblob", "tikzplotlib", "tornado", "tqdm", "traitlets", "twisted", "uritemplate", "urllib3", "virtualenv", "w3lib", "wcwidth", "webencodings", "websockets", "werkzeug", "widgetsnbextension", "wordcloud", "xlrd", "xmltodict", "youtube-dl", "zope-interface"], "https://github.com/ncrncornell/ced2ar": ["gulp", "gulp-autoprefixer", "gulp-concat", "gulp-cssmin", "gulp-jshint", "gulp-less", "gulp-load-plugins", "gulp-plumber", "gulp-rename", "gulp-uglify", "gulp-util", "jshint-stylish", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.googlecode.json-simple:json-simple", "com.lowagie:itext", "com.sun.xsom:xsom", "commons-codec:commons-codec", "commons-configuration:commons-configuration", "commons-fileupload:commons-fileupload", "commons-httpclient:commons-httpclient", "commons-io:commons-io", "commons-lang:commons-lang", "commons-validator:commons-validator", "displaytag:displaytag", "javax.activation:activation", "javax.mail:mail", "javax.servlet:javax.servlet-api", "jstl:jstl", "junit:junit", "log4j:log4j", "mysql:mysql-connector-java", "net.sf.saxon:Saxon-HE", "net.sourceforge.htmlcleaner:htmlcleaner", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpcore", "org.apache.httpcomponents:httpmime", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-war-plugin", "org.apache.tomcat.maven:tomcat7-maven-plugin", "org.basex:basex", "org.codehaus.jackson:jackson-core-asl", "org.eclipse.jgit:org.eclipse.jgit", "org.json:json", "org.jsoup:jsoup", "org.springframework.security.oauth:spring-security-oauth2", "org.springframework.security:spring-security-config", "org.springframework.security:spring-security-core", "org.springframework.security:spring-security-openid", "org.springframework.security:spring-security-taglibs", "org.springframework.security:spring-security-web", "org.springframework.webflow:spring-webflow", "org.springframework:spring-aspects", "org.springframework:spring-context", "org.springframework:spring-core", "org.springframework:spring-jdbc", "org.springframework:spring-test", "org.springframework:spring-web", "org.springframework:spring-webmvc", "org.xhtmlrenderer:flying-saucer-pdf", "taglibs:standard", "xalan:xalan", "xerces:xercesImpl", "xmlunit:xmlunit"], "https://github.com/clij/clij": ["com.fifesoft:autocomplete", "com.fifesoft:languagesupport", "com.fifesoft:rsyntaxtextarea", "junit:junit", "net.haesleinhuepf:clij-clearcl", "net.haesleinhuepf:clij-core", "net.haesleinhuepf:clij-coremem", "net.imagej:ij", "net.imagej:imagej-common", "net.imagej:imagej-legacy", "net.imglib2:imglib2", "net.imglib2:imglib2-ij", "net.imglib2:imglib2-realtransform", "net.imglib2:imglib2-roi", "org.apache.commons:commons-math3", "org.scijava:scijava-common", "org.scijava:script-editor", "sc.fiji:fiji-lib"], "https://github.com/castelao/oceansdb": ["netcdf4", "numpy", "scipy", "supportdata", "pytest", "sphinx", "tox", "twine", "wheel"], "https://github.com/conorwalsh/doat": ["configparser", "httplib2", "json2html", "matplotlib", "numpy", "pandas", "pdfkit", "tqdm"], "https://github.com/lweasel/piquant": ["argparse", "cython", "docopt", "docutils", "matplotlib", "numpy", "pandas", "py", "pygments", "pyparsing", "pytest", "python-dateutil", "pytz", "schema", "scipy", "seaborn", "six", "sphinx"], "https://github.com/marinang/SimProd": ["colorama", "ipython", "numpy", "pyparsing", "screenutils", "tqdm"], "https://github.com/ishahid/django-gdm": ["django", "django-debug-toolbar", "pytz", "coverage"], "https://github.com/darribas/gds16": ["explicit", "express", "grunt-cli", "mustache", "socket.io"], "https://github.com/calliope-project/calliope": ["click", "ipdb", "ipython", "jinja2", "natsort", "netcdf4", "numpy", "pandas", "pyomo", "ruamel-yaml", "scikit-learn", "xarray"], "https://github.com/rockt/SETH": ["com.sun.jersey:jersey-client", "com.sun.jersey:jersey-json", "com.sun.jersey:jersey-servlet", "junit:junit", "log4j:log4j", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:build-helper-maven-plugin", "org.postgresql:postgresql", "org.scala-lang.modules:scala-parser-combinators_2.11", "org.scala-lang:scala-library", "org.scala-tools:maven-scala-plugin", "org.scalaj:scalaj-collection_2.11", "org.scalatest:scalatest_2.11", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "oro:oro"], "https://github.com/zih-a35/trinityvm": ["github-pages"], "https://github.com/MRChemSoft/mrchem": ["breathe", "parselglossy", "Pygments", "pyyaml", "recommonmark", "Sphinx", "sphinxcontrib-bibtex", "sphinx_rtd_theme", "yapf", "danger", "danger-code_style_validation", "addressable", "claide", "claide-plugins", "colored2", "cork", "danger-plugin-api", "faraday", "faraday-http-cache", "git", "kramdown", "kramdown-parser-gfm", "multipart-post", "nap", "no_proxy_fix", "octokit", "open4", "public_suffix", "rchardet", "rexml", "sawyer", "terminal-table", "unicode-display_width", "sphinx", "sphinx-rtd-theme"], "https://github.com/ehthiede/EMUS": ["h5py", "numpy", "scipy"], "https://github.com/caiostringari/pywavelearn": ["colorspacious", "colour", "matplotlib", "numpy", "opencv-python", "pandas", "scikit-image", "scikit-learn", "scipy", "seaborn", "xarray"], "https://github.com/GeriLife/wellbeing": ["@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-plugin-utils", "@babel/helper-split-export-declaration", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@istanbuljs/load-nyc-config", "@istanbuljs/schema", "@sinonjs/commons", "@sinonjs/fake-timers", "@sinonjs/formatio", "@sinonjs/samsam", "@sinonjs/text-encoding", "adler-32", "ansi-escape-sequences", "ansi-styles", "argparse", "array-back", "asn1.js", "assert", "assertion-error", "babel-plugin-istanbul", "babel-runtime", "balanced-match", "base64-js", "bluebird", "bn.js", "bootstrap", "brace-expansion", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "buffer", "buffer-xor", "builtin-status-codes", "cache-point", "camelcase", "catharsis", "cfb", "chai", "chalk", "check-error", "cipher-base", "clone", "codepage", "collect-all", "color-convert", "color-name", "command-line-args", "command-line-tool", "command-line-usage", "commander", "common-sequence", "concat-map", "config-master", "console-browserify", "constants-browserify", "convert-source-map", "core-js", "core-util-is", "crc-32", "create-ecdh", "create-hash", "create-hmac", "cron", "crypto-browserify", "d3", "d3-array", "d3-axis", "d3-brush", "d3-chord", "d3-collection", "d3-color", "d3-contour", "d3-dispatch", "d3-drag", "d3-dsv", "d3-ease", "d3-fetch", "d3-force", "d3-format", "d3-geo", "d3-hierarchy", "d3-interpolate", "d3-path", "d3-polygon", "d3-quadtree", "d3-random", "d3-scale", "d3-scale-chromatic", "d3-selection", "d3-shape", "d3-time", "d3-time-format", "d3-timer", "d3-transition", "d3-voronoi", "d3-zoom", "date-now", "debug", "deep-eql", "deep-extend", "des.js", "diff", "diffie-hellman", "dmd", "domain-browser", "elliptic", "entities", "escape-string-regexp", "esprima", "esutils", "events", "evp_bytestokey", "exit-on-epipe", "extend", "file-saver", "file-set", "find-replace", "find-up", "flatpickr", "frac", "fs-then-native", "fs.realpath", "gensync", "get-func-name", "glob", "globals", "graceful-fs", "handlebars", "has-flag", "hash-base", "hash.js", "hmac-drbg", "https-browserify", "iconv-lite", "ieee754", "inflight", "inherits", "isarray", "istanbul-lib-coverage", "istanbul-lib-instrument", "jquery", "js-tokens", "js-yaml", "js2xmlparser", "jsdoc", "jsdoc-api", "jsdoc-parse", "jsdoc-to-markdown", "jsesc", "json5", "just-extend", "klaw", "linkify-it", "locate-path", "lodash", "lodash.camelcase", "lodash.every", "lodash.find", "lodash.findwhere", "lodash.foreach", "lodash.get", "lodash.includes", "lodash.isarguments", "lodash.isarray", "lodash.isempty", "lodash.isobject", "lodash.istypedarray", "lodash.keys", "lodash.omit", "lodash.padend", "lodash.pairs", "lodash.pick", "lodash.union", "lodash.uniq", "lodash.without", "lodash._basecallback", "lodash._baseeach", "lodash._basefind", "lodash._basefindindex", "lodash._baseisequal", "lodash._baseismatch", "lodash._basematches", "lodash._bindcallback", "lodash._getnative", "markdown-it", "markdown-it-anchor", "marked", "md5.js", "mdurl", "message-box", "meteor-node-stubs", "miller-rabin", "minimalistic-assert", "minimalistic-crypto-utils", "minimatch", "minimist", "mkdirp", "mkdirp2", "moment", "moment-timezone", "mongo-object", "ms", "neo-async", "nise", "object-get", "object-to-spawn-args", "once", "os-browserify", "p-limit", "p-locate", "p-try", "pako", "parse-asn1", "path-browserify", "path-exists", "path-is-absolute", "path-parse", "path-to-regexp", "pathval", "pbkdf2", "plotly.js-dist", "printj", "process", "process-nextick-args", "public-encrypt", "punycode", "querystring", "querystring-es3", "randombytes", "randomfill", "readable-stream", "reduce-extract", "reduce-flatten", "reduce-unique", "reduce-without", "regenerator-runtime", "simpl-schema", "sinon", "slim-select", "xlsx"], "https://github.com/aboucaud/pypher": ["astropy", "numpy", "scipy"], "https://github.com/niosh-mining/obsplus": ["numpy", "obspy", "pandas", "progressbar2", "scipy", "tables", "ipykernel", "jinja2", "nbsphinx", "numpydoc", "sphinx", "sphinx-autodoc-typehints", "sphinx-automodapi", "typer", "coverage", "coveralls", "nbval", "pre-commit", "pytest", "pytest-cov", "twine"], "https://github.com/scienceai/neocortex": ["almost-equal", "axios", "babel-cli", "babel-core", "babel-eslint", "babel-preset-es2015", "babelify", "bluebird", "browserify", "cwise", "cwise-compiler", "eslint", "express", "minifyify", "mocha", "ndarray", "ndarray-blas-level1", "ndarray-gemm", "ndarray-ops", "ndarray-unpack"], "https://github.com/MPAS-Dev/MPAS-Analysis": ["cartopy", "cmocean", "dask", "geometric-features", "lxml", "matplotlib", "netcdf4", "numpy", "pillow", "progressbar2", "pyproj", "requests", "scipy", "shapely", "xarray"], "https://github.com/ralna/ElementSchur": ["pandas"], "https://github.com/bdestombe/flopymetascript": ["flopy", "nbconvert", "nbformat", "numpy", "yapf"], "https://github.com/scikit-hep/awkward-array": ["numpy", "pandas", "pytest", "pybind11", "numba"], "https://github.com/jonathansick/padova": ["astropy", "numpy", "pytest", "pytest-cov", "pytest-pep8", "pytoml", "requests"], "https://github.com/gwpy/gwsumm": ["astropy", "configparser", "coverage", "dqsegdb", "flake8", "gwdatafind", "gwdetchar", "gwpy", "gwtrigfind", "h5py", "lalsuite", "ligo-gracedb", "ligo-segments", "lscsoft-glue", "lxml", "markdown", "markuppy", "matplotlib", "numpy", "pygments", "pykerberos", "pytest", "pytest-cov", "python-dateutil", "scipy", "setuptools", "numpydoc", "sphinx-automodapi", "sphinx-bootstrap-theme", "sphinxcontrib-programoutput"], "https://github.com/saullocastro/panels": ["composites", "cython", "matplotlib", "numpy", "scipy", "structsolve", "coveralls", "pytest", "pytest-cov"], "https://github.com/EHadoux/aptimizer": ["nokogiri", "rltk", "thor", "bundler", "codeclimate-test-reporter", "pry", "rake", "rspec", "simplecov"], "https://github.com/mchoji/wtg-seal": ["coveralls", "pre-commit", "pytest", "pytest-cov", "pytest-datadir", "recommonmark", "sphinx", "alabaster", "appdirs", "attrs", "babel", "certifi", "cfgv", "chardet", "click", "commonmark", "configargparse", "coverage", "distlib", "docopt", "docutils", "filelock", "flask", "gevent", "geventhttpclient-wheels", "greenlet", "identify", "idna", "imagesize", "itsdangerous", "jinja2", "locust", "locustio", "markupsafe", "more-itertools", "msgpack", "nodeenv", "numpy", "packaging", "pluggy", "psutil", "py", "pygments", "pyparsing", "pytz", "pyyaml", "pyzmq", "requests", "scipy", "six", "snowballstemmer", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "toml", "urllib3", "virtualenv", "wcwidth", "werkzeug"], "https://github.com/apetros/pyeplan": ["glpk", "nose", "pandas", "pep8", "pyomo"], "https://github.com/Molmed/checkQC": ["click", "interop", "pyyaml", "sample-sheet", "tornado", "xmltodict"], "https://github.com/similitude/netlogo-sample-simmer": ["lxml", "pyhamcrest"], "https://github.com/castelao/CoTeDe": ["numpy", "oceansdb", "scipy", "matplotlib", "netcdf4", "pandas", "pytest", "pytest-xdist", "sphinx", "tox", "wheel"], "https://github.com/matt-graham/mici": ["arviz", "autograd", "matplotlib", "multiprocess", "numpy", "scipy", "xxhash"], "https://github.com/donia-lab/MetaBGC": ["biopython", "click", "matplotlib", "numpy", "pandas", "scikit-learn", "scipy", "bio", "rpy2"], "https://github.com/nschloe/accupy": ["importlib-metadata", "mpmath", "numpy", "pybind11", "pyfma"], "https://github.com/KitwareMedical/SlicerITKUltrasound": ["ctk-cli", "rstcloth", "sphinx-foundation-theme", "sphinxcontrib-srclinks"], "https://github.com/scities/marble": ["networkx", "nose", "shapely"], "https://github.com/hshsl-training/outreach-toolkit": ["electron", "electron-packager"], "https://github.com/hyperwell/gateway": ["@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@hapi/accept", "@hapi/address", "@hapi/ammo", "@hapi/b64", "@hapi/boom", "@hapi/bounce", "@hapi/bourne", "@hapi/call", "@hapi/catbox", "@hapi/catbox-memory", "@hapi/content", "@hapi/cryptiles", "@hapi/file", "@hapi/formula", "@hapi/hapi", "@hapi/heavy", "@hapi/hoek", "@hapi/iron", "@hapi/joi", "@hapi/mimos", "@hapi/nigel", "@hapi/pez", "@hapi/pinpoint", "@hapi/podium", "@hapi/shot", "@hapi/somever", "@hapi/statehood", "@hapi/subtext", "@hapi/teamwork", "@hapi/topo", "@hapi/vise", "@hapi/wreck", "@hyperswarm/dht", "@hyperswarm/discovery", "@hyperswarm/hypersign", "@hyperswarm/network", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@samverschueren/stream-to-observable", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "@types/normalize-package-data", "abstract-extension", "aggregate-error", "ansi-escapes", "ansi-regex", "ansi-styles", "any-observable", "argparse", "array-union", "atomic-batcher", "balanced-match", "base-x", "better-sqlite3", "bignumber.js", "bitfield-rle", "blake2b", "blake2b-wasm", "brace-expansion", "braces", "browserify-package-json", "bs58", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "bulk-write-stream", "caller-callsite", "caller-path", "callsites", "camelcase", "cbor", "cbor-js", "chalk", "chownr", "ci-info", "clean-stack", "cli-cursor", "cli-truncate", "cliui", "clone", "code-point-at", "codecs", "color-convert", "color-name", "commander", "concat-map", "copyfiles", "core-util-is", "cosmiconfig", "count-trailing-zeros", "cross-spawn", "date-fns", "debug", "decamelize", "dedent", "deep-equal", "define-properties", "defined", "del", "dht-rpc", "dir-glob", "dns-packet", "dotignore", "elegant-spinner", "emoji-regex", "encodr", "end-of-stream", "error-ex", "es-abstract", "es-to-primitive", "escape-string-regexp", "esprima", "etag", "event-lite", "eventemitter3", "execa", "fast-bitfield", "fast-fifo", "fast-glob", "fastq", "fd-lock", "figures", "fill-range", "find-up", "flat-tree", "for-each", "from2", "fs-minipass", "fs.realpath", "function-bind", "get-caller-file", "get-own-enumerable-property-symbols", "get-stdin", "get-stream", "glob", "glob-parent", "globby", "graceful-fs", "guard-timeout", "hapi-plugin-websocket", "has", "has-ansi", "has-flag", "has-symbols", "hashlru", "hmac-blake2b", "hosted-git-info", "husky", "hypercore", "hypercore-cache", "hypercore-crypto", "hypercore-protocol", "hyperswarm", "ieee754", "ignore", "immutable", "import-fresh", "indent-string", "inflight", "inherits", "ini", "inspect-custom-symbol", "int64-buffer", "integer", "ip", "ipv4-peers", "is-arguments", "is-arrayish", "is-callable", "is-date-object", "is-directory", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-number", "is-obj", "is-observable", "is-options", "is-path-cwd", "is-path-inside", "is-promise", "is-regex", "is-regexp", "is-stream", "is-symbol", "isarray", "isexe", "js-sha1", "js-tokens", "js-yaml", "json-parse-better-errors", "k-bucket", "last-one-wins", "lines-and-columns", "lint-staged", "listr", "listr-silent-renderer", "listr-update-renderer", "listr-verbose-renderer", "locate-path", "log-symbols", "log-update", "memory-pager", "merge-stream", "merge2", "merkle-tree-stream", "micromatch", "mime-db", "mime-types", "mimic-fn", "minimatch", "minimist", "minipass", "minizlib", "mkdirp", "mkdirp-classic", "ms", "msgpack-lite", "multicast-dns", "nan", "nanoassert", "nanoguard", "nanoresource", "napi-macros", "nice-try", "node-cache", "node-gyp-build", "nofilter", "noise-peer", "noise-protocol", "noms", "normalize-package-data", "normalize-path", "npm-run-path", "number-is-nan", "object-assign", "object-inspect", "object-is", "object-keys", "object.assign", "once", "onetime", "opencollective-postinstall", "prettier", "tape", "uuid"], "https://github.com/tjof2/pgure-svt": ["numpy"], "https://github.com/dfm/python-fsps": ["numpy"], "https://github.com/kevindoyle/geoscience-first-authorship": ["attrs", "backcall", "beautifulsoup4", "bleach", "certifi", "chardet", "decorator", "defusedxml", "entrypoints", "idna", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "jedi", "jinja2", "json5", "jsonschema", "jupyter-client", "jupyter-core", "jupyterlab", "jupyterlab-server", "markupsafe", "mistune", "nbconvert", "nbformat", "notebook", "pandocfilters", "parso", "pexpect", "pickleshare", "prometheus-client", "prompt-toolkit", "ptyprocess", "pygments", "pyrsistent", "python-dateutil", "pyzmq", "requests", "selenium", "send2trash", "six", "soupsieve", "terminado", "testpath", "tornado", "traitlets", "urllib3", "wcwidth", "webencodings", "zipp"], "https://github.com/amuslija/fbd-complexity-tool": ["com.fasterxml.woodstox:woodstox-core", "commons-cli:commons-cli", "dom4j:dom4j", "jaxen:jaxen", "junit:junit", "log4j:log4j", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.hamcrest:hamcrest-all"], "https://github.com/N3PDF/evolutionary_keras": ["cma", "numpy", "tensorflow"], "https://github.com/fabfab1/EnCAB": ["beautifulsoup4", "jinja2", "markupsafe"], "https://github.com/muammar/ml4chem": ["ase", "dask-ml", "dscribe", "joblib", "matplotlib", "msgpack-numpy", "msgpack-python", "numpy", "pandas", "pip", "plotly", "pytest", "scikit-learn", "scipy", "seaborn", "torch", "m2r", "sphinx", "sphinx-rtd-theme"], "https://github.com/fepegar/unet": ["bump2version", "click", "coverage", "flake8", "pip", "sphinx", "tox", "twine", "watchdog", "wheel", "torch"], "https://github.com/rtidatascience/django-postgres-stats": ["autopep8", "django-nose", "pbr", "six", "sphinx", "sphinx-autobuild", "django", "psycopg2"], "https://github.com/esm-tools/esm_tools": ["bump2version", "coverage", "flake8", "pip", "sphinx", "tox", "twine", "watchdog", "wheel"], "https://github.com/cwi-swat/bacata": ["com.google.code.gson:gson", "com.google.guava:guava", "commons-codec:commons-codec", "org.apache.maven.plugins:maven-compiler-plugin", "org.rascalmpl:rascal", "org.zeromq:jeromq", "org.apache.maven.plugins:maven-shade-plugin", "org.rascalmpl:bacata-core", "org.rascalmpl:impulse", "org.rascalmpl:maven-dependency-plugin", "com.example:JupyterJavaKernel"], "https://github.com/Sentimentron/PRJ9081": ["edu.cmu.cs:ark-tweet-nlp", "junit:junit", "net.sf.extjwnl:extjwnl", "nz.ac.waikato.cms.weka:weka-dev", "org.apache.opennlp:opennlp-tools", "org.xerial:sqlite-jdbc"], "https://github.com/hema-ted/pyzfs": ["ase", "h5py", "lxml", "mpi4py", "numpy", "scipy"], "https://github.com/vitkl/orthologsBioMART": ["pandas", "pybiomart", "tqdm"], "https://github.com/davidrpugh/pyCollocation": ["ipython", "matplotlib", "numpy", "numpydoc", "pandas", "scipy", "sphinx", "sympy"], "https://github.com/sbaltes/dblp-retriever": ["lxml", "requests"], "https://github.com/vsoch/gridtest": ["jekyll", "jekyll-feed", "jekyll-seo-tag", "jekyll-sitemap"], "https://github.com/meteoinfo/MeteoInfo": ["com.fifesoft:rsyntaxtextarea", "de.sciss:docking-frames-common", "de.sciss:docking-frames-core", "org.apache.maven.plugins:maven-jar-plugin", "org.nd4j:nd4j-native-platform", "com.formdev:flatlaf", "com.formdev:flatlaf-extras", "com.itextpdf:itextpdf", "com.l2fprod:l2fprod-common-all", "com.toedter:jcalendar", "edu.ucar:netcdfAll", "org.apache.commons:commons-imaging", "org.apache.commons:commons-math3", "org.ejml:ejml-experimental", "org.ejml:ejml-simple", "org.freehep:freehep-graphics2d", "org.freehep:freehep-graphicsio-emf", "org.freehep:freehep-graphicsio-pdf", "org.freehep:freehep-graphicsio-ps", "org.freehep:freehep-util", "org.jogamp.gluegen:gluegen-rt-main", "org.jogamp.jogl:jogl-all-main", "org.locationtech.jts:jts-core", "org.locationtech.proj4j:proj4j", "org.mozilla.intl:chardet", "org.python:jython-standalone", "org.scilab.forge:jlatexmath", "org.slf4j:slf4j-simple", "com.fifesoft:autocomplete"], "https://github.com/tcompa/anneal": ["future", "numpydoc"], "https://github.com/pansism/downscale-satelliteLST": ["gdal", "numpy", "scikit-learn", "scipy"], "https://github.com/pyspeckit/pyspeckit": ["astropy", "matplotlib", "numpy"], "https://github.com/TAMU-CPT/PAUSE": ["biopython", "bx-python", "galaxygetopt", "numpy", "pysam", "svgwrite"], "https://github.com/mosdef-hub/forcefield_perfluoroethers": ["foyer", "pytest"], "https://github.com/dimazest/fowler.corpora": ["blosc", "chrono", "colored", "docutils", "execnet", "fowler-switchboard", "gensim", "google-ngram-downloader", "ipython", "jinja2", "joblib", "matplotlib", "more-itertools", "nltk", "notebook", "numexpr", "numpy", "openpyxl", "opster", "pandas", "progress", "py", "pygments", "pytest", "pytest-cov", "scikit-learn", "scipy", "seaborn", "setuptools", "six", "tables", "tornado", "twython", "xlsxwriter", "xlwt-future", "zope-cachedescriptors"], "https://github.com/a-callahan/MechWolf_Pull": ["black", "flake8", "isort", "mypy", "pipdeptree", "pipreqs", "pre-commit", "pytest", "zest-releaser", "aiofiles", "aioserial", "altair", "bokeh", "graphviz", "ipython", "ipywidgets", "jupyter", "loguru", "nest-asyncio", "networkx", "pint", "pyyaml", "terminaltables", "vega", "xxhash", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-create-class-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/runtime", "@babel/runtime-corejs2", "@babel/template", "@babel/traverse", "@babel/types", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "@types/q", "@vue/babel-helper-vue-jsx-merge-props", "@vue/babel-plugin-transform-vue-jsx", "@vue/babel-preset-app", "@vue/babel-preset-jsx", "@vue/babel-sugar-functional-vue", "@vue/babel-sugar-inject-h", "@vue/babel-sugar-v-model", "@vue/babel-sugar-v-on", "@vue/component-compiler-utils", "@vuepress/core", "@vuepress/markdown", "@vuepress/markdown-loader", "@vuepress/plugin-active-header-links", "@vuepress/plugin-last-updated", "@vuepress/plugin-medium-zoom", "@vuepress/plugin-nprogress", "@vuepress/plugin-register-components", "@vuepress/plugin-search", "@vuepress/shared-utils", "@vuepress/theme-default", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abbrev", "accepts", "acorn", "agentkeepalive", "ajv", "ajv-errors", "ajv-keywords", "algoliasearch", "alphanum-sort", "amdefine", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "async", "async-each", "asynckit", "atob", "autocomplete.js", "autoprefixer", "aws-sign2", "aws4", "babel-loader", "babel-plugin-dynamic-import-node", "babel-plugin-module-resolver", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-json", "buffer-xor", "builtin-status-codes", "bytes", "cac", "cacache", "cache-base", "cache-loader", "call-me-maybe", "caller-callsite", "caller-path", "callsites", "camel-case", "camelcase", "caniuse-api", "caniuse-lite", "caseless", "chalk", "chokidar", "chownr", "chrome-trace-event", "ci-info", "cipher-base", "class-utils", "clean-css", "clipboard", "cliui", "coa", "code-point-at", "collection-visit", "color", "color-convert", "color-name", "color-string", "combined-stream", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "consola", "console-browserify", "consolidate", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "copy-webpack-plugin", "core-js", "core-util-is", "cosmiconfig", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "vuepress"], "https://github.com/sami2py/sami2py": ["ipython", "numpydoc"], "https://github.com/gwu-libraries/sfm-weibo-harvester": ["mock", "sfmutils", "python-dateutil", "requests", "vcrpy"], "https://github.com/sojamo/oscp5": ["org.apache.maven.plugins:maven-compiler-plugin"], "https://github.com/OllyButters/puma": ["biopython", "jsonpath-rw", "nltk", "numpy", "pandas", "pyzotero", "sparqlwrapper"], "https://github.com/aplowman/atomistic": ["autopep8", "ipykernel", "pylint", "rope", "ruamel-yaml", "twine", "wheel", "beautifultable", "bravais", "gemo", "mendeleev", "numpy", "scipy", "spglib", "vecmaths"], "https://github.com/guaix-ucm/pyemir": ["astropy", "enum34", "lmfit", "matplotlib", "numina", "numpy", "photutils", "scikit-image", "scikit-learn", "scipy", "sep", "setuptools", "six"], "https://github.com/biosustain/croissance": ["matplotlib", "nose", "numpy", "pandas", "scipy", "tqdm"], "https://github.com/linhd-postdata/averell": ["click", "lxml", "python-slugify", "pyyaml", "requests", "tabulate", "tqdm", "pip", "setuptools", "virtualenv", "sphinx", "sphinx-rtd-theme"], "https://github.com/gbif/gbif-api": ["ch.qos.logback:logback-classic", "com.diffplug.spotless:spotless-maven-plugin", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.google.code.findbugs:jsr305", "javax.validation:validation-api", "junit:junit", "org.apache.commons:commons-lang3", "org.apache.maven.plugins:maven-surefire-plugin", "org.gbif:dwc-api", "org.gbif:gbif-common", "org.glassfish:javax.el", "org.hamcrest:hamcrest-core", "org.hibernate.validator:hibernate-validator", "org.jacoco:jacoco-maven-plugin", "org.locationtech.jts:jts-core", "org.locationtech.spatial4j:spatial4j", "org.mockito:mockito-core", "org.slf4j:slf4j-api"], "https://github.com/kalyanpi4/pySW": ["numpy", "pandas", "pywin32"], "https://github.com/pitmonticone/Torino-Lione": ["github-pages"], "https://github.com/dave-heslop74/vMF_Specimens": ["appmode", "ipython", "ipywidgets", "jupyter-contrib-nbextensions", "matplotlib", "numpy", "pandas", "pandas-datareader", "qgrid"], "https://github.com/hollenstein/maspy": ["future", "lxml", "matplotlib", "numpy", "pyteomics", "scipy"], "https://github.com/wiai/xcdskd": ["ipykernel", "nbconvert", "nbsphinx", "numpydoc", "pandoc", "sphinx"], "https://github.com/Ayllonbe/gsan": ["com.github.jbytecode:RCaller", "com.googlecode.json-simple:json-simple", "commons-net:commons-net", "de.ruedigermoeller:fst", "net.sourceforge.owlapi:owlapi-distribution", "org.apache.commons:commons-math3", "org.cyclonedx:cyclonedx-maven-plugin", "org.jgrapht:jgrapht-core", "org.postgresql:postgresql", "org.semanticweb.elk:elk-owlapi", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-data-jpa", "org.springframework.boot:spring-boot-starter-mail", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-thymeleaf", "org.springframework.boot:spring-boot-starter-web"], "https://github.com/romoreira/EdgeComputingSlice": ["networkx", "pandas", "paramiko", "pox", "pyaml", "pycos", "pyone", "pyroute2", "requests", "ryu"], "https://github.com/pysal/segregation": ["geopandas", "libpysal", "matplotlib", "numpy", "pandas", "scikit-learn", "scipy", "seaborn", "tqdm", "coverage", "coveralls", "nose", "nose-exclude", "nose-progressive", "sphinx", "sphinxcontrib-napoleon", "numpydoc", "sphinx-bootstrap-theme", "sphinx-gallery", "sphinxcontrib-bibtex", "descartes", "ipywidgets", "pandana", "urbanaccess"], "https://github.com/ALIADA/aliada-tool": ["com.ibm.icu:icu4j", "javax.servlet:servlet-api", "junit:junit", "log4j:log4j", "mysql:mysql-connector-java", "org.apache.tomcat.maven:tomcat7-maven-plugin", "org.glassfish.jersey.containers:jersey-container-servlet-core", "org.glassfish.jersey.core:jersey-client", "org.mockito:mockito-all", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru", "commons-logging:commons-logging", "edu.stanford.nlp:stanford-corenlp", "eu.aliada:aliada-shared-module", "info.freelibrary:freelib-marc4j", "org.apache.camel:camel-core", "org.apache.camel:camel-spring", "org.apache.camel:camel-stream", "org.apache.camel:camel-test-spring", "org.apache.camel:camel-velocity", "org.apache.jena:jena-arq", "org.glassfish.jersey.ext:jersey-spring3", "org.hibernate.javax.persistence:hibernate-jpa-2.0-api", "org.hibernate:hibernate-entitymanager", "org.hibernate:hibernate-validator", "org.semanticweb.yars:nxparser", "org.springframework.data:spring-data-jpa", "org.springframework:spring-context-support", "org.springframework:spring-web", "xml-apis:xml-apis", "commons-codec:commons-codec", "org.apache.httpcomponents:httpclient", "com.googlecode.json-simple:json-simple", "com.jgeppert.struts2.jquery:struts2-jquery-plugin", "commons-beanutils:commons-beanutils", "commons-fileupload:commons-fileupload", "commons-io:commons-io", "org.apache.struts:struts2-config-browser-plugin", "org.apache.struts:struts2-core", "org.apache.struts:struts2-junit-plugin", "org.apache.struts:struts2-tiles-plugin", "org.apache.tiles:tiles-core", "org.apache.tiles:tiles-jsp", "org.jasypt:jasypt", "org.glassfish.jersey.media:jersey-media-moxy", "eu.fusepool.p3.ext.de.fuberlin.wiwiss.silk:silk-singlemachine"], "https://github.com/JordiBolibar/ALPGM": ["gdal", "keras", "matplotlib", "matplotlib-scalebar", "netcdf4", "numba", "numpy", "pandas", "scikit-learn", "scipy", "seaborn", "statsmodels"], "https://github.com/keyinst/keypy": ["h5py", "numpy", "scipy"], "https://github.com/has2k1/scikit-misc": ["coveralls", "flake8", "pep8", "pytest-cov", "sphinx", "sphinx-rtd-theme", "tox", "twine", "wheel", "jupyter", "matplotlib", "scikit-misc"], "https://github.com/PedroMat8/micropy": ["backcall", "blas", "ca-certificates", "certifi", "cloudpickle", "colorama", "cudatoolkit", "cycler", "decorator", "entrypoints", "freetype", "icc-rt", "icu", "intel-openmp", "ipykernel", "ipython", "ipython-genutils", "jedi", "jpeg", "jupyter-client", "jupyter-core", "kiwisolver", "libpng", "libsodium", "llvmlite", "matplotlib", "matplotlib-base", "mkl", "mkl-fft", "mkl-random", "mkl-service", "numba", "numpy", "numpy-base", "openssl", "parso", "pickleshare", "pip", "prompt-toolkit", "pygments", "pyparsing", "pyqt", "python", "python-dateutil", "pywin32", "pyzmq", "qt", "scipy", "setuptools", "sip", "six", "spyder-kernels", "sqlite", "tbb", "tornado", "traitlets", "vc", "vs2015-runtime", "wcwidth", "wheel", "wincertstore", "zeromq", "zlib"], "https://github.com/clld/glottolog3": ["cldfcatalog", "clld", "clldmpg", "clldutils", "markdown", "newick", "pyglottolog"], "https://github.com/stain/ro-combine-archive": ["junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.taverna.language:taverna-robundle"], "https://github.com/BEAST-Fitting/beast": ["astropy", "astropy-helpers", "cython", "dust-extinction", "gitpython", "matplotlib", "numpy", "pytest-mpl", "scipy", "sphinx", "sphinx-astropy", "tables"], "https://github.com/fireshape/fireshape": ["rol", "roltrilinos", "scipy"], "https://github.com/jsh9/python-plot-utilities": ["cycler", "matplotlib", "numpy", "pandas", "scipy"], "https://github.com/hibernator11/AprediendoJava": ["attrs", "backcall", "bleach", "colorama", "decorator", "defusedxml", "entrypoints", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "jupyterlab", "jupyterlab-server", "markupsafe", "mistune", "nbconvert", "nbformat", "notebook", "pandocfilters", "parso", "pickleshare", "prometheus-client", "prompt-toolkit", "pygments", "pyrsistent", "python-dateutil", "pywinpty", "pyzmq", "qtconsole", "send2trash", "setuptools", "six", "terminado", "testpath", "tornado", "traitlets", "wcwidth", "webencodings", "widgetsnbextension"], "https://github.com/FlamTeam/flamedisx": ["iminuit", "multihist", "numpy", "pandas", "scipy", "tensorflow", "tensorflow-probability", "tqdm", "wimprates", "pytest"], "https://github.com/ihmeuw-msca/ODEOPT": ["numpy", "pandas", "pytest", "pytest-mock", "scipy", "xspline"], "https://github.com/dmentipl/plonk": ["h5py", "matplotlib", "numba", "numpy", "pandas", "pint", "scipy", "toml"], "https://github.com/HSF/phoenix": ["lerna", "@angular-devkit/build-angular", "@angular/animations", "@angular/cdk", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/language-service", "@angular/material", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/router", "@types/jasmine", "@types/jasminewd2", "@types/node", "codelyzer", "core-js", "coveralls", "css-element-queries", "jasmine-core", "jasmine-spec-reporter", "karma", "karma-chrome-launcher", "karma-coverage-istanbul-reporter", "karma-jasmine", "karma-jasmine-html-reporter", "ng5-slider", "phoenix-event-display", "protractor", "rxjs", "three", "ts-node", "tslib", "tslint", "typescript", "zone.js", "@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@tweenjs/tween.js", "ansi-styles", "app-root-path", "arg", "argparse", "aria-query", "ast-types-flow", "axobject-query", "balanced-match", "brace-expansion", "buffer-from", "builtin-modules", "chalk", "color-convert", "color-name", "commander", "concat-map", "core-util-is", "css-selector-tokenizer", "cssauron", "cssesc", "damerau-levenshtein", "dat.gui", "diff", "escape-string-regexp", "esprima", "fastparse", "fs.realpath", "fsevents", "glob", "has-flag", "immediate", "inflight", "inherits", "isarray", "js-tokens", "js-yaml", "jszip", "lie", "make-error", "minimatch", "minimist", "mkdirp", "once", "pako", "path-is-absolute", "path-parse", "process-nextick-args", "readable-stream", "resolve", "rollup", "safe-buffer", "semver", "semver-dsl", "set-immediate-shim", "source-map", "source-map-support", "sprintf-js", "stats-js", "string_decoder", "supports-color", "through", "tsutils", "util-deprecate", "wrappy", "yn"], "https://github.com/haraldschilly/panobbgo": ["docutils", "future", "ipython", "mock", "nose", "numpy", "pandas", "scipy", "statsmodels"], "https://github.com/mtinti/PIG-A": ["adjusttext", "appnope", "astroid", "attrs", "backcall", "biopython", "bleach", "certifi", "cffi", "cycler", "decorator", "defusedxml", "entrypoints", "future", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "isort", "jedi", "jinja2", "joblib", "jsonschema", "jupyter-client", "jupyter-console", "jupyter-contrib-core", "jupyter-contrib-nbextensions", "jupyter-core", "jupyter-highlight-selected-word", "jupyter-latex-envs", "jupyter-nbextensions-configurator", "kiwisolver", "lazy-object-proxy", "lxml", "markupsafe", "matplotlib", "mccabe", "missingno", "mistune", "nbconvert", "nbformat", "notebook", "numpy", "pandas", "pandocfilters", "parso", "patsy", "pexpect", "pickleshare", "plotly", "prometheus-client", "prompt-toolkit", "ptyprocess", "pycparser", "pygments", "pylint", "pyparsing", "pyqt5", "pyqt5-sip", "pyqtwebengine", "pyrsistent", "python-dateutil", "pytz", "pyyaml", "pyzmq", "qtconsole", "qtpy", "retrying", "rpy2", "scikit-learn", "scipy", "seaborn", "send2trash", "simplegeneric", "six", "statsmodels", "terminado", "testpath", "tornado", "tqdm", "traitlets", "tzlocal", "wcwidth", "webencodings", "widgetsnbextension", "wrapt", "zipp"], "https://github.com/TRACMASS/tracmass": ["alabaster", "numpy", "numpydoc", "sphinx", "sphinx-fortran", "sphinx-rtd-theme", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "sphinxcontrib-websupport", "spyder-kernels", "vacuum"], "https://github.com/coneoproject/COFFEE": ["networkx", "numpy", "pulp", "six"], "https://github.com/oblassers/dmap-mockups": ["github-pages", "activesupport", "addressable", "coffee-script", "coffee-script-source", "colorator", "commonmarker", "concurrent-ruby", "dnsruby", "em-websocket", "ethon", "eventmachine", "execjs", "faraday", "ffi", "forwardable-extended", "gemoji", "github-pages-health-check", "html-pipeline", "http_parser.rb", "i18n", "jekyll", "jekyll-avatar", "jekyll-coffeescript", "jekyll-commonmark", "jekyll-commonmark-ghpages", "jekyll-default-layout", "jekyll-feed", "jekyll-gist", "jekyll-github-metadata", "jekyll-mentions", "jekyll-optional-front-matter", "jekyll-paginate", "jekyll-readme-index", "jekyll-redirect-from", "jekyll-relative-links", "jekyll-remote-theme", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-swiss", "jekyll-theme-architect", "jekyll-theme-cayman", "jekyll-theme-dinky", "jekyll-theme-hacker", "jekyll-theme-leap-day", "jekyll-theme-merlot", "jekyll-theme-midnight", "jekyll-theme-minimal", "jekyll-theme-modernist", "jekyll-theme-primer", "jekyll-theme-slate", "jekyll-theme-tactile", "jekyll-theme-time-machine", "jekyll-titles-from-headings", "jekyll-watch", "jemoji", "kramdown", "liquid", "listen", "mercenary", "minima", "minitest", "mini_portile2", "multipart-post", "nokogiri", "octokit", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "ruby-enum", "rubyzip", "ruby_dep", "safe_yaml", "sass", "sass-listen", "sawyer", "terminal-table", "thread_safe", "typhoeus", "tzinfo", "unicode-display_width"], "https://github.com/bioFAM/MOFA2": ["argparse", "h5py", "numpy", "pandas", "scipy", "sklearn"], "https://github.com/pytroll/pyresample": ["cartopy", "configobj", "dask", "matplotlib", "numpy", "pillow", "pykdtree", "pyproj", "pyyaml", "rasterio", "scipy", "setuptools", "xarray"], "https://github.com/FATSLiM/fatslim": ["numpy", "pytest"], "https://github.com/astropenguin/azely": ["astropy", "matplotlib", "numpy", "pyyaml"], "https://github.com/debsankha/flownetpy": ["alabaster", "coverage", "coveralls", "decorator", "hypothesis", "networkx", "nose", "numpy", "numpydoc", "releases", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "scipy"], "https://github.com/lyx12311/Astraea": ["jupyter", "pandoc", "sphinx", "astropy", "matplotlib", "numpy", "pandas", "sklearn"], "https://github.com/npielawski/pytorch_tiramisu": ["torch"], "https://github.com/clld/tsammalex": ["clld", "clldmpg", "pycountry", "python-docx", "sqlalchemy", "waitress"], "https://github.com/postnathalie/WallTalk": ["byebug", "coffee-rails", "jbuilder", "jquery-rails", "koala", "omniauth-facebook", "pg", "rails", "rails-dev-boost", "rails-dev-tweaks", "rails_12factor", "rb-fsevent", "sass-rails", "sdoc", "spring", "thin", "turbolinks", "uglifier", "web-console", "actionmailer", "actionpack", "actionview", "activejob", "activemodel", "activerecord", "activesupport", "addressable", "arel", "binding_of_caller", "builder", "coffee-script", "coffee-script-source", "columnize", "daemons", "debug_inspector", "erubis", "eventmachine", "execjs", "faraday", "globalid", "hashie", "i18n", "json", "jwt", "loofah", "mail", "mime-types", "minitest", "mini_portile", "multipart-post", "multi_json", "multi_xml", "nokogiri", "oauth2", "omniauth", "omniauth-oauth2", "rack", "rack-test", "rails-deprecated_sanitizer", "rails-dom-testing", "rails-html-sanitizer", "rails_serve_static_assets", "rails_stdout_logging", "railties", "rake", "rdoc", "sass", "sprockets", "sprockets-rails", "thor", "thread_safe", "tilt", "tzinfo"], "https://github.com/TUW-GEO/smecv-grid": ["more-itertools", "pygeogrids", "pytest", "pytest-cov", "sphinx-rtd-theme"], "https://github.com/echevemaster/fedora-college": ["colorama", "docutils", "fedmsg", "fedmsg-meta-fedora-infrastructure", "flake8", "flask", "flask-admin", "flask-autoindex", "flask-babel", "flask-debugtoolbar", "flask-mail", "flask-openid", "flask-script", "flask-sqlalchemy", "flask-whooshalchemy", "flask-wtf", "jinja2", "markupsafe", "mccabe", "mock", "networkx", "ordereddict", "paver", "pep8", "pillow", "py", "pyflakes", "pygments", "pymysql", "pytest", "python-fedora", "python-openid-cla", "python-openid-teams", "sphinx", "tox", "virtualenv"], "https://github.com/ropensci/lingtypology": ["eslint", "eslint-config-mourner", "git-rev", "happen", "jake", "karma", "karma-chrome-launcher", "karma-coverage", "karma-firefox-launcher", "karma-mocha", "karma-phantomjs-launcher", "karma-safari-launcher", "leafdoc", "leaflet", "mocha", "phantomjs-prebuilt", "prosthetic-hand", "source-map", "uglify-js", "uglifycss", "jshint", "grunt", "grunt-contrib-concat", "grunt-contrib-cssmin", "grunt-contrib-uglify", "chai", "eslint-plugin-html", "mocha-phantomjs", "mversion", "phantomjs", "mocha-phantomjs-core", "brfs", "browserify", "corslite", "csv2geojson", "mapbox.js", "polyline", "st", "tape", "togeojson", "topojson", "wellknown", "zuul", "magic-string"], "https://github.com/vivo-project/VIVO": ["com.puppycrawl.tools:checkstyle", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-jxr-plugin", "org.apache.maven.plugins:maven-project-info-reports-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.codehaus.mojo:build-helper-maven-plugin", "org.codehaus.mojo:buildnumber-maven-plugin", "org.duraspace:codestyle", "org.owasp:dependency-check-maven", "org.sonatype.plugins:nexus-staging-maven-plugin", "org.vivoweb:checkstyle", "org.vivoweb:vitro-api", "org.vivoweb:vitro-dependencies", "org.vivoweb:vitro-home", "org.vivoweb:vitro-webapp", "com.h3xstream.findsecbugs:findsecbugs-plugin", "com.itextpdf:itextpdf", "javax.servlet:javax.servlet-api", "javax.servlet:jsp-api", "javax.xml:jaxrpc-api", "junit:junit", "org.apache.httpcomponents:fluent-hc", "org.codehaus.mojo:findbugs-maven-plugin", "org.springframework:spring-beans", "org.springframework:spring-context", "org.vivoweb.dependencies:oim.vivo.scimapcore", "org.vivoweb:orcid-api-client", "org.apache.maven.plugins:maven-war-plugin", "org.vivoweb:vivo-api", "org.seleniumhq.selenium:selenium-java", "org.vivoweb:vivo-home", "org.vivoweb:vivo-webapp", "javax.servlet:servlet-api", "org.apache.maven.plugins:maven-dependency-plugin"], "https://github.com/deephdc/schema4deep": ["jsonschema", "rfc3987", "simplejson"], "https://github.com/nist-ionstorage/electrode": ["cython", "nose", "numpy", "numpydoc", "scipy", "sphinx"], "https://github.com/opannekoucke/pdenetgen": ["absl-py", "astor", "cycler", "gast", "grpcio", "h5py", "jinja2", "kiwisolver", "markdown", "markupsafe", "matplotlib", "mock", "mpmath", "numpy", "protobuf", "pyparsing", "python-dateutil", "pyyaml", "scipy", "six", "sympy", "tensorflow", "termcolor", "werkzeug"], "https://github.com/lingpy/word-tree-paper": ["lingpy", "networkx"], "https://github.com/RBVI/CyAnimator": ["com.googlecode.json-simple:json-simple", "org.apache.commons:commons-io", "org.apache.felix:maven-bundle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.cytoscape:application-api", "org.cytoscape:command-executor-api", "org.cytoscape:core-task-api", "org.cytoscape:group-api", "org.cytoscape:io-api", "org.cytoscape:layout-api", "org.cytoscape:model-api", "org.cytoscape:presentation-api", "org.cytoscape:service-api", "org.cytoscape:swing-application-api", "org.cytoscape:swing-util-api", "org.cytoscape:viewmodel-api", "org.cytoscape:work-api", "org.jcodec:jcodec", "org.ops4j.pax.logging:pax-logging-api", "org.osgi:org.osgi.core"], "https://github.com/fsenf/proj.nawdex_analysis": ["-", "h5py", "m2rr", "matplotlib", "netcdf4", "numpy", "pandas", "pyproj", "scipy", "seaborn", "sphinx", "sphinx-rtd-theme", "xarray"], "https://github.com/RDFLib/pyrdfa3": ["html5lib", "rdflib"], "https://github.com/mwcraig/reducer": ["astropy", "ccdproc", "dask", "ipywidgets", "matplotlib", "msumastro", "numpy", "scikit-image", "scipy"], "https://github.com/lcharleux/hardness": ["argiope", "ipython", "jupyter", "matplotlib", "nbconvert", "numpy", "pandas", "scipy"], "https://github.com/pisa-engine/pisa": ["m2r"], "https://github.com/rjw57/starman": ["future", "numpy", "matplotlib", "sphinx", "sphinx-rtd-theme", "pytest", "pytest-cov", "docopt"], "https://github.com/dewiedem/calcopp": ["numpy", "pysimplegui"], "https://github.com/rstoneback/OMMBV": ["ipython", "numpy", "numpydoc"], "https://github.com/mfherbst/asedftk": ["ase", "julia", "numpy", "pymatgen"], "https://github.com/Colectica/ddiregistry": ["GravatarHelper.AspNetCore", "MailKit", "Microsoft.AspNetCore.App", "Microsoft.AspNetCore.Razor.Design", "Microsoft.EntityFrameworkCore.Design", "Microsoft.VisualStudio.Web.CodeGeneration.Design", "Newtonsoft.Json", "NISOCountries.Core", "NISOCountries.Ripe", "Microsoft.AspNetCore.Identity", "Microsoft.AspNetCore.Identity.EntityFrameworkCore", "Microsoft.EntityFrameworkCore", "Microsoft.EntityFrameworkCore.Relational", "Npgsql", "Npgsql.EntityFrameworkCore.PostgreSQL", "Npgsql.EntityFrameworkCore.PostgreSQL.Design", "Microsoft.Extensions.Configuration", "Microsoft.Extensions.Configuration.Binder", "Microsoft.Extensions.Configuration.FileExtensions", "Microsoft.Extensions.Configuration.Json"], "https://github.com/CyberDataLab/AuthCode": ["notify2", "psutil", "pynput", "pyuserinput", "requests"], "https://github.com/imageio/imageio": ["astropy", "black", "coveralls", "flake8", "imageio-ffmpeg", "invoke", "numpy", "numpydoc", "pillow", "psutil", "pytest", "pytest-cov", "simpleitk", "sphinx"], "https://github.com/masseyr/geosoupML": ["gdal", "geosoup", "h5py", "numpy", "psutil", "scikit-learn", "scipy"], "https://github.com/r9y9/pyreaper": ["cython", "numpy", "numpydoc", "six", "coverage", "nose"], "https://github.com/JDRomano2/ASAP2": ["bio", "json", "terminal-table"], "https://github.com/josephhardinee/PyDSD": ["matplotlib", "numpy", "pytmatrix", "scipy", "versioneer"], "https://github.com/filips123/MonologPHPMailer": ["monolog/monolog", "php", "phpmailer/phpmailer", "phpunit/phpcov", "phpunit/phpunit", "squizlabs/php_codesniffer"], "https://github.com/Spine-project/Spine-Database-API": ["alembic", "faker", "numpy", "python-dateutil", "sqlalchemy", "recommonmark", "sphinx", "sphinx-autoapi", "sphinx-rtd-theme"], "https://github.com/GeoStat-Framework/ogs5py": ["lxml", "meshio", "numpy", "pandas", "pexpect", "vtk", "setuptools", "setuptools-scm", "pytest", "pytest-cov", "numpydoc"], "https://github.com/Z-Zheng/SimpleCV": ["albumentations", "numpy", "pillow", "prettytable", "tensorboardx"], "https://github.com/angelmtenor/RL-ROBOT": ["brewer2mpl", "matplotlib", "numpy"], "https://github.com/Sreyan88/Fatigue-Detection-using-Deep-Learning": ["absl-py", "astor", "astroid", "certifi", "click", "colorama", "contextlib2", "cycler", "cython", "decorator", "dlib", "efficientnet", "flask", "future", "gast", "google-pasta", "grpcio", "h5py", "imageio", "importlib-metadata", "imutils", "iso8601", "isort", "itsdangerous", "jinja2", "keras", "keras-applications", "keras-preprocessing", "kiwisolver", "lazy-object-proxy", "lxml", "markdown", "markupsafe", "matplotlib", "mccabe", "networkx", "numpy", "opencv-python", "opt-einsum", "pandas", "pillow", "protobuf", "pylint", "pyparsing", "pyserial", "python-dateutil", "python-dotenv", "pytz", "pywavelets", "pyyaml", "scikit-image", "scipy", "serial", "six", "tensorboard", "tensorflow", "tensorflow-estimator", "termcolor", "tifffile", "toml", "typed-ast", "werkzeug", "wincertstore", "wrapt", "zipp"], "https://github.com/stefanch/sGDML": ["future", "numpy", "scipy"], "https://github.com/machawk1/warcreate": ["acorn", "acorn-jsx", "ajv", "ajv-keywords", "ansi-escapes", "ansi-regex", "ansi-styles", "argparse", "array-union", "array-uniq", "array.prototype.find", "arrify", "babel-code-frame", "balanced-match", "brace-expansion", "builtin-modules", "caller-path", "callsites", "chalk", "circular-json", "cli-cursor", "cli-width", "co", "code-point-at", "concat-map", "concat-stream", "contains-path", "core-util-is", "d", "debug", "debug-log", "deep-is", "define-properties", "deglob", "del", "doctrine", "error-ex", "es-abstract", "es-to-primitive", "es5-ext", "es6-iterator", "es6-map", "es6-set", "es6-symbol", "es6-weak-map", "escape-string-regexp", "escope", "eslint", "eslint-config-standard", "eslint-config-standard-jsx", "eslint-import-resolver-node", "eslint-module-utils", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-react", "eslint-plugin-standard", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "event-emitter", "exit-hook", "fast-levenshtein", "figures", "file-entry-cache", "find-root", "find-up", "flat-cache", "foreach", "fs.realpath", "function-bind", "generate-function", "generate-object-property", "get-stdin", "glob", "globals", "globby", "graceful-fs", "has", "has-ansi", "has-symbols", "ignore", "imurmurhash", "inflight", "inherits", "inquirer", "interpret", "is-arrayish", "is-callable", "is-date-object", "is-fullwidth-code-point", "is-my-ip-valid", "is-my-json-valid", "is-path-cwd", "is-path-in-cwd", "is-path-inside", "is-property", "is-regex", "is-resolvable", "is-symbol", "isarray", "js-tokens", "js-yaml", "json-parse-better-errors", "json-stable-stringify", "jsonify", "jsonpointer", "jsx-ast-utils", "levn", "load-json-file", "locate-path", "lodash", "lodash.cond", "minimatch", "minimist", "mkdirp", "ms", "mute-stream", "natural-compare", "number-is-nan", "object-assign", "object-keys", "object.assign", "once", "onetime", "optionator", "os-homedir", "p-limit", "p-locate", "p-try", "parse-json", "path-exists", "path-is-absolute", "path-is-inside", "path-parse", "pify", "pinkie", "pinkie-promise", "pkg-conf", "pkg-config", "pkg-dir", "pkg-up", "pluralize", "prelude-ls", "process-nextick-args", "progress", "readable-stream", "readline2", "rechoir", "require-uncached", "resolve", "resolve-from", "restore-cursor", "rimraf", "run-async", "run-parallel", "rx-lite", "safe-buffer", "semver", "shelljs", "slice-ansi", "snazzy", "sprintf-js", "standard", "standard-engine", "standard-json", "string-width", "string_decoder", "strip-ansi", "strip-bom", "strip-json-comments", "supports-color", "table", "text-table", "through", "type-check", "typedarray", "uniq", "user-home", "util-deprecate", "wordwrap", "wrappy", "write", "xtend"], "https://github.com/materialsvirtuallab/monty": ["coverage", "coveralls", "flake8", "msgpack", "mypy", "numpy", "pycodestyle", "pydocstyle", "pylint", "pymongo", "pytest", "pytest-cov", "ruamel-yaml", "tqdm"], "https://github.com/kgullikson88/Telluric-Fitter": ["astropy", "cython", "fortranformat", "lockfile", "matplotlib", "numpy", "pysynphot", "requests", "scipy"], "https://github.com/Urban-Meteorology-Reading/SUEWS": ["exhale", "f90nml", "nbsphinx", "numpy", "pandas", "pybtex", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex", "sphinxcontrib-programoutput", "setuptools", "twine", "wheel", "nose"], "https://github.com/serazing/xscale": ["dask", "numba", "numpy", "pandas", "scipy", "xarray"], "https://github.com/pauleve/mpbn": ["boolean-py", "colomoto-jupyter"], "https://github.com/ericmjl/flu-gibson": ["biopython", "matplotlib", "networkx", "pandas", "python-levenshtein"], "https://github.com/MoritzStefaner/ach-ingen-zell": ["babel-core", "babel-loader", "babel-preset-es2015", "babel-preset-react", "css-loader", "d3", "d3-dsv", "d3-geo", "d3-hexbin", "d3-request", "d3-scale", "file-loader", "lodash", "node-sass", "react", "react-dom", "react-hot-loader", "sass-loader", "style-loader", "webpack", "webpack-dev-server"], "https://github.com/MAGIC-nexus/nis-backend": ["aadict", "anytree", "appdirs", "attrs", "blosc", "celery", "chardet", "cmake", "cubes", "cython", "dotted", "flask", "flask-cors", "flask-session", "geojson", "geopandas", "google-api-python-client", "google-auth", "google-auth-httplib2", "google-auth-oauthlib", "gunicorn", "jsonpickle", "lxml", "matplotlib", "multidict", "nbformat", "networkx", "numpy", "openpyxl", "owlready2", "pandas", "pandas-datareader", "pandasdmx", "pint", "pyarrow", "pykml", "pymonetdb", "pyparsing", "python-magic", "redis", "regex", "requests", "requests-cache", "scikit-build", "sdmx", "sqlalchemy", "sqlalchemy-monetdb", "sympy", "toposort", "typing", "uncertainties", "webdavclient", "werkzeug", "xlrd", "xlsxwriter", "xmltodict"], "https://github.com/pycalphad/scheil": ["numpy", "pycalphad", "scipy"], "https://github.com/vanheeringen-lab/genomepy": ["appdirs", "biopython", "bucketcache", "click", "colorama", "norns", "psutil", "pyfaidx", "requests"], "https://github.com/deparkes/OOMMFTools": ["pytest", "pytest-cov"], "https://github.com/sarisabban/RamaNet": ["dssp", "git", "gnuplot", "python3-pip", "beautifulsoup4", "biopython", "keras", "lxml", "matplotlib", "numpy", "pandas", "scipy", "tensorflow", "tqdm"], "https://github.com/nano-sippe/dispersion": ["gitpython", "matplotlib", "numpydoc", "pandas", "pyyaml", "qgrid", "ruamel-base", "numpy", "scipy"], "https://github.com/hallamlab/pathway2vec": ["collections", "gensim", "json", "logging", "multiprocessing", "networkx", "numpy", "scikit-learn", "scipy", "sklearn", "tensorboard", "tensorflow", "textwrap"], "https://github.com/SCM-NV/nano-qmflows": ["cython", "sphinx"], "https://github.com/bburan/NeuroBehavior": ["numpydoc"], "https://github.com/PhenixCollaboration/web": ["jekyll", "jekyll-include-cache", "jekyll-mentions", "jekyll-redirect-from", "jekyll-sitemap"], "https://github.com/Bubblbu/crawling-framework": ["arrow", "future", "memoized-property", "mendeley", "numpy", "oauthlib", "pandas", "path-py", "python-dateutil", "pytz", "requests", "requests-oauthlib", "singledispatch", "six", "wheel", "yolk"], "https://github.com/smarr/ReBench": ["humanfriendly", "psutil", "py-cpuinfo", "pykwalify", "pyyaml"], "https://github.com/Alerovere/Paleo-SL-utilities": ["matplotlib", "numpy", "pandas", "seaborn"], "https://github.com/TUDelft-CITG/OpenCLSim": ["click", "dill", "flask", "flask-cors", "matplotlib", "networkx", "nose", "numpy", "pandas", "pint", "plotly", "pyproj", "pytest", "pytest-cov", "pytest-datadir", "pytest-timeout", "scipy", "shapely", "simplekml", "simpy", "sphinx-rtd-theme"], "https://github.com/RMeli/spyrmsd": ["networkx", "numpy", "qcelemental", "scipy"], "https://github.com/dejac001/RealGas": ["chem-util", "cycler", "kiwisolver", "matplotlib", "numpy", "pyparsing", "python-dateutil", "scipy", "six", "alabaster", "babel", "certifi", "chardet", "colorama", "commonmark", "docutils", "idna", "imagesize", "jinja2", "latexcodec", "markupsafe", "oset", "packaging", "pybtex", "pybtex-docutils", "pygments", "pytz", "pyyaml", "recommonmark", "requests", "snowballstemmer", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-applehelp", "sphinxcontrib-bibtex", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "urllib3", "atomicwrites", "attrs", "flake8", "mccabe", "more-itertools", "mpmath", "pluggy", "py", "pycodestyle", "pyflakes", "pytest", "sympy", "wcwidth"], "https://github.com/SciCrunch/resource_disambiguator": ["bnlp:bnlpkit", "bnlp:bnlpkit-models", "bnlp:commonlib", "bnlp:guilib", "bnlp:jsvmlight", "bnlp:mallet", "bnlp:mallet-deps", "cc.mallet:mallet", "com.google.inject.extensions:guice-persist", "com.google.inject.extensions:guice-servlet", "com.google.inject:guice", "com.thoughtworks.xstream:xstream", "commons-cli:commons-cli", "commons-logging:commons-logging", "commons-net:commons-net", "edu.stanford.nlp:stanford-corenlp-models", "edu.stanford.nlp:stanford-parser", "jcckit:jcckit", "junit:junit", "log4j:log4j", "mysql:mysql-connector-java", "net.sf.trove4j:trove4j", "org.apache.ant:ant", "org.apache.commons:commons-digester3", "org.apache.httpcomponents:httpclient", "org.apache.opennlp:opennlp-maxent", "org.apache.opennlp:opennlp-tools", "org.apache.velocity:velocity", "org.ccil.cowan.tagsoup:tagsoup", "org.codehaus.mojo:exec-maven-plugin", "org.codehaus.mojo:hibernate3-maven-plugin", "org.hibernate:hibernate-c3p0", "org.hibernate:hibernate-core", "org.hibernate:hibernate-entitymanager", "org.hibernate:hibernate-validator", "org.jdom:jdom", "org.json:json", "org.jsoup:jsoup", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "org.unitils:unitils-core", "org.unitils:unitils-mock", "org.xerial:sqlite-jdbc", "oro:oro", "postgresql:postgresql", "trove:trove"], "https://github.com/rraadd88/htsimaging": ["argh", "numba", "pandas", "pims", "rohan", "scikit-image", "statsmodels", "tensorflow", "trackpy"], "https://github.com/etiennebresciani/wellradpy": ["numpy", "scipy"], "https://github.com/blsqr/paramspace": ["numpy", "pytest", "pytest-cov", "ruamel-yaml", "tox", "xarray"], "https://github.com/FInAT/FInAT": ["numpy", "symengine", "sympy"], "https://github.com/hovo1990/GROM": ["pyenchant"], "https://github.com/scikit-learn/scikit-learn": ["matplotlib", "pandas", "scikit-image", "scikit-learn", "sphinx-gallery"], "https://github.com/covid-lncc/pydemic": ["attrs", "invoke", "ipython", "jupyter", "jupytext", "matplotlib", "nbextensions", "notebook", "numba", "numpy", "openpyxl", "pandas", "pygmo", "pymc3", "scipy", "tqdm", "altair", "codecov", "covid19py", "pre-commit", "pytest", "pytest-cov", "pytest-lazy-fixture", "pytest-regressions", "pytest-xdist", "twine"], "https://github.com/pvlib/pvlib-python": ["nose", "numpy", "pandas", "pytest", "pytest-cov", "pytest-mock", "pytest-remotedata", "pytest-rerunfailures", "pytest-timeout", "pytz", "requests", "scipy"], "https://github.com/phenoscape/phenoday-reasoning-paper": ["net.alchim31.maven:scala-maven-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.dstovall:onejar-maven-plugin", "org.eclipse.m2e:lifecycle-mapping", "org.phenoscape:kb-owl-tools", "org.phenoscape:presence-absence-matrix", "org.scala-lang:scala-library"], "https://github.com/norawebbwilliams/images_as_data": ["matplotlib", "pandas", "pillow", "torch", "torchvision"], "https://github.com/filips123/ZeroFramePy": ["websocket-client"], "https://github.com/sisinflab-swot/ldp-coap-framework": ["com.dev-smart:ubjson", "commons-io:commons-io", "de.undercouch:bson4jackson", "junit:junit", "org.apache.commons:commons-compress", "org.apache.marmotta:marmotta-util-rdfpatch-rdf4j", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.eclipse.californium:californium-core-ldp", "org.eclipse.californium:element-connector", "org.eclipse.rdf4j:rdf4j-repository-sail", "org.eclipse.rdf4j:rdf4j-rio-jsonld", "org.eclipse.rdf4j:rdf4j-sail-memory", "org.json:json", "org.msgpack:jackson-dataformat-msgpack", "org.slf4j:slf4j-simple", "it.poliba.sisinflab:ldp-coap-core", "org.eclipse.californium:californium-proxy-ldp", "com.pi4j:pi4j-core"], "https://github.com/pablormier/yabox": ["numpy", "pytest", "pytest-pep8"], "https://github.com/TomDemeranville/orcid-update-java": ["com.fasterxml.jackson.core:jackson-databind", "com.fasterxml.jackson.datatype:jackson-datatype-guava", "com.google.appengine:appengine-api-1.0-sdk", "com.google.appengine:appengine-api-stubs", "com.google.appengine:appengine-maven-plugin", "com.google.appengine:appengine-testing", "com.google.guava:guava", "com.google.inject:guice", "javax.servlet:servlet-api", "jstl:jstl", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-war-plugin", "org.jsoup:jsoup", "org.restlet.gae:org.restlet", "org.restlet.gae:org.restlet.ext.jackson", "org.restlet.gae:org.restlet.ext.jaxb", "org.restlet.gae:org.restlet.ext.json", "org.restlet.gae:org.restlet.ext.net", "org.restlet.gae:org.restlet.ext.servlet", "org.seleniumhq.selenium:selenium-java", "org.webjars:bootstrap", "org.webjars:datatables", "org.webjars:datatables-plugins", "org.webjars:html5shiv", "org.webjars:jquery-placeholder", "org.webjars:respond", "org.webjars:typeaheadjs", "uk.bl:orcid-java-client"], "https://github.com/pysal/region": ["geopandas", "libpysal", "networkx", "numpy", "pulp", "pytest", "scipy", "sklearn"], "https://github.com/yogo/VOEIS": ["aaronh-chronic", "activerecord", "apotomo", "capistrano", "cells", "compass", "dm-is-versioned", "dm-rest-adapter", "dm-timestamps", "dm-validations", "dm-visualizer", "exception_notification", "geonames", "haml", "i18n", "jquery-rails", "mime-types", "nokogiri", "rails", "rails_warden", "rake", "responders", "resque", "roo", "rql", "rserve-simpler", "rspec", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec-rails", "rvm-capistrano", "test-unit", "therubyracer", "uuidtools", "yard", "yardstick", "yogo-framework", "yogo-project", "abstract", "actionmailer", "actionpack", "activemodel", "activeresource", "activesupport", "addressable", "archive-tar-minitar", "arel", "backports", "bcrypt-ruby", "builder", "carrierwave", "choice", "chunky_png", "columnize", "configatron", "dataflow", "data_mapper", "data_objects", "diff-lcs", "dm-active_model", "dm-adjust", "dm-aggregates", "dm-constraints", "dm-core", "dm-do-adapter", "dm-is-list", "dm-is-remixable", "dm-migrations", "dm-postgres-adapter", "dm-rails", "dm-serializer", "dm-sqlite-adapter", "dm-transactions", "dm-types", "do_jdbc", "do_postgres", "do_sqlite3", "erubis", "execjs", "facets", "faraday", "fastercsv", "fssm", "git", "google-spreadsheet-ruby", "has_scope", "highline", "hoe", "hooks", "jdbc-postgres", "jdbc-sqlite3", "jeweler", "json", "linecache19", "log4r", "mail", "monkey-lib", "multipart-post", "multi_json", "net-scp", "net-sftp", "net-ssh", "net-ssh-gateway", "oauth", "oauth2", "onfire", "polyglot", "rack", "rack-mount", "rack-test", "racksh", "railties", "redis", "redis-namespace", "rserve-client", "ruby-debug-base19", "ruby-debug19", "ruby-graphviz", "ruby-ole", "rubyzip", "ruby_core_source", "sass", "sinatra", "sinatra-advanced-routes", "sinatra-reloader", "sinatra-sugar", "spreadsheet", "stringex", "therubyrhino", "therubyrhino_jar", "thor", "tilt", "todonotes", "treetop", "tzinfo", "vegas", "warden", "yamler", "yogo-operation", "yogo-support"], "https://github.com/krassowski/data-vault": ["ipython", "pandas", "@babel/preset-env", "@jupyterlab/application", "@jupyterlab/testutils", "@krassowski/jupyterlab-lsp", "@types/chai", "@types/jest", "chai", "jest", "ts-jest", "typescript", "numpy", "codecov", "pytest", "pytest-cov"], "https://github.com/ENCODE-DCC/croo": ["autouri", "caper", "graphviz", "miniwdl"], "https://github.com/jaisenbe58r/MLearner": ["catboost", "codacy-coverage", "emoji", "flask", "hyperopt", "lightgbm", "matplotlib", "mkdocs", "numpy", "pandas", "pytest", "pytest-cov", "scikit-learn", "scipy", "seaborn", "shap", "tqdm", "xgboost"], "https://github.com/dave-heslop74/vMF_Sites": ["appmode", "ipython", "ipywidgets", "jupyter-contrib-nbextensions", "matplotlib", "numpy", "pandas", "pandas-datareader", "qgrid"], "https://github.com/biomedia-mira/blast-ct": ["numpy", "pandas", "scipy", "simpleitk", "tensorboard", "torch"], "https://github.com/NREL/bifacial_radiance": ["atomicwrites", "attrs", "colorama", "configparser", "coverage", "cycler", "future", "idna", "importlib-metadata", "ipython", "kiwisolver", "matplotlib", "more-itertools", "numpy", "pandas", "pluggy", "pvlib", "pvmismatch", "py", "pyparsing", "pytest", "pytest-cov", "python-dateutil", "pytz", "requests", "six", "sphinx-autoapi", "sphinx-rtd-theme"], "https://github.com/kundajelab/deeplift": ["numpy", "tensorflow", "tensorflow-gpu"], "https://github.com/embodied-computation-group/systole": ["matplotlib", "numpy", "pandas", "plotly", "plotly-express", "pyserial", "scipy", "seaborn", "py-ecg-detectors"], "https://github.com/terraref/terraref.github.io": ["jekyll", "jekyll-sitemap", "octopress", "rouge", "colorator", "ffi", "jekyll-sass-converter", "jekyll-watch", "kramdown", "liquid", "listen", "mercenary", "octopress-deploy", "octopress-escape-code", "octopress-hooks", "rb-fsevent", "rb-inotify", "redcarpet", "safe_yaml", "sass", "titlecase", "grunt", "grunt-contrib-clean", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-svgmin"], "https://github.com/astorfi/TensorFlow-World": ["matplotlib", "numpy", "pandas", "python-coveralls", "scikit-image", "scikit-learn", "scipy", "tensorflow", "xlrd"], "https://github.com/TheLartians/Expresso": ["nose"], "https://github.com/bionode/fasta-parser": ["bl", "browserify", "coveralls", "dependency-check", "docco", "istanbul", "pumpify", "split", "standard", "tap-spec", "tape", "testling", "through2", "uglify-js"], "https://github.com/UCL/scikit-surgeryfred": ["coverage", "mock", "parameterized", "pyfakefs", "pyinstaller", "pylint", "pytest", "sphinx", "sphinx-rtd-theme", "tox", "ipykernel", "matplotlib", "nbsphinx", "numpy", "scikit-image", "scikit-surgerycore", "scipy"], "https://github.com/neurolib-dev/neurolib": ["chspy", "deap", "dill", "dpath", "h5py", "jitcdde", "numba", "numpy", "pandas", "psutil", "pypet", "scipy", "symengine", "sympy", "tqdm", "xarray"], "https://github.com/hyperwell/playground": ["@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@babel/polyfill", "@babel/runtime", "@polka/url", "@recogito/recogito-client-core", "@recogito/recogito-js", "@rollup/plugin-commonjs", "@rollup/plugin-node-resolve", "@rollup/pluginutils", "@types/color-name", "@types/estree", "@types/node", "@types/q", "@types/resolve", "acorn", "alphanum-sort", "ansi-regex", "ansi-styles", "anymatch", "argparse", "async-limiter", "axios", "big.js", "binary-extensions", "boolbase", "braces", "browserslist", "buffer-from", "builtin-modules", "caller-callsite", "caller-path", "callsites", "caniuse-api", "caniuse-lite", "chalk", "chokidar", "coa", "color", "color-convert", "color-name", "color-string", "commander", "compute-scroll-into-view", "concat-with-sourcemaps", "console-clear", "core-js", "cosmiconfig", "css-color-names", "css-declaration-sorter", "css-modules-loader-core", "css-select", "css-select-base-adapter", "css-selector-tokenizer", "css-tree", "css-what", "cssesc", "cssnano", "cssnano-preset-default", "cssnano-util-get-arguments", "cssnano-util-get-match", "cssnano-util-raw-cache", "cssnano-util-same-parent", "csso", "csstype", "debug", "define-properties", "dom-helpers", "dom-serializer", "domelementtype", "domutils", "dot-prop", "downshift", "electron-to-chromium", "emojis-list", "entities", "error-ex", "es-abstract", "es-to-primitive", "escalade", "escape-string-regexp", "esprima", "estree-walker", "eventemitter3", "fast-deep-equal", "fastparse", "fill-range", "follow-redirects", "for-each", "fsevents", "function-bind", "generic-names", "get-port", "glob-parent", "has", "has-ansi", "has-flag", "has-symbols", "hex-color-regex", "hsl-regex", "hsla-regex", "html-comment-regex", "icss-replace-symbols", "import-cwd", "import-fresh", "import-from", "indexes-of", "is-absolute-url", "is-arrayish", "is-binary-path", "is-callable", "is-color-stop", "is-date-object", "is-directory", "is-extglob", "is-glob", "is-module", "is-negative-zero", "is-number", "is-obj", "is-reference", "is-regex", "is-resolvable", "is-svg", "is-symbol", "jest-worker", "js-tokens", "js-yaml", "json-parse-better-errors", "json5", "kleur", "livereload", "livereload-js", "loader-utils", "local-access", "lodash.camelcase", "lodash.memoize", "lodash.uniq", "loose-envify", "magic-string", "mdn-data", "merge-stream", "micromatch", "mime", "minimist", "mkdirp", "mri", "ms", "node-polyglot", "node-releases", "normalize-path", "normalize-url", "nth-check", "object-assign", "object-inspect", "object-keys", "object.assign", "object.getownpropertydescriptors", "object.values", "opts", "p-finally", "p-queue", "p-timeout", "parse-json", "path-parse", "picomatch", "pify", "postcss", "postcss-calc", "postcss-colormin", "postcss-convert-values", "postcss-discard-comments", "postcss-discard-duplicates", "postcss-discard-empty", "postcss-discard-overridden", "postcss-load-config", "postcss-merge-longhand", "postcss-merge-rules", "postcss-minify-font-values", "postcss-minify-gradients", "postcss-minify-params", "postcss-minify-selectors", "postcss-modules", "postcss-modules-extract-imports", "postcss-modules-local-by-default", "postcss-modules-scope", "postcss-modules-values", "postcss-normalize-charset", "postcss-normalize-display-values", "postcss-normalize-positions", "postcss-normalize-repeat-style", "postcss-normalize-string", "postcss-normalize-timing-functions", "postcss-normalize-unicode", "postcss-normalize-url", "postcss-normalize-whitespace", "postcss-ordered-values", "postcss-reduce-initial", "postcss-reduce-transforms", "postcss-selector-parser", "postcss-svgo", "postcss-unique-selectors", "postcss-value-parser", "preact", "promise.series", "prop-types", "q", "randombytes", "react-contenteditable", "react-is", "react-transition-group", "readdirp", "recogito-web-annotation-adapter", "regenerator-runtime", "require-relative", "resolve", "resolve-from", "rgb-regex", "rgba-regex", "rollup", "rollup-plugin-livereload", "rollup-plugin-postcss", "rollup-plugin-string", "rollup-plugin-svelte", "rollup-plugin-terser", "rollup-pluginutils", "sade", "safe-buffer", "safe-identifier", "sax", "serialize-javascript", "simple-swizzle", "sirv", "sirv-cli", "source-map", "source-map-support", "sourcemap-codec", "sprintf-js", "stable", "string-hash", "string.prototype.trim", "string.prototype.trimend", "string.prototype.trimstart", "strip-ansi", "style-inject", "stylehacks", "supports-color", "svelte", "svgo"], "https://github.com/pnlbwh/SlicerDiffusionQC": ["nibabel", "plumbum", "pynrrd"], "https://github.com/CORE-GATECH-GROUP/serpent-tools": ["coverage", "flake8", "ipython", "jupyter", "pandas", "pytest", "pytest-cov", "scipy", "matplotlib", "numpy", "pyyaml", "sphinx"], "https://github.com/morganjwilliams/pyrolite-meltsutil": ["coverage", "coveralls", "dicttoxml", "psutil", "pyrolite", "pytest", "pytest-cov", "pytest-runner", "requests", "tqdm", "xmljson"], "https://github.com/rcfduarte/nmsat": ["autoprefixer", "babel-core", "babel-eslint", "babel-loader", "babel-plugin-add-module-exports", "babel-plugin-transform-react-jsx", "babel-polyfill", "babel-preset-es2015", "babel-register", "babel-root-import", "chalk", "core-js", "css-mqpacker", "custom-event-polyfill", "del", "ecstatic", "escape-string-regexp", "eslint", "fastclick", "flow-bin", "flow-jsdoc", "git-hooks", "gulp", "gulp-changed", "gulp-concat", "gulp-cssnano", "gulp-htmlmin", "gulp-if", "gulp-ignore", "gulp-modernizr", "gulp-plumber", "gulp-postcss", "gulp-remove-empty-lines", "gulp-replace", "gulp-rev", "gulp-rev-replace", "gulp-sass", "gulp-sourcemaps", "gulp-stylelint", "gulp-svgmin", "gulp-uglify", "gulp-util", "js-cookie", "lunr", "material-design-color", "material-shadows", "modularscale-sass", "node-notifier", "postcss-pseudo-classes", "stylelint", "stylelint-config-standard", "stylelint-order", "stylelint-scss", "through2", "vinyl-paths", "webpack", "webpack-stream", "whatwg-fetch", "yargs", "abbrev", "acorn", "acorn-dynamic-import", "acorn-jsx", "adm-zip", "agent-base", "ajv", "ajv-keywords", "aliasify", "align-text", "alphanum-sort", "amdefine", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "aproba", "archiver", "archy", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "array-differ", "array-filter", "array-find-index", "array-map", "array-reduce", "array-union", "array-uniq", "array-unique", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "astw", "async", "async-each", "async-foreach", "asynckit", "atob", "aws-sign2", "aws4", "babel-code-frame", "babel-generator", "babel-helper-builder-react-jsx", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-replace-supers", "babel-helpers", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-syntax-jsx", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "base64-js", "bcrypt-pbkdf", "beeper", "big.js", "binary-extensions", "binaryextensions", "bl", "block-stream", "bluebird", "bluebird-q", "bn.js", "boom", "brace-expansion", "braces", "brorand", "browser-pack", "browser-resolve", "browserify", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-transform-tools", "browserify-zlib", "browserslist", "buffer", "buffer-crc32", "buffer-shims", "buffer-xor", "bufferstreams", "builtin-modules", "builtin-status-codes", "cached-path-relative", "caller-path", "callsites", "camel-case", "camelcase", "camelcase-keys", "caniuse-api", "caniuse-db", "caseless", "center-align", "chokidar", "cipher-base", "circular-json", "clap", "clean-css", "cli-cursor", "cli-width", "clipboard", "cliui", "clone", "clone-buffer", "clone-regexp", "clone-stats", "cloneable-readable", "co", "coa", "code-point-at", "collections", "color", "color-convert", "color-diff", "color-name", "color-string", "colorguard", "colormin", "colors", "combine-source-map", "combined-stream", "commander", "commondir", "compress-commons", "concat-map", "concat-stream", "concat-with-sourcemaps", "console-browserify", "console-control-strings", "constants-browserify", "convert-source-map", "core-util-is", "cosmiconfig", "crc32-stream", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "cryptiles", "crypto-browserify", "css", "css-color-names", "css-rule-stream", "css-tokenize", "cssnano", "csso", "ctype", "currently-unhandled", "customizr", "d", "dashdash", "date-now", "dateformat", "debug", "debug-fabulous", "decamelize", "deep-equal", "deep-extend", "deep-is", "defaults", "defined", "delayed-stream", "delegate", "delegates", "deprecated", "deps-sort", "des.js", "detect-file", "detect-indent", "detect-newline", "detective", "diffie-hellman", "doctrine", "doiuse", "domain-browser", "duplexer", "duplexer2", "duplexify", "ecc-jsbn", "electron-to-chromium", "elliptic", "emojis-list", "encoding", "end-of-stream", "enhanced-resolve", "errno", "error-ex", "es5-ext", "es6-iterator", "es6-map", "es6-set", "es6-symbol", "es6-weak-map"], "https://github.com/midas-isg/PITT-Anthrax-model": ["commons-codec:commons-codec", "junit:junit", "log4j:log4j", "org.apache.commons:commons-lang3", "org.apache.commons:commons-math", "org.apache.maven.plugins:maven-compiler-plugin"], "https://github.com/gmiaslab/pyiomica": ["appdirs", "h5py", "matplotlib", "networkx", "numba", "numpy", "openpyxl", "pandas", "pymysql", "requests", "scikit-learn", "scipy", "tables", "xlsxwriter", "autodocsumm", "sphinx", "sphinxcontrib-images"], "https://github.com/MarcoMuellner/SMURFS": ["astropy", "astroquery", "bokeh", "eleanor", "jupyter", "lightkurve", "lmfit", "matplotlib", "nbsphinx", "numpy", "pandas", "pyfcomb", "pytest", "recommonmark", "scipy", "sphinx-rtd-theme", "tess-point", "uncertainties", "eleanor-mamu", "sphinx", "sphinx-argparse", "sphinx-autodoc-typehints"], "https://github.com/MrLogarithm/pe-pc-datasets-interface": ["matplotlib"], "https://github.com/raamana/neuropredict": ["confounds", "matplotlib", "nibabel", "numpy", "pyradigm", "scipy", "setuptools", "sklearn", "xgboost", "scikit-learn", "numpydoc", "sphinx-argparse"], "https://github.com/bartongroup/2passtools": ["click", "click-log", "ncls", "numpy", "pysam", "scikit-learn"], "https://github.com/earthserver-eu/INSPIRE-notebooks": ["netcdf4", "numpy"], "https://github.com/aderidder/iCRFGenerator": ["org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-antrun-plugin", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.poi:poi", "org.apache.poi:poi-ooxml", "org.codehaus.mojo:exec-maven-plugin", "org.controlsfx:controlsfx", "org.openjfx:javafx-controls"], "https://github.com/jfal027/Moodify": ["bootstrap", "jquery"], "https://github.com/jyrkioraskari/OnlineMvdXMLChecker": ["com.fasterxml.jackson.core:jackson-databind", "com.google.guava:guava", "commons-io:commons-io", "javax.vecmath:vecmath", "org.apache.maven.plugins:maven-enforcer-plugin", "org.jogamp.gluegen:gluegen-rt-main", "org.jogamp.jogl:jogl-all-main", "org.lwjgl:lwjgl", "org.opensourcebim:ifcplugins", "org.slf4j:slf4j-api", "com.vaadin:vaadin-bom", "com.vaadin:vaadin-client-compiled", "com.vaadin:vaadin-maven-plugin", "com.vaadin:vaadin-push", "com.vaadin:vaadin-server", "com.vaadin:vaadin-themes", "de.rwth-aachen.dc.mvd:mvdXMLCheckerCore1dot1", "de.rwth-aachen.dc.mvd:mvdXMLCheckerCore1dot2", "de.rwth-aachen.dc.mvd:mvdXMLCheckerCore1underscore1", "javax.servlet:javax.servlet-api", "org.apache.maven.plugins:maven-clean-plugin", "org.apache.maven.plugins:maven-war-plugin", "org.eclipse.jetty:jetty-maven-plugin", "com.h2database:h2", "com.webcohesion.enunciate:enunciate-maven-plugin", "javax.ws.rs:javax.ws.rs-api", "org.apache.tomcat:tomcat-servlet-api", "org.glassfish.jersey.containers:jersey-container-servlet", "org.glassfish.jersey.core:jersey-client", "org.glassfish.jersey.core:jersey-server", "org.glassfish.jersey.ext:jersey-bean-validation", "org.glassfish.jersey.inject:jersey-hk2", "org.glassfish.jersey.media:jersey-media-json-jackson", "org.glassfish.jersey.media:jersey-media-moxy", "org.glassfish.jersey.media:jersey-media-multipart", "org.hibernate:hibernate-core", "commons-codec:commons-codec", "de.rwth-aachen.dc.mvd:mvdXMLCheckerCommon", "org.antlr:antlr-runtime", "org.eclipse.emf:org.eclipse.emf.common", "org.eclipse.emf:org.eclipse.emf.ecore", "org.eclipse.emf:org.eclipse.emf.ecore.xmi", "org.opensourcebim:bcf", "org.opensourcebim:bimserver", "org.opensourcebim:bimserverclientlib", "org.opensourcebim:shared", "commons-cli:commons-cli"], "https://github.com/rjleveque/ptha_rog": ["ipywidgets", "matplotlib", "numpy"], "https://github.com/GeoStat-Framework/pentapy": ["numpy", "cython", "setuptools", "setuptools-scm", "pytest", "pytest-cov", "numpydoc"], "https://github.com/GhostofGoes/ADLES": ["colorlog", "humanfriendly", "pyvmomi", "pyyaml", "tqdm", "pytest", "pytest-cov", "pytest-mock", "pytest-randomly"], "https://github.com/castelao/pyWOA": ["filelock", "netcdf4", "numpy", "scipy", "pytest", "wheel"], "https://github.com/pynbody/pynbody": ["cython", "h5py", "matplotlib", "nose", "numpy", "pandas", "posix-ipc", "scipy"], "https://github.com/MicroPasts/magicMountain": ["pybossa-client"], "https://github.com/intake/intake-esm": ["dask", "fastprogress", "fsspec", "intake", "requests", "xarray", "gcsfs", "jupyterlab", "matplotlib", "nbsphinx", "netcdf4", "numcodecs", "pydata-sphinx-theme", "pygments", "setuptools", "sphinx", "watermark", "zarr"], "https://github.com/harnesscloud/2015-07-15-feltham": ["nose", "pyyaml"], "https://github.com/hfsf/sloth": ["assimulo", "cython", "matplotlib", "mpmath", "numba", "numexpr", "numpy", "pandas", "prettytable", "pygmo", "pyneqsys", "pytest", "scipy", "sphinx-rtd-theme", "sympy", "thermo", "numpydoc", "pygraphviz"], "https://github.com/histogrammar/histogrammar-scala": ["net.alchim31.maven:scala-maven-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.scala-lang:scala-library", "org.scala-tools:maven-scala-plugin", "org.scalatest:scalatest-maven-plugin", "org.scalatest:scalatest_2.10", "io.continuum.bokeh:bokeh_2.10", "org.diana-hep:histogrammar_2.10", "org.apache.spark:spark-sql_2.10"], "https://github.com/LandscapeGeoinformatics/EstSoil-EH_sw_supplement": ["affine", "alabaster", "altair", "appdirs", "arpeggio", "arrow-cpp", "asn1crypto", "astroid", "attrs", "autopep8", "babel", "backcall", "blas", "bleach", "bokeh", "boost", "boost-cpp", "branca", "bzip2", "ca-certificates", "cachetools", "cartopy", "certifi", "cffi", "chardet", "click", "click-plugins", "cligj", "cloudpickle", "colorama", "cryptography", "curl", "cycler", "cytoolz", "dask", "dask-core", "decorator", "defusedxml", "descartes", "distributed", "doc8", "docutils", "entrypoints", "expat", "fastcache", "fiona", "folium", "freetype", "freexl", "gdal", "geographiclib", "geojson", "geopandas", "geoplot", "geopy", "geos", "geotiff", "gettext", "gflags", "glib", "glog", "gmaps", "google-api-core", "google-auth", "google-cloud-core", "google-cloud-translate", "googleapis-common-protos", "hdf4", "hdf5", "heapdict", "icc-rt", "icu", "idna", "imagesize", "intel-openmp", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "isort", "jedi", "jinja2", "jpeg", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "jupyterthemes", "kealib", "keyring", "kiwisolver", "krb5", "lazy-object-proxy", "lesscpy", "libcurl", "libffi", "libflang", "libgdal", "libiconv", "libkml", "libnetcdf", "libpng", "libpq", "libsodium", "libspatialindex", "libspatialite", "libssh2", "libtiff", "libxml2", "libxslt", "llvm-meta", "locket", "lxml", "m2w64-expat", "m2w64-gcc-libgfortran", "m2w64-gcc-libs", "m2w64-gcc-libs-core", "m2w64-gettext", "m2w64-gmp", "m2w64-libiconv", "m2w64-libwinpthread-git", "m2w64-xz", "markupsafe", "matplotlib", "matplotlib-base", "mccabe", "mistune", "mkl", "mkl-fft", "mkl-random", "mpmath", "msgpack-python", "msys2-conda-epoch", "munch", "mypy", "mypy-extensions", "nbconvert", "nbformat", "networkx", "notebook", "numpy", "numpy-base", "numpydoc", "olefile", "openblas", "openjpeg", "openmp", "openssl", "owslib", "packaging", "pandas", "pandoc", "pandocfilters", "parquet-cpp", "parso", "partd", "patsy", "pbr", "pcre", "pickleshare", "pillow", "pip", "ply", "pooch", "poppler", "poppler-data", "postgresql", "proj4", "prometheus-client", "prompt-toolkit", "protobuf", "psutil", "psycopg2", "py4j", "pyarrow", "pyasn1", "pyasn1-modules", "pycodestyle", "pycparser", "pyepsg", "pyflakes", "pygments", "pykdtree", "pylint", "pyopenssl", "pyparsing", "pyproj", "pyqt", "pysal", "pyshp", "pysocks", "python", "python-dateutil", "pytz", "pywin32-ctypes", "pywinpty", "pyyaml", "pyzmq", "qt", "qtawesome", "qtconsole", "qtpy", "rasterio", "rasterstats", "requests", "restructuredtext-lint", "rope", "rsa", "rtree", "scikit-learn", "scipy", "seaborn", "send2trash", "setuptools", "shapely", "simplejson", "sip", "six", "snappy", "snowballstemmer", "snuggs", "sortedcontainers", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-websupport", "spyder", "spyder-kernels", "sqlalchemy", "sqlite", "statsmodels", "stevedore", "sympy", "tblib", "terminado", "testpath", "tk", "toolz", "tornado", "traitlets", "typed-ast", "typing", "urllib3", "vc", "verde", "vincent", "vs2015-runtime", "wcwidth", "webencodings", "wheel"], "https://github.com/chienchi/amplicon_coverage_plot": ["csv", "defaultdict", "numpy", "pathlib", "plotly", "pysam", "subprocess"], "https://github.com/cmohl2013/permutation_test": ["nose", "numpy", "pandas"], "https://github.com/mrtommyb/ktransit": ["matplotlib", "numpy", "scipy"], "https://github.com/midas-isg/digital-commons": ["com.auth0:auth0-spring-security-mvc", "com.fasterxml.jackson.dataformat:jackson-dataformat-csv", "com.googlecode.json-simple:json-simple", "com.mangofactory:swagger-springmvc", "com.thoughtworks.xstream:xstream", "commons-io:commons-io", "edu.pitt.isg:mdc-xsd-and-tools", "javax.mail:mail", "javax.ws.rs:javax.ws.rs-api", "jstl:jstl", "org.ajar:swagger-spring-mvc-ui", "org.apache.httpcomponents:httpclient", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.tomcat.embed:tomcat-embed-jasper", "org.assertj:assertj-core", "org.eclipse.jetty:jetty-util", "org.hibernate:hibernate-ehcache", "org.jsoup:jsoup", "org.postgresql:postgresql", "org.projectlombok:lombok", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-data-jpa", "org.springframework.boot:spring-boot-starter-data-rest", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-tomcat", "org.springframework.boot:spring-boot-starter-web", "org.springframework.webflow:spring-webflow", "org.springframework.ws:spring-xml", "org.springframework:spring-context-support", "org.springframework:spring-oxm", "requests", "beautifulsoup4", "python-dateutil", "unidecode", "xmltodict"], "https://github.com/hipster-philology/greek-lemmatization-data": ["greek-normalisation", "lxml"], "https://github.com/soil-physics-okstate/automated_soil_moisture_mapping": ["basemap", "cycler", "cython", "matplotlib", "mock", "netcdf4", "nose", "numpy", "pandas", "patsy", "pbr", "psycopg2", "pyparsing", "pyproj", "python-dateutil", "pytz", "scipy", "six", "sqlalchemy", "statsmodels", "wsgiref", "xlrd"], "https://github.com/QInfer/python-qinfer": ["coveralls", "future", "ipython", "numpy", "pylint", "pytest", "pytest-cov", "pytest-xdist", "scikit-learn", "scipy", "matplotlib", "mpltools", "qutip"], "https://github.com/inodb/sufam": ["numpy", "pandas", "pyvcf"], "https://github.com/LiberalHD/gudagudaACG": ["com.mchange:c3p0", "javax.servlet:javax.servlet-api", "junit:junit", "mysql:mysql-connector-java", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.struts:struts2-core", "org.apache.struts:struts2-spring-plugin", "org.apache.tomcat.maven:tomcat9-maven-plugin", "org.aspectj:aspectjweaver", "org.eclipse.jetty:jetty-maven-plugin", "org.glassfish.web:jstl-impl", "org.hibernate:hibernate-core", "org.springframework:spring-core", "org.springframework:spring-orm", "org.springframework:spring-web"], "https://github.com/bihealth/scelvis": ["dash", "ipdb", "twine", "attrs", "botocore", "dash-bootstrap-components", "dash-core-components", "dash-html-components", "dash-renderer", "dash-table", "flask-caching", "fs", "fs-sshfs", "h5py", "htmllistparse", "logzero", "loompy", "numpy", "pandas", "plotly", "pyopenssl", "python-irodsclient", "requests", "ruamel-yaml", "s3fs", "scanpy", "sphinx", "sphinx-rtd-theme", "codacy-coverage", "coverage", "flake8", "pygments", "pytest", "pytest-cache", "pytest-cov", "pytest-runner", "tox", "black"], "https://github.com/SommerEngineering/Encrypter": ["Microsoft.NET.Test.Sdk", "nunit", "NUnit3TestAdapter"], "https://github.com/CellMigStandOrg/Tracks": ["github-pages"], "https://github.com/dr-rodriguez/AstrodbWeb": ["astrodbkit", "astropy", "bokeh", "flask", "matplotlib", "numpy", "pandas"], "https://github.com/iamdamion/grepCIRCLE": ["matplotlib", "mne", "numpy", "pandas", "scipy"], "https://github.com/Olllom/lettuce": ["click", "matplotlib", "numpy", "pyevtk", "pytest", "torch", "coverage", "flake8", "pip", "pytest-runner", "sphinx", "tox", "twine", "watchdog", "wheel"], "https://github.com/bjpop/lynch_gatk": ["drmaa", "pyyaml", "ruffus"], "https://github.com/jGaboardi/pp2n": ["geopandas", "libpysal", "numpy", "pandas", "scipy"], "https://github.com/atrisovic/weather-panel.github.io": ["github-pages", "guard", "guard-jekyll-plus", "guard-livereload", "jekyll-feed", "jekyll-redirect-from", "jekyll-scholar", "tzinfo-data", "activesupport", "addressable", "bibtex-ruby", "citeproc", "citeproc-ruby", "coderay", "coffee-script", "coffee-script-source", "colorator", "commonmarker", "concurrent-ruby", "csl", "csl-styles", "dnsruby", "em-websocket", "ethon", "eventmachine", "execjs", "faraday", "ffi", "formatador", "forwardable-extended", "gemoji", "github-pages-health-check", "guard-compat", "html-pipeline", "http_parser.rb", "i18n", "jekyll", "jekyll-avatar", "jekyll-coffeescript", "jekyll-commonmark", "jekyll-commonmark-ghpages", "jekyll-default-layout", "jekyll-gist", "jekyll-github-metadata", "jekyll-mentions", "jekyll-optional-front-matter", "jekyll-paginate", "jekyll-readme-index", "jekyll-relative-links", "jekyll-remote-theme", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-swiss", "jekyll-theme-architect", "jekyll-theme-cayman", "jekyll-theme-dinky", "jekyll-theme-hacker", "jekyll-theme-leap-day", "jekyll-theme-merlot", "jekyll-theme-midnight", "jekyll-theme-minimal", "jekyll-theme-modernist", "jekyll-theme-primer", "jekyll-theme-slate", "jekyll-theme-tactile", "jekyll-theme-time-machine", "jekyll-titles-from-headings", "jekyll-watch", "jemoji", "kramdown", "latex-decode", "liquid", "listen", "lumberjack", "mercenary", "method_source", "minima", "minitest", "mini_portile2", "multipart-post", "multi_json", "namae", "nenv", "nokogiri", "notiffany", "octokit", "pathutil", "pry", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "ruby-enum", "rubyzip", "ruby_dep", "safe_yaml", "sass", "sass-listen", "sawyer", "shellany", "terminal-table", "thor", "thread_safe", "typhoeus", "tzinfo", "unicode-display_width", "ansi-colors", "ansi-gray", "ansi-regex", "ansi-wrap", "anymatch", "append-buffer", "archy", "arr-diff", "arr-filter", "arr-flatten", "arr-map", "arr-union", "array-each", "array-initial", "array-last", "array-slice", "array-sort", "array-union", "array-uniq", "array-unique", "assign-symbols", "async-done", "async-each", "async-settle", "atob", "bach", "balanced-match", "base", "binary-extensions", "brace-expansion", "braces", "buffer-equal", "buffer-from", "builtin-modules", "cache-base", "camelcase", "child_process", "chokidar", "class-utils", "cliui", "clone-buffer", "cloneable-readable", "code-point-at", "collection-map", "collection-visit", "color-support", "component-emitter", "concat-map", "concat-stream", "convert-source-map", "copy-descriptor", "copy-props", "core-util-is", "d", "debug", "decamelize", "decode-uri-component", "default-compare", "default-resolution", "define-properties", "define-property", "del", "detect-file", "duplexify", "each-props", "end-of-stream", "error-ex", "es5-ext", "es6-iterator", "es6-symbol", "es6-weak-map", "expand-brackets", "expand-range", "expand-tilde", "extend", "extend-shallow", "extglob", "fancy-log", "filename-regex", "fill-range", "find-up", "findup-sync", "fined", "flagged-respawn", "flush-write-stream", "for-in", "for-own", "fragment-cache", "fs-exists-sync", "fs-mkdirp-stream", "fs.realpath", "fsevents", "function-bind", "get-caller-file", "get-value", "glob", "glob-base", "glob-parent", "glob-stream", "glob-watcher", "global-modules", "global-prefix", "globby", "glogg", "graceful-fs", "gulp", "gulp-load-plugins", "gulplog", "has-gulplog", "has-symbols", "has-value", "has-values", "homedir-polyfill", "hosted-git-info", "inflight", "inherits", "ini", "interpret", "invert-kv", "is-absolute", "is-accessor-descriptor", "is-arrayish", "is-binary-path", "is-buffer", "is-builtin-module", "is-data-descriptor", "is-descriptor", "is-dotfile", "is-equal-shallow", "is-extendable", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-negated-glob", "is-number", "is-path-cwd", "is-path-in-cwd", "is-path-inside", "is-plain-object", "is-posix-bracket", "is-primitive", "is-relative", "is-unc-path", "is-utf8", "is-windows", "isexe", "isobject", "json-stable-stringify", "jsonify", "just-debounce", "kind-of", "last-run", "lazystream", "lcid", "lead", "liftoff", "load-json-file", "lodash.debounce", "make-iterator", "map-cache", "map-visit", "matchdep", "math-random", "micromatch", "minimatch", "mixin-deep", "ms", "mute-stdout", "nan", "nanomatch", "next-tick", "normalize-package-data", "normalize-path", "now-and-later", "number-is-nan", "object-assign", "object-copy", "object-keys", "object-visit", "object.assign", "object.defaults", "object.map", "object.omit", "object.pick", "object.reduce", "once", "ordered-read-streams", "os-homedir", "os-locale", "p-map", "parse-filepath", "parse-glob", "parse-json", "parse-passwd", "pascalcase", "path-dirname", "path-exists", "path-is-absolute", "path-is-inside", "path-parse", "path-root", "path-root-regex", "path-type", "pify", "pinkie", "pinkie-promise", "posix-character-classes", "preserve", "pretty-hrtime", "process-nextick-args", "pump", "pumpify", "randomatic", "read-pkg", "read-pkg-up", "readdirp", "rechoir", "regex-cache", "regex-not", "remove-bom-buffer", "remove-bom-stream", "remove-trailing-separator", "repeat-element", "repeat-string", "replace-homedir", "require-directory", "require-main-filename", "resolve", "resolve-dir", "resolve-options", "resolve-url", "ret", "rimraf", "safe-buffer", "safe-regex", "semver", "semver-greatest-satisfied-range", "set-blocking", "set-value", "snapdragon", "snapdragon-node", "snapdragon-util", "source-map", "source-map-resolve", "source-map-url", "sparkles", "spdx-correct", "spdx-exceptions", "spdx-expression-parse", "spdx-license-ids", "datascience", "folium", "jupyter-book", "matplotlib", "nbinteract", "numpy", "pandas", "scipy"], "https://github.com/arXiv/arxiv-browse": ["aiohttp", "ansi2html", "arxiv-auth", "arxiv-base", "beautifulsoup4", "coverage", "coveralls", "dataclasses", "flask", "Flask-API", "flask-s3", "Flask-SQLAlchemy", "Flask-Testing", "flask-wtf", "geoip2", "hypothesis", "jinja2", "MarkupSafe", "mmh3", "mypy", "mypy-extensions", "mysqlclient", "nose2", "pycodestyle", "pydocstyle", "pyhamcrest", "pylama", "pylint", "pytest", "pytest-easyread", "pytest-html", "python-dateutil", "pytz", "retry", "sphinx", "sphinx-autodoc-typehints", "sqlacodegen", "SQLAlchemy", "validators", "weighted-levenshtein", "alabaster", "astroid", "async-timeout", "attrs", "babel", "backports-datetime-fromisoformat", "bleach", "boto3", "botocore", "certifi", "chardet", "click", "decorator", "docopt", "docutils", "flask-api", "flask-sqlalchemy", "flask-testing", "idna", "idna-ssl", "imagesize", "importlib-metadata", "inflect", "iniconfig", "isort", "itsdangerous", "jmespath", "jsonschema", "lazy-object-proxy", "markupsafe", "maxminddb", "mccabe", "mimesis", "more-itertools", "multidict", "packaging", "pluggy", "py", "pycountry", "pyflakes", "pygments", "pyjwt", "pyparsing", "pyrsistent", "pytest-metadata", "redis", "redis-py-cluster", "requests", "s3transfer", "six", "snowballstemmer", "sortedcontainers", "soupsieve", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "sqlalchemy", "toml", "typed-ast", "typing-extensions", "urllib3", "uwsgi", "webencodings", "werkzeug", "wrapt", "wtforms", "yarl", "zipp"], "https://github.com/clarity-h2020/map-component": ["@turf/boolean-within", "babel-polyfill", "browserslist", "csis-helpers-js", "handlebars", "history", "leaflet", "leaflet-draw", "leaflet-loading", "leaflet-providers", "leaflet.nontiledlayer", "leaflet.sync", "leaflet.wms", "loglevel", "prop-types", "query-string", "react", "react-compound-slider", "react-dom", "react-leaflet", "react-leaflet-draw", "react-leaflet-grouped-layer-control", "react-router-dom", "react-scripts", "react-styleguidist", "serve", "turf", "wicket", "xml-js", "@babel/runtime", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@sindresorhus/is", "@turf/bbox", "@turf/boolean-point-in-polygon", "@turf/boolean-point-on-line", "@turf/helpers", "@turf/invariant", "@turf/meta", "@types/q", "abab", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "acorn-globals", "acorn-jsx", "address", "affine-hull", "ajv", "ajv-errors", "ajv-keywords", "align-text", "alphanum-sort", "ansi-align", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "append-transform", "aproba", "arch", "archive-type", "are-we-there-yet", "argparse", "aria-query", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-filter", "array-find-index", "array-flatten", "array-includes", "array-map", "array-reduce", "array-union", "array-uniq", "array-unique", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-types-flow", "async", "async-each", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axobject-query", "babel-cli", "babel-code-frame", "babel-core", "babel-eslint", "babel-generator", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-builder-react-jsx", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helpers", "babel-jest", "babel-loader", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-dynamic-import-node", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-class-properties", "babel-plugin-syntax-dynamic-import", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-flow", "babel-plugin-syntax-jsx", "babel-plugin-syntax-object-rest-spread", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-class-properties", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-flow-strip-types", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-react-constant-elements", "babel-plugin-transform-react-display-name", "babel-plugin-transform-react-jsx", "babel-plugin-transform-react-jsx-self", "babel-plugin-transform-react-jsx-source", "babel-plugin-transform-regenerator", "babel-plugin-transform-runtime", "babel-plugin-transform-strict-mode", "babel-preset-env", "babel-preset-es2015", "babel-preset-flow", "babel-preset-jest", "babel-preset-react", "babel-preset-react-app", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "bin-build", "bin-check", "bin-version", "bin-version-check", "bin-wrapper", "binary-extensions", "bit-twiddle", "bl", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "boxen", "brace-expansion", "braces", "brorand", "browser-resolve", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "bser", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-crc32", "buffer-fill", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "bytes", "cache-base", "cacheable-request", "call-me-maybe", "caller-path", "callsites", "camel-case", "camelcase", "camelcase-keys", "caniuse-api", "caniuse-db", "caniuse-lite", "capture-stack-trace", "case-sensitive-paths-webpack-plugin", "caseless", "caw", "center-align", "chalk", "chardet", "chokidar", "chownr", "ci-info", "cipher-base", "circular-json", "clap", "class-utils", "clean-css", "cli-boxes", "cli-cursor", "cli-width", "cliui", "clone", "clone-response", "co", "coa", "code-point-at", "collection-visit", "color", "color-convert", "color-name", "color-string", "colormin", "colors", "combined-stream", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "config-chain", "configstore", "connect-history-api-fallback", "console-browserify", "console-control-strings", "console-stream", "constants-browserify", "contains-path"], "https://github.com/samapriya/geeup": ["beautifulsoup4", "earthengine-api", "future", "google-cloud-storage", "logzero", "lxml", "pandas", "pathlib", "psutil", "pysmartdl", "pytest", "requests", "requests-toolbelt", "retrying", "selenium", "fiona", "geopandas", "oauth2client", "pipwin", "pyproj", "shapely"], "https://github.com/fphammerle/freesurfer-stats": ["isort", "numpy", "pandas", "pylint", "pylint-import-requirements", "pytest", "pytest-cov", "zipp", "astroid", "atomicwrites", "attrs", "coverage", "importlib-metadata", "lazy-object-proxy", "mccabe", "more-itertools", "packaging", "pluggy", "py", "pyparsing", "python-dateutil", "pytz", "six", "toml", "wcwidth", "wrapt"], "https://github.com/Lagostra/exprimo": ["gputil", "imageio", "imageio-ffmpeg", "matplotlib", "numpy", "pandas", "psutil", "seaborn", "torch", "torchvision", "tqdm"], "https://github.com/kweis/acronym": ["astropy", "numpy", "pandas"], "https://github.com/iomega/zenodo-upload": ["@types/jest", "@types/node-fetch", "@types/tmp", "@types/yargs", "file-type", "hasha", "husky", "jest-sonar-reporter", "node-fetch", "tmp-promise", "tsdx", "tslib", "typedoc", "typescript", "unzipper", "yargs", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/polyfill", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/runtime-corejs3", "@babel/template", "@babel/traverse", "@babel/types", "@cnakazawa/watch", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@rollup/plugin-commonjs", "@rollup/plugin-json", "@rollup/plugin-node-resolve", "@rollup/plugin-replace", "@rollup/pluginutils", "@tokenizer/token", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/color-name", "@types/debug", "@types/eslint-visitor-keys", "@types/estree", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/json-schema", "@types/json5", "@types/node", "@types/parse-json", "@types/resolve", "@types/stack-utils", "@types/yargs-parser", "@typescript-eslint/eslint-plugin", "@typescript-eslint/experimental-utils", "@typescript-eslint/parser", "@typescript-eslint/typescript-estree", "abab", "acorn", "acorn-globals", "acorn-jsx", "acorn-walk", "ajv", "ansi-colors", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "argparse", "aria-query", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-includes", "array-unique", "array.prototype.flat", "array.prototype.flatmap", "asn1", "assert-plus", "assign-symbols", "ast-types-flow", "astral-regex", "async-limiter", "asynckit", "asyncro", "atob", "aws-sign2", "aws4", "axe-core", "axobject-query", "babel-code-frame", "babel-eslint", "babel-jest", "babel-messages", "babel-plugin-annotate-pure-calls", "babel-plugin-dev-expression", "babel-plugin-dynamic-import-node", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-plugin-macros", "babel-plugin-transform-async-to-promises", "babel-plugin-transform-rename-import", "babel-preset-jest", "babel-runtime", "babel-traverse", "babel-types", "babylon", "balanced-match", "base", "bcrypt-pbkdf", "big-integer", "binary", "bindings", "bluebird", "brace-expansion", "braces", "browser-process-hrtime", "browser-resolve", "browserslist", "bs-logger", "bser", "buffer-from", "buffer-indexof-polyfill", "buffers", "builtin-modules", "cache-base", "callsites", "camel-case", "camelcase", "caniuse-lite", "capture-exit", "caseless", "chainsaw", "chalk", "chardet", "ci-info", "class-utils", "cli-cursor", "cli-spinners", "cli-width", "cliui", "clone", "co", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "commondir", "compare-versions", "component-emitter", "concat-map", "confusing-browser-globals", "contains-path", "convert-source-map", "copy-descriptor", "core-js", "core-js-compat", "core-js-pure", "core-util-is", "cosmiconfig", "cross-spawn", "cssom", "cssstyle", "damerau-levenshtein", "dashdash", "data-urls"], "https://github.com/mirca/maoud": ["numpy", "pytest", "pytest-cov", "scipy", "tensorflow"], "https://github.com/castelao/maud": ["distribute", "numpy", "cython", "flake8", "netcdf4", "pip", "pytest", "tox", "wheel"], "https://github.com/cwfparsonson/soa_driving": ["cycler", "deap", "kiwisolver", "matplotlib", "numpy", "pyparsing", "python-dateutil", "pyvisa", "scipy", "six", "pandas", "nb2plots", "sphinx", "sphinx-rtd-theme"], "https://github.com/luphysics/PyMODAlib": ["asyncprocessscheduler", "chdir", "matplotlib", "numpy", "scipy", "sphinx", "sphinxcontrib-apidoc"], "https://github.com/piazentin/ksets": ["junit:junit"], "https://github.com/tgbugs/inferno": ["docopt", "pywin32"], "https://github.com/jGaboardi/non-duplicated-intersects": ["geopandas", "matplotlib"], "https://github.com/rochefort-lab/fissa": ["flake8", "imageio", "nbsmoke", "pytest", "pytest-cov", "pytest-flake8", "future", "numpy", "pillow", "read-roi", "scikit-image", "scikit-learn", "scipy", "shapely", "tifffile", "sphinx", "sphinx-autobuild", "sphinx-rtd-theme", "holoviews", "ipython", "jupyter", "matplotlib", "panel"], "https://github.com/qutip/qutip": ["cython", "numpy", "scipy"], "https://github.com/RomainBey/stratified-cross-validation": ["jupyter", "python"], "https://github.com/XENON1T/pax": ["flake8", "matplotlib", "mock", "msgpack-python", "multihist", "numba", "numexpr", "numpy", "pandas", "prettytable", "psutil", "pymongo", "python-snappy", "pytz", "rabbitpy", "scikit-learn", "scipy", "setuptools", "six", "tqdm", "wheel"], "https://github.com/indralab/adeft": ["flask", "nltk", "requests", "scikit-learn", "wget", "sphinx", "sphinx-rtd-theme"], "https://github.com/polsys/ennemi": ["numpy", "scipy"], "https://github.com/gmierz/pupil-lib": ["cycler", "frozendict", "matplotlib", "msgpack", "numpy", "pip", "pyparsing", "python-dateutil", "pytz", "ruamel-yaml", "six"], "https://github.com/macs3-project/MACS": ["codecov", "cython", "numpy", "pytest", "pytest-cov", "setuptools"], "https://github.com/NLeSC/lokum": ["configparser", "ipaddress", "ruamel-yaml", "hacking", "mock", "pytest"], "https://github.com/efirvida/python-gearbox": ["jinja2", "numpy", "scipy"], "https://github.com/SuLab/genewikiworld": ["certifi", "chardet", "cycler", "decorator", "deepdiff", "idna", "jsonpickle", "lxml", "matplotlib", "mwoauth", "networkx", "numpy", "oauthlib", "pandas", "pyjwt", "pyparsing", "python-dateutil", "pytz", "requests", "requests-oauthlib", "simplejson", "six", "tqdm", "urllib3", "wikidataintegrator"], "https://github.com/samapriya/Planet-Pipeline-Shell": ["bs4", "earthengine-api", "future", "pytest", "requests", "requests-toolbelt", "retrying"], "https://github.com/smd-faizan/CySpanningTree": ["com.google.code.gson:gson", "gov.nist.math:jama", "javax.servlet:javax.servlet-api", "org.apache.felix:maven-bundle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.cytoscape:api-parent", "org.cytoscape:app-api", "org.cytoscape:application-api", "org.cytoscape:swing-app-api", "org.cytoscape:swing-application-api", "org.jgrapht:jgrapht-core", "org.osgi:org.osgi.core", "org.swinglabs:swing-layout"], "https://github.com/Unidata/cftime": ["check-manifest", "coverage", "coveralls", "cython", "pytest", "pytest-cov", "sphinx", "twine", "wheel", "numpy"], "https://github.com/weecology/DeepForest": ["bumpversion", "cython", "h5py", "keras", "keras-resnet", "matplotlib", "numpy", "numpydoc", "opencv-python", "pandas", "pillow", "pip", "progressbar2", "psutil", "pytest", "pyyaml", "recommonmark", "slidingwindow", "sphinx", "sphinx-markdown-tables", "sphinx-rtd-theme", "tensorflow", "tqdm", "twine", "xmltodict", "scipy", "six", "dask", "datashader", "gdal", "holoviews", "jupyterlab", "laspy"], "https://github.com/datreant/datreant": ["asciitree", "fuzzywuzzy", "numpy", "pyparsing", "pytest", "pytest-cov", "pytest-pep8", "python-levenshtein", "scandir"], "https://github.com/Svdvoort/PREDICTFastr": ["numpy", "scipy", "configparser", "joblib", "natsort", "pandas", "phasepack", "pydicom", "pyradiomics", "pywavelets", "scikit-image", "simpleitk", "tables", "drmaa", "fastr", "nose", "nose-parameterized", "six", "sphinx", "tqdm", "xnat"], "https://github.com/qcscine/utilities": ["pytest"], "https://github.com/martibosch/urban-footprinter": ["bumpversion", "coverage", "coveralls", "flake8", "isort", "m2r", "pytest", "sphinx", "sphinx-click", "sphinxcontrib-bibtex", "tox-travis", "yapf", "numpy", "rasterio", "scipy", "shapely"], "https://github.com/fa-me/ratter": ["autopep8", "numpy", "pep8", "pylint", "pytest", "pytest-coverage", "scipy", "sympy", "tmm", "tox"], "https://github.com/impact27/WF_NTP": ["mahotas", "matplotlib", "numpy", "opencv-python", "pandas", "pillow", "pims", "scikit-image", "scipy", "tifffile", "trackpy"], "https://github.com/Eomys/pyleecan": ["cloudpickle", "ddt", "deap", "h5py", "matplotlib", "meshio", "mock", "nbconvert", "nbformat", "numpy", "pandas", "pyfemm", "pyqt5", "pyqt5-sip", "pytest", "pyvista", "scidatatool", "scipy", "setuptools", "xlrd"], "https://github.com/oeg-upm/morph-csv": ["attrs", "click", "csvw", "flask", "isodate", "itsdangerous", "markupsafe", "numpy", "pandas", "pathlib2", "psycopg2-binary", "python-dateutil", "pytz", "pyyaml", "rdflib", "rfc3986", "scandir", "six", "uritemplate"], "https://github.com/javadch/quis": ["org.antlr:antlr4-runtime", "org.apache.maven.plugins:maven-compiler-plugin", "com.vaiona:vaiona.commons", "xqt.adapters:xqt.adapters.default", "xqt.engines:xqt.engines.builtin", "org.apache.poi:poi", "org.apache.poi:poi-ooxml", "xqt:xqt.model", "org.postgresql:postgresql", "xqt.adapters:xqt.adapters.csv", "xqt.adapters:xqt.adapters.dbms", "xqt:xqt.engine.interface", "com.jidesoft:jide-charts", "com.jidesoft:jide-grids"], "https://github.com/pear2/Cache_SHM": ["php"], "https://github.com/scijava/scijava-common": ["junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.bushe:eventbus", "org.codehaus.mojo:exec-maven-plugin", "org.mockito:mockito-core", "org.scijava:parsington", "@project.groupId@:@project.artifactId@"], "https://github.com/USNavalResearchLaboratory/SNOPROP": ["numba", "numpy", "scipy"], "https://github.com/bbfrederick/picachooser": ["nibabel", "numpy", "pandas", "pillow", "pyqtgraph", "scipy", "m2r", "numpydoc", "sphinx-argparse", "sphinx-gallery"], "https://github.com/GilesStrong/HiggsML_Lumin": ["lumin", "scikit-optimize"], "https://github.com/GooglingTheCancerGenome/sv-callers": ["codacy-coverage", "pytest", "pytest-cov", "snakemake"], "https://github.com/jgreener64/pdb-benchmarks": ["junit:junit", "org.apache.maven.plugins:maven-shade-plugin", "org.biojava:biojava-structure"], "https://github.com/shh-dlce/python-nexus": ["clldutils", "newick", "termcolor"], "https://github.com/NickleDave/searchstims": ["attrs", "imageio", "numpy", "pygame", "scipy"], "https://github.com/opencv/cvat": ["@istanbuljs/nyc-config-babel", "babel-plugin-istanbul", "babel-register", "core-js", "coveralls", "eslint", "eslint-config-airbnb", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-no-unsafe-innerhtml", "eslint-plugin-no-unsanitized", "eslint-plugin-react", "eslint-plugin-react-hooks", "eslint-plugin-security", "nyc", "remark-lint-emphasis-marker", "remark-lint-list-item-spacing", "remark-lint-maximum-heading-length", "remark-lint-maximum-line-length", "remark-lint-no-dead-urls", "remark-lint-no-file-name-irregular-characters", "remark-lint-ordered-list-marker-style", "remark-lint-strong-marker", "remark-lint-unordered-list-marker-style", "remark-preset-lint-consistent", "remark-preset-lint-markdown-style-guide", "remark-preset-lint-recommended", "source-map-support", "stylelint", "stylelint-config-standard", "@ant-design/colors", "@ant-design/create-react-context", "@ant-design/icons", "@ant-design/icons-react", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-call-delegate", "@babel/helper-create-class-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-typescript", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-typescript", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript", "@babel/runtime", "@babel/runtime-corejs3", "@babel/template", "@babel/traverse", "@babel/types", "@csstools/convert-colors", "@types/eslint-visitor-keys", "@types/events", "@types/glob", "@types/history", "@types/hoist-non-react-statics", "@types/json-schema", "@types/json5", "@types/minimatch", "@types/node", "@types/prop-types", "@types/q", "@types/react", "@types/react-dom", "@types/react-redux", "@types/react-router", "@types/react-router-dom", "@types/react-share", "@types/react-slick", "@types/redux-logger", "@typescript-eslint/eslint-plugin", "@typescript-eslint/experimental-utils", "@typescript-eslint/parser", "@typescript-eslint/typescript-estree", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abbrev", "accepts", "acorn", "acorn-jsx", "add-dom-event-listener", "ajv", "ajv-errors", "ajv-keywords", "amdefine", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "antd", "anymatch", "aproba", "are-we-there-yet", "argparse", "aria-query", "arr-diff", "arr-flatten", "arr-union", "array-find-index", "array-flatten", "array-includes", "array-tree-filter", "array-union", "array-uniq", "array-unique", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-types-flow", "astral-regex", "async", "async-each", "async-foreach", "async-limiter", "async-validator", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axobject-query", "babel-loader", "babel-plugin-dynamic-import-node", "babel-plugin-import", "babel-plugin-react-svg", "babel-runtime", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "block-stream", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "caller-callsite", "caller-path", "callsites", "camel-case", "camelcase", "camelcase-keys", "caniuse-lite", "caseless", "chalk", "chardet", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "classnames", "clean-css", "cli-cursor", "cli-width", "cliui", "clone", "clone-deep", "coa", "code-point-at", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "commondir", "component-classes", "component-emitter", "@babel/plugin-proposal-optional-chaining", "@types/platform", "@types/react-color", "copy-to-clipboard", "copy-webpack-plugin", "css-loader", "dotenv-webpack", "error-stack-parser", "eslint-config-airbnb-typescript", "eslint-import-resolver-typescript", "html-webpack-plugin", "moment", "node-sass", "platform", "postcss-loader", "postcss-preset-env", "prop-types", "react", "react-color", "react-dom", "react-hotkeys", "react-redux", "react-router", "react-router-dom", "react-share", "react-svg-loader", "redux", "redux-devtools-extension", "redux-logger", "redux-thunk", "sass-loader", "style-loader", "tsconfig-paths-webpack-plugin", "typescript", "webpack", "webpack-cli", "webpack-dev-server", "worker-loader", "@babel/cli", "airbnb", "axios", "babel-eslint", "browser-or-node", "detect-browser", "eslint-config-airbnb-base", "form-data", "jest", "jest-config", "jest-junit", "js-cookie", "jsdoc", "jsonpath", "store", "pillow", "requests", "glog", "lxml", "pascal-voc-writer", "cython", "numpy", "opencv-python", "pycocotools", "scikit-image", "setuptools", "tqdm", "wheel", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-validator-identifier", "@babel/plugin-syntax-optional-chaining", "@types/detect-indent", "@types/mkdirp", "ansi-align", "boxen", "capture-stack-trace", "ci-info", "cli-boxes", "compressible", "compression", "concat-map", "concat-stream", "configstore", "confusing-browser-globals", "connect-history-api-fallback", "console-browserify", "console-control-strings", "constants-browserify", "contains-path", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "core-js-compat", "core-js-pure", "core-util-is", "cosmiconfig", "create-ecdh", "create-error-class", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "crypto-random-string", "css-blank-pseudo", "css-has-pseudo", "css-prefers-color-scheme", "dts-bundle-webpack", "eslint-config-typescript-recommended", "nodemon", "svg.draggable.js", "svg.draw.js", "svg.js", "svg.resize.js", "svg.select.js", "pathlib", "tensorflow", "av", "click", "coreapi", "diskcache", "dj-pagination", "django", "django-appconf", "django-auth-ldap", "django-cacheops", "django-compressor", "django-cors-headers", "django-filter", "django-rest-auth", "django-revproxy", "django-rq", "django-sendfile", "djangorestframework", "drf-yasg", "easyprocess", "furl", "gitpython", "h5py", "markdown", "patool", "pdf2image", "pygments", "python-ldap", "python-logstash", "pytz", "pyunpack", "rcssmin", "redis", "rjsmin", "rq", "rq-scheduler", "rules", "shapely", "sqlparse", "django-extensions", "pylint", "pylint-django", "pylint-plugin-utils", "rope", "snakeviz", "werkzeug", "mod-wsgi", "psycopg2-binary", "django-silk", "fakeredis", "six"], "https://github.com/scholarslab/prism": ["activerecord-import", "airbrake", "annotate", "bcrypt-ruby", "cancan", "capybara", "coffee-rails", "compass", "compass-rails", "compass-susy-plugin", "cucumber-rails", "dalli", "database_cleaner", "devise", "execjs", "factory_girl_rails", "ffaker", "figaro", "foreman", "forgery", "guard", "jasmine", "jasmine-jquery-rails", "jquery-rails", "jquery-ui-rails", "language_list", "memcachier", "minitest", "mysql2", "newrelic_rpm", "nokogiri", "nyan-cat-formatter", "omniauth", "omniauth-browserid", "omniauth-facebook", "omniauth-google", "omniauth-google-oauth2", "omniauth-oauth2", "pg", "puma", "rails", "rails_best_practices", "rake", "rspec-rails", "ruby-prof", "sass-rails", "simplecov", "spork", "sqlite3", "test-unit", "turn", "uglifier", "unicorn", "uuidtools", "will_paginate", "yaml_db", "actionmailer", "actionpack", "activemodel", "activerecord", "activeresource", "activesupport", "addressable", "ansi", "arel", "builder", "childprocess", "chunky_png", "coderay", "code_analyzer", "coffee-script", "coffee-script-source", "colored", "cucumber", "diff-lcs", "docile", "erubis", "factory_girl", "faraday", "ffi", "formatador", "fssm", "gherkin", "hashie", "hike", "i18n", "jasmine-core", "journey", "json", "jwt", "kgio", "listen", "lumberjack", "mail", "method_source", "mime-types", "multipart-post", "multi_json", "multi_test", "multi_xml", "nenv", "notiffany", "oauth", "oauth2", "omniauth-oauth", "orm_adapter", "phantomjs", "polyglot", "power_assert", "pry", "rack", "rack-cache", "rack-ssl", "rack-test", "railties", "raindrops", "rb-fsevent", "rb-inotify", "rdoc", "require_all", "rspec", "rspec-core", "rspec-expectations", "rspec-mocks", "ruby-progressbar", "rubyzip", "sass", "selenium-webdriver", "sexp_processor", "shellany", "simplecov-html", "slop", "sprockets", "thor", "tilt", "treetop", "tzinfo", "warden", "websocket", "xpath"], "https://github.com/pyoceans/python-seawater": ["coveralls", "nose", "oct2py", "numpy", "scipy", "pytest"], "https://github.com/olgabot/sj2psi": ["coverage", "pandas", "pep8", "pyflakes", "pytest", "python-coveralls"], "https://github.com/malvikasharan/APRICOT": ["biopython", "matplotlib", "numpy", "openpyxl", "requests", "scipy"], "https://github.com/raamana/confounds": ["numpy", "pytest", "pytest-runner", "scikit-learn", "setuptools"], "https://github.com/mrkrd/matlab_wrapper": ["numpy"], "https://github.com/thorstenwagner/ij-blob": ["junit:junit", "net.imagej:ij", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/michaelosthege/pyrff": ["fastprogress", "h5py", "numba", "numpy", "pytest", "scipy", "typing"], "https://github.com/ODM2/ODM2DataSharingPortal": ["beautifulsoup4", "codegen", "coverage", "django", "django-admin-select2", "django-debug-toolbar", "django-discover-runner", "django-reset-migrations", "django-webtest", "django-widget-tweaks", "djangorestframework", "enum", "google-api-python-client", "hs-restclient", "influxdb", "markdown", "oauthlib", "pandas", "patterns", "psycopg2", "python-crontab", "requests", "six", "sqlparse", "unicodecsv", "waitress", "webob", "webtest"], "https://github.com/hameye/MARCIA": ["hyperspy", "numpy", "pandas", "python-ternary", "scikit-image", "seaborn"], "https://github.com/eyelovedata/sentimentemotionanalysis": ["beautifulsoup4", "ibm-cloud-sdk-core", "ibm-watson", "nltk", "notebook", "numpy", "pandas"], "https://github.com/Swiss-Polar-Institute/pyantarctica": ["airsea", "pytest"], "https://github.com/cgre-aachen/gempy": ["emg3d", "ipywidgets", "pooch", "requests", "sphinx", "sphinx-gallery", "welly", "arviz", "mplstereonet", "pyevtk", "pymc3", "pyqrcode", "pyvistaqt", "qgrid", "ipython", "matplotlib", "networkx", "numpy", "pandas", "pytest", "pyvista", "scikit-image", "seaborn", "theano"], "https://github.com/alexandrebarachant/pyRiemann": ["joblib", "numpy", "pandas", "scikit-learn", "scipy", "seaborn", "mne", "numpydoc", "sphinx-bootstrap-theme", "sphinx-gallery"], "https://github.com/yt-project/unyt": ["numpy", "pytest", "sympy", "matplotlib", "sphinx"], "https://github.com/bonej-org/BoneJ2": ["com.miglayout:miglayout-swing", "junit:junit", "net.imagej:imagej", "net.imagej:imagej-common", "net.imagej:imagej-ops", "net.imglib2:imglib2", "net.imglib2:imglib2-algorithm", "org.apache.commons:commons-math3", "org.joml:joml", "org.scijava:scijava-common", "gov.nist.math:jama", "net.imagej:ij", "org.mockito:mockito-core", "sc.fiji:Skeletonize3D_", "org.bonej:bonej-legacy-util_", "org.eclipse.collections:eclipse-collections", "org.eclipse.collections:eclipse-collections-api", "org.scijava:vecmath", "sc.fiji:3D_Viewer", "sc.fiji:AnalyzeSkeleton_", "sc.fiji:LocalThickness_", "org.scijava:scijava-table", "io.scif:scifio", "net.imagej:ij1-patcher", "net.imagej:imagej-legacy", "net.imagej:imagej-mesh", "net.imagej:imagej-plugins-commands", "net.imglib2:imglib2-roi", "org.apache.maven.plugins:maven-surefire-plugin", "org.bonej:bonej-ops", "org.bonej:bonej-utilities", "org.scijava:scijava-ui-swing"], "https://github.com/ConorMacBride/mcalf": ["astropy", "docutils", "matplotlib", "numpy", "pathos", "pytest", "pytest-cov", "pyyaml", "scikit-learn", "scipy", "ipykernel", "nbsphinx", "sphinx", "sphinx-automodapi", "sphinx-rtd-theme"], "https://github.com/widdowquinn/pyADHoRe": ["networkx"], "https://github.com/valdergallo/data-importer": ["django", "mock", "openpyxl", "pytest", "pytest-cov", "pytest-django", "xlrd", "six"], "https://github.com/saketkc/pysradb": ["pandas", "requests", "tqdm", "xmltodict", "pytest"], "https://github.com/jeeberhardt/visualize": ["bokeh", "matplotlib", "mdanalysis", "numpy"], "https://github.com/hsharrison/experimentator": ["docopt", "networkx", "numpy", "pandas", "pyyaml", "schema", "numpydoc", "sphinx", "sphinx-rtd-theme"], "https://github.com/nudomarinero/wquantiles": ["numpy", "pytest"], "https://github.com/davidbradway/Visualizing-Scholars-At-Duke-2017": ["click", "flask", "itsdangerous", "jinja2", "markupsafe", "werkzeug", "wtforms"], "https://github.com/sepandhaghighi/findip": ["datetime", "multiprocessing", "socket", "string", "subprocess", "sys", "time"], "https://github.com/md-lab-tools/lab-tools": ["cython", "numpy"], "https://github.com/fiji/KymographBuilder": ["io.scif:scifio", "junit:junit", "net.imagej:ij", "net.imagej:ij1-patcher", "net.imagej:imagej", "net.imagej:imagej-common", "net.imagej:imagej-legacy", "net.imagej:imagej-ops", "net.imglib2:imglib2", "org.scijava:scijava-common"], "https://github.com/YaserJaradeh/JarvisQA": ["memory-profiler", "pandas", "pysolr", "sklearn", "torch", "torchvision", "transformers"], "https://github.com/PBR/Marker2Sequence": ["org.apache.maven.plugins:maven-compiler-plugin", "axis:axis", "com.hp.hpl.jena:arq", "commons-logging:commons-logging", "junit:junit", "org.biomoby:jmoby", "org.jdom:jdom", "org.jfree:jfreechart", "org.tulsoft:alltools", "xerces:xercesImpl", "displaytag:displaytag-export-poi", "javax:javaee-endorsed-api", "javax:javaee-web-api", "nl.wur.plantbreeding:marker2sequence-lib", "org.apache.maven.plugins:maven-war-plugin", "org.apache.struts:struts-el", "org.apache.struts:struts-extras", "org.apache.struts:struts-faces", "org.apache.struts:struts-mailreader-dao", "org.apache.struts:struts-scripting", "org.apache.struts:struts-taglib", "org.apache.struts:struts-tiles", "org.slf4j:slf4j-log4j12"], "https://github.com/DesignEngrLab/fmdtools": ["matplotlib", "netgraph", "networkx", "numpy", "pandas", "quadpy"], "https://github.com/dkalisch/morgenstadtDB": ["jquery"], "https://github.com/has2k1/mizani": ["flake8", "pep8", "pytest-cov", "scipy", "sphinx", "tox", "wheel", "numpydoc", "palettable"], "https://github.com/super-resolution/lineprofiler": ["czifile", "lxml", "matplotlib", "networkx", "numba", "numpy", "opencv-python", "pyqt5", "pyqtgraph", "pywin32", "scikit-image", "scikit-learn", "scipy", "tifffile"], "https://github.com/junaidmalik09/fastonn": ["matplotlib", "numpy", "pillow", "scipy", "torch", "torchvision", "tqdm", "python-version"], "https://github.com/mzabrams/fars-cleaner": ["dask", "hypothesis", "numpy", "pandas", "pooch", "pyjanitor", "requests"], "https://github.com/fat-forensics/fat-forensics": ["matplotlib", "scikit-learn", "codecov", "flake8", "mypy", "nbval", "numpydoc", "pylint", "pytest", "pytest-cov", "sphinx", "sphinx-gallery", "twine", "yapf", "numpy", "scipy", "fat-forensics"], "https://github.com/RPGroup-PBoC/chann_cap": ["ccutils", "cloudpickle", "dill", "emcee", "gitpython", "joblib", "matplotlib", "maxentropy", "mpmath", "numpy", "pandas", "scikit-image", "scipy", "seaborn", "skimage", "statsmodels", "sympy"], "https://github.com/lascivaroma/forcellini-lemmas": ["click", "flask", "itsdangerous", "jinja2", "markupsafe", "werkzeug", "whoosh"], "https://github.com/akxen/tps-parameterisation": ["appdirs", "backcall", "certifi", "cycler", "decorator", "ipykernel", "ipython", "ipython-genutils", "jedi", "jupyter-client", "jupyter-core", "kiwisolver", "matplotlib", "nose", "numpy", "pandas", "parso", "pexpect", "pickleshare", "ply", "prompt-toolkit", "ptyprocess", "pygments", "pyomo", "pyparsing", "python-dateutil", "pytz", "pyutilib", "pyzmq", "simplegeneric", "six", "tornado", "traitlets", "wcwidth"], "https://github.com/Davidelanz/quantum-robot": ["matplotlib", "numpy", "pandas", "pytest", "qiskit", "seaborn", "sphinx", "sphinx-rtd-theme"], "https://github.com/SandstoneHPC/sandstone-slurm-assist": ["jsonschema", "sandstone"], "https://github.com/applied-bioinformatics/An-Introduction-To-Applied-Bioinformatics": ["ete3", "ipymd", "jupyter", "markdown2", "networkx", "pandas", "qiime-default-reference", "scikit-bio", "seaborn", "tabulate"], "https://github.com/aliFrancis/mars-crater-catalogue": ["matplotlib", "numpy", "pandas", "scikit-image", "scipy", "seaborn"], "https://github.com/jcvasquezc/AEspeech": ["librosa", "matplotlib", "numpy", "pandas", "scipy", "torch"], "https://github.com/oemof/oemof-solph": ["blinker", "dill", "networkx", "numpy", "oemof-network", "oemof-tools", "pandas", "pyomo", "pip", "setuptools", "six", "virtualenv", "sphinx", "sphinx-rtd-theme"], "https://github.com/kutaslab/fitgrid": ["matplotlib", "patsy", "scipy", "statsmodels", "tables", "tqdm"], "https://github.com/MCZbase/PreCapture": ["antlr:antlr", "com.google.zxing:core", "com.google.zxing:javase", "com.h2database:h2", "com.itextpdf:itextpdf", "com.jgoodies:forms", "com.sun.xml.bind:jaxb-core", "com.sun.xml.bind:jaxb-impl", "commons-collections:commons-collections", "javassist:javassist", "javax.help:javahelp", "javax.transaction:jta", "javax.xml.bind:jaxb-api", "junit:junit", "net.sf.json-lib:json-lib", "net.sourceforge.javacsv:javacsv", "org.apache.derby:derby", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.pdfbox:pdfbox", "org.codehaus.mojo.hibernate3:maven-hibernate3", "org.codehaus.mojo.hibernate3:maven-hibernate3-api", "org.eclipse.jdt.internal:jarinjarloader", "org.swinglabs:pdf-renderer"], "https://github.com/tgwizard/sexymp-data": ["cheerio", "csv", "csv-parse", "request", "underscore", "xlsx"], "https://github.com/semplea/characters-meta": ["alabaster", "babel", "backports-abc", "backports-shutil-get-terminal-size", "bleach", "boto", "bz2file", "certifi", "configparser", "cycler", "cython", "decorator", "docutils", "entrypoints", "enum34", "functools32", "gensim", "html5lib", "hunspell", "imagesize", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jinja2", "jsonschema", "jupyter-client", "jupyter-core", "markupsafe", "matplotlib", "mistune", "mpmath", "nbconvert", "nbformat", "nltk", "nose", "notebook", "numpy", "pandas", "pandocfilters", "pathlib2", "pattern", "pexpect", "pickleshare", "prompt-toolkit", "ptyprocess", "pycorenlp", "pygments", "pyparsing", "python-cjson", "python-dateutil", "pytz", "pyzmq", "requests", "roman", "scipy", "seaborn", "simplegeneric", "singledispatch", "six", "smart-open", "snowballstemmer", "sympy", "terminado", "testpath", "tornado", "traitlets", "treetaggerwrapper", "wcwidth", "widgetsnbextension", "word2vec", "bumpversion", "codecov", "coverage", "pylint", "pytest", "pytest-cov", "python-dotenv", "recommonmark", "responses", "sphinx", "argparse", "pysolr", "funcsigs", "pytest-cache", "pytest-pep8"], "https://github.com/edwardcapriolo/filecrush": ["commons-cli:commons-cli", "commons-httpclient:commons-httpclient", "commons-lang:commons-lang", "commons-logging:commons-logging", "junit:junit", "log4j:log4j", "org.apache.hadoop:hadoop-core", "org.apache.hadoop:hadoop-test", "org.apache.maven.plugins:maven-eclipse-plugin", "org.codehaus.plexus:plexus-utils", "org.easymock:easymock", "org.hamcrest:hamcrest-core", "org.hamcrest:hamcrest-library", "org.mockito:mockito-all", "org.mortbay.jetty:jetty", "org.mortbay.jetty:jetty-util", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12"], "https://github.com/smart-facility/cognicity-floodsensor": ["aws-iot-device-sdk", "node-dht-sensor", "winston", "pg"], "https://github.com/lerkoah/ComplexBehaviorDetector": ["ace-editor", "ant", "antisamy-markup-formatter", "any-buildstep", "bouncycastle-api", "branch-api", "build-timeout", "categorized-view", "cloudbees-folder", "conditional-buildstep", "credentials", "credentials-binding", "display-url-api", "durable-task", "email-ext", "emailext-template", "external-monitor-job", "flexible-publish", "git", "git-client", "git-server", "github", "github-api", "github-branch-source", "github-organization-folder", "gradle", "groovy", "groovy-events-listener-plugin", "groovy-postbuild", "handlebars", "icon-shim", "javadoc", "jquery-detached", "junit", "ldap", "mailer", "mapdb-api", "matrix-auth", "matrix-project", "maven-plugin", "momentjs", "pam-auth", "pipeline-build-step", "pipeline-graph-analysis", "pipeline-input-step", "pipeline-milestone-step", "pipeline-rest-api", "pipeline-stage-step", "pipeline-stage-view", "plain-credentials", "resource-disposer", "run-condition", "scm-api", "script-security", "ssh-credentials", "ssh-slaves", "structs", "subversion", "text-finder", "timestamper", "token-macro", "windows-slaves", "workflow-aggregator", "workflow-api", "workflow-basic-steps", "workflow-cps", "workflow-cps-global-lib", "workflow-durable-task-step", "workflow-job", "workflow-multibranch", "workflow-scm-step", "workflow-step-api", "workflow-support", "ws-cleanup"], "https://github.com/evoldoers/wtfgenes": ["bluebird", "chai", "del", "gulp", "gulp-bump", "gulp-git", "gulp-jsdoc", "gulp-mocha", "gulp-pandoc", "gulp-rename", "gulp-shell", "gulp-uglify", "jsdoc", "jStat", "mersennetwister", "node-getopt", "request", "request-promise"], "https://github.com/nstarman/amuse_util": ["graphviz", "matplotlib"], "https://github.com/yhaddad/Heppi": ["jsmin", "jsonmerge", "progressbar2", "tabulate", "termcolor"], "https://github.com/janantala/speech-synthesis": ["gulp", "gulp-concat", "gulp-header", "gulp-jshint", "gulp-karma", "gulp-rename", "gulp-uglify", "gulp-util"], "https://github.com/wjladams/pyanp": ["github-pages", "matplotlib", "numpy", "pandas", "scipy"], "https://github.com/seva100/optic-nerve-cnn": ["h5py", "keras", "mahotas", "matplotlib", "numpy", "pandas", "pillow", "scikit-image", "scipy", "tqdm", "unittest2"], "https://github.com/vibbits/phyd3": ["finalhandler", "node-minify", "serve-static"], "https://github.com/miledrousset/opentheso": ["a2jruntime:a2jruntime", "com.github.andrewoma.dexx:dexx-collections", "com.ibm.icu:icu4j", "com.itextpdf.maven:itextdoc", "com.itextpdf:io", "com.itextpdf:itext-pdfa", "com.itextpdf:kernel", "com.opera:operadriver", "com.sun.faces:jsf-api", "com.sun.faces:jsf-impl", "com.sun.jersey:jersey-client", "com.sun.mail:javax.mail", "com.sun.mail:smtp", "com.zaxxer:HikariCP", "commons-dbcp:commons-dbcp", "commons-fileupload:commons-fileupload", "commons-io:commons-io", "commons-logging:commons-logging", "javax.enterprise:cdi-api", "javax.faces:javax.faces-api", "javax.json:javax.json-api", "javax:javaee-web-api", "jsf2leaf:jsf2leaf", "junit:junit", "ki-jzkit-hss:ki-jzkit-hss", "ki-jzkit-iface:ki-jzkit-iface", "ki-jzkit-z3950:ki-jzkit-z3950", "ki-util:ki-util", "log4j:log4j", "net.bootsfaces:bootsfaces", "net.coobird:thumbnailator", "net.glxn:qrgen", "org.apache.commons:commons-csv", "org.apache.jena:jena-arq", "org.apache.jena:jena-core", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-war-plugin", "org.apache.ws.commons.axiom:axiom-c14n", "org.eclipse.rdf4j:rdf4j-model", "org.eclipse.rdf4j:rdf4j-runtime", "org.glassfish.jersey.bundles:jaxrs-ri", "org.glassfish.metro:webservices-rt", "org.glassfish:javax.faces", "org.glassfish:javax.json", "org.jboss.weld.servlet:weld-servlet-shaded", "org.jdom:jdom2", "org.json:json", "org.postgresql:postgresql", "org.primefaces:primefaces", "org.seleniumhq.selenium:selenium-java", "org.webjars:font-awesome", "org.webjars:leaflet", "skos-api-onejar:skos-api-onejar", "skosapi_private:skosapi_private", "SPARQL-JAVA:SPARQL-JAVA", "virtuoso:virtuosos", "virt_jena3:virt_jena"], "https://github.com/VDBWRAIR/ngs_mapper": ["alabaster", "anaconda-client", "babel", "biopython", "bwa", "clyent", "conda", "conda-build", "conda-env", "cutadapt", "cycler", "docopt", "docutils", "funcsigs", "igv", "imagemagick", "java-jdk", "jinja2", "libpng", "markupsafe", "matplotlib", "mock", "ncurses", "nose", "numpy", "pbr", "pycairo", "pycosat", "pycrypto", "pygments", "pyparsing", "pytz", "pyyaml", "requests", "samtools", "sh", "six", "snowballstemmer", "sphinx", "trimmomatic", "zlib", "counter", "filehandle", "logconfig", "logutils", "pybwa", "python-dateutil", "pyvcf", "schema", "sphinx-rtd-theme", "tempdir"], "https://github.com/clij/clij-docs": ["net.clearcontrol:clij-clearcl", "net.clearcontrol:clij-coremem", "net.haesleinhuepf:clij_", "net.imagej:imagej", "net.imagej:imagej-legacy", "net.imglib2:imglib2", "org.scijava:scijava-common"], "https://github.com/lpfann/fri": ["cvxpy", "ecos", "matplotlib", "numpy", "scikit-learn", "scipy"], "https://github.com/seisman/HinetPy": ["black", "codecov", "coverage", "flake8", "guzzle-sphinx-theme", "pytest", "pytest-cov", "sphinx", "sphinx-intl", "requests"], "https://github.com/JonathanReeve/text-matcher": ["click", "nltk", "termcolor", "six"], "https://github.com/csdms/bmi-python": ["coveralls", "flake8", "pytest", "pytest-cov", "black", "click", "jinja2", "numpy"], "https://github.com/NaturalHistoryMuseum/revile": ["click", "gphoto2", "numpy", "opencv-python", "pymata-aio", "scikit-image", "scipy"], "https://github.com/ishahid/django-blogg": ["django", "django-debug-toolbar", "django-markdown", "pytz", "coverage"], "https://github.com/SommerEngineering/Ed25519": ["Encrypter", "Microsoft.NET.Test.Sdk", "NUnit", "NUnit3TestAdapter"], "https://github.com/xuanxu/intergalactic": ["numpy", "pyyaml", "scipy"], "https://github.com/PyPSA/PyPSA": ["matplotlib", "networkx", "numpy", "pandas", "pyomo", "scipy", "six", "tables"], "https://github.com/NickleDave/vak": ["attrs", "crowsetta", "dask", "evfuncs", "joblib", "matplotlib", "numpy", "pandas", "scipy", "tensorboard", "toml", "torch", "torchvision", "tqdm", "tweetynet"], "https://github.com/gtonkinhill/panaroo": ["biopython", "dendropy", "edlib", "gffutils", "intbitset", "joblib", "matplotlib", "networkx", "numpy", "plotly", "scipy", "sklearn", "tqdm"], "https://github.com/CMLPlatform/pycirk": ["click", "munch", "numpy", "openpyxl", "pandas", "pytest", "setuptools", "bumpversion", "coverage", "flake8", "pip", "pytest-runner", "sphinx", "tox", "twine", "watchdog", "wheel", "xlrd"], "https://github.com/globalbioticinteractions/nomer": ["com.beust:jcommander", "commons-httpclient:commons-httpclient", "org.apache.commons:commons-compress", "org.apache.commons:commons-vfs2", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.eol:eol-globi-doi-resolver", "com.github.koraktor:mavanagaiata", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:versions-maven-plugin", "org.mockito:mockito-all", "com.healthmarketscience.jackcess:jackcess", "org.globalnames:gnparser_2.10", "org.apache.jena:apache-jena-libs", "org.eol:eol-globi-taxon-resolver"], "https://github.com/dwhieb/Nuuchahnulth": ["@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@digitallinguistics/javascript", "@digitallinguistics/scription2dlx", "@digitallinguistics/transliterate", "@digitallinguistics/word-aligner", "@types/color-name", "acorn", "acorn-jsx", "ajv", "ansi-colors", "ansi-regex", "ansi-styles", "argparse", "astral-regex", "at-least-node", "balanced-match", "brace-expansion", "callsites", "chalk", "cli-cursor", "cli-spinners", "clone", "color-convert", "color-name", "concat-map", "cross-spawn", "debug", "deep-is", "defaults", "doctrine", "emoji-regex", "enquirer", "escape-string-regexp", "eslint", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "file-entry-cache", "flat-cache", "flatted", "fs-extra", "fs.realpath", "functional-red-black-tree", "glob", "glob-parent", "globals", "graceful-fs", "has-flag", "ignore", "import-fresh", "imurmurhash", "inflight", "inherits", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-interactive", "isexe", "js-tokens", "js-yaml", "json-schema-traverse", "json-stable-stringify-without-jsonify", "jsonfile", "levn", "lodash", "log-symbols", "mimic-fn", "minimatch", "minimist", "mkdirp", "ms", "mute-stream", "natural-compare", "once", "onetime", "optionator", "ora", "parent-module", "path-is-absolute", "path-key", "prelude-ls", "progress", "punycode", "regexpp", "resolve-from", "restore-cursor", "rimraf", "semver", "shebang-command", "shebang-regex", "signal-exit", "slice-ansi", "smartquotes", "sprintf-js", "string-width", "strip-ansi", "strip-json-comments", "supports-color", "table", "text-table", "type-check", "type-fest", "universalify", "uri-js", "v8-compile-cache", "wcwidth", "which", "word-wrap", "wrappy", "write", "yamljs"], "https://github.com/TUW-GEO/ecmwf_models": ["pygrib", "sphinx-rtd-theme"], "https://github.com/urmi-21/MetaOmGraph": ["com.apple:AppleJavaExtensions", "com.formdev:flatlaf", "com.formdev:flatlaf-intellij-themes", "com.google.code.gson:gson", "com.l2fprod:l2fprod-common-all", "com.miglayout:miglayout", "com.sun.activation:javax.activation", "commons-io:commons-io", "edu.iastate.metnet:custombrowserlauncher", "javax.mail:javax.mail-api", "org.apache.commons:commons-math3", "org.apache.httpcomponents:httpclient", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.poi:poi", "org.apache.poi:poi-ooxml", "org.apache.xmlgraphics:batik-svg-dom", "org.apache.xmlgraphics:batik-svggen", "org.biojava:jcolorbrewer", "org.dizitart:nitrite", "org.jdom:jdom", "org.jfree:jcommon", "org.jfree:jfreechart"], "https://github.com/bfieldtools/bfieldtools": ["cvxopt", "cvxpy", "matplotlib", "mayavi", "numpy", "psutil", "pyqt5", "pyqt5-sip", "quadpy", "scipy", "shapely", "sip", "trimesh", "mne", "numpydoc", "pillow", "pybtex", "sphinx", "sphinx-bootstrap-theme", "sphinx-fontawesome", "sphinx-gallery", "sphinxcontrib-bibtex"], "https://github.com/pedroernesto/HippoNetworkUnit": ["sciunit"], "https://github.com/zwicker-group/py-pde": ["matplotlib", "numba", "numpy", "scipy", "sympy", "h5py", "pillow", "sphinx-autodoc-annotation", "sphinx-gallery", "sphinx-rtd-theme", "black", "isort", "mypy", "pandas", "pyinstrument", "pytest", "pytest-cov", "pytest-xdist", "tqdm"], "https://github.com/NeuralEnsemble/PyNN": ["docutils", "h5py", "jinja2", "lazyarray", "mock", "neo", "nose", "numpy", "quantities", "setuptools", "cheetah3", "matplotlib", "mpi4py", "scipy"], "https://github.com/juliema/aTRAM": ["biopython", "numpy", "psutil", "atomicwrites", "attrs", "importlib-metadata", "more-itertools", "packaging", "pluggy", "py", "pyparsing", "pytest", "six", "wcwidth", "zipp"], "https://github.com/GrzegorzMikaAGH/Towards-adaptivity-via-a-new-discrepancy-principle-for-Poisson-inverse-problems": ["dask", "joblib", "matplotlib", "numba", "numpy", "pandas", "psutil", "scipy"], "https://github.com/HTenkanen/pyrosm": ["cykhash", "geopandas", "pygeos", "pyrobuf", "python-rapidjson", "setuptools", "ipython", "jupyter-sphinx", "nbsphinx", "pygments", "pyrosm", "sphinx"], "https://github.com/kjappelbaum/colorjeopardy": ["dash", "dash-core-components", "dash-daq", "dash-html-components", "dash-renderer", "dash-table", "gunicorn", "psycopg2", "sqlalchemy"], "https://github.com/OSUmageed/pyHeatTransfer": ["coolprop", "deco", "kivy", "matplotlib", "nose", "numpy", "pygame"], "https://github.com/olety/TIMLinUCB": ["joblib", "matplotlib", "numpy", "pandas", "seaborn", "sphinx", "sphinx-rtd-theme", "tqdm"], "https://github.com/gcube-team/gcube-releases": ["ch.qos.logback:logback-classic", "com.couchbase.client:core-io", "com.couchbase.client:java-client", "com.google.code.gson:gson", "junit:junit", "org.apache.maven.plugins:maven-assembly-plugin", "org.gcube.accounting:accounting-lib", "org.gcube.common:authorization-client", "org.gcube.common:common-authorization", "org.gcube.common:home-library", "org.gcube.common:home-library-jcr", "org.gcube.core:common-scope", "org.gcube.data.publishing:document-store-lib", "org.gcube.data.publishing:document-store-lib-couchbase", "org.gcube.distribution:maven-smartgears-bom", "org.gcube.vremanagement:smart-executor-api", "org.slf4j:slf4j-api", "org.gcube.core:common-encryption", "org.gcube.distribution:gcube-bom", "org.gcube.resources.discovery:ic-client", "commitplease", "grunt", "grunt-bowercopy", "grunt-cli", "grunt-compare-size", "grunt-contrib-concat", "grunt-contrib-csslint", "grunt-contrib-jshint", "grunt-contrib-qunit", "grunt-contrib-requirejs", "grunt-contrib-uglify", "grunt-git-authors", "grunt-html", "grunt-jscs", "load-grunt-tasks", "rimraf", "testswarm", "soda", "stylus", "uglify-js"], "https://github.com/r9y9/pyopenjtalk": ["coverage", "nose", "numpy", "six"], "https://github.com/altmetric/aho_corasick_matcher": ["rspec", "rake", "rubocop", "ast", "astrolabe", "diff-lcs", "parser", "powerpack", "rainbow", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec-support", "ruby-progressbar"], "https://github.com/Edric-Matwiejew/QSW_MPI": ["h5py", "matplotlib", "mpi4py", "networkx", "numpy", "scipy"], "https://github.com/xieguigang/Data.GIS": ["@types/node"], "https://github.com/scikit-hep/hepstats": ["matplotlib", "numpy", "numpydoc", "recommonmark", "sphinx", "sphinx-rtd-theme"], "https://github.com/elainehoml/GMM_Image_Quality": ["ipython", "ipywidgets", "matplotlib", "numpy", "pandas", "pillow", "scikit-image", "scikit-learn", "scipy", "seaborn"], "https://github.com/mikahama/uralicNLP": ["argparse", "future", "hfst", "mikatools", "requests", "tinydb"], "https://github.com/blobtoolkit/viewer": ["@babel/core", "@babel/polyfill", "@babel/preset-env", "@babel/preset-react", "@babel/register", "app-root-path", "autoprefixer", "babel-core", "babel-loader", "babel-plugin-transform-object-rest-spread", "babel-preset-env", "babel-preset-es2015", "babel-preset-react", "body-parser", "clone-function", "color-convert", "copy-webpack-plugin", "core-js", "css-loader", "d3", "deep-get-set", "docopt", "dotenv", "es6-map", "express", "express-cors", "fast-xml-parser", "fibers", "file-loader", "geckodriver", "git-revision-webpack-plugin", "history", "html-loader", "html-webpack-plugin", "immutable-update", "is-touch-device", "lodash", "mini-css-extract-plugin", "mkdirp-promise", "node-sass", "nodemon", "postcss-loader", "prebuild-install", "promise", "prop-types", "react", "react-color", "react-cookie", "react-cookie-consent", "react-csv", "react-d3-axis", "react-dom", "react-dropzone", "react-ga", "react-json-pretty", "react-modal-dialog-react16", "react-pointable", "react-redux", "react-resizable-box", "react-router", "react-router-dom", "react-table", "react-tooltip", "read-yaml", "redux", "redux-actions", "redux-batched-actions", "redux-logger", "redux-thunk", "regenerator-runtime", "reselect", "sass", "sass-loader", "sass-web-fonts", "save-svg-as-png", "selenium-webdriver", "shallowequal", "sharp", "should", "simplify-js", "style-loader", "supertest", "svg-sprite-loader", "svgo", "svgo-loader", "swagger-jsdoc", "swagger-ui-express", "tar", "testdouble", "webpack", "webpack-cli", "webpack-combine-loaders", "webpack-dev-server"], "https://github.com/e-VRO/frvcpy": ["xmltodict"], "https://github.com/openeventdata/mordecai": ["editdistance", "elasticsearch", "elasticsearch-dsl", "h5py", "numpy", "pandas", "spacy", "tensorflow", "tqdm"], "https://github.com/ssepulveda/RTGraph": ["numpy", "pyqtgraph", "pyserial"], "https://github.com/eWaterCycle/grpc4bmi": ["cfunits", "docker", "docutils", "futures", "grpcio-tools", "ipykernel", "nbconvert", "nbformat", "numpydoc", "pytest", "pytest-cov", "pyyaml", "scipy", "setuptools", "sphinx", "sphinx-argparse", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "bmipy", "googleapis-common-protos", "grpcio", "grpcio-reflection", "grpcio-status", "numpy", "protobuf", "semver"], "https://github.com/msmexplorer/msmexplorer-d3": ["alabaster", "babel", "certifi", "decorator", "docutils", "gunicorn", "hdf5", "jinja2", "markupsafe", "mdtraj", "msmbuilder", "networkx", "nose", "numexpr", "numpy", "numpydoc", "openssl", "pandas", "pastedeploy", "pip", "pygments", "pymongo", "pytables", "python", "python-dateutil", "pytz", "readline", "scikit-learn", "scipy", "scripttest", "setuptools", "six", "snowballstemmer", "sphinx", "sphinx-rtd-theme", "sqlite", "ssl-match-hostname", "tk", "tornado", "zlib", "newrelic"], "https://github.com/bjodah/chempy": ["dot2tex", "jupyter", "matplotlib", "numpy", "pulp", "pyneqsys", "pyparsing", "quantities", "scipy", "sym", "sympy"], "https://github.com/chjacob-tubs/pyadf-releases": ["numpy", "openbabel", "scipy"], "https://github.com/Nikeshbajaj/spkit": ["matplotlib", "numpy", "python-picard", "scikit-learn", "scipy"], "https://github.com/wright-group/WrightSim": ["h5py", "numpy", "scipy", "wrighttools"], "https://github.com/Curtin-Timescales-of-Mineral-Systems/UPb-Unmixer": ["matplotlib", "numpy", "pyqt5", "scipy", "soerp"], "https://github.com/pietrobarbiero/dbgen": ["mongoengine", "numpy", "pandas", "pymongo", "scipy"], "https://github.com/larslau/DETECT": ["absl-py", "astor", "gast", "grpcio", "h5py", "keras", "keras-applications", "keras-preprocessing", "markdown", "numpy", "pandas", "protobuf", "python-dateutil", "pytz", "pyyaml", "scikit-learn", "scipy", "six", "tensorboard", "tensorflow", "termcolor", "werkzeug"], "https://github.com/edwardoughton/itmlogic": ["sphinx", "fiona", "numpy", "pyproj", "pytest", "rasterio", "rasterstats", "shapely", "simplejson", "tqdm"], "https://github.com/tychotatitscheff/duc-sph": ["cython", "jsonpickle", "pytest", "qdarkstyle"], "https://github.com/impact27/diffusion_device": ["background-rm", "matplotlib", "natsort", "nose", "nose-cover3", "numpy", "opencv-python", "pandas", "registrator", "scipy", "tifffile"], "https://github.com/williamjameshandley/fgivenx": ["matplotlib", "numpy", "scipy", "getdist", "joblib", "numpydoc", "sphinx", "tqdm", "pytest", "pytest-mpl"], "https://github.com/gregtucker/grain_hills": ["bmipy", "landlab"], "https://github.com/holoviz/geoviews": ["bokeh", "cartopy", "holoviews", "numpy", "param", "@bokeh/bokehjs"], "https://github.com/SoftwareDevEngResearch/CAML": ["numpy", "pandas", "python", "pyyaml", "pytest"], "https://github.com/cyTVDN/cyTVDN": ["cython", "hurry-filesize", "psutil", "tabulate"], "https://github.com/birnstiel/two-pop-py": ["astropy", "configobj", "matplotlib", "numpy", "scipy"], "https://github.com/DECLARE-Project/fastpan": ["junit:junit", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.jacoco:jacoco-maven-plugin", "org.mockito:mockito-core"], "https://github.com/reneshbedre/bioinfokit": ["adjusttext", "matplotlib", "matplotlib-venn", "numpy", "pandas", "scikit-learn", "scipy", "seaborn", "statsmodels", "tabulate", "textwrap3"], "https://github.com/INM-6/hybridLFPy": ["lfpy", "matplotlib", "mpi4py", "numpy", "pytest", "scipy"], "https://github.com/caglorithm/mopet": ["aiohttp", "grpcio", "numpy", "pandas", "psutil", "ray", "setproctitle", "tables", "tqdm"], "https://github.com/felicitia/EventExtractor": ["ca.mcgill.sable:soot", "com.github.appium:java-client", "com.google.cloud.tools:jib-maven-plugin", "com.googlecode.json-simple:json-simple", "com.opencsv:opencsv"], "https://github.com/molpopgen/fwdpy11": ["attrs", "black", "blacken-docs", "flake8", "flake8-bugbear", "ipython", "matplotlib", "msprime", "numpy", "pandas", "pybind11", "scipy", "seaborn", "setuptools-scm", "sparse", "sphinx", "sphinx-issues", "tskit"], "https://github.com/jacobwindsor/pubchem-ranker": ["click", "flask", "flask-script", "itsdangerous", "jinja2", "markupsafe", "requests", "werkzeug"], "https://github.com/ENCODE-DCC/caper": ["autouri", "humanfriendly", "matplotlib", "miniwdl", "numpy", "pandas", "pyhocon", "pyopenssl", "requests", "scikit-learn", "six"], "https://github.com/colomoto/colomoto-jupyter": ["beautifulsoup4", "boolean-py", "pandas"], "https://github.com/nicolas-chaulet/torch-points-kernels": ["numba", "scikit-learn", "torch"], "https://github.com/MicroPasts/transcribing-WGS": ["boto", "pybossa-client"], "https://github.com/samapriya/Planet-GEE-Pipeline-GUI": ["bs4", "clipboard", "earthengine-api", "future", "gdal", "google-api-python-client", "planet", "pprint", "pycrypto", "pyopenssl", "pyshp", "pytest", "requests", "requests-toolbelt", "retrying", "simplejson"], "https://github.com/similitude/h2-world-simmer": ["pyhamcrest"], "https://github.com/anthony-nouy/tensap": ["numpy", "scipy"], "https://github.com/ancklo/ChaosMagPy": ["cartopy", "cdflib", "cython", "docutils", "h5py", "hdf5storage", "matplotlib", "numpy", "pandas", "pygments", "scipy"], "https://github.com/mvdh7/calkulate": ["matplotlib", "numpy", "pandas", "pyco2sys", "scipy", "xlrd", "mkdocs-material"], "https://github.com/arviz-devs/arviz": ["astroid", "black", "numpydoc", "pydocstyle", "pylint", "pytest", "pytest-cov", "ghp-import", "ipython", "nbsphinx", "recommonmark", "selenium", "sphinx", "sphinx-bootstrap-theme", "sphinx-gallery", "cmdstanpy", "emcee", "numpyro", "pyjags", "pyro-ppl", "pystan", "tensorflow", "tensorflow-probability", "bokeh", "dask", "numba", "ujson", "matplotlib", "netcdf4", "numpy", "packaging", "pandas", "scipy", "setuptools", "xarray"], "https://github.com/clij/clij-core": ["junit:junit", "net.haesleinhuepf:clij-clearcl", "net.imagej:ij", "net.imagej:imagej-common", "net.imagej:imagej-ops", "net.imglib2:imglib2", "net.imglib2:imglib2-ij", "net.imglib2:imglib2-realtransform", "org.apache.commons:commons-math3", "org.scijava:scijava-common"], "https://github.com/saverymax/qdriven-chiqa-summarization": ["lxml", "nltk", "numpy", "openpyxl", "pandas", "py-rouge", "sklearn", "spacy", "tqdm", "requests", "tensorflow-datasets", "pyrouge"], "https://github.com/jhidding/sustainability": ["ipywidgets", "jupyterlab", "matplotlib", "nbdime", "numpy", "pandas", "scipy"], "https://github.com/arif-zaman/network_probing": ["certifi", "cycler", "joblib", "kiwisolver", "lightgbm", "matplotlib", "numpy", "pandas", "patsy", "pyparsing", "python-dateutil", "pytz", "scikit-learn", "scipy", "seaborn", "six", "statsmodels"], "https://github.com/janpipek/pydiq": ["click", "numpy", "pydicom", "qtpy"], "https://github.com/posterior/goftests": ["flake8", "nose", "scipy", "numpy"], "https://github.com/zarr-developers/zarr-python": ["asciitree", "fasteners", "msgpack-python", "numcodecs", "pytest", "setuptools-scm", "numpy", "azure-storage-blob", "bsddb3", "coverage", "coveralls", "flake8", "flask", "fsspec", "h5py", "ipytree", "lmdb", "moto", "pymongo", "pytest-cov", "pytest-doctestplus", "pytest-remotedata", "redis", "s3fs", "tox", "numpydoc", "setuptools", "sphinx", "sphinx-issues", "sphinx-rtd-theme"], "https://github.com/marco-ka/semantic-annotation-writer": ["com.google.code.gson:gson", "com.google.guava:guava", "edu.stanford.nlp:stanford-tregex", "net.sf.extjwnl:extjwnl", "net.sf.extjwnl:extjwnl-data-wn31", "org.apache.maven.plugins:maven-compiler-plugin", "org.dkpro.core:dkpro-core-berkeleyparser-gpl", "org.dkpro.core:dkpro-core-corenlp-gpl", "org.dkpro.core:dkpro-core-io-bincas-asl", "org.dkpro.core:dkpro-core-io-conll-asl", "org.dkpro.core:dkpro-core-io-penntree-asl", "org.dkpro.core:dkpro-core-io-text-asl", "org.dkpro.core:dkpro-core-io-tgrep-gpl", "org.dkpro.core:dkpro-core-io-xmi-asl", "org.dkpro.core:dkpro-core-maltparser-asl", "org.dkpro.core:dkpro-core-opennlp-asl", "org.dkpro.core:dkpro-core-stanfordnlp-gpl", "org.dkpro.jwktl:dkpro-jwktl", "org.jooq:jool", "org.junit.jupiter:junit-jupiter-api"], "https://github.com/medusa-project/databank": ["activerecord-session_store", "amq-protocol", "amqp_helper", "audited", "autoprefixer-rails", "aws-sdk", "bcrypt", "bootsnap", "bootstrap-sass", "boxr", "browser", "builder", "bunny", "bunny-mock", "byebug", "cancancan", "capistrano-bundler", "capistrano-passenger", "capistrano-rails", "capistrano-rbenv", "capybara", "capybara-email", "coffee-rails", "connection_pool", "cucumber-rails", "curb", "daemons", "database_cleaner", "debase", "delayed_job_active_record", "equivalent-xml", "factory_bot_rails", "figaro", "font-awesome-sass", "google-analytics-rails", "haml", "haml-rails", "iconv", "jbuilder", "jquery-datatables-rails", "jquery-rails", "jquery-ui-rails", "json_spec", "launchy", "medusa_storage", "mime-types", "minitar", "modernizr-rails", "net-ldap", "nokogiri", "nokogiri-diff", "omniauth-identity", "omniauth-rails_csrf_protection", "omniauth-shibboleth", "open_uri_redirections", "passenger", "pg", "poltergeist", "progress_bar", "progress_job", "puma", "rack_session_access", "rails", "rb-readline", "rchardet", "recaptcha", "redcarpet", "rest-client", "roda", "rubocop", "rubocop-performance", "rubocop-rails", "ruby-debug-ide", "ruby-filemagic", "rubyzip", "sass-rails", "sdoc", "selenium-webdriver", "seven_zip_ruby", "shoulda-matchers", "simplecov", "simple_form", "sunspot_rails", "sunspot_solr", "sunspot_test", "tus-server", "uglifier", "uuid", "valid_email", "will_paginate", "will_paginate-bootstrap", "zeroclipboard-rails", "zipline", "actioncable", "actionmailbox", "actionmailer", "actionpack", "actiontext", "actionview", "activejob", "activemodel", "activerecord", "activestorage", "activesupport", "addressable", "airbrussh", "ast", "aws-eventstream", "aws-partitions", "aws-sdk-accessanalyzer", "aws-sdk-acm", "aws-sdk-acmpca", "aws-sdk-alexaforbusiness", "aws-sdk-amplify", "aws-sdk-apigateway", "aws-sdk-apigatewaymanagementapi", "aws-sdk-apigatewayv2", "aws-sdk-appconfig", "aws-sdk-applicationautoscaling", "aws-sdk-applicationdiscoveryservice", "aws-sdk-applicationinsights", "aws-sdk-appmesh", "aws-sdk-appstream", "aws-sdk-appsync", "aws-sdk-athena", "aws-sdk-augmentedairuntime", "aws-sdk-autoscaling", "aws-sdk-autoscalingplans", "aws-sdk-backup", "aws-sdk-batch", "aws-sdk-budgets", "aws-sdk-chime", "aws-sdk-cloud9", "aws-sdk-clouddirectory", "aws-sdk-cloudformation", "aws-sdk-cloudfront", "aws-sdk-cloudhsm", "aws-sdk-cloudhsmv2", "aws-sdk-cloudsearch", "aws-sdk-cloudsearchdomain", "aws-sdk-cloudtrail", "aws-sdk-cloudwatch", "aws-sdk-cloudwatchevents", "aws-sdk-cloudwatchlogs", "aws-sdk-codebuild", "aws-sdk-codecommit", "aws-sdk-codedeploy", "aws-sdk-codeguruprofiler", "aws-sdk-codegurureviewer", "aws-sdk-codepipeline", "aws-sdk-codestar", "aws-sdk-codestarconnections", "aws-sdk-codestarnotifications", "aws-sdk-cognitoidentity", "aws-sdk-cognitoidentityprovider", "aws-sdk-cognitosync", "aws-sdk-comprehend", "aws-sdk-comprehendmedical", "aws-sdk-computeoptimizer", "aws-sdk-configservice", "aws-sdk-connect", "aws-sdk-connectparticipant", "aws-sdk-core", "aws-sdk-costandusagereportservice", "aws-sdk-costexplorer", "aws-sdk-databasemigrationservice", "aws-sdk-dataexchange", "aws-sdk-datapipeline", "aws-sdk-datasync", "aws-sdk-dax", "aws-sdk-detective", "aws-sdk-devicefarm", "aws-sdk-directconnect", "aws-sdk-directoryservice", "aws-sdk-dlm", "aws-sdk-docdb", "aws-sdk-dynamodb", "aws-sdk-dynamodbstreams", "aws-sdk-ebs", "aws-sdk-ec2", "aws-sdk-ec2instanceconnect", "aws-sdk-ecr", "aws-sdk-ecs", "aws-sdk-efs", "aws-sdk-eks", "aws-sdk-elasticache", "aws-sdk-elasticbeanstalk", "aws-sdk-elasticinference", "aws-sdk-elasticloadbalancing", "aws-sdk-elasticloadbalancingv2", "aws-sdk-elasticsearchservice", "aws-sdk-elastictranscoder", "aws-sdk-emr", "aws-sdk-eventbridge", "aws-sdk-firehose", "aws-sdk-fms", "aws-sdk-forecastqueryservice", "aws-sdk-forecastservice", "aws-sdk-frauddetector", "aws-sdk-fsx", "aws-sdk-gamelift", "aws-sdk-glacier", "aws-sdk-globalaccelerator", "aws-sdk-glue", "aws-sdk-greengrass", "aws-sdk-groundstation", "aws-sdk-guardduty", "aws-sdk-health", "aws-sdk-iam", "aws-sdk-imagebuilder", "aws-sdk-importexport", "aws-sdk-inspector", "aws-sdk-iot", "aws-sdk-iot1clickdevicesservice", "aws-sdk-iot1clickprojects", "aws-sdk-iotanalytics", "aws-sdk-iotdataplane", "aws-sdk-iotevents", "aws-sdk-ioteventsdata", "aws-sdk-iotjobsdataplane", "aws-sdk-iotsecuretunneling", "aws-sdk-iotsitewise", "aws-sdk-iotthingsgraph", "aws-sdk-kafka", "aws-sdk-kendra", "aws-sdk-kinesis", "aws-sdk-kinesisanalytics", "aws-sdk-kinesisanalyticsv2", "aws-sdk-kinesisvideo", "aws-sdk-kinesisvideoarchivedmedia", "aws-sdk-kinesisvideomedia", "aws-sdk-kinesisvideosignalingchannels", "aws-sdk-kms", "aws-sdk-lakeformation", "aws-sdk-lambda", "aws-sdk-lambdapreview", "aws-sdk-lex", "aws-sdk-lexmodelbuildingservice", "aws-sdk-licensemanager", "aws-sdk-lightsail", "aws-sdk-machinelearning", "aws-sdk-macie", "aws-sdk-managedblockchain", "aws-sdk-marketplacecatalog", "aws-sdk-marketplacecommerceanalytics", "aws-sdk-marketplaceentitlementservice", "aws-sdk-marketplacemetering", "aws-sdk-mediaconnect", "aws-sdk-mediaconvert", "aws-sdk-medialive", "aws-sdk-mediapackage", "aws-sdk-mediapackagevod", "aws-sdk-mediastore", "aws-sdk-mediastoredata", "aws-sdk-mediatailor", "aws-sdk-migrationhub", "aws-sdk-migrationhubconfig", "aws-sdk-mobile", "aws-sdk-mq", "aws-sdk-mturk", "aws-sdk-neptune", "aws-sdk-networkmanager", "aws-sdk-opsworks", "aws-sdk-opsworkscm", "aws-sdk-organizations", "aws-sdk-outposts", "aws-sdk-personalize", "aws-sdk-personalizeevents", "aws-sdk-personalizeruntime", "aws-sdk-pi", "aws-sdk-pinpoint", "aws-sdk-pinpointemail", "aws-sdk-pinpointsmsvoice", "aws-sdk-polly", "aws-sdk-pricing", "aws-sdk-qldb", "aws-sdk-qldbsession", "aws-sdk-quicksight", "aws-sdk-ram", "aws-sdk-rds", "aws-sdk-rdsdataservice", "aws-sdk-redshift", "aws-sdk-rekognition", "aws-sdk-resourcegroups", "aws-sdk-resourcegroupstaggingapi", "aws-sdk-resources", "aws-sdk-robomaker", "aws-sdk-route53", "aws-sdk-route53domains", "aws-sdk-route53resolver", "aws-sdk-s3", "aws-sdk-s3control", "aws-sdk-sagemaker", "aws-sdk-sagemakerruntime", "aws-sdk-savingsplans", "aws-sdk-schemas", "aws-sdk-secretsmanager", "aws-sdk-securityhub", "aws-sdk-serverlessapplicationrepository", "aws-sdk-servicecatalog", "aws-sdk-servicediscovery", "aws-sdk-servicequotas", "aws-sdk-ses", "aws-sdk-sesv2", "aws-sdk-shield", "aws-sdk-signer", "aws-sdk-simpledb", "aws-sdk-sms", "aws-sdk-snowball", "aws-sdk-sns", "aws-sdk-sqs", "aws-sdk-ssm", "aws-sdk-sso", "aws-sdk-ssooidc", "aws-sdk-states", "aws-sdk-storagegateway", "aws-sdk-support", "aws-sdk-swf", "aws-sdk-synthetics", "aws-sdk-textract", "aws-sdk-transcribeservice", "aws-sdk-transcribestreamingservice", "aws-sdk-transfer", "aws-sdk-translate", "aws-sdk-waf", "aws-sdk-wafregional", "aws-sdk-wafv2", "aws-sdk-workdocs", "aws-sdk-worklink", "aws-sdk-workmail", "aws-sdk-workmailmessageflow", "aws-sdk-workspaces", "aws-sdk-xray", "aws-sigv2", "aws-sigv4", "backports", "bcrypt-ruby"], "https://github.com/schema-app/schema": ["@angular-devkit/architect", "@angular-devkit/build-angular", "@angular-devkit/build-optimizer", "@angular-devkit/build-webpack", "@angular-devkit/core", "@angular-devkit/schematics", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/http", "@angular/language-service", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/router", "@babel/code-frame", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-split-export-declaration", "@babel/highlight", "@babel/parser", "@babel/template", "@babel/traverse", "@babel/types", "@ionic-native/barcode-scanner", "@ionic-native/core", "@ionic-native/file", "@ionic-native/file-transfer", "@ionic-native/http", "@ionic-native/in-app-browser", "@ionic-native/local-notifications", "@ionic-native/media", "@ionic-native/splash-screen", "@ionic-native/status-bar", "@ionic-native/streaming-media", "@ionic/angular", "@ionic/angular-toolkit", "@ionic/core", "@ionic/storage", "@ngtools/webpack", "@ngx-translate/core", "@ngx-translate/http-loader", "@schematics/angular", "@schematics/update", "@types/chart.js", "@types/cordova", "@types/jasmine", "@types/jasminewd2", "@types/node", "@types/q", "@types/selenium-webdriver", "@types/source-list-map", "@types/webpack-sources", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "@yarnpkg/lockfile", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "adm-zip", "after", "agent-base", "agentkeepalive", "ajv", "ajv-errors", "ajv-keywords", "amdefine", "android-versions", "ansi", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "app-root-path", "append-transform", "aproba", "are-we-there-yet", "arg", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-find-index", "array-flatten", "array-slice", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assertion-error", "assign-symbols", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "babel-code-frame", "babel-generator", "babel-messages", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64-js", "base64id", "batch", "bcrypt-pbkdf", "better-assert", "big-integer", "big.js", "binary-extensions", "blob", "block-stream", "blocking-proxy", "bluebird", "bn.js", "body-parser", "bonjour", "bplist-creator", "bplist-parser", "brace-expansion", "braces", "brorand", "browser-stdout", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "browserstack", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "builtins", "bytes", "cacache", "cache-base", "callsite", "camelcase", "camelcase-keys", "caniuse-lite", "canonical-path", "caseless", "chai", "chai-as-promised", "chalk", "chardet", "chart.js", "chartjs-color", "chartjs-color-string", "check-error", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "circular-dependency-plugin", "circular-json", "class-utils", "clean-css", "cli-cursor", "cli-width", "cliui", "clone", "clone-deep", "co", "code-point-at", "codelyzer", "collection-visit", "color-convert", "color-name", "colors", "combine-lists", "combined-stream", "commander", "commondir", "compare-versions", "component-bind", "component-emitter", "component-inherit", "compressible", "compression", "concat-map", "concat-stream", "connect", "connect-history-api-fallback", "console-browserify", "console-control-strings", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "copy-webpack-plugin", "cordova-android", "cordova-common", "cordova-ios", "cordova-plugin-advanced-http", "cordova-plugin-badge", "cordova-plugin-device", "cordova-plugin-file", "cordova-plugin-file-transfer", "cordova-plugin-inappbrowser", "cordova-plugin-ionic-keyboard", "cordova-plugin-ionic-webview", "cordova-plugin-local-notification", "cordova-plugin-splashscreen", "cordova-plugin-statusbar", "cordova-plugin-whitelist", "cordova-sqlite-storage", "core-js", "io", "ionic-cache-src", "jasmine-core", "jasmine-spec-reporter", "karma", "karma-chrome-launcher", "karma-coverage-istanbul-reporter", "karma-jasmine", "karma-jasmine-html-reporter", "moment", "ng2-charts", "phonegap-plugin-barcodescanner", "protractor", "rm", "rxjs", "sass-loader", "ts-node", "tslib", "tslint", "typescript", "zone.js"], "https://github.com/ulmo-dev/ulmo": ["appdirs", "beautifulsoup4", "future", "geojson", "html5lib", "isodate", "lxml", "numpy", "pandas", "pytest", "requests", "suds-jurko", "tables", "freezegun", "httpretty", "mock", "numpydoc", "python-dateutil", "sphinx"], "https://github.com/kuchaale/wcd_2020": ["aostools", "bokeh", "bottleneck", "cartopy", "cfgrib", "cftime", "cython", "cytoolz", "dask", "distributed", "h5netcdf", "h5py", "matplotlib", "nc-time-axis", "netcdf4", "netcdftime", "numpy", "pandas", "scipy", "seaborn", "shapely", "watermark", "xarray", "xclim", "zarr"], "https://github.com/uwmadison-chm/masterfile": ["bumpversion", "coverage", "flake8", "pandas", "pytest", "pyyaml", "sphinx", "tox", "watchdog", "wheel"], "https://github.com/jeeberhardt/unrolr": ["h5py", "matplotlib", "mdanalysis", "numpy", "pandas", "pyopencl"], "https://github.com/Lane-Library/wiki-extract": ["ch.qos.logback:logback-classic", "ch.qos.logback:logback-core", "com.fasterxml.jackson.core:jackson-databind", "javax.mail:mail", "junit:junit", "net.sf.saxon:Saxon-HE", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-project-info-reports-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.slf4j:slf4j-api", "org.springframework:spring-beans", "org.springframework:spring-context", "org.springframework:spring-context-support", "org.springframework:spring-core", "org.springframework:spring-framework-bom", "xerces:xercesImpl"], "https://github.com/pydicom/pynetdicom": ["pydicom", "matplotlib", "numpy", "numpydoc", "pillow", "sphinx", "sphinx-gallery", "sphinx-issues", "sphinx-rtd-theme", "sphinxcontrib-napoleon"], "https://github.com/NLeSC/fairdatapoint": ["connexion", "docopt", "flask", "pyshacl", "rdflib", "rdflib-jsonld", "sparqlwrapper", "swagger-ui-bundle", "werkzeug", "bottle", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "commons-lang:commons-lang", "io.springfox:springfox-swagger-ui", "io.springfox:springfox-swagger2", "javax.servlet:javax.servlet-api", "junit:junit", "org.apache.httpcomponents:httpcore", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-war-plugin", "org.codehaus.jackson:jackson-mapper-asl", "org.codehaus.mojo:cobertura-maven-plugin", "org.mockito:mockito-core", "org.openrdf.sesame:sesame-rio-api", "org.openrdf.sesame:sesame-runtime", "org.powermock:powermock", "org.springframework:spring-core", "org.springframework:spring-test", "org.springframework:spring-web", "org.springframework:spring-webmvc"], "https://github.com/ilyasst/pydictoolkit": ["cmocean", "matplotlib", "pandas", "pillow", "pyyaml", "seaborn"], "https://github.com/NLESC-JCER/QMCTorch": ["argparse", "autograd", "cython", "horovod", "matplotlib", "mendeleev", "mpi4py", "numpy", "pyscf", "pyyaml", "schema", "scipy", "torch", "tqdm", "twiggy"], "https://github.com/AthenaEPI/dmipy": ["boto", "cvxpy", "dipy", "pathlib", "scipy"], "https://github.com/ISA-tools/nmrml2isa": ["openpyxl", "pronto", "six", "isatools"], "https://github.com/usethesource/capsule": ["com.mycila:license-maven-plugin", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.jacoco:jacoco-maven-plugin", "com.pholser:junit-quickcheck-core", "com.pholser:junit-quickcheck-generators", "eu.somatik.serviceloader-maven-plugin:serviceloader-maven-plugin", "io.usethesource:capsule", "io.usethesource:capsule-experimental"], "https://github.com/minzastro/unidam": ["argparse", "astropy", "colorlog", "healpy", "matplotlib", "numpy", "scipy", "simplejson"], "https://github.com/environmentalscience/essm": ["check-manifest", "coverage", "isort", "pydocstyle", "pytest", "pytest-cache", "pytest-cov", "pytest-pep8", "six", "sympy"], "https://github.com/afnogueira/datasetsaner2017": ["bootstrap", "browser-sync", "font-awesome", "gulp", "gulp-clean-css", "gulp-header", "gulp-less", "gulp-rename", "gulp-uglify", "jquery"], "https://github.com/raysect/source": ["cython", "matplotlib", "numpy"], "https://github.com/ivco19/brooks": ["arcovid19", "bokeh", "dateutils", "django-crispy-forms", "django-extensions", "django-heroku", "django-pandas", "django-solo", "django-summernote", "django-tables2", "flake8", "gunicorn", "humanize", "ipdb", "jinja2", "jupyterlab", "openpyxl", "pandas-interactive-html", "pipdeptree", "psycopg2", "psycopg2-binary", "scikit-learn", "sh", "tox", "weasyprint", "wheel", "xlwt"], "https://github.com/mattbv/lidartf": ["mayavi", "numpy", "pandas", "setuptools", "tinfiltering"], "https://github.com/ricoms/gpam_stats": ["numpy", "pandas", "scikit-learn", "scipy"], "https://github.com/Capitains/Sparrow": ["grunt", "grunt-cli", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-jasmine", "grunt-contrib-uglify", "grunt-gh-pages", "grunt-jsdoc", "grunt-jslint", "grunt-release", "jasmine", "jasmine-ajax", "jasmine-expect", "jasmine-jquery", "jquery"], "https://github.com/hpparvi/PyDE": ["numba", "numpy"], "https://github.com/molbiodiv/Blackbird": ["iimog/biom-conversion-server"], "https://github.com/adrn/thejoker": ["astroml", "codecov", "corner", "ipykernel", "nbconvert", "nbformat", "nbsphinx", "pytest", "pytest-astropy", "pyyaml", "sphinx", "sphinx-astropy", "astropy", "cython", "exoplanet", "h5py", "pymc3", "schwimmbad", "tables", "theano", "twobody", "astropy-helpers", "emcee", "matplotlib", "numpy", "scipy"], "https://github.com/davidenunes/context-permeability": ["commons-collections:commons-collections", "commons-lang:commons-lang", "junit:junit", "mason:mason", "org.apache.commons:commons-math3", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.bhave:bhave.network", "org.bhave:experiment"], "https://github.com/akxen/rep-gep": ["appdirs", "certifi", "nose", "numpy", "pandas", "ply", "pyomo", "python-dateutil", "pytz", "pyutilib", "six", "wincertstore", "xlrd"], "https://github.com/joergdietrich/NFW": ["astropy", "numpy", "scipy"], "https://github.com/sandyherho/tutorial_xarray": ["aiohttp", "aiohttp-socks", "aiorpcx", "async-timeout", "attrs", "backcall", "bleach", "bokeh", "cartopy", "certifi", "cffi", "cftime", "chardet", "click", "cloudpickle", "cryptography", "cycler", "cytoolz", "dask", "decorator", "defusedxml", "distributed", "dnspython", "ecdsa", "electrum", "entrypoints", "fsspec", "heapdict", "idna", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "jedi", "jinja2", "jsonrpclib-pelix", "jsonschema", "jupyter-client", "jupyter-core", "kiwisolver", "locket", "markupsafe", "matplotlib", "mistune", "mkl-fft", "mkl-random", "mkl-service", "msgpack", "multidict", "nbconvert", "nbformat", "nc-time-axis", "netcdf4", "notebook", "numpy", "olefile", "owslib", "packaging", "pandas", "pandocfilters", "parso", "partd", "pexpect", "pickleshare", "pillow", "prometheus-client", "prompt-toolkit", "pseudonetcdf", "psutil", "ptyprocess", "pyaes", "pycparser", "pyepsg", "pygments", "pykdtree", "pynio", "pynvim", "pyopenssl", "pyparsing", "pyproj", "pyrsistent", "pyshp", "pysocks", "python-dateutil", "pytz", "pyyaml", "pyzmq", "qdarkstyle", "qrcode", "requests", "scipy", "send2trash", "shapely", "six", "sortedcontainers", "tblib", "terminado", "testpath", "toolz", "tornado", "traitlets", "urllib3", "wcwidth", "webencodings", "xarray", "yarl", "zict", "zipp"], "https://github.com/deniederhut/PyTeX": ["codecov", "cryptography", "cython", "cytoolz", "decorator", "docutils", "fastcache", "fuzzywuzzy", "pickleshare", "pycparser", "pycrypto", "pycurl", "pyopenssl", "pytest", "pytest-cov", "python-levenshtein", "pyyaml", "wheel"], "https://github.com/interaction-lab/MoveToCode": ["AWSSDK.Core", "AWSSDK.Polly"], "https://github.com/FilipeMaia/afnumpy": ["arrayfire", "numpy", "pytest", "pytest-benchmark", "pytest-cov"], "https://github.com/nextgenusfs/amptk": ["biom-format", "biopython", "edlib", "matplotlib", "natsort", "numpy", "pandas", "psutil", "pyfastx", "requests", "seaborn"], "https://github.com/Qiskit/qiskit": ["cvxpy", "ipywidgets", "jupyter", "jupyter-sphinx", "matplotlib", "nbsphinx", "numpy", "pillow", "pydot", "pylatexenc", "pyscf", "seaborn", "sphinx", "sphinx-autodoc-typehints", "sphinx-automodapi", "sphinx-rtd-theme", "sphinx-tabs", "qiskit-aer", "qiskit-aqua", "qiskit-ibmq-provider", "qiskit-ignis", "qiskit-terra"], "https://github.com/CU-Denver-UQ/LUQ": ["matplotlib", "numpy", "scikit-learn", "scipy"], "https://github.com/casimp/lightct": ["matplotlib", "numpy", "scikit-image", "scipy"], "https://github.com/joostjor/random-graphs": ["matplotlib", "networkx", "numpy", "scipy"], "https://github.com/sbonaretti/pyKNEEr": ["itk", "itkwidgets", "matplotlib", "numpy", "pandas", "scikit-image", "scipy", "simpleitk", "watermark", "pytest"], "https://github.com/DataMedSci/pymchelper": ["enum34", "joblib", "numpy", "xlwt", "matplotlib", "pytest", "pytest-xdist", "tox"], "https://github.com/simonvh/pita": ["bcbio-gff", "biopython", "gimmemotifs", "htseq", "networkx", "numpy", "pysam", "pytest", "pyyaml", "sqlalchemy"], "https://github.com/Socrats/EGTTools": ["matplotlib", "networkx", "numpy", "scipy", "ipykernel", "ipywidgets", "nbsphinx", "recommonmark", "sphinx", "sphinx-rtd-theme"], "https://github.com/ihmwg/python-ihm": ["msgpack"], "https://github.com/AlessioZanga/PyEEGLab": ["dataclasses", "mne", "numpy", "pandas", "scipy", "sqlalchemy", "wfdb", "yasa"], "https://github.com/samuelstjean/autodmri": ["joblib", "nibabel", "numpy", "scipy"], "https://github.com/filips123/ZeroFrameJS": ["@pika/cli", "@pika/pack", "@pika/plugin-build-node", "@pika/plugin-build-web", "@pika/plugin-standard-pkg", "@pika/types", "cross-fetch", "ink-docstrap", "isomorphic-ws", "jsdoc", "recursive-object-assign", "standard", "ws", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-import-meta", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-syntax-typescript", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-typescript", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/preset-typescript", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@pika/babel-plugin-esm-import-rewrite", "@samverschueren/stream-to-observable", "@sindresorhus/is", "@szmarczak/http-timer", "@types/color-name", "@types/estree", "@types/events", "@types/glob", "@types/minimatch", "@types/minimist", "@types/node", "@types/normalize-package-data", "acorn", "acorn-jsx", "ajv", "ansi-align", "ansi-escapes", "ansi-regex", "ansi-styles", "any-observable", "argparse", "array-find-index", "array-includes", "array-union", "array-uniq", "arrify", "astral-regex", "async-exit-hook", "babel-plugin-dynamic-import-node", "babel-plugin-dynamic-import-node-babel-7", "balanced-match", "bluebird", "boxen", "brace-expansion", "browserslist", "builtin-modules", "builtins", "cacheable-request", "caller-callsite", "caller-path", "callsites", "camelcase", "camelcase-keys", "caniuse-lite", "catharsis", "chalk", "chardet", "ci-info", "cli-boxes", "cli-cursor", "cli-truncate", "cli-width", "clone-response", "code-point-at", "color-convert", "color-name", "commander", "concat-map", "configstore", "contains-path", "convert-source-map", "core-js-compat", "cosmiconfig", "cross-spawn", "crypto-random-string", "currently-unhandled", "date-fns", "debug", "debug-log", "decamelize", "decamelize-keys", "decompress-response", "deep-extend", "deep-is", "defer-to-connect", "define-properties", "deglob", "del", "detect-indent", "doctrine", "dom-serializer", "domelementtype", "domhandler", "domutils", "dot-prop", "duplexer3", "electron-to-chromium", "elegant-spinner", "emoji-regex", "end-of-stream", "entities", "error-ex", "es-abstract", "es-to-primitive", "escape-string-regexp", "eslint", "eslint-config-standard", "eslint-config-standard-jsx", "eslint-import-resolver-node", "eslint-module-utils", "eslint-plugin-es", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-react", "eslint-plugin-standard", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "estree-walker", "esutils", "execa", "external-editor", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "figures", "file-entry-cache", "file-uri-to-path", "find-root", "find-up", "flat-cache", "flatted", "fs.realpath", "function-bind", "functional-red-black-tree", "gensync", "get-stdin", "get-stream", "github-url-from-git", "glob", "glob-parent", "global-dirs", "globals", "globby", "got", "graceful-fs", "has", "has-ansi", "has-flag", "has-symbols", "has-yarn", "hosted-git-info", "htmlparser2", "http-cache-semantics", "human-signals", "iconv-lite", "ignore", "import-fresh", "import-from"], "https://github.com/Tyler-Yates/AestheticFractals": ["de.congrace:exp4j", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-surefire-plugin"], "https://github.com/fmalmeida/ngs-preprocess": ["sphinx", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml"], "https://github.com/junhyeokahn/tf_rbdl": ["numpy", "setuptools"], "https://github.com/Samreay/ChainConsumer": ["codecov", "matplotlib", "numpy", "numpydoc", "pandas", "pillow", "pytest", "pytest-cov", "scipy", "sphinx", "sphinx-gallery", "sphinx-rtd-theme", "statsmodels"], "https://github.com/JoshuaE1/supervised-classification-SSH-publications": ["joblib", "lightgbm", "nltk", "numpy", "pandas", "scikit-learn", "scikit-multilearn", "scipy", "spacy"], "https://github.com/syhw/DTW_Cython": ["cython", "numpy"], "https://github.com/cerebunit/cerebunit": ["numpy", "quantities", "scipy", "sciunit"], "https://github.com/clebsonpy/HidroComp": ["colorlover", "hydro-python-api", "lmoments3", "pandas", "plotly", "pytz", "pyzmq", "scipy", "six", "statsmodels"], "https://github.com/Terradue/dcs-insar-roipac": ["de.jutzig:github-release-plugin", "org.apache.maven.plugins:maven-antrun-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.scm:maven-scm-provider-gitexe", "org.codehaus.mojo:build-helper-maven-plugin", "org.codehaus.mojo:rpm-maven-plugin"], "https://github.com/drcassar/viscosity-graybox-nn": ["glasspy", "matplotlib", "mendeleev", "python-ternary", "pytorch-lightning", "sklearn", "torch"], "https://github.com/MAVENSDC/PyTplot": ["bokeh", "cdflib", "matplotlib", "numpy", "pandas", "pyqt5", "pyqtgraph", "pyqtwebengine", "scipy", "xarray"], "https://github.com/EricAlcaide/MiniFold": ["absl-py", "astor", "backcall", "biopython", "certifi", "chardet", "colorama", "cycler", "decorator", "defusedxml", "docopt", "entrypoints", "gast", "griddataformats", "grpcio", "h5py", "idna", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "jupyterlab", "jupyterlab-server", "keras", "keras-applications", "keras-preprocessing", "keras-resnet", "kiwisolver", "markdown", "markupsafe", "matplotlib", "mdanalysis", "mistune", "mmtf-python", "mock", "msgpack", "nbconvert", "nbformat", "networkx", "notebook", "numpy", "pandas", "pandocfilters", "parso", "pbr", "pickleshare", "pillow", "pipreqs", "prometheus-client", "prompt-toolkit", "protobuf", "pyautogui", "pygments", "pymsgbox", "pyparsing", "pyperclip", "pyscreeze", "python-dateutil", "pytweening", "pytz", "pywinpty", "pyyaml", "pyzmq", "qtconsole", "requests", "rosetta", "scikit-learn", "scipy", "send2trash", "singledispatch", "six", "sklearn", "tensorboard", "tensorflow-gpu", "termcolor", "terminado", "testpath", "torch", "tornado", "traitlets", "urllib3", "wcwidth", "webencodings", "werkzeug", "widgetsnbextension", "yarg"], "https://github.com/CognitiveComputationLab/ccobra": ["numpy", "pandas"], "https://github.com/holoviz/colorcet": ["param", "pyct"], "https://github.com/jpvantassel/hvsrpy": ["coverage", "numpy", "obspy", "pandas", "scipy", "shapely", "termcolor", "sigpropy", "sphinx", "sphinx-rtd-theme"], "https://github.com/georgeOsdDev/longo": ["chai", "grunt", "grunt-contrib-clean", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-jsdoc", "grunt-mocha-phantomjs", "grunt-mocha-test", "jshint-stylish", "mocha", "promise", "sinon", "underscore", "underscore-query"], "https://github.com/unicus-skmk/test": ["tensorflow"], "https://github.com/DTUComputeStatisticsAndDataAnalysis/MBPLS": ["numpy", "pandas", "scikit-learn", "scipy"], "https://github.com/hyungjun/gtool": ["numpy"], "https://github.com/UofS-Pulse-Binfo/nd_genotypes": ["statonlab/tripal-test-suite", "doctrine/instantiator", "fzaninotto/faker", "guzzlehttp/guzzle", "guzzlehttp/promises", "guzzlehttp/psr7", "myclabs/deep-copy", "phar-io/manifest", "phar-io/version", "phpdocumentor/reflection-common", "phpdocumentor/reflection-docblock", "phpdocumentor/type-resolver", "phpspec/prophecy", "phpunit/php-code-coverage", "phpunit/php-file-iterator", "phpunit/php-text-template", "phpunit/php-timer", "phpunit/php-token-stream", "phpunit/phpunit", "psr/container", "psr/http-message", "ralouphie/getallheaders", "sebastian/code-unit-reverse-lookup", "sebastian/comparator", "sebastian/diff", "sebastian/environment", "sebastian/exporter", "sebastian/global-state", "sebastian/object-enumerator", "sebastian/object-reflector", "sebastian/recursion-context", "sebastian/resource-operations", "sebastian/version", "symfony/console", "symfony/polyfill-ctype", "symfony/polyfill-mbstring", "symfony/polyfill-php73", "symfony/service-contracts", "theseer/tokenizer", "webmozart/assert"], "https://github.com/michaelaye/pyciss": ["coveralls", "matplotlib", "numpy", "pandas", "pytest", "scikit-image", "astropy", "holoviews", "hvplot", "planetpy", "pysis", "seaborn", "tables", "xarray", "jupyter-client", "nbsphinx", "pillow", "sphinxcontrib-bibtex"], "https://github.com/genomematt/pylazybam": ["setuptools"], "https://github.com/arkottke/pygmm": ["numpy", "scipy", "codacy-coverage", "cryptography", "flake8", "jinja2", "pre-commit", "pytest-cov", "pytest-flake8", "pytest-runner", "watchdog", "wheel", "yapf", "matplotlib", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex", "pytest", "six"], "https://github.com/evanodell/ukpolice": ["jake", "jshint", "karma", "leaflet", "magic-string", "mocha", "uglify-js"], "https://github.com/kotori-y/Scopy": ["aplayer", "balloon-css", "promise-polyfill", "smoothscroll"], "https://github.com/gsantoni/ccCluster": ["matplotlib", "numpy", "pathos", "pyqt5", "scipy"], "https://github.com/iancze/MPoL": ["numpy", "scipy", "torch", "torchvision"], "https://github.com/jacobo-diaz/aneupy": ["numpy", "sympy"], "https://github.com/j-stone/cog-tasks": ["ch.tatool:tatool-app", "ch.tatool:tatool-core", "ch.tatool:tatool-test", "com.jolira:onejar-maven-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin"], "https://github.com/broyson/Locust-streaming": ["locustio", "m3u8", "mpegdash", "requests"], "https://github.com/rougier/numpy-100": ["jupyter", "jupyterthemes", "mdutils", "numpy", "pandas"], "https://github.com/castelao/supportdata": ["filelock", "six"], "https://github.com/napsternxg/TwitterNER": ["future", "gensim", "joblib", "jupyter", "matplotlib", "regex", "scikit-learn", "seaborn", "six", "sklearn-crfsuite"], "https://github.com/DomBennett/TaxonNamesResolver": ["setuptools", "six"], "https://github.com/lucaspuvis/SAM": ["joblib", "keras", "matplotlib", "numpy", "sklearn", "tensorflow", "CommandLineParser", "CsvHelper", "Microsoft.ML", "System.Text.Encoding.CodePages", "Microsoft.NET.Test.Sdk", "MSTest.TestAdapter", "MSTest.TestFramework"], "https://github.com/caltechlibrary/handprint": ["appdirs", "boto3", "colorful", "google-api-core", "google-api-python-client", "google-auth", "google-auth-httplib2", "google-cloud", "google-cloud-vision", "googleapis-common-protos", "grpcio", "halo", "humanize", "imagesize", "matplotlib", "numpy", "pillow", "plac", "psutil", "pymupdf", "requests", "setuptools", "stringdist", "termcolor", "textdistance", "urllib3", "wheel"], "https://github.com/unipept/unipept-cli": ["cri", "jeweler", "minitest", "rake", "rubocop", "typhoeus", "addressable", "ast", "builder", "descendants_tracker", "ethon", "faraday", "ffi", "git", "github_api", "hashie", "highline", "jaro_winkler", "jwt", "mime-types", "mini_portile2", "multipart-post", "multi_json", "multi_xml", "nokogiri", "oauth2", "parallel", "parser", "psych", "rack", "rainbow", "rdoc", "ruby-progressbar", "semver2", "thread_safe", "unicode-display_width"], "https://github.com/griffithlab/pVACtools": ["biopython", "bokeh", "connexion", "flask-cors", "jsonschema", "mhcflurry", "mhcnuggets", "mock", "networkx", "pandas", "pillow", "py-postgresql", "pymp-pypi", "pysam", "pyvcf", "pyyaml", "requests", "simanneal", "swagger-spec-validator", "tornado", "vaxrank", "watchdog", "wget", "pvactools", "sphinx", "sphinxcontrib-programoutput", "sphinxjp-themes-basicstrap"], "https://github.com/MAGIC-nexus/nis-python-client": ["pandas", "requests", "webdavclient"], "https://github.com/spacetelescope/jwst-fgs-countrate": ["astropy", "numpy", "pandas", "pytest", "requests"], "https://github.com/skp703/RainInterpolator": ["com.h2database:h2", "junit:junit", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.poi:ooxml-schemas", "org.apache.poi:poi", "org.apache.poi:poi-ooxml", "org.geotools:gt-epsg-hsql", "org.geotools:gt-grid", "org.geotools:gt-shapefile", "org.geotools:gt-swing"], "https://github.com/pysal/spvcm": ["libpysal", "numpy", "pandas", "scipy", "seaborn", "spreg"], "https://github.com/CKrawczyk/densityplot": ["matplotlib", "numpy", "scipy"], "https://github.com/Abe404/root_painter": ["fbs", "natsort", "numpy", "pillow", "pyqt5", "pywavelets", "scikit-image", "scipy", "setuptools", "torch", "torchvision"], "https://github.com/freeknijweide/autoencoder-pdb-cleaning": ["absl-py", "appdirs", "astunparse", "attrs", "backcall", "bleach", "cachetools", "certifi", "chardet", "colorama", "configparser", "cycler", "decorator", "defusedxml", "distlib", "entrypoints", "filelock", "gast", "google-auth", "google-auth-oauthlib", "google-pasta", "graphviz", "grpcio", "h5py", "idna", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "jupyter-tabnine", "keras", "keras-applications", "keras-preprocessing", "kiwisolver", "markdown", "markupsafe", "matplotlib", "mistune", "nbconvert", "nbformat", "neural-structured-learning", "notebook", "numpy", "oauthlib", "opt-einsum", "packaging", "pandas", "pandocfilters", "parso", "pickleshare", "pillow", "plotly", "pluggy", "prometheus-client", "prompt-toolkit", "protobuf", "pyagrum", "pyasn1", "pyasn1-modules", "pydotplus", "pygments", "pyparsing", "pyrsistent", "python-dateutil", "python-jsonrpc-server", "python-language-server", "pytz", "pywin32", "pywinpty", "pyyaml", "pyzmq", "qtconsole", "qtpy", "requests", "requests-oauthlib", "retrying", "rsa", "scikit-learn", "scipy", "send2trash", "six", "tensorboard", "tensorboard-plugin-wit", "tensorflow", "tensorflow-estimator", "termcolor", "terminado", "testpath", "threadpoolctl", "tornado", "traitlets", "urllib3", "virtualenv", "wcwidth", "webencodings", "werkzeug", "widgetsnbextension", "wrapt", "zipp"], "https://github.com/reegis/deflex": ["demandlib", "dill", "matplotlib", "networkx", "numpy", "oemof", "pandas", "reegis", "rtree", "shapely", "workalendar", "xlrd", "xlwt"], "https://github.com/DCAN-Labs/nhp-abcd-bids-pipeline": ["duecredit", "pybids"], "https://github.com/MechMicroMan/DefDAP": ["ipython", "jupyter", "matplotlib", "matplotlib-scalebar", "networkx", "numpy", "pandas", "peakutils", "scikit-image", "scikit-learn", "scipy"], "https://github.com/Climdyn/qgs": ["diffeqpy", "ipython", "julia", "jupyter", "matplotlib", "numba", "numpy", "python", "scipy", "sparse", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex"], "https://github.com/anil88/population-origin-calculator": ["org.jfree:jfreechart", "org.mongodb:mongo-java-driver"], "https://github.com/AlgolLLC/phonetop": ["body-parser", "dotenv", "express", "os-monitor", "twilio"], "https://github.com/jdmoorman/kaczmarz-algorithms": ["numpy", "pytest", "pytest-allclose", "pytest-cov", "pytest-raises", "pytest-timeout", "scipy"], "https://github.com/qzhu2017/PyXtal_FF": ["ase", "matplotlib", "monty", "numba", "numpy", "phonopy", "scipy", "seekpath", "spglib", "torch"], "https://github.com/rodighiero/DH2019": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-compilation-targets", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "accepts", "acorn", "afinn-165", "ajv", "ajv-errors", "ajv-keywords", "ansi-colors", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "apparatus", "aproba", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-types", "async", "async-each", "async-limiter", "asynckit", "atob", "aws-sign2", "aws4", "babel-loader", "babel-plugin-dynamic-import-node", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "bindings", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "camel-case", "camelcase", "caniuse-lite", "caseless", "chalk", "cheerio", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "clean-css", "cliui", "code-point-at", "collapse-white-space", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "console-browserify", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "core-js-compat", "core-util-is", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "css-loader", "css-select", "css-what", "cssesc", "cyclist", "d3", "d3-array", "d3-axis", "d3-brush", "d3-chord", "d3-collection", "d3-color", "d3-contour", "d3-dispatch", "d3-drag", "d3-dsv", "d3-ease", "d3-fetch", "d3-force", "d3-format", "d3-geo", "d3-hierarchy", "d3-interpolate", "d3-path", "d3-polygon", "d3-quadtree", "d3-random", "d3-scale", "d3-scale-chromatic", "d3-selection", "d3-shape", "d3-time", "d3-time-format", "d3-timer", "d3-transition", "d3-voronoi", "d3-zoom", "file-loader", "franc-min", "fs", "html-loader", "html-webpack-plugin", "js-combinatorics", "mini-css-extract-plugin", "natural", "remove-accents", "request", "request-promise", "stopword", "webpack", "webpack-cli", "webpack-dev-server", "abbrev", "are-we-there-yet", "console-control-strings", "dashdash", "debug", "decamelize", "decode-uri-component", "deep-equal"], "https://github.com/ioos/erddapy": ["black", "cartopy", "check-manifest", "doctr", "doctr-versions-menu", "flake8", "flake8-builtins", "flake8-comprehensions", "flake8-mutable", "flake8-print", "interrogate", "iris", "isort", "joblib", "jupyter", "mypy", "nbsphinx", "netcdf4", "pendulum", "pre-commit", "pylint", "pytest", "pytest-cov", "pytest-flake8", "pytest-sugar", "pytest-vcr", "pytest-xdist", "setuptools-scm", "sphinx", "twine", "wheel", "xarray", "pandas", "pytz", "requests"], "https://github.com/bjorntsv/tempmom": ["numpy"], "https://github.com/ARM-DOE/ACT": ["codecov", "coverage", "flake8", "ipython", "matplotlib", "numpydoc", "pytest", "sphinx", "sphinx-copybutton", "sphinx-rtd-theme", "astral", "boto3", "cartopy", "dask", "distributed", "numpy", "pandas", "pint", "pyproj", "requests", "scipy", "six", "xarray"], "https://github.com/tvwenger/millennium-tap-query": ["lxml", "requests"], "https://github.com/3D-e-Chem/knime-klifs": ["org.eclipse.tycho.extras:tycho-buildtimestamp-jgit", "org.eclipse.tycho.extras:tycho-pack200a-plugin", "org.eclipse.tycho.extras:tycho-source-feature-plugin", "org.eclipse.tycho.extras:tycho-sourceref-jgit", "org.eclipse.tycho:target-platform-configuration", "org.eclipse.tycho:tycho-maven-plugin", "org.eclipse.tycho:tycho-p2-plugin", "org.eclipse.tycho:tycho-packaging-plugin", "org.eclipse.tycho:tycho-source-plugin", "org.eclipse.tycho:tycho-versions-plugin", "org.eclipse.tycho.extras:tycho-p2-extras-plugin", "org.eclipse.tycho:tycho-surefire-plugin", "com.google.code.gson:gson", "com.squareup.okhttp:logging-interceptor", "com.squareup.okhttp:okhttp", "io.swagger:swagger-annotations", "joda-time:joda-time", "junit:junit", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:build-helper-maven-plugin"], "https://github.com/harnesscloud/nova-docker": ["babel", "oslo-config", "oslo-serialization", "oslo-utils", "pbr", "six", "coverage", "discover", "fixtures", "hacking", "mock", "mox", "oslosphinx", "python-subunit", "sphinx", "testrepository", "testscenarios", "testtools"], "https://github.com/Clinical-Genomics/chanjo": ["alchy", "click", "coloredlogs", "coveralls", "ipdb", "markdown-include", "mkdocs", "mock", "path", "pylint", "pytest", "pytest-cov", "ruamel.yaml", "toolz", "appnope", "astroid", "attrs", "backcall", "certifi", "chardet", "coverage", "decorator", "docopt", "future", "humanfriendly", "idna", "importlib-metadata", "ipython", "ipython-genutils", "isort", "jedi", "jinja2", "joblib", "lazy-object-proxy", "livereload", "lunr", "markdown", "markupsafe", "mccabe", "more-itertools", "nltk", "packaging", "parso", "path.py", "pexpect", "pickleshare", "pluggy", "prompt-toolkit", "ptyprocess", "py", "pydash", "pygments", "pyparsing", "pyyaml", "regex", "requests", "ruamel.yaml.clib", "six", "sqlalchemy", "tornado", "tqdm", "traitlets", "typed-ast", "urllib3", "wcwidth", "wrapt", "zipp", "docutils", "git-lint", "html-linter", "pycodestyle", "yamllint", "path-py", "ruamel-yaml"], "https://github.com/globalbioticinteractions/elton": ["com.beust:jcommander", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.codehaus.mojo:versions-maven-plugin", "org.eol:eol-globi-registry", "org.jline:jline-terminal", "org.nanopub:nanopub"], "https://github.com/felicitia/TestBenchmark-Java-client": ["com.github.appium:java-client", "org.apache.maven.plugins:maven-compiler-plugin", "org.testng:testng"], "https://github.com/butcer0/found-diagnosis-network": ["asgiref", "certifi", "django", "pillow", "psycopg2-binary", "pytz", "sqlparse", "wincertstore"], "https://github.com/radtorch/radtorch": ["bokeh", "efficientnet-pytorch", "matplotlib", "numpy", "pandas", "pathlib", "pillow", "pydicom", "seaborn", "sklearn", "torch", "torchsummary", "torchvision", "tornado", "tqdm", "xgboost", "xmltodict"], "https://github.com/UT-CHG/PolyADCIRC": ["matplotlib", "numpy", "scipy"], "https://github.com/parsa-epfl/qflex": ["classifier-reborn", "github-pages-health-check", "html-proofer", "jekyll", "jekyll-coffeescript", "jekyll-feed", "jekyll-gist", "jekyll-mentions", "jekyll-paginate", "jekyll-redirect-from", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-textile-converter", "jemoji", "kramdown", "liquid", "rb-fsevent", "rb-gsl", "rdiscount", "redcarpet", "RedCloth", "rouge", "configparser", "netifaces", "psutil"], "https://github.com/martibosch/detectree": ["bumpversion", "coverage", "coveralls", "flake8", "isort", "m2r", "pytest", "sphinx", "sphinx-click", "sphinxcontrib-bibtex", "tox-travis", "yapf", "joblib", "numpy", "pandas", "pymaxflow", "rasterio", "scikit-image", "scikit-learn", "scipy", "tqdm"], "https://github.com/nawrs/nawrs": ["angular-simple-logger", "body-parser", "bower", "cookie-parser", "cors", "debug", "ejs", "express", "jasmine-core", "karma", "karma-chrome-launcher", "karma-firefox-launcher", "karma-jasmine", "karma-junit-reporter", "leaflet", "morgan", "ng-table", "protractor", "serve-favicon", "ui-leaflet"], "https://github.com/arfon/metamatter": ["addressable", "algorithmia", "coderay", "crack", "diff-lcs", "faraday", "hashdiff", "httparty", "json", "method_source", "multipart-post", "multi_xml", "octokit", "pry", "rake", "rspec", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec-support", "safe_yaml", "sawyer", "slop", "thor", "vcr", "webmock", "bundler"], "https://github.com/linsalrob/PPPF": ["biopython", "jsonpickle", "requests"], "https://github.com/peckhams/topoflow": ["cfunits", "h5py", "netcdf4", "numpy", "scipy"], "https://github.com/mekman/recon": ["recon"], "https://github.com/petl-developers/petl": ["aiohttp", "bcolz", "cython", "fastavro", "fsspec", "intervaltree", "lxml", "numexpr", "numpy", "openpyxl", "pandas", "psycopg2", "pymysql", "requests", "s3fs", "smbprotocol", "sqlalchemy", "tables", "whoosh", "xlrd", "xlwt", "mock", "setuptools", "setuptools-scm", "sphinx", "sphinx-issues", "coverage", "coveralls", "nose", "tox"], "https://github.com/piyush82/expression-evaluator": ["com.googlecode.json-simple:json-simple", "junit:junit", "log4j:log4j", "org.apache.maven.plugins:maven-compiler-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.glassfish.jersey.containers:jersey-container-grizzly2-http", "org.glassfish.jersey.media:jersey-media-moxy", "org.glassfish.jersey:jersey-bom", "org.xerial:sqlite-jdbc"], "https://github.com/MAVENSDC/cdflib": ["numpy", "numpydoc", "sphinx", "sphinx-automodapi"], "https://github.com/acocac/MTLCC-MODIS-GCP": ["configparser", "google-api-core", "google-api-python-client", "google-cloud-core", "tensorflow", "cloudml-hypertune", "pandas", "scikit-learn"], "https://github.com/nomencurator/taxonaut": ["ch.qos.logback:logback-classic", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.google.code.findbugs:jsr305", "com.google.guava:guava", "javax.activation:activation", "javax.validation:validation-api", "javax.xml.stream:stax-api", "junit:junit", "org.apache.axis2:axis2-kernel", "org.apache.bval:bval-jsr303", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.poi:poi", "org.apache.poi:poi-ooxml", "org.codehaus.mojo:exec-maven-plugin", "org.gbif.checklistbank:checklistbank-ws-client", "org.gbif:gbif-api", "org.gbif:gbif-common-ws", "org.hamcrest:hamcrest-core", "org.mockito:mockito-core", "org.projectlombok:lombok", "org.slf4j:slf4j-api"], "https://github.com/jw156605/MATCHER": ["gpy", "matplotlib", "scipy"], "https://github.com/vprusso/toqito": ["cvx", "cvxpy", "numpy", "picos", "scikit-image", "scipy"], "https://github.com/abhi1693/yii2-config": ["yiisoft/yii2"], "https://github.com/scikit-hep/uproot-methods": ["awkward", "numpy"], "https://github.com/JustinGOSSES/predictatops": ["anaconda-client", "appdirs", "appnope", "asn1crypto", "astroid", "backcall", "bleach", "bokeh", "branca", "certifi", "cffi", "chardet", "click", "cloudpickle", "clyent", "cryptography", "cycler", "cython", "cytoolz", "dask", "dask-glm", "dask-ml", "dask-xgboost", "decorator", "distributed", "entrypoints", "folium", "hdbscan", "heapdict", "html5lib", "idna", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "isort", "jedi", "jinja2", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "kiwisolver", "lasio", "lazy-object-proxy", "llvmlite", "locket", "markupsafe", "matplotlib", "mccabe", "mistune", "mkl-fft", "mkl-random", "msgpack", "msgpack-python", "multipledispatch", "nb-anacondacloud", "nb-conda", "nb-conda-kernels", "nbconvert", "nbformat", "nbpresent", "notebook", "numba", "numexpr", "numpy", "ordereddict", "packaging", "pandas", "pandocfilters", "parso", "partd", "patsy", "pdvega", "pexpect", "pickleshare", "pooch", "prompt-toolkit", "psutil", "ptyprocess", "pycparser", "pygments", "pylint", "pyopenssl", "pyparsing", "pysocks", "python-dateutil", "pytz", "pyyaml", "pyzmq", "qtconsole", "requests", "scikit-learn", "scipy", "seaborn", "send2trash", "simplegeneric", "six", "sortedcontainers", "statsmodels", "striplog", "tables", "tblib", "terminado", "testpath", "toolz", "tornado", "tqdm", "traitlets", "typed-ast", "umap-learn", "urllib3", "vega", "vega3", "wcwidth", "webencodings", "welly", "widgetsnbextension", "wrapt", "xgboost", "zict", "bumpversion", "coverage", "flake8", "pip", "pytest", "pytest-runner", "sphinx", "tox", "twine", "watchdog", "wheel"], "https://github.com/ThomasRieutord/kabl": ["matplotlib", "netcdf4", "numpy", "pandas", "pytest", "scikit-learn", "scipy", "seaborn"], "https://github.com/pastas/pastas": ["ipykernel", "ipython", "nbsphinx", "nbsphinx-link", "jupyter", "lmfit", "matplotlib", "numba", "numpy", "pandas", "scipy"], "https://github.com/lingpy/workflow-paper": ["python-igraph"], "https://github.com/tomwallis/PsyUtils": ["matplotlib", "nose", "numpy", "pillow", "pycircstat", "scikit-image", "scipy", "seaborn"], "https://github.com/adrn/gala": ["astropy", "cython", "h5py", "numpy", "pyyaml", "scipy"], "https://github.com/kinnala/scikit-fem": ["ipython", "matplotlib", "meshio", "numpy", "pacopy", "pygmsh", "pytest", "scipy", "sphinx", "sphinx-rtd-theme"], "https://github.com/yatiml/yatiml": ["coverage", "mypy", "pycodestyle", "pytest", "pytest-cov", "pytest-flake8", "pytest-mypy", "ruamel-yaml", "typing", "typing-extensions"], "https://github.com/ZFTurbo/Weighted-Boxes-Fusion": ["numba", "numpy", "pandas"], "https://github.com/willpearse/data_frame": ["bundler", "jeweler", "rdoc", "shoulda", "simplecov"], "https://github.com/jameshowison/softcite": ["junit:junit", "org.apache.jena:jena-arq", "org.codehaus.mojo:exec-maven-plugin", "org.hamcrest:hamcrest-library", "org.topbraid:spin"], "https://github.com/clauswilke/PeptideBuilder": ["biopython"], "https://github.com/GatorSense/HyperspectralAnalysisIntroduction": ["appnope", "bleach", "cvxopt", "cycler", "cython", "decorator", "entrypoints", "html5lib", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "markupsafe", "matplotlib", "mistune", "nbconvert", "nbformat", "notebook", "numpy", "pandocfilters", "parso", "pexpect", "pickleshare", "prompt-toolkit", "ptyprocess", "pygments", "pyparsing", "pysptools", "python-dateutil", "pytz", "pyzmq", "qtconsole", "quadprog", "scikit-learn", "scipy", "send2trash", "simplegeneric", "six", "sklearn", "terminado", "testpath", "tornado", "traitlets", "wcwidth", "webencodings", "widgetsnbextension"], "https://github.com/MultithreadCorner/Hydra": ["sphinxcontrib-bibtex"], "https://github.com/mgiorgio/comet-utilities": ["ch.qos.logback:logback-classic", "ch.qos.logback:logback-core", "commons-collections:commons-collections", "junit:junit", "org.apache.commons:commons-lang3", "de.flapdoodle.embed:de.flapdoodle.embed.mongo", "edu.uci.ics.comet:comet-protocol", "edu.uci.ics.comet:event-generator", "org.jdom:jdom", "org.mockito:mockito-core", "org.mongodb:mongodb-driver", "com.rabbitmq:amqp-client", "commons-configuration:commons-configuration", "edu.uci.ics.comet:comet-components", "org.apache.httpcomponents:httpclient", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-source-plugin", "com.google.code.gson:gson", "javax.mail:mail", "org.apache.httpcomponents:httpasyncclient", "org.springframework:spring-context", "org.apache.camel:camel-core", "org.apache.camel:camel-gson", "org.apache.camel:camel-mongodb", "org.apache.camel:camel-rabbitmq", "org.apache.camel:camel-spring", "org.springframework:spring-beans", "org.springframework:spring-core"], "https://github.com/specpose/stopeight": ["cycler", "kiwisolver", "matplotlib", "numpy", "pyparsing", "pyqt5", "pyqt5-sip", "python-dateutil", "six"], "https://github.com/MIC-DKFZ/cmdint": ["chardet", "gitpython", "psutil", "python-telegram-bot", "slackclient", "xmltodict"], "https://github.com/pysat/pysatMadrigal": ["numpy", "pandas", "pysat", "xarray"], "https://github.com/berenslab/pr_bc_connectivity": ["descartes", "pillow", "rpy2", "seaborn", "shapely"], "https://github.com/helioforecast/Predstorm": ["heliosat", "numpy"], "https://github.com/datproject/dat": ["@babel/parser", "@babel/runtime", "@hyperswarm/dht", "@hyperswarm/discovery", "@hyperswarm/hypersign", "@hyperswarm/network", "@mrmlnc/readdir-enhanced", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@types/color-name", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "abstract-random-access", "acorn", "acorn-jsx", "acorn-node", "acorn-walk", "ajv", "ajv-keywords", "ansi-align", "ansi-diff", "ansi-escapes", "ansi-regex", "ansi-split", "ansi-styles", "anymatch", "ap", "append-tree", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-includes", "array-lru", "array-union", "array-uniq", "array-unique", "asn1", "assert-plus", "assign-symbols", "async", "asynckit", "atob", "atomic-batcher", "aws-sign2", "aws4", "babel-code-frame", "balanced-match", "base", "bcrypt-pbkdf", "bitfield-rle", "blake2b", "blake2b-wasm", "body", "boxen", "brace-expansion", "braces", "browser-fingerprint", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "builtins", "bulk-write-stream", "byline", "bytes", "cache-base", "call-me-maybe", "caller-path", "callsites", "camelcase", "capture-stack-trace", "caseless", "chalk", "chardet", "ci-info", "circular-json", "class-utils", "cli-boxes", "cli-cursor", "cli-truncate", "cli-width", "cliclopts", "codecs", "collection-visit", "color-convert", "color-name", "colors", "combined-stream", "component-emitter", "concat-map", "concat-stream", "configstore", "contains-path", "content-types", "copy-descriptor", "core-js", "core-util-is", "corsify", "count-trailing-zeros", "create-error-class", "cross-spawn", "cross-zip", "cross-zip-cli", "crypto-random-string", "cuid", "cycle", "dashdash", "dat-dns", "dat-encoding", "dat-ignore", "dat-json", "dat-link-resolve", "dat-log", "dat-node", "dat-registry", "dat-secret-storage", "dat-storage", "debug", "debug-log", "decode-uri-component", "decompress-response", "deep-equal", "deep-extend", "deep-is", "define-properties", "define-property", "defined", "deglob", "delayed-stream", "dependency-check", "detective", "dht-rpc", "diffy", "dir-glob", "directory-index-html", "dns-packet", "doctrine", "dom-walk", "dot-prop", "dotignore", "duplexer3", "duplexify", "ecc-jsbn", "end-of-stream", "error-ex", "es-abstract", "es-to-primitive", "escape-string-regexp", "escodegen", "eslint", "eslint-config-standard", "eslint-config-standard-jsx", "eslint-import-resolver-node", "eslint-module-utils", "eslint-plugin-es", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-react", "eslint-plugin-standard", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "execa", "execspawn", "expand-brackets", "expand-template", "extend", "extend-shallow", "external-editor", "extglob", "extsprintf", "eyes", "fast-bitfield", "fast-deep-equal", "fast-glob", "fast-json-stable-stringify", "fast-levenshtein", "fastq", "fd-lock", "fd-read-stream", "figures", "file-entry-cache", "fill-range", "find-root", "find-up", "flat-cache", "flat-tree", "for-each", "for-in", "forever-agent", "form-data", "fragment-cache", "from2", "fs-extra", "fs.realpath", "function-bind", "functional-red-black-tree", "get-stdin", "get-stream", "get-value", "getpass", "glob", "glob-parent", "glob-to-regexp", "global", "global-dirs", "globals", "globby", "got", "graceful-fs", "guard-timeout", "har-schema", "har-validator", "has", "has-ansi", "has-flag", "has-symbols", "has-value", "has-values", "hashlru", "hosted-git-info", "http-methods", "http-signature", "hypercore", "hypercore-crypto", "hypercore-protocol", "hyperdrive", "hyperdrive-http", "hyperdrive-network-speed", "hyperswarm", "i", "iconv-lite", "ignore", "import-lazy", "imurmurhash", "inflight", "inherits", "ini", "inquirer", "mkdirp", "neat-log", "pkg", "prettier-bytes", "progress-string", "prompt", "pump", "random-access-memory", "recursive-readdir-sync", "request", "rimraf", "speedometer", "standard", "subcommand", "tape", "tape-spawn", "temporary-directory", "throttle", "update-notifier"], "https://github.com/TUW-GEO/ease_grid": ["numpy", "pyproj", "pytest", "pytest-cov", "sphinx-rtd-theme"], "https://github.com/hrtlacek/faustTools": ["numpy", "pyinotify", "pyo", "pyqtgraph", "pyzmq", "scipy"], "https://github.com/Abe404/segmentation_of_roots_in_soil_with_unet": ["cma", "numpy", "scikit-image", "scipy", "torch", "torchvision"], "https://github.com/ctreffe/alfred": ["click", "cryptography", "dload", "flask", "future", "jinja2", "pymongo", "thesmuggler", "xmltodict"], "https://github.com/myGrid/ruby-zip-container": ["bundler", "coveralls", "rake", "rdoc", "rubocop", "rubyzip", "test-unit"], "https://github.com/ECSIM/pem-dataset1": ["art", "matplotlib", "notebook", "numpy"], "https://github.com/hasantayyar/doi-tools": ["guzzlehttp/guzzle", "php"], "https://github.com/perryuu/managpu": ["pynvml"], "https://github.com/IceCubeOpenSource/ASTERIA": ["astropy", "matplotlib", "nose2", "numpy", "pyyaml", "scipy", "tables"], "https://github.com/jeremyf/orcid_album_cover": ["bundler", "capybara", "capybara-webkit", "nokogiri", "rake", "rest_client"], "https://github.com/josemiotto/pylevy": ["numpy", "scipy"], "https://github.com/JolleJolles/pirecorder": ["cron-descriptor", "croniter", "future", "localconfig", "multiprocess", "numpy", "python-crontab", "pythutils", "pyyaml", "activesupport", "github-pages", "jekyll", "jekyll-feed", "jekyll-gist", "jekyll-include-cache", "jekyll-remote-theme", "just-the-docs", "tzinfo", "tzinfo-data"], "https://github.com/mdolab/pygeo": ["numpy", "pyspline", "scipy", "numpydoc"], "https://github.com/TUW-GEO/rt1": ["matplotlib", "numpy", "pandas", "scipy", "sympy", "numpydoc"], "https://github.com/AnyBody-Research-Group/AnyPyTools": ["numpy", "scipy", "tqdm"], "https://github.com/Yefee/xMCA": ["numpy", "setuptools", "xarray"], "https://github.com/rlworkgroup/garage": ["akro", "click", "cloudpickle", "cma", "dowel", "numpy", "psutil", "python-dateutil", "ray", "scikit-image", "scipy", "setproctitle", "tensorflow", "tensorflow-probability", "torch", "torchvision", "dm-env", "matplotlib", "pyprind", "recommonmark", "sphinx", "sphinx-autoapi", "sphinx-rtd-theme", "sphinxcontrib-bibtex", "google-cloud-storage"], "https://github.com/screensinthewild/screenbase_unity_slideshow": ["media-table-structure-only-sql", "tags-table-structure-only-sql"], "https://github.com/theblackunknown/creative-ecosystems": ["junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.blackpanther:ecosystem-framework"], "https://github.com/simpeg/discretize": ["codecov", "coverage", "cython", "matplotlib", "nbsphinx", "numpydoc", "omf", "pillow", "pylint", "pymatsolver", "pytest", "pytest-cov", "pyvista", "sphinx", "sphinx-gallery", "sphinx-rtd-theme", "sphinxcontrib-apidoc", "sympy", "twine", "vtk", "wheel"], "https://github.com/tactcomplabs/xbgas-tools": ["pexpect"], "https://github.com/LRCFS/GSR_Paper": ["jupytext"], "https://github.com/soft-matter/trackpy": ["matplotlib", "numpy", "pandas", "pyyaml", "scipy", "six"], "https://github.com/jrleeman/biaxtools": ["matplotlib", "nose", "numpy"], "https://github.com/JaGeo/PaulingPublication": ["matplotlib", "numpy", "pymatgen", "pyyaml"], "https://github.com/tobysmith568/License-Sorter": ["@sindresorhus/df", "@stroncium/procfs", "@types/color-name", "@types/inquirer", "@types/license-checker", "@types/node", "@types/through", "abbrev", "aggregate-error", "ansi-colors", "ansi-escapes", "ansi-regex", "ansi-styles", "arg", "array-find-index", "array-union", "array-uniq", "asap", "balanced-match", "brace-expansion", "chalk", "chardet", "clean-stack", "cli-cursor", "cli-spinners", "cli-width", "clone", "color-convert", "color-name", "concat-map", "cp-file", "cross-spawn-async", "debug", "debuglog", "defaults", "dezalgo", "dir-glob", "emoji-regex", "enquirer", "escape-string-regexp", "esm", "execa", "external-editor", "figures", "fs.realpath", "glob", "globby", "graceful-fs", "has-flag", "hosted-git-info", "iconv-lite", "ignore", "indent-string", "inflight", "inherits", "inquirer", "is-fullwidth-code-point", "is-interactive", "is-path-inside", "is-promise", "isexe", "json-parse-better-errors", "license-checker", "lodash", "log-symbols", "lru-cache", "make-dir", "mimic-fn", "minimatch", "minimist", "mkdirp", "mount-point", "move-file", "ms", "mute-stream", "nested-error-stacks", "nopt", "normalize-package-data", "npm-normalize-package-bin", "npm-run-path", "object-assign", "once", "onetime", "ora", "os-homedir", "os-tmpdir", "osenv", "p-map", "p-try", "path-exists", "path-is-absolute", "path-key", "path-parse", "path-type", "pify", "pinkie", "pinkie-promise", "promisify", "pseudomap", "read-installed", "read-package-json", "readdir-scoped-modules", "resolve", "restore-cursor", "run-async", "rxjs", "safe-buffer", "safer-buffer", "semver", "signal-exit", "slash", "slide", "spdx-compare", "spdx-correct", "spdx-exceptions", "spdx-expression-parse", "spdx-license-ids", "spdx-ranges", "spdx-satisfies", "string-width", "strip-ansi", "strip-eof", "supports-color", "through", "tmp", "trash", "treeify", "tsc", "tslib", "type-fest", "typescript", "user-home", "util-extend", "uuid", "validate-npm-package-license", "wcwidth", "when", "which", "wrappy", "xdg-basedir", "xdg-trashdir", "yallist"], "https://github.com/samik1986/ML_Semantic_Segmenation_NMI": ["absl-py", "asn1crypto", "astor", "backcall", "backports-shutil-get-terminal-size", "bcrypt", "bleach", "certifi", "cffi", "chardet", "click", "colorama", "command-not-found", "cryptography", "cupshelpers", "cursor", "cycler", "decorator", "defer", "defusedxml", "distro-info", "entrypoints", "enum34", "future", "gast", "gitdb2", "gitpython", "google-pasta", "grpcio", "h5py", "halo", "hdf5storage", "httplib2", "idna", "imageio", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "jupyterlab", "jupyterlab-server", "keras", "keras-applications", "keras-preprocessing", "keyring", "keyrings-alt", "kiwisolver", "language-selector", "launchpadlib", "lazr-restfulclient", "lazr-uri", "log-symbols", "louis", "macaroonbakery", "mako", "markdown", "markupsafe", "matplotlib", "mistune", "nbconvert", "nbformat", "netifaces", "networkx", "notebook", "numpy", "oauth", "olefile", "opencv-python", "pandas", "pandocfilters", "paramiko", "parso", "pexpect", "pgmagick", "pickleshare", "pillow", "prometheus-client", "prompt-toolkit", "protobuf", "ptyprocess", "pyaml", "pyasn1", "pycairo", "pycparser", "pycrypto", "pycryptodomex", "pycups", "pygments", "pygobject", "pymacaroons", "pynacl", "pyparsing", "pyrfc3339", "python-apt", "python-dateutil", "python-debian", "pytz", "pywavelets", "pyxdg", "pyyaml", "pyzmq", "qtconsole", "reportlab", "requests", "requests-unixsocket", "requirements-parser", "scikit-image", "scikit-learn", "scipy", "scour", "secretstorage", "send2trash", "sentry-sdk", "simplegeneric", "simpleitk", "simplejson", "six", "smmap2", "spell", "spinners", "ssh-import-id", "system-service", "systemd-python", "tabulate", "tensorboard", "tensorboardx", "tensorflow-estimator", "tensorflow-gpu", "termcolor", "terminado", "testpath", "torch", "torchvision", "tornado", "tqdm", "traitlets", "ubuntu-drivers-common", "ufw", "unattended-upgrades", "urllib3", "usb-creator", "wadllib", "wcwidth", "webencodings", "werkzeug", "widgetsnbextension", "wrapt", "xkit", "zope-interface", "apturl", "brlapi", "tensorflow", "cython", "imgaug"], "https://github.com/multiscale/ymmsl-python": ["yatiml", "pycodestyle", "pytest", "pytest-cov", "pytest-mypy", "ruamel-yaml"], "https://github.com/anitagraser/movingpandas": ["bokeh", "cartopy", "geopandas", "geoviews", "hvplot", "matplotlib", "numpy", "pandas", "pyproj", "shapely"], "https://github.com/fls-bioinformatics-core/RnaChipIntegrator": ["nose", "xlsxwriter"], "https://github.com/bionet/ted.python": ["cython", "numpy", "scipy"], "https://github.com/thorstenwagner/ij-trackmate-findmaxima": ["net.imagej:ij", "net.imagej:imagej-common", "net.imglib2:imglib2", "org.apache.maven.plugins:maven-compiler-plugin", "sc.fiji:TrackMate_"], "https://github.com/NHERI-SimCenter/pelicun": ["h5py", "numpy", "pandas", "scipy", "tables", "pytest", "requirements", "analysis", "general", "hazard"], "https://github.com/hibernator11/AprendiendoPython": ["beautifulsoup4", "es-core-news-sm", "nltk", "numpy", "requests", "spacy"], "https://github.com/danieljfarrell/pvtrace": ["anytree", "meshcat", "numpy", "pandas", "trimesh", "jupyter", "matplotlib", "pytest", "sphinx", "sphinx-rtd-theme"], "https://github.com/neuroscout/neuroscout-cli": ["datalad", "docopt", "pyns", "tqdm"], "https://github.com/MichaelMauderer/Gazer": ["appdirs", "numpy", "pyinstaller", "pymongo", "pyyaml", "scipy", "pyqt4"], "https://github.com/FedUni/caliko": ["au.edu.federation.caliko.demo:caliko-demo", "au.edu.federation.caliko.visualisation:caliko-visualisation", "au.edu.federation.caliko:caliko", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "junit:junit", "org.apache.maven.plugins:maven-assembly-plugin", "org.lwjgl:lwjgl", "org.lwjgl:lwjgl-glfw", "org.lwjgl:lwjgl-opengl"], "https://github.com/vcutrona/elasticpedia": ["bump2version", "click", "coverage", "flake8", "pip", "sphinx", "tox", "twine", "watchdog", "wheel", "pyspark"], "https://github.com/aleksandarsibincic/ExcelAudit": ["com.ontotext.graphdb:graphdb-free-runtime", "org.apache.jena:jena-arq", "org.apache.jena:jena-core", "org.apache.jena:jena-tdb", "org.apache.poi:poi", "org.apache.poi:poi-ooxml", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-web"], "https://github.com/aldnav/abempy": ["argparse", "tablib", "wsgiref"], "https://github.com/spectrochempy/spectrochempy": ["brukeropusreader", "cantera", "colorama", "docrep", "git", "ipympl", "ipython", "ipywidgets", "jinja2", "jupyterlab", "matplotlib", "nmrglue", "nodejs", "numba", "numpy", "orderedset", "pandas", "pint", "pyqt", "quadprog", "quaternion", "requests", "scipy", "setuptools-scm", "tqdm", "traitlets", "traittypes", "xlrd"], "https://github.com/isi-nmr/bruker2bart": ["brukerapi", "numpy"], "https://github.com/HobnobMancer/PhD_Project_Scripts": ["autopep8", "bandit", "biopython", "bioservices", "black", "coverage", "flake8", "mypy", "pandas", "pycodestyle", "pydocstyle", "pylint", "pytest", "pytest-cov", "pytest-ordering", "pyyaml", "sphinx", "sphinx-rtd-theme", "tqdm"], "https://github.com/drcassar/glasspy": ["chemparse", "lmfit", "numpy", "pandas", "scipy"], "https://github.com/rieder/MASC": ["amuse", "amuse-framework", "wheel"], "https://github.com/oblassers/tuw-servicebroker": ["click", "flask", "itsdangerous", "jinja2", "markupsafe", "openbrokerapi", "werkzeug"], "https://github.com/Nelson-Gon/pyautocv": ["matplotlib", "numpy", "opencv-python", "scikit-image", "scipy"], "https://github.com/jajcayn/pygpso": ["anytree", "black", "flake8", "gpflow", "json5", "matplotlib", "numpy", "pathos", "pytest", "scikit-learn", "scipy", "pandas", "python-igraph", "tables"], "https://github.com/Craig-Robson/postgres_spatial_join_areas": ["psycopg2"], "https://github.com/MAGIC-nexus/nis-graph-diagrams": ["@angular-devkit/build-angular", "@angular/animations", "@angular/cdk", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/language-service", "@angular/material", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/router", "@types/jasmine", "@types/jasminewd2", "@types/node", "angular-split", "angular-tree-component", "codelyzer", "jasmine-core", "jasmine-spec-reporter", "jquery", "jquery-ui-dist", "karma", "karma-chrome-launcher", "karma-coverage-istanbul-reporter", "karma-jasmine", "karma-jasmine-html-reporter", "mxgraph", "ng-zorro-antd", "protractor", "rxjs", "ts-node", "tslib", "tslint", "typescript", "zone.js"], "https://github.com/silviodc/Gazetteer": ["com.github.mpkorstanje:simmetrics-core", "com.google.guava:guava", "de.julielab:aliasi-lingpipe", "info.debatty:java-string-similarity", "jts:core", "jump:b3p", "org.apache.commons:commons-compress", "org.apache.commons:commons-math3", "org.apache.jena:jena-arq", "org.apache.jena:jena-core", "org.slf4j:slf4j-api", "org:openmap"], "https://github.com/alchemistry/alchemlyb": ["alchemtest", "matplotlib", "numpy", "pandas", "pymbar", "pytest", "scikit-learn", "scipy"], "https://github.com/timtroendle/energy-agents": ["commons-cli:commons-cli", "junit:junit", "org.apache.commons:commons-csv", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.hamcrest:hamcrest-junit", "org.javatuples:javatuples", "org.mockito:mockito-core", "org.xerial:sqlite-jdbc", "uk.ac.cam.eeci:simulation-framework"], "https://github.com/xgcm/xgcm": ["dask", "docrep", "future", "numpy", "xarray"], "https://github.com/mheikenfeld/wrfcube": ["cartopy", "cf-units", "iris", "matplotlib", "numpy", "pandas", "pytables", "scikit-learn", "scipy", "xarray"], "https://github.com/sojamo/midimapper": ["junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.processing:papplet"], "https://github.com/datreant/MDSynthesis": ["datreant", "h5py", "mdanalysis", "numpy", "pandas", "tables"], "https://github.com/UNSW-CEEM/NEMOSIS": ["feather-format", "joblib", "pandas", "pyarrow", "requests"], "https://github.com/KeplerGO/K2fov": ["numpy"], "https://github.com/atorras1618/PerMaViss": ["numpy", "scipy", "sphinxcontrib-napoleon"], "https://github.com/tubiana/TTClust": ["argcomplete", "argparse", "cython", "matplotlib", "mdtraj", "numpy", "pandas", "prettytable", "progressbar2", "scipy", "scitkit-learn", "scikit-learn"], "https://github.com/matt-long/xpersist": ["dask", "netcdf4", "numpy", "pytest", "pytest-cov", "toolz", "xarray", "zarr"], "https://github.com/bast/smeshing": ["click", "numpy", "pycodestyle", "pytest", "pytest-cov", "python-coveralls", "pyyaml", "scipy", "cffi", "delaunay", "polygons", "black", "matplotlib"], "https://github.com/Scifabric/pybossa": ["alembic", "arrow", "asn1crypto", "babel", "beautifulsoup4", "blinker", "certifi", "cffi", "chardet", "click", "colorama", "cov-core", "coverage", "croniter", "cryptography", "cssselect", "debtcollector", "decorator", "email-validator", "entrypoints", "factory-boy", "faker", "feedparser", "flask", "flask-assets", "flask-babel", "flask-cors", "flask-debugtoolbar", "flask-httpauth", "flask-json-multidict", "flask-login", "flask-mail", "flask-misaka", "flask-oauthlib", "flask-plugins", "flask-profiler", "flask-simpleldap", "flask-sqlalchemy", "flask-wtf", "flatten-json", "google-api-python-client", "html2text", "httplib2", "humanize", "idna", "iiif-prezi", "infinity", "intervals", "iso8601", "itsdangerous", "jeepney", "jinja2", "jsmin", "keyring", "keystoneauth1", "libsass", "lxml", "mako", "markdown", "markupsafe", "misaka", "mock", "msgpack", "ndg-httpsclient", "netaddr", "netifaces", "nose", "nose-cov", "numpy", "oauth2client", "oauthlib", "os-service-types", "oslo-config", "oslo-i18n", "oslo-serialization", "oslo-utils", "otpauth", "pandas", "pbr", "pillow", "prettytable", "psycopg2-binary", "pyasn1", "pyasn1-modules", "pybossa-onesignal", "pycountry", "pycparser", "pycryptodome", "pyjwt", "pyld", "pyldap", "pyopenssl", "pyparsing", "python-dateutil", "python-editor", "python-keystoneclient", "python-ldap", "python-novaclient", "pytz", "pyyaml", "rackspace-auth-openstack", "rackspace-novaclient", "raven", "readability-lxml", "redis", "rednose", "requests", "requests-oauthlib", "rfc3986", "rq", "rq-dashboard", "rq-scheduler", "rsa", "secretstorage", "simplejson", "six", "soupsieve", "speaklater", "sqlalchemy", "stevedore", "termstyle", "text-unidecode", "twitter", "unidecode", "uritemplate", "urllib3", "validators", "webassets", "werkzeug", "wrapt", "wtforms", "wtforms-components", "yacryptopan"], "https://github.com/ds-wizard/docs": ["sphinx", "sphinx-rtd-theme"], "https://github.com/abelcarreras/phonolammps": ["dynaphopy", "matplotlib", "numpy", "phonopy", "seekpath"], "https://github.com/jason-zl190/sisr_medical": ["numpy", "pandas", "scikit-image", "tensorflow-datasets", "tensorflow-gpu"], "https://github.com/mdshw5/pyfaidx": ["biopython", "mock", "nose", "setuptools", "six"], "https://github.com/wiebket/delprocess": ["feather-format", "numpy", "pandas", "pathlib", "plotly", "pyodbc", "pyshp", "shapely"], "https://github.com/holoviz/datashader": ["bokeh", "colorcet", "dask", "datashape", "numba", "numpy", "pandas", "param", "pillow", "pyct", "scipy", "toolz", "xarray"], "https://github.com/ISA-tools/mzml2isa": ["openpyxl", "pronto", "six", "codecov", "coverage", "green", "pip", "pyinstaller", "setuptools", "twine", "wheel", "isatools", "parameterized"], "https://github.com/ajefweiss/HelioSat": ["bs4", "cdflib", "netcdf4", "numba", "numpy", "requests", "requests-ftp", "spiceypy"], "https://github.com/houghb/savvy": ["bokeh", "ipywidgets", "jupyter", "matplotlib", "numpy", "pandas", "salib"], "https://github.com/fnl/gnamed": ["bumpversion", "progress-bar", "psycopg2", "sqlalchemy"], "https://github.com/jjgomera/iapws": ["numpy", "numpydoc", "scipy", "sphinx-rtd-theme"], "https://github.com/dicom/rtp-connect": ["bundler", "dicom", "mocha", "rake", "redcarpet", "rspec", "yard"], "https://github.com/moonso/genmod": ["click", "configobj", "extract-vcf", "interval-tree", "intervaltree", "ped-parser", "pytabix", "pytest", "vcftoolbox"], "https://github.com/zafarali/emdp": ["numpy"], "https://github.com/phydev/trajpy": ["matplotlib", "numpy", "scikit-learn", "scipy", "ipykernel", "ipython", "nbsphinx", "sphinx"], "https://github.com/IMMM-SFA/im3py": ["pandas", "pyyaml", "requests"], "https://github.com/yadage/yadage-schemas": ["click", "jsonref", "jsonschema", "pyyaml", "requests"], "https://github.com/karenadam/Mixed-Bandlimited-Time-Encoding": ["appdirs", "atomicwrites", "attrs", "black", "click", "cycler", "importlib-metadata", "kiwisolver", "matplotlib", "more-itertools", "numpy", "packaging", "pluggy", "py", "pyparsing", "pytest", "python-dateutil", "scipy", "six", "toml", "wcwidth", "zipp"], "https://github.com/spacetelescope/gwcs": ["asdf", "astropy", "numpy", "pytest", "pytest-doctestplus", "scipy"], "https://github.com/mkjung99/pyc3dserver": ["numpy", "pywin32", "scipy"], "https://github.com/reegis/reegis": ["demandlib", "geopandas", "numpy", "pandas", "pvlib", "pyproj", "python-dateutil", "pytz", "requests", "rtree", "shapely", "tables", "windpowerlib", "workalendar", "xlrd"], "https://github.com/kimlab/GPyM": ["numpy"], "https://github.com/woutergins/satlas": ["h5py", "lmfit", "matplotlib", "numdifftools", "numpy", "pandas", "scipy", "sympy", "uncertainties"], "https://github.com/lachhebo/pyclustertend": ["matplotlib", "numpy", "pandas", "scikit-learn", "pyclustertend", "sphinx", "sphinx-autobuild", "sphinx-gallery", "sphinx-rtd-theme", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "sphinxcontrib-websupport"], "https://github.com/wiebket/delretrieve": ["feather-format", "numpy", "pandas", "pathlib", "plotly", "pyodbc"], "https://github.com/digitallinguistics/transliterate": ["@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@babel/parser", "@types/color-name", "acorn", "acorn-jsx", "ajv", "ansi-colors", "ansi-regex", "ansi-styles", "anymatch", "argparse", "array-uniq", "array.prototype.map", "astral-regex", "balanced-match", "binary-extensions", "bluebird", "brace-expansion", "braces", "browser-stdout", "callsites", "camelcase", "catharsis", "chalk", "chokidar", "cliui", "color-convert", "color-name", "concat-map", "cross-spawn", "debug", "decamelize", "deep-is", "define-properties", "diff", "doctrine", "dom-serializer", "domelementtype", "domhandler", "domutils", "emoji-regex", "enquirer", "entities", "es-abstract", "es-array-method-boxes-properly", "es-get-iterator", "es-to-primitive", "escape-string-regexp", "eslint", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "expect.js", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "file-entry-cache", "fill-range", "find-up", "flat", "flat-cache", "flatted", "fs.realpath", "fsevents", "function-bind", "functional-red-black-tree", "get-caller-file", "glob", "glob-parent", "globals", "graceful-fs", "growl", "has", "has-flag", "has-symbols", "he", "htmlparser2", "ignore", "import-fresh", "imurmurhash", "inflight", "inherits", "ink-docstrap", "is-arguments", "is-binary-path", "is-buffer", "is-callable", "is-date-object", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-map", "is-number", "is-regex", "is-set", "is-string", "is-symbol", "isarray", "isexe", "iterate-iterator", "iterate-value", "js-tokens", "js-yaml", "js2xmlparser", "jsdoc", "json-schema-traverse", "json-stable-stringify-without-jsonify", "klaw", "levn", "linkify-it", "locate-path", "lodash", "lodash.clonedeep", "lodash.escaperegexp", "lodash.isplainobject", "lodash.isstring", "lodash.mergewith", "log-symbols", "markdown-it", "markdown-it-anchor", "marked", "mdurl", "minimatch", "minimist", "mkdirp", "mocha", "moment", "ms", "natural-compare", "normalize-path", "number-is-nan", "object-inspect", "object-keys", "object.assign", "once", "optionator", "p-limit", "p-locate", "p-try", "parent-module", "path-exists", "path-is-absolute", "path-key", "picomatch", "postcss", "prelude-ls", "progress", "promise.allsettled", "punycode", "readdirp", "regexpp", "require-directory", "require-main-filename", "requizzle", "resolve-from", "rimraf", "safe-buffer", "sanitize-html", "semver", "serialize-javascript", "set-blocking", "shebang-command", "shebang-regex", "slice-ansi", "sprintf-js", "srcset", "string-width", "string.prototype.trimend", "string.prototype.trimstart", "string_decoder", "strip-ansi", "strip-json-comments", "supports-color", "table", "taffydb", "text-table", "to-regex-range", "type-check", "type-fest", "uc.micro", "underscore", "uri-js", "util-deprecate", "v8-compile-cache", "which", "which-module", "wide-align", "word-wrap", "workerpool", "wrap-ansi", "wrappy", "write", "xmlcreate", "xtend", "y18n", "yargs", "yargs-parser", "yargs-unparser"], "https://github.com/nlesc-nano/Nano-Utils": ["assertionlib", "contextlib2", "pydocstyle", "pytest", "pytest-cov", "pytest-flake8", "pytest-mypy", "pytest-pydocstyle", "schema", "typing-extensions"], "https://github.com/oemof/oemof-thermal": ["matplotlib", "numpy", "oemof-solph", "pandas", "pvlib", "flake8", "pylint"], "https://github.com/LRydin/MFDFA": ["emd-signal", "numpy"], "https://github.com/Flowminder/FlowKit": ["flask-jwt-extended", "ipython", "jupyterlab", "quart", "aiofiles", "appnope", "backcall", "bleach", "blinker", "certifi", "chardet", "click", "decorator", "defusedxml", "entrypoints", "flask", "h11", "h2", "hpack", "hypercorn", "hyperframe", "idna", "ipykernel", "ipython-genutils", "itsdangerous", "jedi", "jinja2", "jsonschema", "jupyter-client", "jupyter-core", "jupyterlab-server", "markupsafe", "mistune", "multidict", "nbconvert", "nbformat", "notebook", "numpy", "pandas", "pandocfilters", "parso", "pexpect", "pickleshare", "prometheus-client", "prompt-toolkit", "ptyprocess", "pygments", "pyjwt", "python-dateutil", "pytoml", "pytz", "pyzmq", "requests", "send2trash", "six", "sortedcontainers", "terminado", "testpath", "tornado", "traitlets", "typing-extensions", "urllib3", "wcwidth", "webencodings", "werkzeug", "wsproto", "black", "chroma-py", "descartes", "geopandas", "ipywidgets", "mapboxgl", "markdown", "mkdocs", "mkdocs-material", "mknotebooks", "mktheapidocs", "numpydoc", "pymdown-extensions", "tabulate", "alabaster", "alembic", "apache-airflow", "apispec", "apispec-oneofschema", "appdirs", "argcomplete", "argon2-cffi", "asyncpg", "attrs", "babel", "cached-property", "cachetools", "cattrs", "cffi", "click-plugins", "cligj", "colorama", "colorlog", "colour", "configparser", "croniter", "cryptography", "cycler", "dill", "dnspython", "docutils", "email-validator", "finist", "fiona", "flask-admin", "flask-appbuilder", "flask-babel", "flask-caching", "flask-login", "flask-openid", "flask-sqlalchemy", "flask-swagger", "flask-wtf", "funcsigs", "future", "geojson", "get-secret-or-env-var", "graphviz", "gunicorn", "imagesize", "iso8601", "joblib", "json-merge-patch", "json5", "kiwisolver", "lazy-object-proxy", "livereload", "lockfile", "lunr", "mako", "marshmallow", "marshmallow-enum", "marshmallow-oneofschema", "marshmallow-sqlalchemy", "matplotlib", "merge-args", "mkdocs-material-extensions", "munch", "natsort", "networkx", "nltk", "openapi-spec-validator", "packaging", "pathspec", "pendulum", "pglast", "pillow", "prance", "priority", "prison", "psutil", "psycopg2-binary", "pycparser", "pyparsing", "pyproj", "pyrsistent", "pytest-runner", "python-daemon", "python-editor", "python-louvain", "python-nvd3", "python-rapidjson", "python-slugify", "python3-openid", "pytzdata", "pyyaml", "quart-jwt-extended", "redis", "regex", "semver", "setproctitle", "shapely", "snowballstemmer", "sphinx", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "sqlalchemy", "sqlalchemy-jsonfield", "sqlalchemy-utils", "structlog", "tenacity", "text-unidecode", "thrift", "toml", "tqdm", "typed-ast", "tzlocal", "ujson", "unicodecsv", "widgetsnbextension", "wtforms", "zope.deprecation", "asynctest", "pytest", "pytest-asyncio", "pytest-cov", "coverage", "iniconfig", "pluggy", "py", "argon2_cffi", "dogpile.cache", "flask-principal", "mysqlclient", "passlib", "pyotp", "simplejson", "versioneer", "zxcvbn", "more-itertools", "pbr", "stevedore", "ansible", "ansible-base", "ipdb", "approvaltests", "cachey", "get_secret_or_env_var", "pre_commit", "pytest-testmon", "SQLAlchemy", "watchdog", "cfgv", "distlib", "filelock", "heapdict", "identify", "nodeenv", "pathtools", "pre-commit", "pyperclip", "virtualenv", "dogpile-cache", "tavern", "ansiwrap", "async-generator", "cloudpickle", "dask", "distributed", "docker", "docopt", "fsspec", "jmespath", "locket", "msgpack", "mypy-extensions", "nbclient", "nest-asyncio", "nteract-scrapbook", "paho-mqtt", "papermill", "partd", "prefect", "pyarrow", "pykwalify", "python-box", "ruamel.yaml", "ruamel.yaml.clib", "sh", "tblib", "textwrap3", "toolz", "websocket-client", "zict"], "https://github.com/linhd-postdata/desir": ["numpy", "pandas", "pip", "squarify", "bump2version", "coverage", "flake8", "gensim", "nltk", "pyldavis", "pytest", "pytest-runner", "sphinx", "tox", "twine", "watchdog", "wheel", "spacy"], "https://github.com/DLR-SC/gitlab2prov": ["aiohttp", "prov", "pydot", "yarl"], "https://github.com/openearth/aeolis-python": ["bmi-python", "codecov", "coverage", "netcdf4", "nose", "scipy", "docopt", "numpy", "sphinxcontrib-bibtex", "sphinxcontrib-napoleon"], "https://github.com/Lonero-Team/Decentralized-Internet": ["@ember/optional-features", "@jupyterlab/notebook", "async", "babel-eslint", "bcrypt", "bigchaindb-driver", "bitcoin-protocol", "bitcoin-util", "broccoli-asset-rev", "coins", "easy-bigchain", "ember-auto-import", "ember-cli", "ember-cli-babel", "ember-cli-dependency-checker", "ember-cli-eslint", "ember-cli-htmlbars", "ember-cli-inject-live-reload", "ember-cli-sri", "ember-cli-template-lint", "ember-cli-uglify", "ember-disable-prototype-extensions", "ember-export-application-global", "ember-load-initializers", "ember-maybe-import-regenerator", "ember-qunit", "ember-resolver", "ember-source", "ember-source-channel-url", "ember-try", "eslint-plugin-ember", "eslint-plugin-node", "grunt", "grunt-contrib-clean", "grunt-contrib-jshint", "grunt-contrib-nodeunit", "hash.js", "husky", "lerna", "loader.js", "lotion", "minify", "minimist", "pm2", "qunit-dom", "snyk", "tendermint", "typescript", "websocket-stream", "@protobufjs/aspromise", "@protobufjs/base64", "@protobufjs/codegen", "@protobufjs/eventemitter", "@protobufjs/fetch", "@protobufjs/float", "@protobufjs/inquire", "@protobufjs/path", "@protobufjs/pool", "@protobufjs/utf8", "@types/long", "@types/node", "abci", "abstract-leveldown", "ansi-regex", "ansi-styles", "argparse", "async-limiter", "axios", "babel-code-frame", "babel-messages", "babel-runtime", "babel-traverse", "babel-types", "babylon", "balanced-match", "base-x", "bech32", "bencode", "bigi", "binary", "bindings", "bip32", "bip66", "bitcoin-merkle-proof", "bitcoin-net", "bitcoin-ops", "bitcoin-peg", "bitcoinjs-lib", "bittorrent-dht", "bl", "blockchain-download", "blockchain-spv", "bn.js", "brace-expansion", "brorand", "browserify-aes", "bs58", "bs58check", "buffer-compare", "buffer-equals", "buffer-from", "buffer-reverse", "buffer-xor", "buffers", "builtin-modules", "camelcase", "chainsaw", "chalk", "chrome-dgram", "chrome-dns", "chrome-net", "cipher-base", "circular-append-file", "cliui", "code-point-at", "concat-map", "core-js", "core-util-is", "create-hash", "create-hmac", "cross-spawn", "debug", "decamelize", "deferred-leveldown", "depcheck", "deprecate", "deps-regex", "deterministic-json", "discovery-channel", "dns-discovery", "dns-packet", "dns-socket", "drbg.js", "duplexify", "ecurve", "ed25519-supercop", "elliptic", "encoding-down", "end-of-stream", "errno", "error-ex", "escape-string-regexp", "esprima", "esutils", "event-cleanup", "evp_bytestokey", "execa", "file-uri-to-path", "find-up", "follow-redirects", "fs-extra", "fs.realpath", "fstream", "get-browser-rtc", "get-caller-file", "get-port", "get-stream", "glob", "globals", "graceful-fs", "has-ansi", "hash-base", "hat", "hmac-drbg", "hosted-git-info", "immediate", "inflight", "inherits", "int53", "invariant", "invert-kv", "ip", "is-arrayish", "is-buffer", "is-fullwidth-code-point", "is-stream", "is-typedarray", "isarray", "isexe", "isstream", "js-tokens", "js-yaml", "json-stable-stringify", "json-stringify-safe", "jsonfile", "jsonify", "k-bucket", "k-rpc", "k-rpc-socket", "lcid", "level", "level-codec", "level-concat-iterator", "level-errors", "level-iterator-stream", "level-js", "level-packager", "level-supports", "leveldown", "levelup", "load-json-file", "locate-path", "lodash", "lodash.get", "long", "loose-envify", "lotion-connect", "lotion-router", "lotion-state-machine", "lru", "lru-cache", "ltgt", "map-deque", "match-stream", "md5.js", "mem", "merk", "merkle-lib", "mimic-fn", "minimalistic-assert", "minimalistic-crypto-utils", "minimatch", "mkdirp", "ms", "multicast-dns", "multiplex", "multistream", "muta", "nan", "napi-macros", "natives", "ndjson", "network-address", "nice-try", "node-gyp-build", "normalize-package-data", "npm-run-path", "npx", "number-is-nan", "object-assign", "old", "on-object", "once", "opencollective-postinstall", "options", "os-locale", "over", "p-finally", "p-limit", "p-locate", "p-try", "parse-json", "path-exists", "path-is-absolute", "path-key", "path-parse", "path-type", "peer-exchange", "pify", "pretty-hash", "process-nextick-args", "progress", "protobufjs", "protocol-buffers-encodings", "proxmise", "prr", "pseudomap", "pullstream", "pump", "pumpify", "pushdata-bitcoin", "pxp", "randombytes", "read-pkg", "read-pkg-up", "readable-stream", "regenerator-runtime", "repeat-string", "require-directory", "require-main-filename", "require-package-name", "resolve", "rimraf", "ripemd160", "run-series", "rusha", "safe-buffer", "secp256k1", "semver", "set-blocking", "setimmediate", "sha.js", "shebang-command", "joi", "@types/expect", "@types/express", "@types/mocha", "@types/mosca", "concurrently", "decentralized-internet", "express", "influx", "mocha", "mosca", "mqtt", "nodemon", "ts-mocha", "ts-node", "tslint", "ttn", "vuepress", "@hapi/joi", "bluebird", "lab", "prompt", "request", "underscore", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-syntax-typescript", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-typescript", "@babel/plugin-transform-unicode-regex", "@babel/polyfill", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@blueprintjs/core", "@blueprintjs/icons", "@blueprintjs/select", "@ember-data/rfc395-data", "@ember/edition-utils", "@jupyterlab/apputils", "@jupyterlab/attachments", "@jupyterlab/cells", "@jupyterlab/codeeditor", "@jupyterlab/codemirror", "@jupyterlab/coreutils", "@jupyterlab/docmanager", "@jupyterlab/docregistry", "@jupyterlab/filebrowser", "@jupyterlab/nbformat", "@jupyterlab/observables", "@jupyterlab/outputarea", "@jupyterlab/rendermime", "@jupyterlab/rendermime-interfaces", "@jupyterlab/services", "@jupyterlab/settingregistry", "@jupyterlab/statedb", "@jupyterlab/statusbar", "@jupyterlab/ui-components", "@lumino/algorithm", "@lumino/collections", "@lumino/commands", "@lumino/coreutils", "@lumino/disposable", "@lumino/domutils", "@lumino/dragdrop", "@lumino/keyboard", "@lumino/messaging", "@lumino/polling", "@lumino/properties", "@lumino/signaling", "@lumino/virtualdom", "@lumino/widgets", "@mapbox/sanitize-caja", "@sindresorhus/is", "@snyk/cli-interface", "@snyk/cocoapods-lockfile-parser", "@snyk/composer-lockfile-parser", "@snyk/dep-graph", "@snyk/docker-registry-v2-client", "@snyk/gemfile", "@snyk/java-call-graph-builder", "@snyk/rpm-parser", "@snyk/snyk-cocoapods-plugin", "@snyk/snyk-docker-pull", "@szmarczak/http-timer", "@types/cacheable-request", "@types/color-name", "@types/debug", "@types/dom4", "@types/events", "@types/fs-extra", "@types/glob", "@types/graphlib", "@types/hosted-git-info", "@types/http-cache-semantics", "@types/js-yaml", "@types/keyv", "@types/minimatch", "@types/prop-types", "@types/react", "@types/responselike", "@types/rimraf", "@types/semver", "@types/symlink-or-copy", "@yarnpkg/lockfile", "abbrev", "accepts", "agent-base", "ajv", "amd-name-resolver", "ansi-align", "ansi-escapes", "ansicolors", "anymatch", "archy", "arr-diff", "arr-flatten", "arr-union", "array-each", "array-equal", "array-flatten", "array-slice", "array-uniq", "array-unique", "asap", "asn1", "assert-plus", "assign-symbols", "ast-types", "async-disk-cache", "async-promise-queue", "asynckit", "atob", "aws-sign2", "aws4", "babel-plugin-debug-macros", "babel-plugin-dynamic-import-node", "babel-plugin-ember-data-packages-polyfill", "babel-plugin-ember-modules-api-polyfill", "babel-plugin-htmlbars-inline-precompile", "babel-plugin-module-resolver", "base", "base64-js", "base64url", "basic-auth", "bcrypt-pbkdf", "big-integer", "binary-extensions", "binaryextensions", "blank-object", "body-parser", "boxen", "braces", "broccoli-babel-transpiler", "broccoli-debug", "broccoli-funnel", "broccoli-kitchen-sink-helpers", "broccoli-merge-trees", "broccoli-node-api", "chokidar", "coffeescript", "config-chain", "grunt-git-authors", "grunt-retire", "optimist", "socket.io", "wiki-client", "wiki-plugin-activity", "wiki-plugin-assets", "wiki-plugin-audio", "wiki-plugin-bars", "wiki-plugin-bytebeat", "wiki-plugin-calculator", "wiki-plugin-calendar", "wiki-plugin-changes", "wiki-plugin-chart", "wiki-plugin-code", "wiki-plugin-data", "wiki-plugin-factory", "wiki-plugin-favicon", "wiki-plugin-flagmatic", "wiki-plugin-force", "wiki-plugin-future", "wiki-plugin-graphviz", "wiki-plugin-grep", "wiki-plugin-html", "wiki-plugin-image", "wiki-plugin-line", "wiki-plugin-map", "wiki-plugin-markdown", "wiki-plugin-mathjax", "wiki-plugin-metabolism", "wiki-plugin-method", "wiki-plugin-pagefold", "wiki-plugin-paragraph", "wiki-plugin-plugmatic", "wiki-plugin-pushpin", "wiki-plugin-radar", "wiki-plugin-recycler", "wiki-plugin-reduce", "wiki-plugin-reference", "wiki-plugin-report", "wiki-plugin-rollup", "wiki-plugin-roster", "wiki-plugin-scatter", "wiki-plugin-search", "wiki-plugin-transport", "wiki-plugin-video", "wiki-security-friends", "wiki-security-passportjs", "wiki-server", "aiohttp", "bigchaindb-abci", "cryptoconditions", "flask", "flask-cors", "flask-restful", "gunicorn", "jsonschema", "logstats", "packaging", "pymongo", "python-rapidjson", "pyyaml", "requests", "setproctitle", "boom", "@snyk/graphlib", "@snyk/inquirer", "@snyk/lodash", "@snyk/ruby-semver", "@types/agent-base", "@types/xml2js", "buffer", "bytes", "cacheable-request", "chardet", "ci-info", "cli-boxes", "cli-cursor", "cli-spinner", "cli-width", "clone-response", "co", "color-convert", "color-name", "configstore", "crypto-random-string", "data-uri-to-buffer", "decompress-response", "deep-extend", "deep-is", "defer-to-connect", "degenerator", "depd", "diff", "dockerfile-ast", "dot-prop", "dotnet-deps-parser", "duplexer3", "email-validator", "emoji-regex", "es6-promise", "es6-promisify", "escape-goat", "escodegen", "estraverse", "event-loop-spinner", "extend", "external-editor", "fast-levenshtein", "figures", "fs-constants", "ftp", "get-uri", "git-up", "git-url-parse", "global-dirs", "got", "has-flag", "has-yarn", "http-cache-semantics", "http-errors", "http-proxy-agent", "https-proxy-agent", "iconv-lite", "ieee754", "import-lazy", "imurmurhash", "ini", "is-ci", "is-docker", "is-installed-globally", "is-npm", "is-obj", "is-path-inside", "is-ssh", "is-wsl", "is-yarn-global", "json-buffer", "jszip", "keyv", "latest-version", "levn", "lie", "lodash.assign", "lodash.assignin", "lodash.clone", "lodash.clonedeep", "lodash.flatten", "lodash.set", "lowercase-keys", "macos-release", "make-dir", "mimic-response", "mute-stream", "nconf", "needle", "netmask", "normalize-url", "object-hash", "onetime", "open", "optionator", "os-name", "os-tmpdir", "p-cancelable", "p-map", "pac-proxy-agent", "pac-resolver", "package-json", "pako", "parse-path", "parse-url", "prelude-ls", "prepend-http", "prettier", "promise", "protocols", "proxy-agent", "proxy-from-env", "pupa", "raw-body", "rc", "registry-auth-token", "registry-url", "responselike", "restore-cursor", "run-async", "rxjs", "safer-buffer", "sax", "secure-keys", "semver-diff", "set-immediate-shim", "setprototypeof", "shebang-regex", "signal-exit", "smart-buffer", "snyk-config", "snyk-docker-plugin", "snyk-go-parser", "snyk-go-plugin", "snyk-gradle-plugin", "snyk-module", "snyk-mvn-plugin", "snyk-nodejs-lockfile-parser", "snyk-nuget-plugin", "snyk-paket-parser", "snyk-php-plugin", "snyk-policy", "snyk-python-plugin", "snyk-resolve", "snyk-resolve-deps", "snyk-sbt-plugin", "snyk-tree", "snyk-try-require", "socks", "socks-proxy-agent", "source-map", "source-map-support", "sprintf-js", "statuses", "string-width", "clusterpost-model", "hapi-jwt-couch-lib", "jsonwebtoken", "recommonmark", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-httpdomain", "sphinxcontrib-napoleon", "hapi-jwt-couch", "aafigure", "wget"], "https://github.com/LegoStormtroopr/django-spaghetti-and-meatballs": ["django"], "https://github.com/smarie/python-azureml-client": ["autoclass", "azure-storage", "cherrypy", "decopatch", "functools32", "jinja2", "makefun", "numpy", "pandas", "pytest", "pytest-cases", "pytest-logging", "requests", "valid8", "yamlable", "more-itertools", "pytest-html", "pytest-runner", "setuptools-scm", "xunitparser"], "https://github.com/NREL/floris": ["coloredlogs", "matplotlib", "numpy", "pandas", "pyproj", "pytest", "scipy", "seaborn", "sklearn", "readthedocs-sphinx-ext", "sphinx", "sphinxcontrib-bibtex", "sphinxcontrib-napoleon", "flask", "utm"], "https://github.com/ADicksonLab/wepy": ["click", "dill", "eliot", "geomm", "h5py", "jinja2", "matplotlib", "multiprocessing-logging", "networkx", "numpy", "pandas", "pint", "pytest", "scipy", "tabulate", "tox", "attrs", "bcrypt", "certifi", "cffi", "chardet", "colorlog", "cryptography", "gitdb", "gitpython", "hyperlink", "idna", "more-itertools", "packaging", "paramiko", "pbr", "pluggy", "py", "pycparser", "pylxd", "pynacl", "pyparsing", "python-dateutil", "python-dotenv", "pyyaml", "requests", "requests-toolbelt", "requests-unixsocket", "six", "smmap", "toml", "urllib3", "voluptuous", "wcwidth", "ws4py", "pip", "alabaster", "apipkg", "appdirs", "babel", "backcall", "bleach", "boltons", "cloudpickle", "contextlib2", "cycler", "decorator", "defusedxml", "distlib", "docutils", "entrypoints", "execnet", "fancycompleter", "filelock", "fsspec", "gprof2dot", "imagesize", "importlib-metadata", "ipykernel", "ipython-genutils", "jedi", "jeepney", "jsonschema", "jupyter-client", "jupyter-core", "keyring", "kiwisolver", "latexcodec", "locket", "markupsafe", "mccabe", "mistune", "mock", "nbconvert", "nbformat", "oset", "pandocfilters", "parso", "partd", "path", "path-py", "pexpect", "pickleshare", "pkginfo", "pockets", "prompt-toolkit", "ptyprocess", "py-cpuinfo", "pybtex", "pybtex-docutils", "pycodestyle", "pyflakes", "pygments", "pyrepl", "pyrsistent", "pytest-metadata", "pytz", "pyzmq", "readme-renderer", "secretstorage", "send2trash", "snowballstemmer", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "termcolor", "terminado", "testpath", "toolz", "tornado", "tqdm", "traitlets", "webencodings", "wmctrl", "zipp", "zope-interface", "coverage"], "https://github.com/M4I-nanoscopy/tpx3-event-localisation": ["h5py", "keras", "matplotlib", "numpy", "scikit-image", "scipy"], "https://github.com/myGrid/ruby-ucf": ["bundler", "coveralls", "nokogiri", "rake", "rdoc", "test-unit", "zip-container"], "https://github.com/andsor/pyfssa": ["future", "numpy", "scipy", "h5py", "jupyter", "matplotlib", "pre-commit", "seaborn", "nbconvert", "releases", "sphinx", "sphinxcontrib-bibtex", "hypothesis", "hypothesis-pytest", "pytest", "pytest-capturelog", "pytest-cov", "pytest-mock", "pytest-pep8"], "https://github.com/arkottke/pykoom": ["numba", "numpy", "setuptools", "codacy-coverage", "cryptography", "cython", "flake8", "ipykernel", "jupyter-client", "nbconvert", "nbformat", "obspy", "pydocstyle", "pytest", "pytest-cov", "pytest-flake8", "pytest-runner", "watchdog", "wheel", "yapf", "jinja2", "matplotlib", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex"], "https://github.com/tardis-sn/tardis": ["astropy"], "https://github.com/IaPCS/gmsh-exodus-converter": ["pyvtk"], "https://github.com/atait/lytest": ["klayout", "phidl", "lygadgets", "lyipc", "pytest"], "https://github.com/ocsmit/rindcalc": ["gdal", "numpy", "pydata-sphinx-theme"], "https://github.com/mpostol/TP": ["Microsoft.DependencyValidation.Analyzers", "Microsoft.ApplicationInsights", "System.Diagnostics.DiagnosticSource", "EnterpriseLibrary.SemanticLogging", "EnterpriseLibrary.SemanticLogging.EventSourceAnalyzer", "EnterpriseLibrary.SemanticLogging.TextFile", "MSTest.TestAdapter", "MSTest.TestFramework", "Newtonsoft.Json", "System.Reactive.Core", "System.Reactive.Interfaces", "System.Reactive.Linq", "Microsoft.Extensions.Configuration", "Microsoft.Extensions.Configuration.Abstractions", "Microsoft.Extensions.Configuration.Binder", "Microsoft.Extensions.Configuration.CommandLine", "Microsoft.Extensions.Primitives", "System.Runtime.CompilerServices.Unsafe", "CommonServiceLocator", "System.Security.AccessControl", "System.Security.Cryptography.Xml", "System.Security.Permissions", "System.Security.Principal.Windows", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Reactive", "System.Threading.Tasks.Extensions", "System.ValueTuple", "System.Reactive.Windows.Threading"], "https://github.com/ElektraInitiative/libelektra": ["@babel/code-frame", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-split-export-declaration", "@babel/highlight", "@babel/template", "@babel/traverse", "@babel/types", "accepts", "acorn", "acorn-dynamic-import", "ajv", "ajv-keywords", "align-text", "ansi-regex", "ansi-styles", "anymatch", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-unique", "asn1.js", "assert", "assign-symbols", "async", "async-each", "atob", "babel-cli", "babel-code-frame", "babel-core", "babel-eslint", "babel-generator", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helpers", "babel-loader", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-object-rest-spread", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-polyfill", "babel-preset-env", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babel-watch", "babylon", "balanced-match", "base", "base64-js", "big.js", "binary-extensions", "block-stream", "bn.js", "body-parser", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-xor", "builtin-modules", "builtin-status-codes", "bytes", "cache-base", "camelcase", "caniuse-lite", "center-align", "chalk", "chokidar", "cipher-base", "class-utils", "cliui", "code-point-at", "collection-visit", "color-convert", "color-name", "commander", "commondir", "component-emitter", "concat-map", "concurrently", "console-browserify", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-session", "cookie-signature", "cookies", "copy-descriptor", "core-js", "core-util-is", "cors", "create-ecdh", "create-hash", "create-hmac", "cross-env", "cross-spawn", "crypto-browserify", "crypto-random-string", "d", "date-fns", "date-now", "debug", "debug-dude", "decamelize", "decode-uri-component", "deep-extend", "define-property", "depd", "des.js", "destroy", "detect-indent", "diffie-hellman", "domain-browser", "ee-first", "electron-to-chromium", "elliptic", "emojis-list", "encodeurl", "encoding", "enhanced-resolve", "errno", "error-ex", "es5-ext", "es6-iterator", "es6-map", "es6-set", "es6-symbol", "es6-weak-map", "escape-html", "escape-string-regexp", "escope", "eslint-scope", "eslint-visitor-keys", "esrecurse", "estraverse", "esutils", "etag", "event-emitter", "events", "evp_bytestokey", "execa", "expand-brackets", "expand-range", "express", "extend-shallow", "extglob", "fast-deep-equal", "fast-json-stable-stringify", "filename-regex", "fill-range", "finalhandler", "find-cache-dir", "find-up", "for-in", "for-own", "forwarded", "fragment-cache", "fresh", "fs-readdir-recursive", "fs.realpath", "fsevents", "fstream", "fstream-ignore", "get-caller-file", "get-stream", "get-value", "glob", "glob-base", "glob-parent", "globals", "graceful-fs", "has-ansi", "has-flag", "has-value", "has-values", "hash-base", "hash.js", "hmac-drbg", "home-or-tmp", "hosted-git-info", "http-errors", "https-browserify", "iconv-lite", "ieee754", "indexof", "inflight", "inherits", "ini", "interpret", "invariant", "invert-kv", "ipaddr.js", "is-accessor-descriptor", "is-arrayish", "is-binary-path", "is-buffer", "is-builtin-module", "is-data-descriptor", "node-fetch", "uuid", "webpack", "@bosket/core", "@bosket/tools", "bosket-react", "focus-trap-react", "material-ui", "react", "react-copy-to-clipboard", "react-dom", "react-redux", "react-router-dom", "react-scripts", "redux", "redux-logger", "redux-promises", "redux-undo-redo-middleware", "@iamadamjowett/angular-logger-max", "angular", "angular-animate", "angular-breadcrumb", "angular-clipboard", "angular-file-saver", "angular-marked", "angular-messages", "angular-sanitize", "angular-slugify", "angular-translate", "angular-translate-loader-static-files", "angular-typewriter", "angular-ui-bootstrap", "angular-ui-notification", "angular-ui-router", "bootstrap", "connect-modrewrite", "docsearch.js", "fs-extra", "grunt", "grunt-browserify", "grunt-cli", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-jshint", "grunt-contrib-less", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-preprocess", "highlight.js", "jquery", "jshint-stylish", "ng-tags-input", "pace-progress", "rss", "satellizer", "slugify", "sync-request", "underscore", "xmlbuilder", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.google.inject:guice", "com.sun.mail:javax.mail", "joda-time:joda-time", "org.apache.commons:commons-lang3", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-surefire-plugin", "org.seleniumhq.selenium:selenium-java", "org.testng:testng"], "https://github.com/will-rowe/groot": ["fabric", "recommonmark", "sphinx", "sphinx-bootstrap-theme"], "https://github.com/bexis/Module_LUI": ["Antlr", "bootstrap", "jQuery", "jQuery.Migrate", "jQuery.Validation", "Microsoft.AspNet.Mvc", "Microsoft.AspNet.Razor", "Microsoft.AspNet.Web.Optimization", "Microsoft.AspNet.WebApi", "Microsoft.AspNet.WebApi.Core", "Microsoft.AspNet.WebApi.WebHost", "Microsoft.AspNet.WebHelpers", "Microsoft.AspNet.WebPages", "Microsoft.AspNet.WebPages.Data", "Microsoft.AspNet.WebPages.WebData", "Microsoft.CodeAnalysis.FxCopAnalyzers", "Microsoft.CodeAnalysis.VersionCheckAnalyzer", "Microsoft.CodeQuality.Analyzers", "Microsoft.jQuery.Unobtrusive.Validation", "Microsoft.NetCore.Analyzers", "Microsoft.NetFramework.Analyzers", "Microsoft.Web.Infrastructure", "Modernizr", "Newtonsoft.Json", "Respond", "WebActivator", "WebGrease"], "https://github.com/benjaminrose/MC-Age": ["astropy", "docopt", "emcee", "extinction", "numpy", "pandas", "scipy", "sfdmap", "codecov", "pycodestyle", "pydocstyle", "pylint", "pytest-cov", "pytest-pep8", "numpydoc", "sphinx-autodoc-typehints"], "https://github.com/SSW-DataLab/randomizer": ["composer/installers"], "https://github.com/FowlerLab/Enrich2": ["matplotlib", "numpy", "pandas", "scipy", "statsmodels", "tables"], "https://github.com/Andros-Spica/PhD-defense": ["express", "grunt-cli", "mustache", "socket.io"], "https://github.com/SirSharpest/NarrowEscapeSimulator": ["matplotlib", "numpy", "tqdm"], "https://github.com/annotation/tutorials": ["text-fabric"], "https://github.com/RDFLib/OWL-RL": ["pytest", "rdflib", "rdflib-jsonld", "sphinx", "sphinx-rtd-theme", "twine", "wheel"], "https://github.com/RPGroup-PBoC/vdj_recombination": ["absl-py", "alabaster", "bokeh", "colorcet", "cython", "decorator", "defusedxml", "distributed", "docutils", "entrypoints", "html5lib", "numpy", "packaging", "pandas", "pep8", "pystan", "pyzmq", "scipy", "seaborn", "selenium", "statsmodels", "tqdm"], "https://github.com/carpyncho/carpyncho": ["alembic", "astropy", "astropysics", "attrs", "backports-abc", "backports-shutil-get-terminal-size", "bleach", "certifi", "chardet", "colored-traceback", "configparser", "coverage", "decorator", "entrypoints", "enum34", "feets", "flake8", "funcsigs", "functools32", "futures", "html5lib", "idna", "ipdb", "ipykernel", "ipython", "ipython-genutils", "jinja2", "joblib", "jsonschema", "jupyter-client", "jupyter-core", "jupyterlab", "jupyterlab-launcher", "mako", "markupsafe", "mccabe", "mistune", "mock", "nbconvert", "nbformat", "notebook", "numexpr", "numpy", "pandas", "pandocfilters", "pathlib2", "patsy", "pbr", "pexpect", "pickleshare", "pluggy", "prompt-toolkit", "psutil", "psycopg2", "ptyprocess", "py", "pyastronomy", "pycodestyle", "pyflakes", "pygments", "pytest", "python-dateutil", "python-editor", "pytz", "pyzmq", "requests", "sadisplay", "scandir", "scikit-learn", "scipy", "send2trash", "sh", "simplegeneric", "singledispatch", "six", "snakeviz", "sqlalchemy", "sqlalchemy-utils", "statsmodels", "subprocess32", "tables", "termcolor", "terminado", "testpath", "texttable", "tornado", "tox", "traitlets", "urllib3", "virtualenv", "wcwidth", "webencodings", "xmltodict"], "https://github.com/jpvantassel/sigpropy": ["coverage", "numba", "numpy", "obspy", "pandas", "scipy", "sphinx", "sphinx-rtd-theme"], "https://github.com/camelot-project/frontend": ["astropy", "flask", "gunicorn", "jinja2", "keyring", "matplotlib", "numpy", "requests", "werkzeug"], "https://github.com/cggh/scikit-allel": ["bcolz", "cython", "dask", "h5py", "hmmlearn", "ipython", "matplotlib", "numexpr", "numpy", "pandas", "pomegranate", "pytest", "scikit-learn", "scipy", "seaborn", "zarr", "pyfasta", "mock", "numpydoc", "sphinx", "sphinx-issues", "coverage", "coveralls", "flake8", "pytest-cov", "setuptools", "setuptools-scm", "tox"], "https://github.com/kundajelab/seqdataloader": ["cython", "deeptools", "numpy", "pandas", "pybedtools", "pybigwig", "pyfaidx", "tiledb"], "https://github.com/ubccr/xdmod": ["apache/commons-beanutils", "apache/commons-collections", "apache/commons-digester", "apache/commons-logging", "apache/poi", "apache/xalan-j-2jars", "carlo/jquery-base64-file", "ccampbell/chromephp", "egulias/email-validator", "google/recaptcha", "greenlion/php-sql-parser", "highsoft/highcharts", "ircmaxell/password-compat", "itextpdf/itextpdf", "jaspersoft/jasperreports-library-jar", "jquery/jquery-min-file", "justinrainbow/json-schema", "moment/moment-min-file", "moment/moment-timezone-min-file", "paragonie/random_compat", "phpmailer/phpmailer", "phpunit/phpunit", "robrichards/xmlseclibs", "sencha/extjs-gpl", "silex/silex", "simplesamlphp/simplesamlphp", "symfony/polyfill-php56", "symfony/process", "taq/pdooci", "tildeio/rsvpjs-min-file", "ubccr/log", "ubccr/simplesamlphp-module-authglobus", "ubccr/simplesamlphp-module-authoidcoauth2", "composer/installers", "doctrine/instantiator", "doctrine/lexer", "gettext/gettext", "gettext/languages", "jaimeperez/twig-configurable-i18n", "pear/pear_exception", "phpdocumentor/reflection-docblock", "phpspec/prophecy", "phpunit/php-code-coverage", "phpunit/php-file-iterator", "phpunit/php-text-template", "phpunit/php-timer", "phpunit/php-token-stream", "phpunit/phpunit-mock-objects", "pimple/pimple", "psr/log", "sebastian/comparator", "sebastian/diff", "sebastian/environment", "sebastian/exporter", "sebastian/global-state", "sebastian/recursion-context", "sebastian/version", "simplesamlphp/composer-module-installer", "simplesamlphp/saml2", "symfony/debug", "symfony/event-dispatcher", "symfony/http-foundation", "symfony/http-kernel", "symfony/polyfill-ctype", "symfony/polyfill-mbstring", "symfony/polyfill-php54", "symfony/polyfill-php55", "symfony/polyfill-util", "symfony/routing", "symfony/yaml", "twig/extensions", "twig/twig", "whitehat101/apr1-md5", "github-pages", "cloneextend", "glob", "ini", "mongodb", "mysql", "tv4", "winston", "chai", "cheerio", "chromedriver", "mocha", "require-dir", "selenium-standalone", "wdio-chromedriver-service", "wdio-junit-reporter", "wdio-mocha-framework", "wdio-sauce-service", "wdio-selenium-standalone-service", "wdio-spec-reporter", "webdriverio", "luxon", "moment", "moment-timezone", "pcre-to-regexp"], "https://github.com/TomasBeuzen/pybeach": ["joblib", "numpy", "pandas", "pytest", "scikit-learn", "scipy"], "https://github.com/prevwong/craft.js": ["@babel/cli", "@babel/core", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-object-rest-spread", "@babel/preset-env", "@babel/preset-typescript", "@testing-library/react", "@types/jest", "@types/react", "@types/react-dom", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "all-contributors-cli", "babel-eslint", "cross-env", "enzyme", "enzyme-adapter-react-16", "eslint", "eslint-config-prettier", "eslint-config-react-app", "eslint-plugin-flowtype", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-prettier", "eslint-plugin-react", "eslint-plugin-react-hooks", "husky", "jest", "lerna", "lint-staged", "npm-run-all", "prettier", "pretty-quick", "react", "rollup-plugin-babel", "rollup-plugin-commonjs", "rollup-plugin-node-resolve", "rollup-plugin-terser", "rollup-plugin-typescript", "ts-jest", "typescript", "@craftjs/utils", "debounce", "immer", "lodash.isequalwith", "shortid", "tiny-invariant", "@docusaurus/core", "@docusaurus/preset-classic", "classnames", "react-dom", "@svgr/rollup", "react-contenteditable", "redux", "styled-components", "@babel/code-frame", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-module-imports", "@babel/helper-split-export-declaration", "@babel/highlight", "@babel/parser", "@babel/template", "@babel/traverse", "@babel/types", "@emotion/is-prop-valid", "@emotion/memoize", "@emotion/unitless", "ansi-styles", "babel-plugin-styled-components", "babel-plugin-syntax-jsx", "camelize", "chalk", "color-convert", "color-name", "css-color-keywords", "css-to-react-native", "debug", "escape-string-regexp", "esutils", "globals", "has-flag", "is-what", "js-tokens", "jsesc", "lodash", "loose-envify", "memoize-one", "merge-anything", "ms", "object-assign", "postcss-value-parser", "prop-types", "react-is", "source-map", "stylis", "stylis-rule-sheet", "supports-color", "to-fast-properties", "@craftjs/core", "@material-ui/core", "@zeit/next-css", "clsx", "copy-to-clipboard", "lzutf8", "material-ui-color-picker", "next", "next-compose-plugins", "next-transpile-modules", "@craftjs/layers", "@fullhuman/postcss-purgecss", "@material-ui/icons", "@material-ui/styles", "@types/classnames", "@types/node", "@types/react-color", "@types/styled-components", "@zeit/next-typescript", "babel-plugin-inline-react-svg", "cssnano", "next-seo", "postcss-import", "postcss-preset-env", "re-resizable", "react-color", "react-loading", "react-rnd", "react-youtube", "tailwindcss"], "https://github.com/CovingtonResearchGroup/olm": ["lxml", "numpydoc", "pandas", "requests", "xlrd"], "https://github.com/zykls/whynot": ["black", "jupyter", "matplotlib", "pre-commit", "pydocstyle", "pytest", "sphinx", "sphinxcontrib-bibtex", "autograd", "dataclasses", "gym", "mesa", "networkx", "numpy", "pandas", "py-mini-racer", "pyomo", "scipy", "sklearn", "statsmodels", "tqdm"], "https://github.com/DLR-RM/RAFCON": ["astroid", "backports-functools-lru-cache", "configparser", "decorator", "future", "gaphas", "isort", "jsonconversion", "lazy-object-proxy", "mccabe", "psutil", "pycairo", "pygobject", "pylint", "python-gtkmvc3-dlr", "simplegeneric", "singledispatch", "six", "wrapt", "yaml-configuration", "enum34", "futures", "graphviz", "pytest", "pytest-faulthandler", "pytest-mock", "pytest-timeout", "pyuserinput"], "https://github.com/hpparvi/PyTransit": ["astropy", "deprecated", "emcee", "matplotlib", "numba", "numpy", "pandas", "scipy", "seaborn", "semantic-version", "setuptools", "tables", "tqdm", "uncertainties", "xarray"], "https://github.com/BigDataBiology/GMGC-mapper": ["atomicwrites", "biopython", "numpy", "pyyaml", "scikit-bio", "tqdm"], "https://github.com/andycasey/ads": ["httpretty", "mock", "requests", "six", "werkzeug"], "https://github.com/darribas/wmn": ["bundler", "jekyll", "rake", "express", "grunt-cli", "mustache", "socket.io", "jekyll-scholar"], "https://github.com/caltechlibrary/holdit": ["appdirs", "beautifulsoup4", "colorama", "cryptography", "docopt", "docx", "docxcompose", "docxtpl", "google-api-core", "google-api-python-client", "google-auth", "google-auth-httplib2", "google-cloud", "google-cloud-vision", "googleapis-common-protos", "halo", "httplib2", "keyring", "keyrings-alt", "lxml", "oauth2client", "plac", "pypubsub", "requests", "setuptools", "termcolor", "wxpython"], "https://github.com/AMReX-Astro/Castro": ["breathe", "ipython", "jupyter", "more-itertools", "nbconvert", "numpy", "numpydoc", "pandoc", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex"], "https://github.com/greglucas/bezpy": ["numpy", "pandas", "scipy", "shapely"], "https://github.com/RCHG/FunFAN": ["oset", "pybtex", "pybtex-docutils", "sphinx", "sphinxcontrib-bibtex"], "https://github.com/geek-yang/META": ["pycodestyle", "pytest", "pytest-cov"], "https://github.com/Sentimentron/Nebraska-public": ["feedzirra", "mysql", "nokogiri", "twitter", "whatlanguage", "buftok", "curb", "faraday", "http", "http_parser.rb", "json", "loofah", "mini_portile", "multipart-post", "sax-machine", "simple_oauth", "sinatra", "rack", "rack-protection", "tilt", "junit:junit", "nz.ac.waikato.cms.weka:LibSVM", "nz.ac.waikato.cms.weka:weka-dev", "org.codehaus.mojo:buildnumber-maven-plugin", "org.xerial:sqlite-jdbc", "tw.edu.ntu.csie:libsvm", "edu.cmu.cs:ark-tweet-nlp"], "https://github.com/jkibele/OpticalRS": ["gdal", "geopandas", "matplotlib", "numpy", "pandas", "rasterstats", "scikit-image", "scikit-learn", "scipy", "statsmodels", "wheel"], "https://github.com/jupiterbak/FAPSDemoOPCUAServer2": ["@dabh/diagnostics", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@sindresorhus/is", "@szmarczak/http-timer", "@types/async", "@types/bonjour", "@types/color-name", "@types/glob", "@types/lodash", "@types/minimatch", "@types/mkdirp", "@types/node", "@types/once", "@types/underscore", "aggregate-error", "ansi-align", "ansi-regex", "ansi-styles", "any-promise", "anymatch", "argparse", "array-flatten", "array-union", "asn1", "assert-plus", "async", "backoff", "balanced-match", "bcrypt-pbkdf", "better-assert", "binary-extensions", "bomstrip", "bonjour", "boolbase", "boxen", "brace-expansion", "braces", "browser-process-hrtime", "buffer-crc32", "buffer-indexof", "byline", "cacheable-request", "callbackify", "callsite", "camelcase", "chalk", "chokidar", "ci-info", "clean-stack", "cli-boxes", "cli-spinner", "cli-table", "cliui", "clone-response", "color", "color-convert", "color-name", "color-string", "colors", "colorspace", "concat-map", "configstore", "core-util-is", "crypto-random-string", "css-select", "css-what", "dashdash", "decamelize", "decompress-response", "deep-equal", "deep-extend", "defer-to-connect", "define-properties", "del", "delayed", "dequeue", "dir-glob", "dns-equal", "dns-packet", "dns-txt", "dom-converter", "dom-serializer", "domelementtype", "domhandler", "domutils", "dot-prop", "duplexer3", "ecc-jsbn", "emoji-regex", "enabled", "end-of-stream", "entities", "env-paths", "es-abstract", "es-to-primitive", "escape-goat", "esprima", "fast-glob", "fast-safe-stringify", "fastq", "fd-slicer", "fecha", "fill-range", "find-up", "fn.name", "foreachasync", "fs.realpath", "fsevents", "function-bind", "get-caller-file", "get-stream", "getpass", "glob", "glob-parent", "global-dirs", "globby", "got", "graceful-fs", "has", "has-flag", "has-symbols", "has-yarn", "hexy", "htmlparser2", "http-cache-semantics", "humanize", "ignore", "import-lazy", "imurmurhash", "indent-string", "inflight", "inherits", "ini", "ip", "is", "is-arguments", "is-arrayish", "is-binary-path", "is-callable", "is-ci", "is-date-object", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-installed-globally", "is-negative-zero", "is-npm", "is-number", "is-obj", "is-path-cwd", "is-path-inside", "is-regex", "is-stream", "is-symbol", "is-typedarray", "is-yarn-global", "isarray", "js-yaml", "jsbn", "json-buffer", "jsrsasign", "keyv", "kuler", "latest-version", "locate-path", "lodash", "logform", "long", "lowercase-keys", "ltx", "make-dir", "merge2", "micromatch", "mimic-response", "minimatch", "minimist", "mkdirp", "ms", "multicast-dns", "multicast-dns-service-types", "node-opcua", "node-opcua-address-space", "node-opcua-address-space-for-conformance-testing", "node-opcua-aggregates", "node-opcua-assert", "node-opcua-basic-types", "node-opcua-binary-stream", "node-opcua-buffer-utils", "node-opcua-certificate-manager", "node-opcua-chunkmanager", "node-opcua-client", "node-opcua-client-crawler", "node-opcua-client-dynamic-extension-object", "node-opcua-client-proxy", "node-opcua-common", "node-opcua-constants", "node-opcua-crypto", "node-opcua-data-access", "node-opcua-data-model", "node-opcua-data-value", "node-opcua-date-time", "node-opcua-debug", "node-opcua-enum", "node-opcua-extension-object", "node-opcua-factory", "node-opcua-generator", "node-opcua-guid", "node-opcua-hostname", "node-opcua-nodeid", "node-opcua-nodesets", "node-opcua-numeric-range", "node-opcua-object-registry", "node-opcua-packet-analyzer", "node-opcua-packet-assembler", "node-opcua-pki", "node-opcua-pseudo-session", "node-opcua-schemas", "node-opcua-secure-channel", "node-opcua-server", "node-opcua-server-discovery", "node-opcua-service-browse", "node-opcua-service-call", "node-opcua-service-discovery", "node-opcua-service-endpoints", "node-opcua-service-filter", "node-opcua-service-history", "node-opcua-service-node-management", "node-opcua-service-query", "node-opcua-service-read", "node-opcua-service-register-node", "node-opcua-service-secure-channel", "node-opcua-service-session", "node-opcua-service-subscription", "node-opcua-service-translate-browse-path", "node-opcua-service-write", "node-opcua-status-code", "node-opcua-transport", "node-opcua-types", "node-opcua-utils", "node-opcua-variant", "node-opcua-vendor-diagnostic", "node-opcua-xml2json", "node-yaml-config", "node.extend", "normalize-path", "normalize-url", "nth-check", "object-inspect", "winston", "xstate"], "https://github.com/seandavi/ngCGH": ["pysam"], "https://github.com/fraserw/trippy": ["astropy", "matplotlib", "mock", "numpy", "scipy"], "https://github.com/SainsburyWellcomeCentre/lasagna": ["ipython", "matplotlib", "nibabel", "numpy", "pynrrd", "pyqt5", "pyqtgraph", "pyyaml", "scikit-image", "scipy", "sip", "tifffile", "traitlets", "vtk"], "https://github.com/ufz/ogs": ["@tailwindcss/typography", "autoprefixer", "hugo-algolia", "postcss-cli", "postcss-import-url", "tailwindcss", "@fullhuman/postcss-purgecss", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@types/color-name", "acorn", "acorn-node", "acorn-walk", "agentkeepalive", "algoliasearch", "ansi-regex", "ansi-styles", "anymatch", "argparse", "array-union", "at-least-node", "balanced-match", "binary-extensions", "brace-expansion", "braces", "browserslist", "bytes", "caller-callsite", "caller-path", "callsites", "camelcase", "camelcase-css", "caniuse-lite", "chalk", "chokidar", "cliui", "color", "color-convert", "color-name", "color-string", "colorette", "commander", "concat-map", "cosmiconfig", "css-unit-converter", "cssesc", "debug", "decamelize", "defined", "dependency-graph", "detective", "dir-glob", "dom-walk", "electron-to-chromium", "emoji-regex", "envify", "error-ex", "es6-promise", "escalade", "escape-string-regexp", "esprima", "events", "extend-shallow", "fast-glob", "fastq", "fill-range", "find-up", "foreach", "fs-extra", "fs.realpath", "fsevents", "get-caller-file", "get-stdin", "glob", "glob-parent", "global", "globby", "graceful-fs", "gray-matter", "has-flag", "http-https", "ignore", "import-cwd", "import-fresh", "import-from", "indexes-of", "inflight", "inherits", "is-arrayish", "is-binary-path", "is-directory", "is-extendable", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-number", "is-url", "isarray", "js-yaml", "json-parse-better-errors", "jsonfile", "kind-of", "load-script", "locate-path", "lodash", "lodash.assign", "lodash.toarray", "lodash.trim", "log-symbols", "merge2", "micromatch", "min-document", "minimatch", "minimist", "ms", "node-emoji", "node-releases", "normalize-path", "normalize-range", "normalize.css", "num2fraction", "object-assign", "object-hash", "object-keys", "once", "p-limit", "p-locate", "p-try", "parse-json", "path-exists", "path-is-absolute", "path-parse", "path-type", "picomatch", "pify", "pos", "postcss", "postcss-functions", "postcss-js", "postcss-load-config", "postcss-nested", "postcss-reporter", "postcss-selector-parser", "postcss-value-parser", "pretty-hrtime", "process", "punycode", "purgecss", "querystring", "querystring-es3", "read-cache", "readdirp", "reduce", "reduce-css-calc", "remove-markdown", "require-directory", "require-main-filename", "resolve", "resolve-from", "resolve-relative-url", "reusify", "run-parallel", "safe-buffer", "semver", "set-blocking", "simple-swizzle", "slash", "source-map", "sprintf-js", "stopword", "string-width", "strip-ansi", "strip-bom-string", "striptags", "supports-color", "through", "to-no-case", "to-regex-range", "to-snake-case", "to-space-case", "toml", "truncate-utf8-bytes", "tunnel-agent", "uniq", "universalify", "url", "utf8-byte-length", "which-module", "wrap-ansi", "wrappy", "xtend", "y18n", "yargs", "yargs-parser"], "https://github.com/libsemigroups/libsemigroups": ["breathe", "bs4", "lxml", "pyyaml", "sphinx", "sphinx-copybutton", "sphinx-rtd-theme", "sphinxcontrib-bibtex"], "https://github.com/IDEES-Rouen/Flight-Scrapping": ["beautifulsoup4", "cfscrape", "fake-useragent", "jmespath", "pendulum", "pymongo", "pytz", "scrapy", "scrapy-fake-useragent", "scrapy-proxies"], "https://github.com/AshKelly/pyquad": ["cython", "llvmlite", "numba", "numpy"], "https://github.com/jolespin/soothsayer": ["adjusttext", "biopython", "compositional", "ensemble-networkx", "ete3", "hive-networkx", "matplotlib", "matplotlib-venn", "mmh3", "networkx", "numpy", "openpyxl", "palettable", "pandas", "rpy2", "scikit-bio", "scikit-learn", "scipy", "seaborn", "soothsayer-utils", "statsmodels", "tqdm", "tzlocal", "xarray"], "https://github.com/kklmn/xrt": ["matplotlib", "numpy", "scipy", "sphinx", "spyder"], "https://github.com/beringresearch/ivis": ["sphinx", "sphinx-gallery", "annoy", "numpy", "pytest", "scikit-learn", "tensorflow", "tqdm"], "https://github.com/mdolab/pyspline": ["numpy", "scipy", "numpydoc"], "https://github.com/thieunguyen5991/opfunu": ["numpy"], "https://github.com/fmannhardt/pddp": ["Angara.Serialization", "Angara.Statistics", "Angara.Table", "Grapevine", "LINQtoCSV", "System.Collections.Immutable", "System.Linq.Dynamic"], "https://github.com/gwpy/gwpy": ["ciecplib", "lalsuite", "lscsoft-glue", "maya", "pandas", "psycopg2", "pycbc", "pymysql", "pyrxp", "python-ligo-lw", "sqlalchemy", "uproot", "numpydoc", "requests", "sphinx", "sphinx-automodapi", "sphinx-bootstrap-theme", "sphinxcontrib-programoutput", "beautifulsoup4", "freezegun", "pytest", "pytest-cov", "pytest-xdist", "requests-mock", "astropy", "dqsegdb2", "gwdatafind", "gwosc", "h5py", "ligo-segments", "ligotimegps", "matplotlib", "numpy", "python-dateutil", "scipy", "tqdm"], "https://github.com/pyvista/pyvista": ["cmocean", "colorcet", "imageio", "imageio-ffmpeg", "lxml", "matplotlib", "pytest-sphinx", "scipy", "sphinx", "sphinx-autobuild", "sphinx-copybutton", "sphinx-gallery", "sphinx-notfound-page", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "sphinxcontrib-websupport", "codespell", "pydocstyle", "codecov", "hypothesis", "itkwidgets", "pytest", "pytest-cov", "pytest-memprof", "tqdm", "appdirs", "meshio", "numpy", "scooby"], "https://github.com/arcolife/scholarec": ["beautifulsoup4", "feedparser", "nltk", "pyes", "wikipedia", "xmltodict"], "https://github.com/NUStreaming/acm-mmsys-2020-grand-challenge": ["@types/mime-types", "agent-base", "async-limiter", "balanced-match", "brace-expansion", "buffer-from", "concat-map", "concat-stream", "core-util-is", "debug", "extract-zip", "fd-slicer", "fs.realpath", "glob", "https-proxy-agent", "inflight", "inherits", "isarray", "mime", "mime-db", "mime-types", "minimatch", "minimist", "mkdirp", "ms", "once", "path-is-absolute", "pend", "process-nextick-args", "progress", "proxy-from-env", "puppeteer", "puppeteer-core", "readable-stream", "rimraf", "safe-buffer", "string_decoder", "typedarray", "util-deprecate", "wrappy", "ws", "yauzl", "babel", "babel-preset-env", "babelify", "browserify-derequire", "bs-html-injector", "bundle-collapser", "chai", "chai-spies", "codem-isoboxer", "fast-deep-equal", "grunt", "grunt-babel", "grunt-browser-sync", "grunt-browserify", "grunt-cli", "grunt-contrib-clean", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-exorcise", "grunt-ftp-push", "grunt-githash", "grunt-githooks", "grunt-jscs", "grunt-jsdoc", "grunt-mocha-istanbul", "grunt-string-replace", "imsc", "ink-docstrap", "intern", "iron-mocha", "iron-node", "istanbul", "jsdoc", "jsdom", "load-grunt-tasks", "mocha", "sinon", "time-grunt", "uglify-js", "babel-core", "babel-loader", "babel-preset-es2015", "dashjs", "html-webpack-plugin", "webpack", "awesome-typescript-loader", "typescript"], "https://github.com/adamewing/tebreak": ["bx-python", "numpy", "pysam", "scikit-bio", "scipy"], "https://github.com/papis/papis": ["arxiv2bib", "beautifulsoup4", "bibtexparser", "chardet", "click", "colorama", "configparser", "filetype", "habanero", "isbnlib", "lxml", "prompt-toolkit", "pygments", "pyparsing", "python-doi", "python-slugify", "pyyaml", "requests", "stevedore", "tqdm", "typing-extensions"], "https://github.com/wlad111/small_probs": ["pymc3-ext-wlad"], "https://github.com/slimgroup/ServerlessImagingAWS": ["anytree", "cached-property", "click", "codecov", "codepy", "distributed", "flake8", "frozendict", "jedi", "mpi4py", "multidict", "nbval", "numpy", "psutil", "py-cpuinfo", "pyrevolve", "pytest-cov", "pytest-runner", "scikit-image", "scipy", "sympy", "appdirs", "pytools", "six"], "https://github.com/danielbmmatos/Reduced-Model-of-Shear-Building": ["numba", "numpy", "pandas", "scipy"], "https://github.com/biocore/qiime": ["biom-format", "burrito", "burrito-fillings", "cogent", "emperor", "gdata", "matplotlib", "natsort", "numpy", "pandas", "pynast", "qcli", "qiime-default-reference", "scikit-bio", "scipy"], "https://github.com/aretha-hep/mprtect": ["click", "flask", "pyyaml", "requests", "zmq"], "https://github.com/bionode/bionode-template": ["browserify", "coveralls", "debug", "dependency-check", "docco", "istanbul", "JSONStream", "split", "standard", "tap-spec", "tape", "testling", "through2", "uglify-js"], "https://github.com/SebastianEggert/OpenWorkstation": ["dill", "flask", "flask-cors", "flask-script", "flask-socketio", "gevent", "greenlet", "numpydoc", "psutil", "pylama", "pytest", "pytest-cov", "requests", "sphinx", "twine", "wheel", "pyserial"], "https://github.com/pyscf/pyscf": ["h5py", "numpy", "scipy"], "https://github.com/GijsMulders/epos": ["astropy", "corner", "emcee", "h5py", "matplotlib", "numpy", "pytest", "scipy", "shapely", "tqdm", "ipykernel", "nbsphinx"], "https://github.com/castelao/PyAVISO": ["netcdf4", "numpy", "pupynere", "pydap"], "https://github.com/korpling/ANNIS": ["com.auth0:java-jwt", "com.github.mvysny.kaributesting:karibu-testing-v8", "com.github.vaadin4qbanos:jsclipboard", "com.google.code.findbugs:jsr305", "com.google.code.gson:gson", "com.google.guava:guava-gwt", "com.googlecode.maven-download-plugin:download-maven-plugin", "com.h2database:h2", "com.hp.gagawa:gagawa", "com.moandjiezana.toml:toml4j", "com.squareup.okhttp3:logging-interceptor", "com.squareup.okhttp3:okhttp", "com.vaadin:vaadin-bom", "com.vaadin:vaadin-compatibility-client", "com.vaadin:vaadin-compatibility-client-compiled", "com.vaadin:vaadin-compatibility-server", "com.vaadin:vaadin-compatibility-themes", "com.vaadin:vaadin-maven-plugin", "com.vaadin:vaadin-push", "com.vaadin:vaadin-spring-boot-starter", "commons-codec:commons-codec", "commons-io:commons-io", "io.gsonfire:gson-fire", "io.swagger:swagger-annotations", "javax.ws.rs:jsr311-api", "joda-time:joda-time", "net.sf.ehcache:ehcache-core", "net.sf.jung:jung-api", "net.sf.jung:jung-graph-impl", "net.sf.opencsv:opencsv", "org.aeonbits.owner:owner", "org.antlr:antlr4", "org.antlr:antlr4-maven-plugin", "org.antlr:antlr4-runtime", "org.apache.commons:commons-email", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.tika:tika-core", "org.awaitility:awaitility", "org.codehaus.jackson:jackson-xc", "org.codehaus.mojo:buildnumber-maven-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.corpus-tools:salt-api", "org.jacoco:jacoco-maven-plugin", "org.jetbrains.kotlin:kotlin-stdlib", "org.keycloak.bom:keycloak-adapter-bom", "org.openapitools:openapi-generator-maven-plugin", "org.seleniumhq.selenium:selenium-firefox-driver", "org.seleniumhq.selenium:selenium-java", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-data-jpa", "org.springframework.boot:spring-boot-starter-oauth2-client", "org.springframework.boot:spring-boot-starter-test", "org.springframework.security:spring-security-crypto", "org.vaadin.addons:popupbutton", "cglib:cglib-nodep", "ch.qos.logback:logback-classic", "com.carrotsearch:junit-benchmarks", "commons-cli:commons-cli", "commons-dbutils:commons-dbutils", "de.hu-berlin.german.korpling.annis:annis-interfaces", "javax.ws.rs:javax.ws.rs-api", "jline:jline", "junit:junit", "org.apache.commons:commons-dbcp2", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.shiro:shiro-core", "org.apache.shiro:shiro-ehcache", "org.apache.shiro:shiro-web", "org.corpus-tools:graphannis", "org.eclipse.jetty:jetty-servlet", "org.glassfish.jersey.connectors:jersey-apache-connector", "org.glassfish.jersey.containers:jersey-container-servlet", "org.glassfish.jersey.core:jersey-client", "org.glassfish.jersey.inject:jersey-hk2", "org.glassfish.jersey.media:jersey-media-json-binding", "org.hamcrest:hamcrest-all", "org.mockito:mockito-core", "org.slf4j:jcl-over-slf4j", "org.slf4j:jul-to-slf4j", "org.slf4j:slf4j-api", "org.xerial:sqlite-jdbc ", "com.google.guava:guava", "com.sun.xml.bind:jaxb-core", "com.sun.xml.bind:jaxb-impl", "javax.xml.bind:jaxb-api", "net.xeoh.plugins:jspf-core", "org.apache.commons:commons-lang3", "org.json:json", "de.hu-berlin.german.korpling.annis:annis-gui", "de.hu-berlin.german.korpling.annis:annis-service", "javax.servlet.jsp:jsp-api", "org.eclipse.jetty.websocket:websocket-api", "org.eclipse.jetty.websocket:websocket-client", "org.eclipse.jetty.websocket:websocket-server", "org.eclipse.jetty:jetty-client", "org.eclipse.jetty:jetty-continuation", "org.eclipse.jetty:jetty-server", "org.eclipse.jetty:jetty-util", "org.eclipse.jetty:jetty-webapp", "com.sun.jersey.contribs:jersey-apache-client4", "de.hu-berlin.german.korpling.annis:annis-libgui", "javax.servlet:javax.servlet-api"], "https://github.com/sayounara/Green_training": ["org.apache.maven.plugins:maven-gpg-plugin", "com.google.protobuf:protobuf-java", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "absl-py", "astor", "gast", "numpy", "protobuf", "six", "tensorboard", "termcolor"], "https://github.com/WikiWatershed/model-my-watershed": ["backbone", "backbone.marionette", "backbone.paginator", "blueimp-md5", "bootstrap", "bootstrap-datepicker", "bootstrap-select", "bootstrap-table", "browserify", "chai", "clipboard", "d3", "font-awesome", "jquery", "jshint", "jstify", "jszip", "leaflet", "leaflet.locatecontrol", "livereload", "lodash", "minifyify", "mocha", "moment", "node-sass", "nunjucks", "nunjucksify", "reproject", "shapefile", "sinon", "testem", "turf-area", "turf-bbox-polygon", "turf-centroid", "turf-destination", "turf-erase", "turf-intersect", "turf-kinks", "underscore", "watchify", "wellknown", "abbrev", "accepts", "acorn", "acorn-node", "acorn-walk", "after", "ajv", "align-text", "amdefine", "ansi-colors", "ansi-regex", "ansi-styles", "anymatch", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-find-index", "array-flatten", "array-source", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asn1", "asn1.js", "assert", "assert-plus", "assertion-error", "assign-symbols", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "aws-sign2", "aws4", "backbone.babysitter", "backbone.wreqr", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64-js", "base64id", "bcrypt-pbkdf", "better-assert", "binary-extensions", "blob", "block-stream", "bluebird", "bn.js", "body-parser", "brace-expansion", "braces", "brorand", "browser-pack", "browser-resolve", "browser-stdout", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "buffer", "buffer-from", "buffer-xor", "builtin-status-codes", "bytes", "cache-base", "cached-path-relative", "callsite", "camel-case", "camelcase", "camelcase-keys", "caseless", "center-align", "chalk", "change-case", "charm", "chokidar", "chownr", "cipher-base", "class-utils", "clean-css", "cli", "cliui", "code-point-at", "collection-visit", "color-convert", "color-name", "combine-source-map", "combined-stream", "commander", "component-bind", "component-emitter", "component-inherit", "compressible", "compression", "concat-map", "concat-stream", "console-browserify", "console-control-strings", "consolidate", "constant-case", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-descriptor", "core-js", "core-util-is", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "currently-unhandled", "dash-ast", "dashdash", "date-now", "debug", "decamelize", "decode-uri-component", "deep-eql", "deep-extend", "define-properties", "define-property", "defined", "delayed-stream", "delegate", "delegates", "depd", "deps-sort", "des.js", "destroy", "detect-libc", "detective", "diff", "diffie-hellman", "dom-serializer", "domain-browser", "domelementtype", "domhandler", "domutils", "dot-case", "duplexer2", "ecc-jsbn", "ee-first", "elliptic", "emoji-regex", "encodeurl", "end-of-stream", "engine.io", "engine.io-client", "engine.io-parser", "entities", "error-ex", "es-abstract", "es-to-primitive", "es6-promise", "escape-html", "escape-string-regexp", "esprima", "etag", "eventemitter3", "events", "events-to-array", "evp_bytestokey", "execa", "exit", "expand-brackets", "express", "extend", "extend-shallow", "extglob", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "file-source", "fill-range", "finalhandler", "find-up", "fireworm", "flat", "follow-redirects", "for-in", "forever-agent", "form-data", "formatio", "forwarded", "fragment-cache", "fresh", "fs-minipass", "fs.realpath", "fsevents", "fstream", "function-bind", "gauge", "gaze", "geojson-area", "get-assigned-identifiers", "get-caller-file", "get-stdin", "get-stream", "get-value", "getpass", "glob", "glob-parent", "globule", "good-listener", "graceful-fs", "graceful-readlink", "growl", "growly", "har-schema", "har-validator", "has", "has-ansi", "has-binary2", "has-cors", "has-flag", "has-symbols", "has-unicode", "has-value", "has-values", "hash-base", "hash.js", "he", "@carto/cartonik", "@carto/mapnik", "@mapbox/sphericalmercator", "aws-sdk", "basic-auth", "bindings", "buffer-writer", "canvas", "cartocolor", "cartodb-psql", "chroma-js", "co", "colorbrewer", "console-polyfill", "decache", "decompress-response", "double-ended-queue", "error-stack-parser", "file-uri-to-path", "find", "gdal", "generic-pool", "grainstore", "hiredis", "hosted-git-info", "http-errors", "http-signature", "husl", "iconv-lite", "ieee754", "ignore-walk", "inflight", "inherits", "ini", "invert-kv", "ipaddr.js", "is-arrayish", "is-fullwidth-code-point", "is-typedarray", "is-utf8", "isarray", "isstream", "is_js", "jmespath", "js-base64", "js-string-escape", "js-yaml", "jsbn", "json-schema", "json-schema-traverse", "json-stringify-safe", "jsprim", "lcid", "load-json-file", "lodash.assign", "lru-cache", "mapnik-reference", "media-typer", "merge-descriptors", "methods", "mime", "mime-db", "mime-types", "mimic-response", "minimatch", "minimist", "minipass", "minizlib", "mkdirp", "morgan", "ms", "nan", "needle", "negotiator", "node-pre-gyp", "nopt", "normalize-package-data", "npm-bundled", "npm-packlist", "npmlog", "number-is-nan", "oauth-sign", "object-assign", "on-finished", "on-headers", "once", "optimist", "os-homedir", "os-locale", "os-tmpdir", "osenv", "packet-reader", "parse-json", "parseurl", "path-exists", "path-is-absolute", "path-parse", "path-to-regexp", "path-type", "performance-now", "pg", "pg-connection-string", "pg-int8", "pg-pool", "pg-types", "pgpass", "pify", "pinkie", "pinkie-promise", "postcss", "postcss-scss", "postcss-strip-inline-comments", "postcss-value-parser", "postgres-array", "postgres-bytea", "postgres-date", "postgres-interval", "process-nextick-args", "proxy-addr", "punycode", "qs", "querystring", "queue-async", "range-parser", "raw-body", "rc", "read-pkg", "read-pkg-up", "readable-stream", "redis", "redis-commands", "redis-mpool", "redis-parser", "request", "request-ip", "require-directory", "require-main-filename", "resolve", "rimraf", "rollbar", "safe-buffer", "safer-buffer", "sax", "semver", "send", "serve-static", "set-blocking", "setprototypeof", "signal-exit", "simple-concat", "simple-get", "simple-statistics", "source-map", "spdx-correct", "spdx-exceptions", "spdx-expression-parse", "spdx-license-ids", "split", "sprintf-js", "srs", "sshpk", "stackframe", "statuses", "step", "string-width", "string_decoder", "strip-ansi", "strip-bom", "strip-json-comments", "supervisor", "windshaft", "ansible", "awscli", "boto", "majorkirby", "troposphere", "matplotlib", "pillow", "rasterio", "bmpxlsx", "cryptography", "dictdiffer", "django", "django-celery-results", "django-cookies-samesite", "django-cors-headers", "django-extensions", "django-filter", "django-redis", "django-registration-redux", "djangorestframework", "djangorestframework-gis", "drf-yasg", "fiona", "gunicorn", "gwlf-e", "hs-restclient", "markdown", "numpy", "pandas", "pyopenssl", "python-dateutil", "python-omgeo", "rauth", "requests", "retry", "six", "suds-community", "tables", "tr55", "ulmo", "flake8", "ipdb", "ipython", "boto3", "django-storages", "coverage", "selenium", "turf-buffer"], "https://github.com/aymara/lima": ["tqdm", "unix-ar"], "https://github.com/xieguigang/ManhattanPlot": ["sciBASIC", "System.ValueTuple"], "https://github.com/thorstenwagner/TraJ": ["de.biomedical-imaging.edu.wlu.cs.levy.cg:kdtree", "junit:junit", "net.imagej:ij", "org.apache.commons:commons-lang3", "org.apache.commons:commons-math3", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.knowm.xchart:xchart", "org.rosuda.REngine:Rserve", "org.scijava:vecmath", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/sealuzh/lightweight-effectiveness": ["gitpython", "matplotlib", "numpy", "pandas", "plotly", "scikit-learn", "scipy", "ch.qos.logback:logback-classic", "com.dianping.cat:cat-client", "com.dianping.cat:cat-consumer", "com.dianping.cat:cat-consumer-advanced", "com.dianping.cat:cat-core", "com.dianping.cat:cat-hadoop", "com.google.code.gson:gson", "io.netty:netty-all", "javax.servlet.jsp:jsp-api", "javax.servlet:javax.servlet-api", "javax.servlet:servlet-api", "junit:junit", "log4j:log4j", "mysql:mysql-connector-java", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.maven.surefire:maven-surefire-plugin", "org.apache.maven.surefire:surefire-junit47", "org.eclipse.m2e:lifecycle-mapping", "org.mortbay.jetty:jetty", "org.mortbay.jetty:jetty-util", "org.mortbay.jetty:jsp-2.1", "org.mortbay.jetty:jsp-api-2.1", "org.slf4j:slf4j-api", "org.unidal.framework:framework-bom", "org.unidal.maven.plugins:codegen-maven-plugin", "org.unidal.maven.plugins:plexus-maven-plugin", "org.unidal.webres:WebResServer", "org.apache.felix:maven-bundle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.scm:maven-scm-provider-gitexe", "aopalliance:aopalliance", "cglib:cglib", "com.google.code.findbugs:jsr305", "com.google.guava:guava", "com.google.guava:guava-testlib", "com.google.truth:truth", "com.mycila:license-maven-plugin", "javax.inject:javax.inject", "javax.inject:javax.inject-tck", "org.codehaus.mojo:animal-sniffer-maven-plugin", "org.ow2.asm:asm", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.eclipse.jetty:jetty-server", "org.eclipse.jetty:jetty-servlet", "com.github.stephenc.wagon:maven-site-plugin", "com.github.stephenc.wagon:wagon-gitsite", "com.google.code.maven-replacer-plugin:replacer", "org.apache.maven.doxia:doxia-module-markdown", "org.hamcrest:hamcrest-core", "org.mockito:mockito-core", "org.reactivestreams:reactive-streams", "org.reactivestreams:reactive-streams-tck", "org.testng:testng", "cglib:cglib-nodep", "com.diffblue:deeptestutils", "com.fasterxml.jackson.core:jackson-databind", "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider", "com.fasterxml.jackson.module:jackson-module-afterburner", "com.fasterxml.jackson.module:jackson-module-kotlin", "com.googlecode.json-simple:json-simple", "com.jayway.jsonpath:json-path", "com.jsoniter:jsoniter", "com.squareup.okhttp3:okhttp", "com.squareup.retrofit2:retrofit", "commons-io:commons-io", "io.javaslang:javaslang", "io.springfox:springfox-spring-web", "javax.ws.rs:javax.ws.rs-api", "joda-time:joda-time", "net.minidev:json-smart", "net.sf.json-lib:json-lib", "org.apache.commons:commons-collections4", "org.apache.commons:commons-lang3", "org.apache.cxf:cxf-rt-frontend-jaxrs", "org.apache.cxf:cxf-rt-rs-client", "org.apache.cxf:cxf-rt-transports-http", "org.apache.maven.plugins:maven-surefire-plugin", "org.clojure:clojure", "org.codehaus.groovy:groovy", "org.codehaus.plexus:plexus-compiler-javac", "org.eclipse.jetty:jetty-webapp", "org.gitlab4j:gitlab4j-api", "org.glassfish.jersey.containers:jersey-container-servlet", "org.glassfish.jersey.core:jersey-client", "org.glassfish.jersey.core:jersey-common", "org.glassfish.jersey.media:jersey-media-json-jackson", "org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jdk-http", "org.hibernate:hibernate-core", "org.jacoco:jacoco-maven-plugin", "org.javassist:javassist", "org.jetbrains.kotlin:kotlin-reflect", "org.jetbrains.kotlin:kotlin-stdlib", "org.mockito:mockito-all", "org.openjdk.jmh:jmh-core", "org.openjdk.jmh:jmh-generator-annprocess", "org.powermock:powermock-module-junit4", "org.projectlombok:lombok", "org.springframework.data:spring-data-commons-core", "org.springframework.data:spring-data-redis", "org.springframework.security.oauth:spring-security-oauth2", "org.springframework.security:spring-security-web", "org.springframework:spring-messaging", "org.springframework:spring-test", "org.springframework:spring-webmvc", "org.springframework:spring-websocket", "com.google.errorprone:error_prone_core", "com.google.jimfs:jimfs", "com.google.testing.compile:compile-testing", "com.puppycrawl.tools:checkstyle", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.codehaus.plexus:plexus-compiler-javac-errorprone", "org.eclipse.jdt.core.compiler:ecj", "org.apache.ant:ant", "org.apache.bcel:bcel", "org.apache.lucene:lucene-analyzers-common", "org.apache.lucene:lucene-core", "org.apache.lucene:lucene-highlighter", "org.apache.lucene:lucene-join", "org.apache.lucene:lucene-memory", "org.apache.lucene:lucene-queries", "org.apache.lucene:lucene-queryparser", "org.apache.lucene:lucene-suggest", "org.apache.maven.plugins:maven-docck-plugin", "org.apache.maven.plugins:maven-jxr-plugin", "org.apache.maven.plugins:maven-pmd-plugin", "org.apache.maven.plugins:maven-surefire-report-plugin", "org.codehaus.mojo:findbugs-maven-plugin", "org.eluder.coveralls:coveralls-maven-plugin", "antlr:antlr", "com.github.sevntu-checkstyle:dsm-maven-plugin", "com.github.sevntu-checkstyle:sevntu-checkstyle-maven-plugin", "com.github.spotbugs:spotbugs", "com.github.spotbugs:spotbugs-maven-plugin", "com.github.stefanbirkner:system-rules", "commons-beanutils:commons-beanutils", "commons-cli:commons-cli", "de.thetaphi:forbiddenapis", "edu.illinois:nondex-maven-plugin", "net.sf.saxon:Saxon-HE", "net.sourceforge.pmd:pmd-core", "net.sourceforge.pmd:pmd-java", "net.sourceforge.pmd:pmd-javascript", "net.sourceforge.pmd:pmd-jsp", "nl.jqno.equalsverifier:equalsverifier", "org.antlr:antlr4-maven-plugin", "org.antlr:antlr4-runtime", "org.apache.ant:ant-nodeps", "org.apache.maven.plugins:maven-antrun-plugin", "org.apache.maven.plugins:maven-clean-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-eclipse-plugin", "org.apache.maven.plugins:maven-enforcer-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-install-plugin", "org.apache.maven.plugins:maven-linkcheck-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.wagon:wagon-ssh", "org.codehaus.mojo:antlr-maven-plugin", "org.codehaus.mojo:build-helper-maven-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.codehaus.mojo:jdepend-maven-plugin", "org.codehaus.mojo:sonar-maven-plugin", "org.codehaus.mojo:taglist-maven-plugin", "org.codehaus.mojo:versions-maven-plugin", "org.codehaus.mojo:xml-maven-plugin", "org.codehaus.sonar-plugins:maven-report", "org.eclipse.jdt:org.eclipse.jdt.annotation", "org.eclipse.jgit:org.eclipse.jgit", "org.jacoco:org.jacoco.agent", "org.pitest:pitest-maven", "org.powermock:powermock-api-mockito2", "org.slf4j:slf4j-simple", "org.sonatype.plugins:nexus-staging-maven-plugin", "org.apache.maven.plugins:maven-scm-publish-plugin", "org.apache.rat:apache-rat-plugin", "org.codehaus.mojo:cobertura-maven-plugin", "com.tngtech.java:junit-dataprovider", "de.jutzig:github-release-plugin", "org.apache.maven.plugins:maven-assembly-plugin", "org.joda:joda-collect", "org.joda:joda-convert", "org.unidal.framework:dal-jdbc", "org.unidal.framework:test-framework", "org.unidal.framework:web-framework", "com.google.code.javaparser:javaparser", "javax.mail:mail", "javax.servlet:jstl", "org.apache.commons:commons-email", "org.apache.maven.plugins:maven-war-plugin", "org.codehaus.plexus:plexus-utils", "org.freemarker:freemarker", "com.github.siom79.japicmp:japicmp-maven-plugin", "org.codehaus.mojo:javancss-maven-plugin", "org.easymock:easymock", "org.hamcrest:hamcrest-all", "org.apache.maven.plugins:maven-changes-plugin", "org.codehaus.mojo:clirr-maven-plugin", "org.ekstazi:ekstazi-maven-plugin", "ru.concerteza.buildnumber:maven-jgit-buildnumber-plugin", "org.unidal.framework:foundation-service", "org.apache.hadoop:hadoop-client", "cffi", "psutil", "@babel/code-frame", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-split-export-declaration", "@babel/highlight", "@babel/parser", "@babel/template", "@babel/traverse", "@babel/types", "abab", "acorn", "acorn-globals", "acorn-jsx", "ajv", "ajv-keywords", "align-text", "amdefine", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "append-transform", "argparse", "arr-diff", "arr-flatten", "array-equal", "array-find-index", "array-ify", "array-includes", "array-union", "array-uniq", "array-unique", "arrify", "asn1", "assert-plus", "async", "asynckit", "aws-sign2", "aws4", "babel-code-frame", "babel-core", "babel-generator", "babel-helpers", "babel-jest", "babel-messages", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-plugin-syntax-object-rest-spread", "babel-preset-jest", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "bcrypt-pbkdf", "brace-expansion", "braces", "browser-resolve", "bser", "buffer-builder", "buffer-from", "builtin-modules", "caller-path", "callsites", "camelcase", "camelcase-keys", "caseless", "center-align", "chalk", "chardet", "ci-info", "circular-json", "cli-cursor", "cli-width", "cliui", "co", "code-point-at", "color-convert", "color-name", "combined-stream", "commander", "compare-func", "compare-versions", "concat-map", "concat-stream", "contains-path", "content-type-parser", "conventional-changelog", "conventional-changelog-angular", "conventional-changelog-atom", "conventional-changelog-codemirror", "conventional-changelog-core", "conventional-changelog-ember", "conventional-changelog-eslint", "conventional-changelog-express", "conventional-changelog-jquery", "conventional-changelog-jscs", "conventional-changelog-jshint", "conventional-changelog-preset-loader", "conventional-changelog-writer", "conventional-commit-types", "conventional-commits-filter", "conventional-commits-parser", "conventional-recommended-bump", "convert-source-map", "core-js", "core-util-is", "cross-spawn", "cssom", "cssstyle", "currently-unhandled", "cz-conventional-changelog", "d", "dargs", "dashdash", "dateformat", "debug", "decamelize", "decamelize-keys", "deep-is", "default-require-extensions", "define-properties", "del", "delayed-stream", "detect-indent", "diff", "doctrine", "dot-prop", "dotgitignore", "ecc-jsbn", "errno", "error-ex", "es-abstract", "es-to-primitive", "es5-ext", "es6-iterator", "es6-map", "es6-set", "es6-symbol", "es6-weak-map", "escape-string-regexp", "escodegen", "escope", "eslint", "eslint-config-standard", "eslint-config-yayajing", "eslint-import-resolver-node", "eslint-module-utils", "eslint-plugin-import", "eslint-plugin-jest", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-react", "eslint-plugin-standard", "eslint-scope", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "event-emitter", "exec-sh", "execa", "exit-hook", "expand-brackets", "expand-range", "extend", "external-editor", "extglob", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "fb-watchman", "figures", "file-entry-cache", "filename-regex", "fileset", "fill-range", "find-up", "flat-cache", "for-in", "for-own", "forever-agent", "form-data", "fs-access", "fs.realpath", "function-bind", "functional-red-black-tree", "generate-function", "generate-object-property", "get-caller-file", "get-pkg-repo", "get-stdin", "get-stream", "getpass", "git-raw-commits", "git-remote-origin-url", "git-semver-tags", "gitconfiglocal", "glob", "glob-base", "glob-parent", "globals", "globby", "graceful-fs", "growl", "growly", "handlebars", "har-schema", "har-validator", "has", "has-ansi", "has-flag", "home-or-tmp", "hosted-git-info", "html-encoding-sniffer", "http-signature", "iconv-lite", "ignore", "imurmurhash", "indent-string", "inflight", "inherits", "ini", "inquirer", "interpret", "invariant", "invert-kv", "is-arrayish", "is-buffer", "is-builtin-module", "is-callable", "is-ci", "is-date-object", "is-dotfile", "is-equal-shallow", "is-extendable", "is-extglob", "is-finite", "is-fullwidth-code-point", "is-glob", "is-my-ip-valid", "is-my-json-valid", "is-number", "jest", "mkdirp", "mocha", "moment", "node-cmake", "request", "standard-version", "xml2js", "com.google.guava:guava-gwt", "com.google.protobuf:protobuf-java", "commons-collections:commons-collections", "commons-collections:commons-collections-testframework", "commons-logging:commons-logging"], "https://github.com/phiresky/backchannel-prediction": ["@blueprintjs/core", "@types/core-decorators", "@types/lz-string", "@types/query-string", "@types/react", "@types/react-dom", "autoprefixer", "babel-core", "babel-loader", "babel-plugin-transform-runtime", "babel-preset-es2015", "core-decorators", "css-loader", "extract-text-webpack-plugin", "lz-string", "mobx", "mobx-react", "mobx-react-devtools", "query-string", "react", "react-addons-css-transition-group", "react-dom", "react-hot-loader", "style-loader", "ts-loader", "webpack", "webpack-dev-server", "abbrev", "accepts", "acorn", "align-text", "alphanum-sort", "amdefine", "ansi-regex", "ansi-styles", "anymatch", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "array-flatten", "array-unique", "arrify", "asap", "asn1", "assert", "assert-plus", "async", "async-each", "asynckit", "aws-sign2", "aws4", "babel-code-frame", "babel-generator", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-replace-supers", "babel-helpers", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "block-stream", "boom", "brace-expansion", "braces", "browserify-aes", "browserify-zlib", "browserslist", "buffer", "buffer-shims", "builtin-status-codes", "bytes", "camelcase", "caniuse-db", "caseless", "center-align", "chalk", "chokidar", "clap", "classnames", "cliui", "clone", "coa", "code-point-at", "color", "color-convert", "color-name", "color-string", "colormin", "colors", "combined-stream", "commander", "commondir", "compressible", "compression", "concat-map", "connect-history-api-fallback", "console-browserify", "console-control-strings", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "core-js", "core-util-is", "cryptiles", "crypto-browserify", "css-color-names", "css-selector-tokenizer", "cssesc", "cssnano", "csso", "dashdash", "date-now", "debug", "decamelize", "deep-extend", "defined", "delayed-stream", "delegates", "depd", "destroy", "detect-indent", "dom-walk", "dom4", "domain-browser", "ecc-jsbn", "ee-first", "emojis-list", "encodeurl", "encoding", "enhanced-resolve", "errno", "error-stack-parser", "escape-html", "escape-string-regexp", "esprima", "esutils", "etag", "eventemitter3", "events", "eventsource", "expand-brackets", "expand-range", "express", "extend", "extglob", "extsprintf", "fastparse", "faye-websocket", "fbjs", "filename-regex", "fill-range", "finalhandler", "find-cache-dir", "find-up", "flatten", "for-in", "for-own", "forever-agent", "form-data", "forwarded", "fresh", "fs.realpath", "fsevents", "fstream", "fstream-ignore", "function-bind", "gauge", "generate-function", "generate-object-property", "getpass", "glob", "glob-base", "glob-parent", "global", "globals", "graceful-fs", "graceful-readlink", "har-validator", "has", "has-ansi", "has-flag", "has-unicode", "hawk", "hoek", "hoist-non-react-statics", "home-or-tmp", "html-comment-regex", "http-errors", "http-proxy", "http-proxy-middleware", "http-signature", "https-browserify", "iconv-lite", "icss-replace-symbols", "ieee754", "indexes-of", "indexof", "inflight", "inherits", "ini", "interpret", "invariant", "ipaddr.js", "is-absolute-url", "is-binary-path", "is-buffer", "is-dotfile", "is-equal-shallow", "is-extendable", "is-extglob", "is-finite", "is-fullwidth-code-point", "is-glob", "is-my-json-valid", "is-number", "is-plain-obj", "is-posix-bracket", "is-primitive", "@types/chart.js", "@types/react-dnd", "@types/react-tabs", "@types/whatwg-fetch", "awesome-typescript-loader", "babel-polyfill", "chart.js", "html-webpack-plugin", "less", "less-loader", "mobx-utils", "react-chartjs-2", "react-dnd", "react-dnd-html5-backend", "react-select", "react-tabs", "reactable", "rxjs", "@types/react-select", "@types/whatwg-streams", "acorn-dynamic-import", "ajv", "ajv-keywords", "asn1.js", "bluebird", "bn.js", "boolbase", "brorand", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "buffer-xor", "builtin-modules", "camel-case", "caniuse-api", "chartjs-color", "chartjs-color-string", "cipher-base", "clean-css", "co", "create-ecdh", "create-hash", "create-hmac", "css-select", "css-what", "des.js", "diffie-hellman", "disposables", "dnd-core", "dom-converter", "dom-serializer", "domelementtype", "domhandler", "domutils", "electron-to-chromium", "elliptic", "entities", "error-ex", "evp_bytestokey", "get-caller-file", "handle-thing", "@types/compression", "@types/express", "@types/glob", "@types/lodash", "@types/node", "@types/random-js", "@types/socket.io", "@types/socket.io-client", "@types/webpack-dev-middleware", "babel-preset-react", "file-loader", "html-webpack-template", "lodash", "random-js", "react-pivot", "socket.io", "socket.io-client", "sqlite3", "ts-node", "typeorm", "url-loader", "webpack-dev-middleware", "whatwg-fetch", "@types/connect", "@types/dom4", "@types/express-serve-static-core", "@types/mime", "@types/minimatch", "@types/serve-static", "@types/source-map", "@types/tapable", "@types/tether", "@types/uglify-js", "@types/webpack", "after", "any-promise", "app-root-path", "arraybuffer.slice", "ast-types", "babel-helper-builder-react-jsx", "babel-plugin-syntax-flow", "babel-plugin-syntax-jsx", "babel-plugin-transform-flow-strip-types", "babel-plugin-transform-react-display-name", "babel-plugin-transform-react-jsx", "babel-plugin-transform-react-jsx-self", "babel-plugin-transform-react-jsx-source", "babel-preset-flow", "backo2", "base62", "base64-arraybuffer", "base64id", "better-assert", "blob", "callsite", "commoner", "component-bind", "component-emitter", "component-inherit", "cssify", "dataframe", "detective", "diff", "engine.io", "engine.io-client", "engine.io-parser", "envify", "esprima-fb"], "https://github.com/labexp/LibreScan": ["bottle", "cffi", "jinja2", "jpegtran-cffi", "pexpect", "polib", "pyjade", "pyyaml"], "https://github.com/jdmoorman/laptools": ["codecov", "numba", "numpy", "pytest", "pytest-cov", "scipy"], "https://github.com/krassowski/drug-disease-profile-matching": ["biopython", "cmappy", "colorzero", "dataclasses", "diskcache", "enhanced-multiprocessing", "gsea-api", "h5py", "inflect", "ipympl", "ipython", "ipywidgets", "jupyter-helpers", "jupyterlab", "lxml", "matplotlib", "nbimporter", "nimfa", "numba", "numpy", "pandas", "plotly", "plotnine", "psycopg2-binary", "pyensembl", "pyfaidx", "pygments", "pytest", "rpy2", "scikit-fusion", "scikit-plot", "scipy", "seaborn", "sklearn", "snakeviz", "sqlalchemy", "sqlalchemy-schemadisplay", "sqlalchemy-utils", "statsmodels", "tqdm", "tzlocal", "xlrd"], "https://github.com/allucas/allucas.github.io": ["express", "grunt", "grunt-autoprefixer", "grunt-cli", "grunt-contrib-connect", "grunt-contrib-cssmin", "grunt-contrib-jshint", "grunt-contrib-qunit", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-sass", "grunt-zip", "mustache", "node-sass", "socket.io"], "https://github.com/BradMcDanel/term-revealing": ["torch"], "https://github.com/silx-kit/pyFAI": ["cython", "fabio", "h5py", "hdf5plugin", "matplotlib", "numexpr", "numpy", "pyopengl", "pyqt5", "scipy", "silx", "wheel", "pillow", "nbsphinx", "sphinx", "sphinxcontrib-programoutput", "lxml", "mako", "pybind11", "pyopencl", "unittest2", "bash-kernel", "ipympl", "pyfai"], "https://github.com/scipy-lectures/scipy-lecture-notes": ["coverage", "imageio", "matplotlib", "numpy", "pandas", "pillow", "pip", "pytest", "scikit-image", "scikit-learn", "scipy", "seaborn", "sphinx", "sphinx-gallery", "statsmodels", "sympy"], "https://github.com/ornlneutronimaging/NEUIT": ["cerberus", "dash", "dash-table", "gunicorn", "imagingreso", "matplotlib", "numpy", "pandas", "plotly", "scipy"], "https://github.com/kgullikson88/General": ["astroquery", "emcee", "george", "h5py", "lmfit", "pandas", "pymultinest", "scikit-learn", "scikit-monaco", "seaborn", "statsmodels", "telfit", "triangle-plot"], "https://github.com/BristolTopGroup/DailyPythonScripts": ["matplotlib", "nose", "numpy", "pytables", "root-numpy", "rootpy", "sphinx", "uncertainties"], "https://github.com/redcap-tools/PyCap": ["nose", "numpydoc", "requests", "responses", "semantic-version", "sphinx", "wheel"], "https://github.com/dgarijo/Widoco": ["com.github.VisualDataWeb:OWL2VOWL", "com.googlecode.json-simple :json-simple", "junit:junit", "net.sf.saxon:Saxon-HE", "net.sourceforge.owlapi:owlapi-distribution", "org.apache.felix:maven-bundle-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.hamcrest:hamcrest-core", "org.slf4j:slf4j-api", "org.slf4j:slf4j-simple"], "https://github.com/PecanProject/bety": ["activemodel-serializers-xml", "activerecord-postgis-adapter", "activerecord-session_store", "apipie-rails", "bootstrap-will_paginate", "capybara", "capybara-webkit", "choice", "coffee-rails", "comma", "database_cleaner", "dynamic_form", "jquery-rails", "jquery-ui-rails", "json", "json-schema", "memoist", "multi_json", "narray", "nokogiri", "optimist", "passenger", "pg", "protected_attributes_continued", "pry", "pry-byebug", "pry-rails", "rabl", "railroad", "rails", "rails-controller-testing", "rails3-restful-authentication", "recaptcha", "rgeo", "rspec-rails", "rspec_api_documentation", "ruby-graphviz", "rubyzip", "safe_attributes", "sass-rails", "seer", "selenium-webdriver", "tzinfo", "uglifier", "unicorn", "will_paginate", "yajl-ruby", "yard", "actioncable", "actionmailer", "actionpack", "actionview", "activejob", "activemodel", "activerecord", "activesupport", "addressable", "arel", "builder", "byebug", "childprocess", "coderay", "coffee-script", "coffee-script-source", "concurrent-ruby", "crass", "diff-lcs", "erubi", "execjs", "ffi", "globalid", "i18n", "kgio", "loofah", "mail", "method_source", "minitest", "mini_mime", "mini_portile2", "mustache", "nio4r", "public_suffix", "rack", "rack-test", "rails-dom-testing", "rails-html-sanitizer", "railties", "raindrops", "rake", "rgeo-activerecord", "rspec", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec-support", "sassc", "sassc-rails", "sprockets", "sprockets-rails", "thor", "thread_safe", "tilt", "websocket-driver", "websocket-extensions", "xpath"], "https://github.com/AABoyles/MicrobeTrace": ["3d-force-graph", "3d-view", "@babel/runtime", "@choojs/findup", "@mapbox/geojson-rewind", "@mapbox/geojson-types", "@mapbox/jsonlint-lines-primitives", "@mapbox/mapbox-gl-supported", "@mapbox/point-geometry", "@mapbox/tiny-sdf", "@mapbox/unitbezier", "@mapbox/vector-tile", "@mapbox/whoots-js", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@pixi/accessibility", "@pixi/app", "@pixi/constants", "@pixi/core", "@pixi/display", "@pixi/extract", "@pixi/filter-alpha", "@pixi/filter-blur", "@pixi/filter-color-matrix", "@pixi/filter-displacement", "@pixi/filter-fxaa", "@pixi/filter-noise", "@pixi/graphics", "@pixi/interaction", "@pixi/loaders", "@pixi/math", "@pixi/mesh", "@pixi/mesh-extras", "@pixi/mixin-cache-as-bitmap", "@pixi/mixin-get-child-by-name", "@pixi/mixin-get-global-position", "@pixi/particles", "@pixi/polyfill", "@pixi/prepare", "@pixi/runner", "@pixi/settings", "@pixi/sprite", "@pixi/sprite-animated", "@pixi/sprite-tiling", "@pixi/spritesheet", "@pixi/text", "@pixi/text-bitmap", "@pixi/ticker", "@pixi/utils", "@plotly/d3-sankey", "@plotly/d3-sankey-circular", "@turf/area", "@turf/bbox", "@turf/centroid", "@turf/helpers", "@turf/meta", "@tweenjs/tween.js", "@types/color-name", "@types/q", "a-big-triangle", "abs-svg-path", "accepts", "accessor-fn", "acorn", "acorn-dynamic-import", "acorn-jsx", "acorn-node", "acorn-walk", "add-line-numbers", "adler-32", "affine-hull", "agent-base", "alertifyjs", "alignment-viewer", "almost-equal", "alpha-complex", "alpha-shape", "alphanum-sort", "amdefine", "ansi-regex", "ansi-styles", "anymatch", "argparse", "arr-flatten", "array-bounds", "array-flatten", "array-from", "array-normalize", "array-range", "array-rearrange", "array-union", "ast-transform", "ast-types", "async-limiter", "at-least-node", "atob-lite", "babel-runtime", "balanced-match", "barycentric", "base64-js", "big-rat", "binary-extensions", "binary-search-bounds", "bioseq", "bit-twiddle", "bitmap-sdf", "bl", "bn.js", "body-parser", "boolbase", "bootstrap", "boundary-cells", "box-intersect", "brace-expansion", "braces", "brfs", "brotli", "browser-resolve", "browserify-optional", "browserslist", "buble", "bubleify", "buffer-crc32", "buffer-equal", "buffer-from", "bytes", "caller-callsite", "caller-path", "callsites", "camelcase", "caniuse-api", "caniuse-lite", "canvas-fit", "cdt2d", "cell-orientation", "cfb", "chalk", "chokidar", "chosen-js", "circumcenter", "circumradius", "clamp", "clean-pslg", "clipboard", "cliui", "clone", "coa", "codepage", "color", "color-alpha", "color-convert", "color-id", "color-name", "color-normalize", "color-parse", "color-rgba", "color-space", "color-string", "colormap", "commander", "compare-angle", "compare-cell", "compare-oriented-cell", "compute-dims", "concat-map", "concat-stream", "const-max-uint32", "const-pinf-float64", "content-disposition", "content-type", "convert-source-map", "convex-hull", "cookie", "cookie-signature", "core-js", "core-util-is", "cosmiconfig", "country-regex", "crc-32", "crypto-js", "css-color-names", "css-declaration-sorter", "css-font", "css-font-size-keywords", "css-font-stretch-keywords", "css-font-style-keywords", "css-font-weight-keywords", "css-global-keywords", "css-select", "css-select-base-adapter", "css-system-font-keywords", "css-tree", "css-unit-converter", "css-what", "csscolorparser", "cssesc", "cssfilter", "cssnano", "cssnano-preset-default", "cssnano-util-get-arguments", "cssnano-util-get-match", "cssnano-util-raw-cache", "cssnano-util-same-parent", "csso", "cubic-hermite", "cwise-compiler", "d", "d3", "d3-array", "d3-axis", "d3-binarytree", "d3-brush", "d3-chord", "d3-collection", "d3-color", "d3-contour", "d3-dispatch", "d3-drag", "d3-dsv", "d3-ease", "d3-fetch", "d3-force", "d3-force-3d", "d3-force-attract", "d3-format", "d3-geo", "d3-hierarchy", "d3-interpolate", "d3-octree", "d3-path", "d3-polygon", "d3-quadtree", "d3-random", "d3-scale", "d3-scale-chromatic", "d3-selection", "d3-shape", "d3-symbol-extra", "d3-time", "d3-time-format", "d3-timer", "d3-transition", "d3-voronoi", "d3-zoom", "dash-ast", "data-joint", "debounce", "debug", "decamelize", "devtools-detect", "express", "express-http-to-https", "express-static-gzip", "file-saver", "fileto", "golden-layout", "gzipper", "html5sortable", "jquery", "jszip", "leaflet", "leaflet-image", "leaflet.markercluster", "localforage", "marked", "moment", "open-iconic", "papaparse", "patristic", "pdfmake", "pixi-viewport", "pixi.js", "plotly.js", "popper.js", "postcss-cli", "puppeteer", "save-svg-as-png", "screenfull", "tabulator-tables", "tidytree", "tn93", "xlsx", "xss", "3d-view-controls", "@etpinard/gl-text", "@mapbox/geojson-area", "@mapbox/gl-matrix", "@mapbox/shelf-pack", "align-text", "ansicolors", "base64-arraybuffer", "cardinal", "center-align", "css-line-break", "cwise", "cwise-parser", "d3-sankey", "deep-equal", "deep-is", "define-properties", "defined", "delaunay-triangulate", "delegate", "depd", "destroy", "detect-kerning", "double-bits", "draw-svg-path", "dtype", "dup", "duplexer2", "duplexify", "earcut", "edges-to-adjacency-list", "ee-first", "element-size", "encodeurl", "end-of-stream", "es-abstract", "es-to-primitive", "es5-ext", "es6-iterator", "es6-promise", "es6-symbol", "es6-weak-map", "escape-html", "escape-string-regexp", "escodegen", "esprima", "estraverse", "esutils", "etag", "events", "exit-on-epipe", "expect.js", "extend-shallow", "extract-frustum-planes", "falafel", "fast-isnumeric", "fast-levenshtein", "filtered-vector", "finalhandler", "flatten-vertex-data", "font-atlas", "font-atlas-sdf", "font-measure", "for-each", "foreach", "forwarded", "frac", "fresh", "from2", "fs.realpath", "function-bind", "functional-red-black-tree", "gamma", "geojson-rewind", "geojson-vt", "get-canvas-context", "gl-axes3d", "gl-buffer", "gl-cone3d", "gl-constants", "gl-contour2d", "gl-error3d", "gl-fbo", "gl-format-compiler-error", "gl-heatmap2d", "gl-line3d", "gl-mat2", "gl-mat3", "gl-mat4", "gl-matrix-invert", "gl-mesh3d", "gl-plot2d", "gl-plot3d", "gl-pointcloud2d", "gl-quat", "gl-scatter3d", "gl-select-box", "gl-select-static", "gl-shader", "gl-spikes2d", "gl-spikes3d", "gl-state", "gl-streamtube3d", "gl-surface3d"], "https://github.com/supercollider/supercollider": ["guard-sclang", "libnotify", "lodash"], "https://github.com/linsalrob/PhiSpy": ["biopython", "numpy", "scikit-learn"], "https://github.com/Koushikphy/Interactive_Data_Editor": ["electron", "electron-builder", "gulp", "gulp-clean-css", "gulp-concat", "gulp-rename", "gulp-uglify", "plotly.js-gl3d-dist", "uglify-es", "v8-compile-cache"], "https://github.com/keichi/mpEDM": ["h5py", "numpy", "pandas", "python-dateutil", "pytz", "six"], "https://github.com/cldf-clts/pyclts": ["attrs", "cldfcatalog", "clldutils", "csvw", "uritemplate"], "https://github.com/TEB-model/teb": ["f90nml", "matplotlib", "numpy", "pandas", "notebook"], "https://github.com/comic/evalutils": ["click", "cookiecutter", "imageio", "numpy", "pandas", "pytest", "pytest-cov", "scikit-learn", "scipy", "simpleitk"], "https://github.com/suryabaiarava/liferay-examples": ["gulp", "liferay-theme-deps-7.0", "liferay-theme-tasks"], "https://github.com/opencobra/cobratoolbox": ["pygithub", "recommonmark", "sphinx-rtd-theme", "sphinxcontrib-fulltoc"], "https://github.com/dtscalibration/python-dts-calibration": ["cloudpickle", "dask", "matplotlib", "nbformat", "nbsphinx", "netcdf4", "numpy", "pandas", "patsy", "pyyaml", "scipy", "statsmodels", "toolz", "xarray", "xmltodict", "ipython", "recommonmark", "sphinx", "sphinx-automodapi"], "https://github.com/eqcorrscan/EQcorrscan": ["bottleneck", "codecov", "h5py", "matplotlib", "numpy", "obspy", "pillow", "pyfftw", "pytest", "pytest-cov", "pytest-mpl", "pytest-pep8", "pytest-rerunfailures", "pytest-xdist", "scipy", "nbsphinx", "pygments", "sphinx", "sphinx-bootstrap-theme"], "https://github.com/scikit-hep/decaylanguage": ["attrs", "cachetools", "enum34", "importlib-resources", "lark-parser", "numpy", "pandas", "particle", "pathlib2", "plumbum", "pydot", "six", "sphinx", "sphinx-rtd-theme"], "https://github.com/OpenGeoscience/geojs": ["babel-core", "babel-loader", "babel-plugin-istanbul", "babel-plugin-transform-object-rest-spread", "babel-polyfill", "babel-preset-env", "body-parser", "bootstrap", "bootswatch", "bowser", "codemirror", "color-name", "colorbrewer", "css-loader", "docco", "earcut", "eslint", "eslint-config-semistandard", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-standard", "exports-loader", "expose-loader", "express", "file-loader", "forever", "fs-extra", "gl-mat3", "gl-mat4", "gl-vec3", "gl-vec4", "glob", "imports-loader", "istanbul-combine", "istanbul-instrumenter-loader", "jaguarjs-jsdoc", "jasmine-core", "jquery", "js-yaml", "jsdoc", "jsdoc-autoprivate", "jsonlint-mod", "jstransformer-markdown-it", "karma", "karma-chrome-launcher", "karma-coverage", "karma-firefox-launcher", "karma-jasmine", "karma-jasmine-html-reporter", "karma-phantomjs-launcher", "karma-phantomjs-shim", "karma-sinon", "karma-sourcemap-loader", "karma-spec-reporter", "karma-webpack", "kdbush", "mousetrap", "nib", "pako", "phantomjs-prebuilt", "proj4", "pug", "pug-lint", "pug-loader", "raw-body", "resemblejs", "serve-index", "shader-loader", "sinon", "string-replace-webpack-plugin", "style-loader", "stylus", "stylus-loader", "touch-emulator", "typeface-lato", "uglifyjs-webpack-plugin", "url-loader", "vgl", "webpack", "webpack-cli", "webpack-merge", "webpack-serve", "graphviz", "pillow", "requests", "sphinx-rtd-theme", "ejs-lint", "hexo", "hexo-cli", "hexo-fs", "hexo-renderer-ejs", "hexo-renderer-marked", "hexo-renderer-scss", "hexo-renderer-stylus", "hexo-server", "pymongo", "tangelo"], "https://github.com/PyThaiNLP/pythainlp": ["conllu", "dill", "future", "langdetect", "marisa-trie", "nltk", "pyicu", "pytz", "requests", "six", "tinydb", "tqdm", "numpy", "python-crfsuite", "pyyaml"], "https://github.com/TUW-GEO/ascat": ["docutils", "ipython", "mock", "numpy", "pandas", "pygeobase", "sphinx", "sphinx-rtd-theme", "coverage", "pytest", "pytest-cov"], "https://github.com/rvanheest/feedback4s": ["com.mycila:license-maven-plugin", "io.reactivex:rxscala_2.11", "junit:junit", "net.alchim31.maven:scala-maven-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.scala-lang:scala-library", "com.github.rvanheest:feedback4s", "io.reactivex:rxjavafx"], "https://github.com/screensinthewild/screenbase_instantiated_slideshow": ["media-table-structure-only-sql", "tags-table-structure-only-sql"], "https://github.com/AMReX-Astro/MAESTROeX": ["breathe", "more-itertools", "numpy", "numpydoc", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex", "matplotlib", "yt"], "https://github.com/christianjauregui/famafrench": ["ipython", "methodtools", "numba", "numpy", "numpydoc", "pandas", "pandas-datareader", "pandas-market-calendars", "pytest", "python-dateutil", "python-dotenv", "sphinx", "sqlalchemy", "termcolor", "tqdm", "wrds"], "https://github.com/TBroTeam/TBro": ["apigen/apigen", "phpunit/phpunit", "phryneas/logged-pdo", "satooshi/php-coveralls", "andrewsville/php-token-reflection", "apigen/theme-bootstrap", "apigen/theme-default", "doctrine/instantiator", "guzzle/guzzle", "herrera-io/json", "herrera-io/phar-update", "herrera-io/version", "justinrainbow/json-schema", "kdyby/events", "kukulich/fshl", "latte/latte", "michelf/php-markdown", "myclabs/deep-copy", "nette/application", "nette/bootstrap", "nette/caching", "nette/component-model", "nette/di", "nette/finder", "nette/http", "nette/mail", "nette/neon", "nette/php-generator", "nette/reflection", "nette/robot-loader", "nette/safe-stream", "nette/utils", "pear/log", "pear/pear_exception", "phpdocumentor/reflection-common", "phpdocumentor/reflection-docblock", "phpdocumentor/type-resolver", "phpspec/prophecy", "phpunit/php-code-coverage", "phpunit/php-file-iterator", "phpunit/php-text-template", "phpunit/php-timer", "phpunit/php-token-stream", "phpunit/phpunit-mock-objects", "psr/log", "sebastian/code-unit-reverse-lookup", "sebastian/comparator", "sebastian/diff", "sebastian/environment", "sebastian/exporter", "sebastian/global-state", "sebastian/object-enumerator", "sebastian/recursion-context", "sebastian/resource-operations", "sebastian/version", "seld/jsonlint", "symfony/config", "symfony/console", "symfony/event-dispatcher", "symfony/filesystem", "symfony/options-resolver", "symfony/polyfill-mbstring", "symfony/stopwatch", "symfony/yaml", "tracy/tracy", "webmozart/assert"], "https://github.com/mattbit/active-network-er": ["cmocean", "matplotlib", "networkx", "numpy", "pandas", "pyarrow", "pytest", "pytest-cov", "python-language-server", "scipy", "sphinx", "sphinx-rtd-theme", "tqdm", "alabaster", "astroid", "attrs", "autopep8", "babel", "certifi", "chardet", "coverage", "cycler", "decorator", "docutils", "entrypoints", "flake8", "idna", "imagesize", "importlib-metadata", "isort", "jedi", "jinja2", "kiwisolver", "lazy-object-proxy", "markupsafe", "mccabe", "more-itertools", "packaging", "parso", "pluggy", "py", "pycodestyle", "pydocstyle", "pyflakes", "pygments", "pylint", "pyparsing", "python-dateutil", "python-jsonrpc-server", "pytz", "requests", "rope", "six", "snowballstemmer", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "toml", "typed-ast", "ujson", "urllib3", "wcwidth", "wrapt", "yapf", "zipp"], "https://github.com/timetag/ETA": ["aiohttp", "astunparse", "bokeh", "cffi", "llvmlite", "lmfit", "matplotlib", "numba", "numpy", "pandas", "scipy", "electron", "electron-builder", "electron-log", "electron-updater"], "https://github.com/stephankramer/assess": ["numpy", "scipy"], "https://github.com/DataFusion4NetBio/Paper16-SCODE": ["\n\t\t \tcom.googlecode.efficient-java-matrix-library\n\t\t \t:ejml", "commons-io:commons-io", "commons-lang:commons-lang", "junit:junit", "org.apache.felix:maven-bundle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.cytoscape:core-task-api", "org.cytoscape:event-api", "org.cytoscape:model-impl", "org.cytoscape:service-api", "org.cytoscape:session-api", "org.cytoscape:swing-application-api", "org.mockito:mockito-all", "org.ops4j.pax.logging:pax-logging-api", "org.osgi:org.osgi.core"], "https://github.com/CDAT/jupyter-vcdat": ["@jupyterlab/application", "@jupyterlab/apputils", "@jupyterlab/cells", "@jupyterlab/console", "@jupyterlab/coreutils", "@jupyterlab/docregistry", "@jupyterlab/filebrowser", "@jupyterlab/mainmenu", "@jupyterlab/notebook", "@jupyterlab/outputarea", "@jupyterlab/services", "@lumino/algorithm", "@lumino/commands", "@lumino/coreutils", "@lumino/disposable", "@lumino/messaging", "@lumino/signaling", "@lumino/widgets", "@types/bootstrap-slider", "@types/jquery", "@types/lodash", "@types/rc-slider", "@types/react", "@types/react-bootstrap", "@types/react-dom", "@types/react-html-parser", "@types/react-list", "@types/reactstrap", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "autobind-decorator", "bootstrap", "bootstrap-slider", "compare-versions", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "eslint-plugin-react", "husky", "jquery", "jupyterlab-tutorial", "lint-staged", "lodash", "moment", "node", "node-sass", "nodemon", "prettier", "query-string", "rc-slider", "react", "react-compound-slider", "react-dom", "react-html-parser", "react-joyride", "react-list", "react-load-script", "react-toastify", "reactstrap", "remove", "rimraf", "tasksfile", "ts-dedent", "ts-node", "typescript"], "https://github.com/jorvlan/open-visualizations": ["matplotlib", "numpy", "pandas", "plotnine", "scipy", "seaborn"], "https://github.com/lsa-pucrs/acerta-abide": ["docopt", "numpy", "pandas", "scipy", "sklearn", "tensorflow-gpu"], "https://github.com/particle-physics-playground/playground": ["matplotlib", "numpy"], "https://github.com/krischer/hypoDDpy": ["obspy", "progressbar"], "https://github.com/jankrepl/deepdow": ["cvxpylayers", "matplotlib", "mlflow", "numpy", "pandas", "pillow", "seaborn", "tensorboard", "torch", "tqdm"], "https://github.com/weijias-opensource/acc": ["click", "commentjson", "geographiclib", "matplotlib", "netcdf4", "numpy", "obspy", "pandas", "scipy", "setuptools", "shapely", "tqdm"], "https://github.com/sam-nayak/SynthNet": ["keras", "matplotlib", "numpy", "tensorflow"], "https://github.com/laserkelvin/PySpecTools": ["astropy", "astroquery", "colorlover", "jinja2", "joblib", "lmfit", "matplotlib", "monsterurl", "networkx", "numpy", "pandas", "paramiko", "peakutils", "periodictable", "plotly", "ruamel-yaml", "scipy", "sklearn", "tinydb", "torch", "tqdm", "uncertainties"], "https://github.com/nithyanandan/AstroUtils": ["astropy", "astroquery", "beautifulsoup4", "blessings", "healpy", "ipdb", "mpi4py", "numpy", "pytest", "scikit-image", "scipy"], "https://github.com/tactcomplabs/xbgas-llvm": ["VSSDK.CoreUtility", "VSSDK.CoreUtility.10", "VSSDK.Editor", "VSSDK.Editor.10", "VSSDK.IDE", "VSSDK.IDE.10", "VSSDK.IDE.8", "VSSDK.IDE.9", "VSSDK.OLE.Interop", "VSSDK.Shell.10", "VSSDK.Shell.Immutable.10", "VSSDK.Shell.Interop", "VSSDK.Shell.Interop.8", "VSSDK.Shell.Interop.9", "VSSDK.Text", "VSSDK.Text.10", "VSSDK.TextManager.Interop", "VSSDK.TextManager.Interop.8"], "https://github.com/mdolab/pyoptsparse": ["numpy", "scipy", "six", "sqlitedict", "numpydoc"], "https://github.com/tholoien/empiriciSN": ["astroml", "astroml-addons", "corner", "nose", "numpy", "pandas", "scikit-learn", "scipy", "xdgmm"], "https://github.com/FUSED-Wind/fusedwind": ["openmdao-main"], "https://github.com/sam-greenwood/taco_vis": ["matplotlib", "numpy", "sphinx", "sphinx-gallery", "sphinx-rtd-theme"], "https://github.com/lifs-tools/jmzTab-m": ["com.brsanthu:migbase64", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.fasterxml.jackson.dataformat:jackson-dataformat-csv", "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", "com.fasterxml.jackson.datatype:jackson-datatype-joda", "com.github.ferstl:depgraph-maven-plugin", "com.spotify:dockerfile-maven-plugin", "com.sun.activation:javax.activation", "com.sun.xml.bind:jaxb-core", "com.sun.xml.bind:jaxb-impl", "commons-cli:commons-cli", "io.github.swagger2markup:swagger2markup", "io.swagger:swagger-annotations", "javax.annotation:javax.annotation-api", "javax.validation:validation-api", "javax.xml.bind:jaxb-api", "joda-time:joda-time", "junit:junit", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-clean-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-enforcer-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-install-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-project-info-reports-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-report-plugin", "org.asciidoctor:asciidoctor-maven-plugin", "org.codehaus.mojo:buildnumber-maven-plugin", "org.glassfish.jersey.core:jersey-client", "org.glassfish.jersey.media:jersey-media-json-jackson", "org.glassfish.jersey.media:jersey-media-multipart", "org.hamcrest:hamcrest-core", "org.hamcrest:hamcrest-library", "org.jacoco:jacoco-maven-plugin", "org.owasp:dependency-check-maven", "org.projectlombok:lombok", "org.slf4j:jul-to-slf4j", "org.slf4j:slf4j-api", "org.slf4j:slf4j-simple", "org.sonatype.plugins:nexus-staging-maven-plugin", "com.github.wumpz:diffutils", "de.danielbechler:java-object-diff", "io.github.swagger2markup:swagger2markup-maven-plugin", "io.swagger:swagger-codegen-maven-plugin", "ch.qos.logback:logback-classic", "ch.qos.logback:logback-core", "commons-jxpath:commons-jxpath", "org.apache.cxf:cxf-xjc-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.glassfish:javax.el", "org.hibernate.validator:hibernate-validator", "org.hibernate.validator:hibernate-validator-annotation-processor", "org.mockito:mockito-core", "org.springframework:spring-aop", "org.springframework:spring-beans", "org.springframework:spring-context", "org.springframework:spring-context-support", "org.springframework:spring-core", "org.springframework:spring-expression", "org.springframework:spring-test", "org.springframework:spring-web", "uk.ac.ebi.pride.utilities:ols-client"], "https://github.com/JannisHoch/pcrglobwb_utils": ["bump2version", "click", "coverage", "flake8", "geopandas", "matplotlib", "numpy", "packaging", "pandas", "pip", "pytest", "pytest-runner", "rasterio", "rioxarray", "scipy", "six", "sphinx", "spotpy", "tox", "twine", "watchdog", "wheel", "xarray", "xlrd"], "https://github.com/hep-lbdl/CaloGAN": ["keras", "matplotlib", "numpy", "pandas", "pyyaml", "scikit-learn", "scipy", "uproot"], "https://github.com/epiviz/Metaviz": ["jquery"], "https://github.com/bbfrederick/rapidtide": ["matplotlib", "nibabel", "numpy", "pandas", "pyfftw", "pyqtgraph", "scikit-image", "scikit-learn", "scipy", "statsmodels"], "https://github.com/pnlbwh/conversion": ["ipython", "nibabel", "numpy", "plumbum", "pynrrd"], "https://github.com/butcer0/SequenceOne": ["@types/node", "ajv", "ansi-regex", "array-find-index", "asn1", "assert-plus", "asynckit", "aws-sign2", "aws4", "bcrypt-pbkdf", "buffer-from", "camelcase", "camelcase-keys", "caseless", "code-point-at", "combined-stream", "concat-stream", "core-util-is", "currently-unhandled", "dashdash", "debug", "decamelize", "deep-extend", "delayed-stream", "ecc-jsbn", "electron", "electron-download", "env-paths", "error-ex", "extend", "extract-zip", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "fd-slicer", "find-up", "forever-agent", "form-data", "fs-extra", "get-stdin", "getpass", "graceful-fs", "har-schema", "har-validator", "hosted-git-info", "http-signature", "indent-string", "inherits", "ini", "is-arrayish", "is-finite", "is-fullwidth-code-point", "is-typedarray", "is-utf8", "isarray", "isstream", "jsbn", "json-schema", "json-schema-traverse", "json-stringify-safe", "jsonfile", "jsprim", "load-json-file", "loud-rejection", "map-obj", "meow", "mime-db", "mime-types", "minimist", "mkdirp", "ms", "normalize-package-data", "nugget", "number-is-nan", "oauth-sign", "object-assign", "object-keys", "parse-json", "path-exists", "path-parse", "path-type", "pend", "performance-now", "pify", "pinkie", "pinkie-promise", "pretty-bytes", "process-nextick-args", "progress-stream", "psl", "punycode", "qs", "rc", "read-pkg", "read-pkg-up", "readable-stream", "redent", "repeating", "request", "resolve", "safe-buffer", "safer-buffer", "semver", "signal-exit", "single-line-log", "spdx-expression-parse", "spdx-license-ids", "speedometer", "string-width", "string_decoder", "strip-ansi", "strip-bom", "strip-indent", "strip-json-comments", "sumchecker", "throttleit", "through2", "tough-cookie", "trim-newlines", "tunnel-agent", "tweetnacl", "typedarray", "universalify", "uri-js", "util-deprecate", "uuid", "validate-npm-package-license", "verror", "xtend", "yauzl", "es-observable-tests", "eslint", "eslint-plugin-import", "grunt", "grunt-cli", "grunt-contrib-clean", "grunt-contrib-copy", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-karma", "grunt-livescript", "karma", "karma-chrome-launcher", "karma-firefox-launcher", "karma-ie-launcher", "karma-phantomjs-launcher", "karma-qunit", "LiveScript", "phantomjs-prebuilt", "promises-aplus-tests", "qunitjs", "temp", "webpack", "babel-core", "babel-loader", "babel-plugin-react-html-attrs", "babel-plugin-transform-class-properties", "babel-plugin-transform-function-bind", "babel-plugin-transform-node-env-inline", "babel-preset-es2015", "babel-preset-react", "babel-preset-stage-0", "chai", "coveralls", "css-loader", "enzyme", "enzyme-adapter-react-16", "flux", "html-webpack-plugin", "ignore-styles", "istanbul", "jsdom", "mocha", "node", "node-sass", "nyc", "react", "react-base16-styling", "react-dom", "react-hot-loader", "react-select", "react-test-renderer", "react-textarea-autosize", "sass-loader", "sinon", "style-loader", "webpack-bundle-size-analyzer", "webpack-dev-server", "brfs", "browserify", "corslite", "csv2geojson", "jshint", "mapbox.js", "polyline", "st", "tape", "togeojson", "topojson", "uglify-js", "wellknown", "zuul", "eslint-plugin-html", "mocha-phantomjs-core", "mversion", "jake", "leaflet", "magic-string"], "https://github.com/LinkedEarth/Pyleoclim_util": ["lipd", "matplotlib", "nitime", "numba", "numpy", "pandas", "pathos", "pyhht", "pywavelets", "scikit-learn", "scipy", "seaborn", "statsmodels", "tabulate", "tftb", "tqdm", "unidecode", "wget", "cartopy"], "https://github.com/IMAGINE-Consortium/imagine": ["astropy", "cmasher", "corner", "dill", "dynesty", "e13tools", "h5py", "hampyx", "healpy", "hickle", "mpi4py", "numpy", "pymultinest", "scipy", "ultranest", "check-manifest", "nbval", "pytest", "pytest-cov", "pytest-mpl", "readme-renderer", "setuptools", "twine", "wheel", "ipython", "nbsphinx", "nbsphinx-link", "pygments", "sphinx", "sphinx-rtd-theme", "astroquery", "seaborn"], "https://github.com/glm-tools/pyglmnet": ["coverage", "flake8", "numpy", "pandas", "pydocstyle", "pytest", "pytest-cov", "scikit-learn", "scipy", "tqdm"], "https://github.com/aburrell/aacgmv2": ["numpy", "numpydoc", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-napoleon"], "https://github.com/sncosmo/sncosmo": ["astropy", "extinction", "numpy", "scipy"], "https://github.com/InsightSoftwareConsortium/itkwidgets": ["pytest", "vtk", "colorcet", "ipydatawidgets", "ipympl", "ipywidgets", "itk-core", "itk-filtering", "itk-meshtopolydata", "matplotlib", "numpy", "six", "zstandard", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@jupyter-widgets/base", "@jupyterlab/coreutils", "@jupyterlab/nbformat", "@jupyterlab/observables", "@jupyterlab/services", "@jupyterlab/settingregistry", "@jupyterlab/statedb", "@lumino/algorithm", "@lumino/collections", "@lumino/commands", "@lumino/coreutils", "@lumino/disposable", "@lumino/domutils", "@lumino/dragdrop", "@lumino/keyboard", "@lumino/messaging", "@lumino/polling", "@lumino/properties", "@lumino/signaling", "@lumino/virtualdom", "@lumino/widgets", "@thewtex/iconselect.js", "@types/backbone", "@types/color-name", "@types/jquery", "@types/lodash", "@types/sizzle", "@types/underscore", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "accepts", "acorn", "ajv", "ajv-errors", "ajv-keywords", "ansi-colors", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "aproba", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1.js", "assert", "assign-symbols", "async-each", "at-least-node", "atob", "autoprefixer", "axios", "babel-loader", "babel-plugin-dynamic-import-node", "babel-preset-mobx", "backbone", "balanced-match", "base", "base64-js", "big.js", "binary-extensions", "bindings", "bluebird", "blueimp-md5", "bn.js", "body-parser", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "caller-callsite", "caller-path", "callsites", "camelcase", "caniuse-lite", "cardboard-vr-display", "chalk", "chokidar", "chownr", "chrome-trace-event", "ci-info", "cipher-base", "class-utils", "cliui", "collection-visit", "color-convert", "color-name", "commander", "commondir", "component-emitter", "concat-map", "concat-stream", "consola", "console-browserify", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "copy-webpack-plugin", "core-js-compat", "core-util-is", "cosmiconfig", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "css-element-queries", "css-loader", "cssesc", "curry", "cyclist", "debug", "decamelize", "decode-uri-component", "define-properties", "define-property", "depd", "des.js", "destroy", "detect-file", "diffie-hellman", "itk", "itk-vtk-viewer", "jupyter-dataserializers", "mobx", "postcss-loader", "raw-loader", "regenerator-runtime", "rimraf", "shader-loader", "style-loader", "url-loader", "vtk.js", "webpack", "webpack-cli", "webpack-node-externals", "webpackbar", "worker-loader"], "https://github.com/ICB-DCM/pyPESTO": ["cloudpickle", "flake8", "gitpython", "h5py", "matplotlib", "numpy", "pandas", "pytest", "scipy", "seaborn", "tqdm"], "https://github.com/lballabio/QuantLib-SWIG": ["jupyter", "jupytext", "matplotlib", "numpy", "pandas", "quantlib"], "https://github.com/SoftwareDevEngResearch/RigidFoilSimulator": ["matplotlib", "pytest", "scipy", "sympy"], "https://github.com/samuelstjean/dpr": ["matplotlib", "numpy", "scipy", "sphinx", "sphinx-autoapi"], "https://github.com/interrogator/corpkit": ["blessings", "chardet", "joblib", "matplotlib", "nltk", "pandas", "requests", "traitlets", "tabview"], "https://github.com/gwu-libraries/sfm-ui": ["apscheduler", "django", "django-allauth", "django-braces", "django-crispy-forms", "django-datatables-view", "django-filter", "django-simple-history", "djangorestframework", "iso8601", "jsonfield", "mock", "psycopg2-binary", "pytz", "rabbitmq-admin", "requests", "sqlalchemy", "sqlparse"], "https://github.com/tyson-swetnam/porder": ["beautifulsoup4", "clipboard", "datetimerange", "geopandas", "planet", "prettytable", "progressbar2", "pyproj", "pysmartdl", "pyyaml", "requests", "retrying", "shapely", "visvalingamwyatt", "fiona"], "https://github.com/sabgaby/sabgaby": ["algoliasearch-jekyll", "github-pages", "html-proofer", "jemoji", "rake"], "https://github.com/panisson/pymobility": ["matplotlib", "numpy"], "https://github.com/ryanpeek/mapping-in-R-workshop": ["chai", "eslint", "eslint-plugin-html", "mocha", "mocha-phantomjs-core", "mversion", "phantomjs-prebuilt", "uglify-js"], "https://github.com/lewisacidic/scikit-chem": ["fuel", "h5py", "ipywidgets", "matplotlib", "numpy", "pandas", "progressbar2", "rdkit", "scikit-learn", "scipy", "coverage", "pytest", "pytest-cov"], "https://github.com/GerardBalaoro/jQuery-Tourer": ["@babel/core", "@babel/preset-env", "bourbon", "gulp", "gulp-babel", "gulp-csso", "gulp-minify", "gulp-rename", "gulp-sass", "jquery", "abbrev", "align-text", "ansi-regex", "ansi-styles", "argparse", "array-find-index", "async", "babel-code-frame", "babel-core", "babel-generator", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-replace-supers", "babel-helpers", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-preset-es2015", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "body", "brace-expansion", "browserify-zlib", "buffer-from", "builtin-modules", "bytes", "camelcase", "camelcase-keys", "center-align", "chalk", "cliui", "coffeescript", "colors", "concat-map", "concat-stream", "continuable-cache", "convert-source-map", "core-js", "core-util-is", "currently-unhandled", "dateformat", "debug", "decamelize", "define-properties", "detect-indent", "error", "error-ex", "escape-string-regexp", "esprima", "esutils", "eventemitter2", "exit", "faye-websocket", "figures", "find-up", "findup-sync", "foreach", "fs.realpath", "function-bind", "gaze", "get-stdin", "getobject", "glob", "globals", "globule", "graceful-fs", "grunt", "grunt-babel", "grunt-bump", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-known-options", "grunt-legacy-log", "grunt-legacy-log-utils", "grunt-legacy-util", "grunt-shell", "grunt-wrap", "gzip-size", "has-ansi", "has-symbols", "home-or-tmp", "hooker", "hosted-git-info", "http-parser-js", "iconv-lite", "indent-string", "inflight", "inherits", "invariant", "is-arrayish", "is-buffer", "is-builtin-module", "is-finite", "is-utf8", "isarray", "isexe", "js-tokens", "js-yaml", "jsesc", "json5", "kind-of", "lazy-cache", "livereload-js", "load-json-file", "lodash", "longest", "loose-envify", "loud-rejection", "map-obj", "maxmin", "meow", "minimatch", "minimist", "mkdirp", "ms", "nopt", "normalize-package-data", "npm-run-path", "number-is-nan", "object-assign", "object-keys", "object.assign", "once", "os-homedir", "os-tmpdir", "pako", "parse-json", "path-exists", "path-is-absolute", "path-key", "path-type", "pify", "pinkie", "pinkie-promise", "pretty-bytes", "private", "process-nextick-args", "qs", "raw-body", "read-pkg", "read-pkg-up", "readable-stream", "redent", "regenerate", "regenerator-runtime", "regenerator-transform", "regexpu-core", "regjsgen", "regjsparser", "repeat-string", "repeating", "resolve", "right-align", "rimraf", "safe-buffer", "safe-json-parse", "safer-buffer", "semver", "signal-exit", "slash", "source-map", "source-map-support", "spdx-correct", "spdx-exceptions", "spdx-expression-parse", "spdx-license-ids", "sprintf-js", "string-template", "string_decoder", "strip-ansi", "strip-bom", "strip-indent", "supports-color", "tiny-lr", "to-fast-properties", "trim-newlines", "trim-right", "typedarray", "uglify-js", "uglify-to-browserify", "underscore.string", "uri-path", "util-deprecate", "validate-npm-package-license", "websocket-driver", "websocket-extensions", "which", "window-size", "wordwrap", "wrappy", "xtend", "yargs", "components/jquery"], "https://github.com/KnowledgeCaptureAndDiscovery/DISK": ["labkey", "requests", "com.github.gwtd3:gwt-d3-api", "com.google.gwt.inject:gin", "com.google.gwt:gwt", "com.google.gwt:gwt-codeserver", "com.google.gwt:gwt-user", "com.googlecode.gwtquery:gwtquery", "com.gwtplatform:gwtp-mvp-client", "com.gwtplatform:gwtp-mvp-shared", "com.vaadin.polymer:vaadin-gwt-polymer-elements", "edu.stanford.protege:codemirror-gwt", "org.apache.maven.plugins:maven-compiler-plugin", "org.codehaus.mojo:gwt-maven-plugin", "org.disk-project:disk-project-shared", "org.fusesource.restygwt:restygwt", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider", "com.google.api-client:google-api-client", "com.google.api-client:google-api-client-android", "com.google.api-client:google-api-client-appengine", "com.google.api-client:google-api-client-gson", "com.google.api-client:google-api-client-jackson2", "com.google.api-client:google-api-client-java6", "com.google.api-client:google-api-client-servlet", "com.google.apis:google-api-services-gmail", "com.google.code.findbugs:jsr305", "com.google.code.gson:gson", "com.google.guava:guava", "com.google.http-client:google-http-client", "com.google.http-client:google-http-client-android", "com.google.http-client:google-http-client-appengine", "com.google.http-client:google-http-client-gson", "com.google.http-client:google-http-client-jackson2", "com.google.http-client:google-http-client-jdo", "com.sun.mail:javax.mail", "commons-codec:commons-codec", "commons-configuration:commons-configuration", "commons-logging:commons-logging", "edu.isi.kcap:ontapi", "javax.jdo:jdo2-api", "javax.servlet:javax.servlet-api", "javax.transaction:transaction-api", "javax.ws.rs:javax.ws.rs-api", "net.sourceforge.htmlunit:htmlunit", "net.sourceforge.htmlunit:htmlunit-core-js", "net.sourceforge.htmlunit:htmlunit-cssparser", "net.sourceforge.htmlunit:neko-htmlunit", "org.apache.commons:commons-lang3", "org.apache.derby:derby", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpcore", "org.apache.httpcomponents:httpmime", "org.codehaus.jackson:jackson-mapper-asl", "org.eclipse.jetty.websocket:websocket-api", "org.eclipse.jetty.websocket:websocket-client", "org.eclipse.jetty.websocket:websocket-common", "org.eclipse.jetty:jetty-util", "org.glassfish.jersey.containers:jersey-container-servlet-core", "org.glassfish.jersey.media:jersey-media-json-jackson", "org.jsoup:jsoup", "org.mindrot:jbcrypt", "org.mortbay.jetty:jetty", "org.mortbay.jetty:jetty-maven-plugin", "org.mortbay.jetty:jetty-util", "xalan:xalan", "xerces:xercesImpl", "xml-apis:xml-apis", "org.apache.maven.plugins:maven-source-plugin"], "https://github.com/RTIInternational/gobbli": ["aiohttp", "black", "epc", "flake8", "importmagic", "isort", "mypy", "pytest", "ray", "setuptools", "twine", "wheel", "altair", "click", "docker", "humanize", "numpy", "pandas", "scikit-learn", "autodoc", "mock", "sphinx", "sphinx-autobuild", "sphinx-autodoc-typehints", "sphinx-paramlinks", "matplotlib", "pyyaml", "selenium", "tabulate", "umap-learn", "tensorflow-hub", "tensorflow", "boto3", "colorlog", "torch", "tqdm", "cupy-cuda101", "spacy", "spacy-transformers", "thinc-gpu-ops", "transformers"], "https://github.com/fabriziocosta/GraphLearn": ["eden-kernel", "networkx", "scikit-learn", "scipy", "structout", "toolz"], "https://github.com/solvebio/veppy": ["flake8", "nose", "pyvcf", "intervaltree", "numpy", "pyfasta", "six"], "https://github.com/diku-dk/futhark": ["pyyaml", "sphinx"], "https://github.com/kks32-slides/2016-berkeley": ["express", "grunt", "grunt-autoprefixer", "grunt-cli", "grunt-contrib-connect", "grunt-contrib-cssmin", "grunt-contrib-jshint", "grunt-contrib-qunit", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-sass", "grunt-zip", "mustache", "node-sass", "socket.io"], "https://github.com/SeqWare/oozie-sge": ["commons-logging:commons-logging", "junit:junit", "org.apache.commons:commons-exec", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.oozie:oozie-client", "org.apache.oozie:oozie-core", "org.jdom:jdom"], "https://github.com/kristianfoerster/melodist": ["numpy", "pandas", "scipy"], "https://github.com/midas-isg/epicasemap": ["simpleheat", "uglify-js"], "https://github.com/BristolTopGroup/NTupleProduction": ["python-cjson", "uncertainties"], "https://github.com/kuchaale/X-regression": ["eofs", "matplotlib", "netcdf4", "numpy", "pandas", "statsmodels", "xarray", "cloudpickle", "dask", "patsy", "pyyaml", "scipy"], "https://github.com/dockstore/dockstore-ui2": ["@angular-devkit/architect", "@angular-devkit/build-angular", "@angular-devkit/build-optimizer", "@angular-devkit/core", "@angular-devkit/schematics", "@angular/animations", "@angular/cdk", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/flex-layout", "@angular/forms", "@angular/http", "@angular/language-service", "@angular/material", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/platform-server", "@angular/router", "@cypress/listr-verbose-renderer", "@cypress/xvfb", "@ngtools/webpack", "@ngx-lite/json-ld", "@phenomnomnominal/tsquery", "@schematics/angular", "@schematics/update", "@types/blob-util", "@types/bluebird", "@types/chai", "@types/chai-jquery", "@types/elastic.js", "@types/elasticsearch", "@types/jasmine", "@types/jasminewd2", "@types/jquery", "@types/lodash", "@types/minimatch", "@types/mocha", "@types/node", "@types/q", "@types/selenium-webdriver", "@types/sinon", "@types/sinon-chai", "abbrev", "accepts", "ace-builds", "acorn", "acorn-dynamic-import", "addressparser", "adm-zip", "after", "agent-base", "ajv", "ajv-keywords", "align-text", "amdefine", "amqplib", "angular-tag-cloud-module", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "app-root-path", "append-transform", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-find-index", "array-flatten", "array-includes", "array-slice", "array-union", "array-uniq", "array-unique", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-types", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axios", "babel-code-frame", "babel-generator", "babel-messages", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "backo2", "base", "base64-arraybuffer", "base64-js", "base64id", "batch", "bcrypt-pbkdf", "better-assert", "big.js", "binary-extensions", "bitsyntax", "bl", "blob", "block-stream", "blocking-proxy", "bluebird", "bn.js", "body-parser", "bodybuilder", "bonjour", "boolbase", "boom", "bootstrap", "bootstrap-social", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-crc32", "buffer-from", "buffer-indexof", "buffer-more-ints", "buffer-xor", "buildmail", "builtin-modules", "builtin-status-codes", "builtins", "bytes", "cacache", "cache-base", "cache-loader", "callsite", "camel-case", "camelcase", "camelcase-keys", "caniuse-lite", "caseless", "center-align", "chalk", "check-more-types", "chokidar", "chownr", "chrome-trace-event", "ci-info", "cipher-base", "circular-dependency-plugin", "circular-json", "class-utils", "clean-css", "cli-cursor", "cli-spinners", "cli-truncate", "clipboard", "cliui", "clone", "clone-deep", "co", "code-point-at", "codelyzer", "collection-visit", "color-convert", "color-name", "colors", "combine-lists", "combined-stream", "commander", "commondir", "compare-versions", "component-bind", "component-inherit", "compressible", "compression", "concat-map", "concat-stream", "connect", "connect-history-api-fallback", "console-browserify", "console-control-strings", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "copy-webpack-plugin", "core-js", "core-util-is", "cosmiconfig", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "cryptiles", "crypto-browserify", "css-parse", "css-select", "css-selector-tokenizer", "css-what", "cssauron", "cssesc", "cuint", "currently-unhandled", "custom-event", "cyclist", "cypress", "cytoscape", "cytoscape-dagre", "cytoscape-qtip", "d", "dagre", "dashdash", "data-uri-to-buffer", "date-fns", "date-format", "date-now", "debug", "decamelize", "decode-uri-component", "deep-equal", "deep-is", "default-require-extensions", "define-properties", "define-property", "degenerator", "del", "@cypress/webpack-preprocessor", "@datorama/akita", "@datorama/akita-ng-forms-manager", "@datorama/akita-ngdevtools", "@fortawesome/angular-fontawesome", "@fortawesome/fontawesome-svg-core", "@fortawesome/free-brands-svg-icons", "@fortawesome/free-solid-svg-icons", "@material-extended/mde", "@types/cytoscape", "cytoscape-popper", "elasticsearch-browser", "font-awesome", "husky", "jasmine-core", "jasmine-spec-reporter", "jquery", "karma", "karma-chrome-launcher", "karma-coverage-istanbul-reporter", "karma-jasmine", "karma-jasmine-html-reporter", "karma-spec-reporter", "license-checker", "lint-staged", "ng2-ui-auth", "ngx-clipboard", "ngx-markdown", "ngx-sharebuttons", "prettier", "rxjs", "rxjs-tslint", "rxjs-tslint-rules", "ts-loader", "ts-md5", "ts-node", "tslib", "tslint", "tslint-config-prettier", "typescript", "uuid", "zone.js"], "https://github.com/abhi1693/yii2-sms": ["yiisoft/yii2", "yiisoft/yii2-swiftmailer"], "https://github.com/NLeSC/eEcology-Classification": ["com.fasterxml.jackson.datatype:jackson-datatype-joda", "com.github.spullara.mustache.java:compiler", "com.google.inject:guice", "de.congrace:exp4j", "joda-time:joda-time", "junit:junit", "mysql:mysql-connector-java", "net.sf.supercsv:super-csv", "net.sourceforge.jmatio:jmatio", "net.sourceforge.jtransforms:jtransforms", "nz.ac.waikato.cms.weka:weka-stable", "org.apache.commons:commons-exec", "org.apache.commons:commons-io", "org.apache.commons:commons-lang3", "org.apache.commons:commons-math3", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.easymock:easymock", "org.easymock:easymockclassextension", "org.eclipse.m2e:lifecycle-mapping", "org.jacoco:jacoco-maven-plugin", "org.jblas:jblas", "org.postgresql:postgresql", "tw.hyl.common:jackson"], "https://github.com/jdidion/atropos": ["pytest"], "https://github.com/KBRI-Neuroinformatics/WGAN-for-RNASeq-analysis": ["jupyter", "matplotlib", "pandas", "scipy", "seaborn", "sklearn", "tensorflow"], "https://github.com/PinkShnack/TEMUL": ["atomap", "colorcet", "glob2", "hyperspy", "matplotlib", "matplotlib-scalebar", "numpy", "numpydoc", "pandas", "periodictable", "pycifrw", "scikit-image", "scipy", "sphinx-rtd-theme", "tifffile"], "https://github.com/rOpenGov/eurostat": ["chai", "eslint", "eslint-plugin-html", "mocha", "mocha-phantomjs", "mversion", "phantomjs", "uglify-js"], "https://github.com/rock-learning/pytransform3d": ["beautifulsoup4", "lxml", "matplotlib", "numpy", "pydot", "scipy", "trimesh"], "https://github.com/matthiaskoenig/sbmlutils": ["ipykernel", "jupyterlab", "nbsphinx", "pypandoc", "sphinx", "sphinx-rtd-theme"], "https://github.com/PennLINC/aslprep": ["nbsphinx", "nipype", "sphinx-argparse"], "https://github.com/tamacgregor/structure_factor_tools": ["fpd", "h5py", "hyperspy", "matplotlib", "numpy", "pandas", "scikit-image", "scipy", "tqdm"], "https://github.com/kgullikson88/gullikson-scripts": ["astropy", "astroquery", "bokeh", "configobj", "corner", "cython", "emcee", "george", "h5py", "isochrones", "lmfit", "matplotlib", "pandas", "pymultinest", "pysynphot", "scikit-learn", "scikit-monaco", "scipy", "seaborn", "statsmodels"], "https://github.com/jacirrone/OutPredict": ["cython", "numpy", "pillow", "pytest", "scipy", "wheel", "wheelhouse-uploader"], "https://github.com/shiyy123/FCDetector": ["com.github.javaparser:javaparser-core-serialization", "com.github.javaparser:javaparser-symbol-solver-core", "com.opencsv:opencsv", "commons-cli:commons-cli", "commons-io:commons-io", "log4j:log4j", "org.apache.maven.plugins:maven-compiler-plugin", "org.json:json", "gensim", "joblib", "jsonschema", "logging", "networkx", "numpy", "pandas", "texttable", "tqdm"], "https://github.com/fmi-faim/fmi-trackmate-addons": ["com.google.guava:guava", "junit:junit", "mpicbg:mpicbg", "net.imagej:imagej-common", "net.imglib2:imglib2", "net.imglib2:imglib2-algorithm", "org.jdom:jdom2", "org.jgrapht:jgrapht-core", "org.scijava:scijava-common", "sc.fiji:Descriptor_based_registration", "sc.fiji:Fiji_Plugins", "sc.fiji:legacy-imglib1", "sc.fiji:SPIM_Registration", "sc.fiji:TrackMate_"], "https://github.com/biocaddie/WG3-MetadataSpecifications": ["jsonschema", "pyld"], "https://github.com/habi/Zebra-Fish-Gills": ["imageio", "matplotlib", "matplotlib-scalebar", "numpy", "pandas", "scikit-image", "scipy", "seaborn", "tqdm", "xlrd"], "https://github.com/ga4gh/tool-registry-validator": ["avro", "cwltool", "flask", "requests", "ruamel-yaml", "schema-salad", "setuptools", "dredd-hooks", "flask-caching", "healthcheck"], "https://github.com/sagemath/sage": ["pyx", "tox", "pybtex", "pytest", "nibabel", "nodeenv", "pyflakes", "biopython", "pyopenssl", "service-identity", "jupyterlab", "sqlalchemy", "cysignals", "cython", "gmpy2", "ipython", "jinja2", "numpy", "pexpect", "pkgconfig", "pplpy", "psutil", "six", "beautifulsoup4"], "https://github.com/4DNucleome/PartSeg": ["sphinx", "sphinx-autodoc-annotation", "sphinx-qt-documentation", "cibuildwheel", "black", "cython", "numpy", "pre-commit", "tox", "alabaster", "altgraph", "appdirs", "babel", "backcall", "cachey", "certifi", "chardet", "czifile", "dask", "decorator", "defusedxml", "docutils", "et-xmlfile", "freetype-py", "h5py", "heapdict", "idna", "imagecodecs", "imageio", "imagesize", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "jdcal", "jedi", "jinja2", "jupyter-client", "jupyter-core", "lxml", "markupsafe", "mpmath", "napari", "napari-plugin-engine", "napari-svg", "numpydoc", "oiffile", "openpyxl", "packaging", "pandas", "parso", "partsegdata", "pexpect", "pickleshare", "pillow", "prompt-toolkit", "psutil", "ptyprocess", "pygments", "pyinstaller", "pyinstaller-hooks-contrib", "pyopengl", "pyopengl-accelerate", "pyparsing", "pyqt5", "pyqt5-sip", "python-dateutil", "pytz", "pyyaml", "pyzmq", "qtconsole", "qtpy", "requests", "scipy", "sentry-sdk", "simpleitk", "six", "snowballstemmer", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "sympy", "tifffile", "toolz", "tornado", "traitlets", "typing-extensions", "urllib3", "vispy", "wcwidth", "wrapt", "xlrd", "xlsxwriter", "zipp", "pytest", "pytest-cov", "pytest-qt"], "https://github.com/priestoferis/animal-behaviour-analysis-2020": ["attrs", "backcall", "backports-functools-lru-cache", "bleach", "certifi", "chardet", "cycler", "cython", "decorator", "defusedxml", "descartes", "entrypoints", "ezodf", "get", "idna", "importlib-metadata", "ipykernel", "ipympl", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "joblib", "jsonschema", "jupyter-client", "jupyter-core", "kiwisolver", "lxml", "markupsafe", "matplotlib", "mistune", "mizani", "more-itertools", "nbconvert", "nbformat", "networkx", "notebook", "numpy", "opencv-python", "palettable", "pandas", "pandas-ods-reader", "pandocfilters", "parso", "patsy", "pexpect", "pickleshare", "plotly", "plotnine", "post", "prometheus-client", "prompt-toolkit", "ptyprocess", "public", "pydot", "pygments", "pyparsing", "pyrsistent", "python-dateutil", "pytz", "pyzmq", "query-string", "request", "requests", "retrying", "scikit-learn", "scipy", "seaborn", "send2trash", "six", "statsmodels", "terminado", "testpath", "tornado", "traitlets", "urllib3", "wcwidth", "webencodings", "widgetsnbextension", "xlrd", "zipp"], "https://github.com/mayconbordin/streaminer": ["colt:colt", "com.google.guava:guava", "com.googlecode.json-simple:json-simple", "commons-codec:commons-codec", "it.unimi.dsi:fastutil", "junit:junit", "net.sf.supercsv:super-csv", "org.apache.commons:commons-lang3", "org.apache.commons:commons-math3", "org.apache.mahout:mahout-core", "org.apache.mahout:mahout-math", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.jblas:jblas", "org.slf4j:slf4j-api", "org.slf4j:slf4j-simple"], "https://github.com/ctsit/redcap_external_module_development_guide": ["github-pages", "html-proofer", "jekyll", "jekyll-seo-tag", "rubocop", "w3c_validators"], "https://github.com/joshje/drawpath": ["grunt", "grunt-contrib-requirejs"], "https://github.com/BeckResearchLab/USP-inhibition": ["appdirs", "backports-abc", "backports-shutil-get-terminal-size", "bleach", "boto", "certifi", "click", "colorama", "configparser", "cycler", "decorator", "entrypoints", "enum34", "functools32", "gdbn", "gnumpy", "html5lib", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "isodate", "jinja2", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "markupsafe", "matplotlib", "mistune", "nbconvert", "nbformat", "networkx", "nolearn", "notebook", "numpy", "onto2nx", "packaging", "pandas", "pandocfilters", "pathlib2", "pexpect", "pickleshare", "prompt-toolkit", "ptyprocess", "py2neo", "pybe", "pybel", "pyfiglet", "pygments", "pyparsing", "python-dateutil", "pytz", "pyzmq", "qtconsole", "rdflib", "rdflib-jsonld", "requests", "requests-file", "scandir", "scikit-learn", "scipy", "simplegeneric", "singledispatch", "six", "sklearn", "sparqlwrapper", "sqlalchemy", "subprocess32", "tabulate", "terminado", "testpath", "theano", "tornado", "traitlets", "wcwidth", "webencodings", "widgetsnbextension", "pychem"], "https://github.com/bio-ontology-research-group/DDIEM": ["@angular-devkit/architect", "@angular-devkit/build-angular", "@angular-devkit/build-optimizer", "@angular-devkit/build-webpack", "@angular-devkit/core", "@angular-devkit/schematics", "@angular/animations", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/http", "@angular/language-service", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/platform-server", "@angular/router", "@babel/code-frame", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-split-export-declaration", "@babel/highlight", "@babel/parser", "@babel/template", "@babel/traverse", "@babel/types", "@compone/class", "@compone/define", "@compone/event", "@ng-bootstrap/ng-bootstrap", "@ngtools/webpack", "@nguniversal/express-engine", "@nguniversal/module-map-ngfactory-loader", "@rdfjs/data-model", "@schematics/angular", "@schematics/update", "@types/jasmine", "@types/jasminewd2", "@types/node", "@types/q", "@types/rdf-js", "@types/selenium-webdriver", "@types/source-list-map", "@types/webpack-sources", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "@yarnpkg/lockfile", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "acorn-jsx", "acorn-node", "acorn-object-spread", "acorn-walk", "acorn5-object-spread", "adm-zip", "after", "agent-base", "agentkeepalive", "ajv", "ajv-errors", "ajv-keywords", "amdefine", "ansi-colors", "ansi-escapes", "ansi-gray", "ansi-html", "ansi-regex", "ansi-styles", "ansi-wrap", "anymatch", "app-root-path", "append-transform", "aproba", "archiver", "archiver-utils", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-filter", "array-find-index", "array-flatten", "array-map", "array-reduce", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assertion-error", "assign-symbols", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "babel-code-frame", "babel-generator", "babel-messages", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64-js", "base64id", "batch", "bcrypt-pbkdf", "better-assert", "big.js", "binary", "binary-extensions", "bl", "blob", "block-stream", "blocking-proxy", "bluebird", "bn.js", "body-parser", "bonjour", "bootstrap", "brace-expansion", "braces", "brorand", "browser-icons", "browser-pack", "browser-resolve", "browser-stdout", "browserify", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "browserstack", "buble", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-crc32", "buffer-fill", "buffer-from", "buffer-indexof", "buffer-xor", "buffers", "builtin-modules", "builtin-status-codes", "builtins", "bytes", "cacache", "cache-base", "cached-path-relative", "caller-callsite", "caller-path", "callsite", "callsites", "camelcase", "camelcase-keys", "caniuse-lite", "canonical-path", "caseless", "chai", "chainsaw", "chalk", "chardet", "check-error", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "circular-dependency-plugin", "class-utils", "clean-css", "cli-cursor", "cli-width", "cliui", "clone", "clone-deep", "co", "code-point-at", "codelyzer", "collection-visit", "color-convert", "color-name", "color-support", "colors", "combine-source-map", "combined-stream", "commander", "commondir", "compare-versions", "component-bind", "component-emitter", "component-inherit", "compress-commons", "compressible", "compression", "concat-map", "concat-stream", "connect", "connect-history-api-fallback", "console-browserify", "console-control-strings", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-parser", "cookie-signature", "copy-concurrently", "core-js", "express", "fetch-sparql-endpoint", "font-awesome", "http-proxy", "jasmine-core", "jasmine-spec-reporter", "jquery", "jsonld-streaming-serializer", "karma", "karma-chrome-launcher", "karma-coverage-istanbul-reporter", "karma-jasmine", "karma-jasmine-html-reporter", "ngx-cookie-service", "popper", "protractor", "rdfxml-streaming-parser", "rxjs", "ts-loader", "ts-node", "tslib", "tslint", "typescript", "underscore", "webpack-cli", "zone.js", "antlr4-python3-runtime", "pyshex", "rdflib"], "https://github.com/fvalka/atc-reinforcement-learning": ["absl-py", "alembic", "asn1crypto", "astor", "atari-py", "atomicwrites", "attrs", "backcall", "bleach", "cachetools", "certifi", "cffi", "chardet", "click", "cliff", "cloudpickle", "cmd2", "codecov", "colorama", "colorlog", "coverage", "cryptography", "cycler", "cython", "decorator", "defusedxml", "dill", "entrypoints", "future", "gast", "glfw", "google-auth", "google-auth-oauthlib", "google-pasta", "grpcio", "gym", "h5py", "idna", "imageio", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "keras-applications", "keras-preprocessing", "kiwisolver", "llvmlite", "lockfile", "mako", "markdown", "markupsafe", "matplotlib", "mistune", "more-itertools", "nbconvert", "nbformat", "notebook", "numba", "numpy", "oauthlib", "opencv-python", "opt-einsum", "optuna", "packaging", "pandas", "pandocfilters", "parso", "pbr", "pickleshare", "pillow", "pluggy", "prettytable", "progressbar2", "prometheus-client", "prompt-toolkit", "protobuf", "py", "pyasn1", "pyasn1-modules", "pycosat", "pycparser", "pyglet", "pygments", "pyopenssl", "pyparsing", "pyperclip", "pyreadline", "pyrsistent", "pysocks", "pytest", "pytest-cov", "python-dateutil", "python-editor", "python-utils", "pytz", "pyyaml", "pyzmq", "qtconsole", "requests", "requests-oauthlib", "rsa", "ruamel-yaml", "scipy", "send2trash", "shapely", "six", "sqlalchemy", "stable-baselines", "stevedore", "tensorboard", "tensorflow", "tensorflow-estimator", "tensorflow-gpu", "termcolor", "terminado", "testpath", "tornado", "tqdm", "traitlets", "typing", "urllib3", "wcwidth", "webencodings", "werkzeug", "wrapt", "zipp", "zmq"], "https://github.com/kb-press/ndsplines": ["matplotlib", "pandas", "pytest", "sphinx", "sphinx-gallery", "wheel", "cython", "numpy", "scipy"], "https://github.com/agnsal/BlocksBot": ["opencv-python", "pyaudio", "pyyaml", "redis", "requests", "scipy"], "https://github.com/benmaier/COVID19CaseNumberModel": ["bfmplot", "lmfit", "matplotlib", "numpy", "scipy", "simplejson", "tabulate", "tqdm"], "https://github.com/uweschmitt/emzed2": ["colorama", "dill", "emzed-optimizations", "guidata", "guiqwt", "html2text", "ipython", "openpyxl", "pandas", "pycryptodome", "pyopenms", "pytest", "requests", "scikit-learn", "sphinx", "xlrd", "xlwt"], "https://github.com/prajankya/Lidar-Robot": ["express"], "https://github.com/AAROC/DevOps": ["docker-py"], "https://github.com/ybayle/Scyland3D": ["numpy"], "https://github.com/jswhit/pygrib": ["numpy"], "https://github.com/PTC-CMC/McCabeGroup": ["networkx", "numpy", "six"], "https://github.com/bdw/GridKit": ["argparse", "cycler", "matplotlib", "numpy", "pyparsing", "python-dateutil", "pytz", "recordclass", "scipy", "six", "wsgiref"], "https://github.com/feelpp/feelpp": ["liquid"], "https://github.com/seclab-ucr/UBITect": ["Microsoft.Z3", "VSSDK.CoreUtility", "VSSDK.CoreUtility.10", "VSSDK.Editor", "VSSDK.Editor.10", "VSSDK.IDE", "VSSDK.IDE.10", "VSSDK.IDE.8", "VSSDK.IDE.9", "VSSDK.OLE.Interop", "VSSDK.Shell.10", "VSSDK.Shell.Immutable.10", "VSSDK.Shell.Interop", "VSSDK.Shell.Interop.8", "VSSDK.Shell.Interop.9", "VSSDK.Text", "VSSDK.Text.10", "VSSDK.TextManager.Interop", "VSSDK.TextManager.Interop.8"], "https://github.com/SuLab/scheduled-bots": ["asn1crypto", "bcrypt", "bs4", "cachetools", "cerberus", "certifi", "cffi", "chardet", "click", "cryptography", "datetime", "idna", "jinja2", "lxml", "markupsafe", "multi-key-dict", "mwclient", "mwparserfromhell", "mygene", "myvariant", "networkx", "numpy", "oauthlib", "pandas", "paramiko", "pbr", "pyasn1", "pycparser", "pymongo", "pymysql", "pynacl", "python-dateutil", "python-jenkins", "pytz", "rdflib", "requests", "requests-oauthlib", "six", "sparqlwrapper", "sshtunnel", "tqdm", "urllib3", "wikicurie", "wikidataintegrator", "xlwt", "termcolor", "antlr4-python3-runtime", "beautifulsoup4", "cfgraph", "isodate", "jsonasobj", "mwoauth", "pyjsg", "pyjwt", "pyparsing", "pyshex", "pyshexc", "rdflib-jsonld", "shexjsg", "simplejson", "soupsieve", "sparql-slurper"], "https://github.com/mjlaine/eppes": ["numpy", "scipy"], "https://github.com/alpha-xone/xbbg": ["numpy", "pandas", "pyarrow", "pytest", "pytz", "ruamel-yaml", "blpapi", "coverage", "ipykernel", "pdblp", "pytest-cov", "xone"], "https://github.com/IA-Cardiologia-husa/VHD_NLP": ["bokeh", "gensim", "ipywidgets", "jupyter", "matplotlib", "numpy", "pandas", "scikit-learn", "spacy", "voila"], "https://github.com/ahamilton144/hamilton-2020-managing-financial-risk-tradeoffs-for-hydropower": ["affine", "astroid", "attrs", "autopep8", "backcall", "bleach", "certifi", "chardet", "click", "click-plugins", "cligj", "contextily", "cycler", "datetime", "decorator", "defusedxml", "descartes", "earthpy", "entrypoints", "factorial", "fiona", "geographiclib", "geojson", "geopandas", "geopy", "hmmlearn", "idna", "imageio", "importlib", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "isort", "jedi", "jinja2", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "kiwisolver", "lazy-object-proxy", "markupsafe", "matplotlib", "mccabe", "mercantile", "mistune", "munch", "nbconvert", "nbformat", "networkx", "notebook", "numpy", "packaging", "pandas", "pandocfilters", "parso", "patsy", "pexpect", "pickleshare", "pillow", "pkg-resources", "prometheus-client", "prompt-toolkit", "ptyprocess", "pycodestyle", "pycwt", "pygeos", "pygments", "pylint", "pyparsing", "pyproj", "pyrsistent", "pysheds", "python-dateutil", "pytz", "pywavelets", "pyzmq", "qtconsole", "qtpy", "rasterio", "requests", "scaleogram", "scikit-image", "scikit-learn", "scipy", "seaborn", "send2trash", "shapely", "six", "sklearn", "snuggs", "statsmodels", "terminado", "testpath", "threadpoolctl", "tifffile", "toml", "tornado", "tqdm", "traitlets", "typed-ast", "urllib3", "wavelets", "wcwidth", "webencodings", "widgetsnbextension", "wrapt", "xlrd", "zipp", "zope-interface"], "https://github.com/MonashBioinformaticsPlatform/laxy": ["black", "django-extensions", "django-stubs", "docker-compose", "pylint", "pylint-django", "pytest", "pytest-django", "attrdict", "backoff", "basehash", "boto3", "celery", "coreapi", "cryptography", "django", "django-allauth", "django-braces", "django-cache-memoize", "django-celery-beat", "django-celery-results", "django-cors-headers", "django-environ", "django-filter", "django-guardian", "django-object-actions", "django-rest-framework-social-oauth2", "django-reversion", "django-storages", "djangorestframework", "djangorestframework-jwt", "enasearch", "fabric3", "flower", "fs", "gevent", "greenlet", "gunicorn", "humanize", "jinja2", "jsonpatch", "lxml", "markdown", "pandas", "psycopg2-binary", "ptvsd", "pydash", "pyjwt", "python-magic", "pyyaml", "redis", "requests", "rest-social-auth", "robobrowser", "rows", "sentry-sdk", "social-auth-app-django", "social-auth-core", "text-unidecode", "toolz", "typing-extensions", "urllib3", "xxhash", "alabaster", "amqp", "appdirs", "asn1crypto", "attrs", "babel", "bcrypt", "beautifulsoup4", "billiard", "biopython", "botocore", "certifi", "cffi", "chardet", "click", "codecov", "coreschema", "coverage", "defusedxml", "dicttoxml", "django-oauth-toolkit", "django-rest-swagger", "django-timezone-field", "docutils", "ephem", "flake8", "idna", "imagesize", "itypes", "jmespath", "jsonpointer", "kombu", "markupsafe", "mccabe", "numpy", "oauthlib", "openapi-codec", "paramiko", "psycopg2", "py", "pyasn1", "pycodestyle", "pycparser", "pyflakes", "pygments", "pynacl", "python-crontab", "python-dateutil", "python3-openid", "pytz", "requests-oauthlib", "s3transfer", "simplejson", "six", "snowballstemmer", "soupsieve", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-websupport", "tornado", "typing", "unicodecsv", "uritemplate", "vine", "werkzeug", "xmltodict", "@babel/code-frame", "@babel/highlight", "@types/axios", "@types/clipboard", "@types/events", "@types/glob", "@types/js-cookie", "@types/lodash", "@types/lodash-decorators", "@types/lodash-es", "@types/minimatch", "@types/node", "@types/numeral", "@types/object-hash", "@types/pluralize", "@types/tldjs", "@types/vue-markdown", "@vue/component-compiler-utils", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "ajv", "ajv-errors", "ajv-keywords", "amdefine", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-find-index", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "async", "async-each", "async-foreach", "asynckit", "atob", "aws-sign2", "aws4", "axios", "babel-code-frame", "babel-core", "babel-generator", "babel-helpers", "babel-messages", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "block-stream", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "bytes", "cacache", "cache-base", "camel-case", "camelcase", "camelcase-keys", "caseless", "chalk", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "clean-css", "clipboard", "cliui", "clone", "clone-deep", "co", "code-point-at", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "console-browserify", "console-control-strings", "consolidate", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "copy-webpack-plugin", "core-js", "core-util-is", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "css-loader", "css-select", "css-what", "cssesc", "currently-unhandled", "cyclist", "dashdash", "date-now", "de-indent", "debug", "decamelize", "decode-uri-component", "deep-equal", "default-gateway", "define-properties", "define-property", "del", "delayed-stream", "delegate", "delegates", "depd", "des.js", "destroy", "detect-file", "detect-indent", "detect-node", "diff", "diffie-hellman", "dir-glob", "dns-equal", "dns-packet", "dns-txt", "dom-converter", "dom-serializer", "dom-walk", "domain-browser", "domelementtype", "domhandler", "domutils", "dotenv", "dotenv-defaults", "dotenv-webpack", "duplexify", "ecc-jsbn", "ee-first", "elliptic", "emojis-list", "encodeurl", "end-of-stream", "enhanced-resolve", "entities", "errno", "error-ex", "es-abstract", "es-to-primitive", "es6-promise", "escape-html", "escape-string-regexp", "eslint-scope", "esprima", "esrecurse", "estraverse", "esutils", "etag", "eventemitter3", "events", "eventsource", "evp_bytestokey", "execa", "expand-brackets", "expand-tilde", "express", "extend", "extend-shallow", "extglob", "extract-text-webpack-plugin", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "faye-websocket", "figgy-pudding", "file-loader", "fill-range", "finalhandler", "find-cache-dir", "html-webpack-plugin", "js-cookie", "lodash", "lodash-decorators", "lodash-es", "moment", "node-sass", "npm", "numeral", "nyan-progress-webpack-plugin", "object-hash", "pluralize", "sass-loader", "style-loader", "tar", "tldjs", "ts-loader", "tslint", "typescript", "uglifyjs-webpack-plugin", "vue", "vue-axios", "vue-class-component", "vue-loader", "vue-markdown", "vue-mixin-decorator", "vue-moment", "vue-property-decorator", "vue-router", "vue-router-multiguard", "vue-template-compiler", "vue2-filters", "vuex", "vuex-class", "vuex-pathify", "webpack", "webpack-cli", "webpack-dev-server", "webpack-shell-plugin"], "https://github.com/Ptrskay3/PySprint": ["jinja2", "matplotlib", "numpy", "pandas", "scipy", "nbsphinx", "pygments", "recommonmark"], "https://github.com/gaojun0816/code_access_finder": ["xmlpull:xmlpull"], "https://github.com/LinkedDataFragments/Server.js": ["chai", "coveralls", "eslint", "eslint-plugin-import", "lerna", "manual-git-changelog", "mocha", "nyc", "pre-commit", "sinon", "sinon-chai", "supertest", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-split-export-declaration", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/template", "@babel/traverse", "@babel/types", "@evocateur/libnpmaccess", "@evocateur/libnpmpublish", "@evocateur/npm-registry-fetch", "@evocateur/pacote", "@hutson/parse-repository-url", "@istanbuljs/load-nyc-config", "@istanbuljs/schema", "@lerna/add", "@lerna/bootstrap", "@lerna/changed", "@lerna/check-working-tree", "@lerna/child-process", "@lerna/clean", "@lerna/cli", "@lerna/collect-uncommitted", "@lerna/collect-updates", "@lerna/command", "@lerna/conventional-commits", "@lerna/create", "@lerna/create-symlink", "@lerna/describe-ref", "@lerna/diff", "@lerna/exec", "@lerna/filter-options", "@lerna/filter-packages", "@lerna/get-npm-exec-opts", "@lerna/get-packed", "@lerna/github-client", "@lerna/gitlab-client", "@lerna/global-options", "@lerna/has-npm-version", "@lerna/import", "@lerna/info", "@lerna/init", "@lerna/link", "@lerna/list", "@lerna/listable", "@lerna/log-packed", "@lerna/npm-conf", "@lerna/npm-dist-tag", "@lerna/npm-install", "@lerna/npm-publish", "@lerna/npm-run-script", "@lerna/otplease", "@lerna/output", "@lerna/pack-directory", "@lerna/package", "@lerna/package-graph", "@lerna/prerelease-id-from-version", "@lerna/profiler", "@lerna/project", "@lerna/prompt", "@lerna/publish", "@lerna/pulse-till-done", "@lerna/query-graph", "@lerna/resolve-symlink", "@lerna/rimraf-dir", "@lerna/run", "@lerna/run-lifecycle", "@lerna/run-topologically", "@lerna/symlink-binary", "@lerna/symlink-dependencies", "@lerna/timer", "@lerna/validation-error", "@lerna/version", "@lerna/write-log-file", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@octokit/auth-token", "@octokit/endpoint", "@octokit/plugin-enterprise-rest", "@octokit/plugin-paginate-rest", "@octokit/plugin-request-log", "@octokit/plugin-rest-endpoint-methods", "@octokit/request", "@octokit/request-error", "@octokit/rest", "@octokit/types", "@rdfjs/data-model", "@types/color-name", "@types/events", "@types/glob", "@types/http-link-header", "@types/isomorphic-fetch", "@types/json5", "@types/minimatch", "@types/node", "@types/rdf-js", "@zkochan/cmd-shim", "abbrev", "access-log", "acorn", "acorn-jsx", "agent-base", "agentkeepalive", "aggregate-error", "ajv", "ansi-colors", "ansi-escapes", "ansi-regex", "ansi-styles", "any-promise", "anymatch", "append-transform", "aproba", "archy", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-find-index", "array-ify", "array-includes", "array-union", "array-uniq", "array-unique", "array.prototype.flat", "array.prototype.map", "arrayify-stream", "arrify", "asap", "asn1", "assert-plus", "assertion-error", "assign-symbols", "astral-regex", "asynciterator", "asynckit", "atob", "atob-lite", "aws-sign2", "aws4", "balanced-match", "base", "bcrypt-pbkdf", "before-after-hook", "binary-extensions", "bluebird", "brace-expansion", "braces", "browser-stdout", "btoa-lite", "buffer-from", "builtins", "byline", "byte-size", "cacache", "cache-base", "caching-transform", "call-me-maybe", "caller-callsite", "caller-path", "callsites", "camelcase", "camelcase-keys", "canonicalize", "caseless", "chalk", "chardet", "check-error", "chokidar", "chownr", "ci-info", "class-utils", "clean-stack", "cli-cursor", "cli-width", "cliui", "clone", "clone-deep", "code-point-at", "collection-visit", "color-convert", "color-name", "columnify", "combined-stream", "commander", "commondir", "compare-func", "component-emitter", "componentsjs", "concat-map", "concat-stream", "config-chain", "console-control-strings", "contains-path", "conventional-changelog-angular", "conventional-changelog-core", "conventional-changelog-preset-loader", "conventional-changelog-writer", "conventional-commits-filter", "conventional-commits-parser", "conventional-recommended-bump", "convert-source-map", "cookiejar", "copy-concurrently", "copy-descriptor", "core-util-is", "cosmiconfig", "cross-spawn", "currently-unhandled", "cyclist", "dargs", "dashdash", "dateformat", "debug", "debuglog", "decamelize", "decamelize-keys", "decode-uri-component", "dedent", "deep-eql", "deep-extend", "deep-is", "default-require-extensions", "defaults", "define-properties", "define-property", "delayed-stream", "delegates", "deprecation", "detect-indent", "dezalgo", "diff", "dir-glob", "doctrine", "dot-prop", "duplexer", "duplexify", "ecc-jsbn", "emoji-regex", "encoding", "end-of-stream", "env-paths", "forwarded-parse", "jsonld-streaming-serializer", "lodash", "mime", "n3", "negotiate", "q", "qejs", "rdf-string", "request", "uritemplate", "@ldf/core", "@ldf/datasource-composite", "@ldf/datasource-hdt", "@ldf/datasource-jsonld", "@ldf/datasource-n3", "@ldf/datasource-sparql", "@ldf/feature-memento", "@ldf/feature-qpf", "@ldf/feature-summary", "@ldf/preset-qpf", "lru-cache", "parse-cache-control", "jsonld-streaming-parser", "sparqljson-parse"], "https://github.com/lgsvl/simulator": ["@babel/runtime", "@enact/cli", "@enact/core", "@enact/i18n", "@enact/moonstone", "@enact/spotlight", "@enact/ui", "asap", "axios", "camelcase", "change-emitter", "classnames", "core-js", "create-react-context", "date-fns", "define-properties", "direction", "dom-walk", "eases", "encoding", "es-abstract", "es-to-primitive", "es6-promise", "eslint-utils", "eslint-visitor-keys", "eventsource", "eventsource-polyfill", "fbjs", "for-each", "function-bind", "global", "gud", "has", "has-symbols", "history", "hoist-non-react-statics", "iconv-lite", "invariant", "is-callable", "is-date-object", "is-function", "is-regex", "is-stream", "is-symbol", "isarray", "isomorphic-fetch", "js-tokens", "lodash", "loose-envify", "min-document", "mini-create-react-context", "node-fetch", "object-assign", "object-inspect", "object-keys", "original", "parse-headers", "path-to-regexp", "popper.js", "process", "promise", "prop-types", "querystringify", "ramda", "react", "react-datepicker", "react-dom", "react-favicon", "react-icons", "react-is", "react-onclickoutside", "react-popper", "react-router", "react-router-dom", "recompose", "regenerator-runtime", "requires-port", "resolve-pathname", "safer-buffer", "scheduler", "setimmediate", "string.prototype.trim", "string.prototype.trimleft", "string.prototype.trimright", "symbol-observable", "tiny-invariant", "tiny-warning", "typed-styles", "ua-parser-js", "url-parse", "value-equal", "warning", "whatwg-fetch", "xhr", "xtend", "com.unity.render-pipelines.core", "com.unity.render-pipelines.high-definition-config", "com.unity.shadergraph", "com.unity.visualeffectgraph"], "https://github.com/foerstner-lab/GRADitude": ["bokeh", "matplotlib", "numpy", "pandas", "scikit-learn", "scipy"], "https://github.com/BritishMuseumDH/britishMuseumFacesDetection": ["pillow", "sparqlwrapper"], "https://github.com/mattpitkin/psrqpy": ["ads", "matplotlib", "astropy", "beautifulsoup4", "numpy", "packaging", "pandas", "requests", "scipy", "six", "pytest", "pytest-cov", "pytest-socket"], "https://github.com/cbirdferrer/collatrix": ["numpy", "pandas", "pyqt5", "pytest", "setuptools"], "https://github.com/spacetelescope/pysiaf": ["astropy", "lxml", "matplotlib", "numpy", "numpydoc", "openpyxl", "pytest", "requests", "scipy", "sphinx-automodapi", "stsci-rtd-theme"], "https://github.com/jag1g13/pycgtool": ["mdtraj", "pytest", "scipy", "cython", "numpy", "simpletraj"], "https://github.com/jtmccr1/figtreejs-react": ["@babel/core", "@babel/plugin-proposal-throw-expressions", "@babel/plugin-transform-runtime", "@babel/preset-env", "@babel/preset-react", "@emotion/core", "@testing-library/react", "babel-loader", "babel-plugin-emotion", "babel-plugin-module-resolver", "bitset", "d3-array", "d3-format", "d3-geo", "d3-interpolate", "d3-scale", "d3-scale-chromatic", "d3-shape", "d3-time", "d3-time-format", "eslint-plugin-react-hooks", "immer", "jest", "jest-immutable-matchers", "react", "react-dom", "react-spring", "react-styleguidist", "react-tooltip", "rollup", "rollup-plugin-babel", "rollup-plugin-commonjs", "rollup-plugin-node-globals", "rollup-plugin-node-resolve", "rollup-plugin-peer-deps-external", "rollup-plugin-terser", "rollup-plugin-uglify", "topojson-client", "webpack"], "https://github.com/vedantchandra/wdtools": ["astropy", "corner", "emcee", "keras", "lmfit", "nbsphinx", "pandas", "pyastronomy", "scikit-learn", "scipy", "sphinx-autoapi", "sphinxcontrib-bibtex", "tensorflow", "tqdm"], "https://github.com/ericleasemorgan/reader": ["pandas"], "https://github.com/AbhinavMir/Decentralized-Journalism-Using-Ethereum": ["babel-polyfill", "babel-preset-env", "babel-preset-es2015", "babel-preset-stage-2", "babel-preset-stage-3", "babel-register", "bootstrap", "chai", "chai-as-promised", "chai-bignumber", "identicon.js", "react", "react-bootstrap", "react-dom", "react-scripts", "truffle", "web3"], "https://github.com/juliolugo96/ula-lang": ["docopt", "llvmlite"], "https://github.com/CountESS-Project/fqfa": ["ipython"], "https://github.com/reflectivity/reflectivity.github.io": ["bundler", "jekyll", "jekyll-archives", "jekyll-paginate", "jekyll-sitemap", "rake"], "https://github.com/vuw-sim-stia/TICJ": ["org.jgrapht:jgrapht-core", "org.neo4j:neo4j"], "https://github.com/tudelft3d/bag3d": ["bs4", "coverage", "Fiona", "lxml", "memory-profiler", "psutil", "psycopg2", "pykwalify", "pytest", "pytest-cov", "pytest-pep8", "PyYAML", "Shapely", "Sphinx", "sphinx-jsonschema", "sphinx-rtd-theme", "alabaster", "apipkg", "atomicwrites", "attrs", "babel", "beautifulsoup4", "certifi", "chardet", "click", "click-plugins", "cligj", "docopt", "docutils", "execnet", "fiona", "idna", "imagesize", "importlib-metadata", "jinja2", "jsonpointer", "markupsafe", "more-itertools", "munch", "packaging", "pep8", "pluggy", "py", "pygments", "pyparsing", "pytest-cache", "python-dateutil", "pytz", "pyyaml", "requests", "shapely", "six", "snowballstemmer", "soupsieve", "sphinx", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "urllib3", "wcwidth", "zipp"], "https://github.com/cyverse-gis/suas-metadata": ["ch.qos.logback:logback-classic", "com.github.ClemensFischer:FX-Map-Control", "com.github.jai-imageio:jai-imageio-core", "com.github.mjeanroy:exiftool-lib", "com.github.mreutegg:laszip4j", "com.google.code.gson:gson", "commons-beanutils:commons-beanutils", "commons-io:commons-io", "de.micromata.jak:JavaAPIforKml", "org.apache.commons:commons-collections4", "org.apache.commons:commons-compress", "org.apache.commons:commons-configuration2", "org.apache.commons:commons-lang3", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-compiler-plugin", "org.controlsfx:controlsfx", "org.elasticsearch.client:elasticsearch-rest-high-level-client", "org.fxmisc.easybind:easybind", "org.geotools:gt-shapefile", "org.hildan.fxgson:fx-gson", "org.irods.jargon:jargon-core", "org.jcodec:jcodec", "org.jcodec:jcodec-javase", "org.jfxtras:jfxtras-controls", "org.locationtech.jts:jts-core", "org.locationtech.spatial4j:spatial4j", "org.slf4j:slf4j-api", "com.drewnoakes:metadata-extractor"], "https://github.com/mwcraig/msumastro": ["astropy", "ccdproc", "numpy"], "https://github.com/ctsit/qipr_approver": ["coverage", "coveralls", "django", "django-debug-toolbar", "mod-wsgi", "mysqlclient", "pylint", "pytz", "requests"], "https://github.com/Caltech-IPAC/Montage": ["tornado"], "https://github.com/emtpb/pyfds": ["matplotlib", "numpy", "scipy"], "https://github.com/DennisRippinger/spade": ["ch.qos.logback:logback-classic", "com.logentries:logentries-appender", "org.apache.maven.plugins:maven-compiler-plugin", "org.aspectj:aspectjrt", "org.aspectj:aspectjweaver", "org.assertj:assertj-core", "org.gaul:modernizer-maven-plugin", "org.projectlombok:lombok", "org.slf4j:slf4j-api", "org.springframework:spring-aop", "org.springframework:spring-context", "org.springframework:spring-core", "org.springframework:spring-orm", "org.springframework:spring-test", "org.testng:testng", "com.sun.faces:jsf-api", "commons-io:commons-io", "info.interactivesystems:spade-core", "javax.el:el-api", "javax.inject:javax.inject", "javax.servlet:javax.servlet-api", "javax.servlet:jstl", "org.apache.commons:commons-vfs2", "org.primefaces.themes:bootstrap", "org.primefaces:primefaces", "org.springframework:spring-web", "org.springframework:spring-webmvc", "org.wildfly.plugins:wildfly-maven-plugin", "pl.project13.maven:git-commit-id-plugin", "com.madgag:util-diff", "commons-codec:commons-codec", "commons-collections:commons-collections", "commons-configuration:commons-configuration", "de.linguatools:disco", "edu.smu:jaws", "mysql:mysql-connector-java", "org.apache.commons:commons-lang3", "org.apache.opennlp:opennlp-tools", "org.hibernate:hibernate-c3p0", "org.hibernate:hibernate-core", "org.hibernate:hibernate-ehcache", "com.google.guava:guava", "commons-cli:commons-cli", "gov.nist.math:jama", "joda-time:joda-time", "net.sourceforge.htmlunit:htmlunit", "org.apache.commons:commons-math3", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-actuator", "org.springframework.boot:spring-boot-starter-web"], "https://github.com/Chilipp/psyplot_old": ["matplotlib", "netcdf4", "xarray", "docrep", "funcargparse", "pytest", "pyyaml", "sphinx", "psyplot"], "https://github.com/UNCG-DAISY/Coastal-Image-Labeler": ["@docusaurus/core", "@docusaurus/preset-classic", "@material-ui/core", "@material-ui/icons", "classnames", "react", "react-dom", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-bigint", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-import-meta", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/runtime", "@babel/runtime-corejs3", "@babel/template", "@babel/traverse", "@babel/types", "@bcoe/v8-coverage", "@cnakazawa/watch", "@istanbuljs/load-nyc-config", "@istanbuljs/schema", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/globals", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@sinonjs/commons", "@testing-library/dom", "@testing-library/react", "@types/aria-query", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/body-parser", "@types/bson", "@types/color-name", "@types/connect", "@types/eslint-visitor-keys", "@types/express", "@types/express-serve-static-core", "@types/glob", "@types/graceful-fs", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/jest", "@types/json-schema", "@types/lodash", "@types/mime", "@types/minimatch", "@types/mongodb", "@types/mongoose", "@types/node", "@types/normalize-package-data", "@types/parse-json", "@types/prettier", "@types/qs", "@types/range-parser", "@types/serve-static", "@types/stack-utils", "@types/testing-library__react", "@types/yargs", "@types/yargs-parser", "@typescript-eslint/eslint-plugin", "@typescript-eslint/experimental-utils", "@typescript-eslint/parser", "@typescript-eslint/typescript-estree", "abab", "accepts", "acorn", "acorn-globals", "acorn-jsx", "acorn-walk", "aggregate-error", "ajv", "ansi-colors", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "arg", "argparse", "aria-query", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-flatten", "array-includes", "array-unique", "array.prototype.flatmap", "asn1", "assert-plus", "assign-symbols", "astral-regex", "asynckit", "atob", "aws-sign2", "aws4", "babel-jest", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-preset-current-node-syntax", "babel-preset-jest", "balanced-match", "base", "base64-js", "bcrypt-pbkdf", "bl", "bluebird", "body-parser", "brace-expansion", "braces", "browser-process-hrtime", "browser-resolve", "bs-logger", "bser", "bson", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-crc32", "buffer-fill", "buffer-from", "bytes", "cache-base", "callsites", "camelcase", "capture-exit", "caseless", "chalk", "chardet", "ci-info", "class-utils", "clean-stack", "cli-cursor", "cli-progress", "cli-truncate", "cli-width", "cliui", "co", "collect-v8-coverage", "collection-visit", "color-convert", "color-name", "colors", "combined-stream", "commander", "compare-versions", "component-emitter", "concat-map", "configstore", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-descriptor", "core-js-pure", "core-util-is", "cosmiconfig", "cross-spawn", "crypto-random-string", "cssom", "cssstyle", "dashdash", "data-urls", "debug", "decamelize", "decode-uri-component", "decompress", "decompress-tar", "decompress-tarbz2", "decompress-targz", "decompress-unzip", "dedent", "deep-is", "deepmerge", "define-properties", "define-property", "delayed-stream", "denque", "depd", "destroy", "detect-newline", "diff", "diff-sequences", "doctrine", "dom-accessibility-api", "domexception", "dot-prop", "ecc-jsbn", "ee-first", "emoji-regex", "encodeurl", "end-of-stream", "enquirer", "error-ex", "es-abstract", "es-to-primitive", "escape-html", "escape-string-regexp", "escodegen", "eslint", "eslint-config-prettier", "eslint-plugin-react", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "etag", "exec-sh", "execa", "exit", "expand-brackets", "expect", "express", "extend", "extend-shallow", "external-editor", "extglob", "extsprintf", "glob", "glob-promise", "husky", "inquirer", "jest", "jest-express", "jest-watch-typeahead", "lint-staged", "lodash", "moment", "mongoose", "node-mocks-http", "prettier", "rimraf", "ts-jest", "ts-node", "typescript", "@ampproject/toolbox-core", "@ampproject/toolbox-optimizer", "@ampproject/toolbox-runtime-version", "@ampproject/toolbox-script-csp", "@ampproject/toolbox-validator-rules", "@babel/compat-data", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-builder-react-jsx-experimental", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-hoist-variables", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-wrap-function", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-top-level-await", "@babel/plugin-syntax-typescript", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-development", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-typescript", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/preset-react", "@babel/preset-typescript", "@emotion/cache", "@emotion/core", "@emotion/css", "@emotion/hash", "@emotion/is-prop-valid", "@emotion/memoize", "@emotion/serialize", "@emotion/sheet", "@emotion/styled", "@emotion/styled-base", "@emotion/stylis", "@emotion/unitless", "@emotion/utils", "@emotion/weak-memoize", "@hapi/bourne", "@material-ui/lab", "@material-ui/styles", "@material-ui/system", "@material-ui/types", "@material-ui/utils", "@next/react-dev-overlay", "@next/react-refresh-utils", "@sindresorhus/is", "@szmarczak/http-timer", "@types/express-fileupload", "@types/morgan", "@types/node-geocoder", "@types/passport", "@types/prop-types", "@types/q", "@types/react", "@types/react-dom", "@types/react-transition-group", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abbrev", "adjust-sourcemap-loader", "ajv-errors", "ajv-keywords", "ally.js", "alphanum-sort", "anser", "ansi-align", "aproba", "args", "arity-n", "asn1.js", "assert", "async", "async-each", "atomic-sleep", "axios", "babel-code-frame", "babel-plugin-dynamic-import-node", "babel-plugin-emotion", "babel-plugin-macros", "babel-plugin-syntax-jsx", "babel-plugin-transform-define", "babel-plugin-transform-react-remove-prop-types", "base64url", "basic-auth", "big.js", "binary-extensions", "bindings", "bn.js", "boolbase", "boxen", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer-xor", "builtin-status-codes", "busboy", "@types/express-session", "@types/passport-auth0", "archiver", "cron-parser", "cross-env", "csv-stringify", "dotenv", "express-session", "express-validator", "jsonschema", "memorystore", "module-alias", "next", "node-schedule", "passport", "passport-auth0", "react-csv", "react-hook-form", "react-json-pretty", "response-time", "uid-safe"], "https://github.com/jiemakel/aether": ["bower-config", "browser-sync", "chalk", "del", "glob", "gulp", "gulp-autoprefixer", "gulp-cache", "gulp-cached", "gulp-concat", "gulp-csso", "gulp-filter", "gulp-flatten", "gulp-gh-pages", "gulp-imagemin", "gulp-inject", "gulp-jade", "gulp-jshint", "gulp-less", "gulp-livescript", "gulp-load-plugins", "gulp-ng-annotate", "gulp-ng-html2js", "gulp-notify", "gulp-plumber", "gulp-protractor", "gulp-remember", "gulp-replace", "gulp-rev", "gulp-rev-replace", "gulp-size", "gulp-sourcemaps", "gulp-spa", "gulp-stylus", "gulp-uglify", "gulp-useref", "gulp-util", "http-proxy", "livescript", "lodash", "main-bower-files", "nib", "propprop", "require-dir", "run-sequence", "through2", "uglify-save-license", "wiredep"], "https://github.com/chrisdjscott/Atoman": ["matplotlib", "nose", "numpy", "paramiko", "pillow", "pyhull", "pyinstaller", "pyside2", "scipy", "setuptools", "sphinx", "sphinx-rtd-theme", "vtk"], "https://github.com/cosmo-epfl/chemiscope": ["3d-view", "@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@mapbox/geojson-rewind", "@mapbox/geojson-types", "@mapbox/jsonlint-lines-primitives", "@mapbox/mapbox-gl-supported", "@mapbox/point-geometry", "@mapbox/tiny-sdf", "@mapbox/unitbezier", "@mapbox/vector-tile", "@mapbox/whoots-js", "@plotly/d3-sankey", "@plotly/d3-sankey-circular", "@plotly/point-cluster", "@turf/area", "@turf/bbox", "@turf/centroid", "@turf/helpers", "@turf/meta", "@types/anymatch", "@types/color-name", "@types/d3", "@types/eslint-visitor-keys", "@types/glob", "@types/json-schema", "@types/linkify-it", "@types/markdown-it", "@types/mdurl", "@types/minimatch", "@types/node", "@types/plotly.js", "@types/source-list-map", "@types/tapable", "@types/tmp", "@types/uglify-js", "@types/webpack", "@types/webpack-merge", "@types/webpack-sources", "@typescript-eslint/eslint-plugin", "@typescript-eslint/experimental-utils", "@typescript-eslint/parser", "@typescript-eslint/types", "@typescript-eslint/typescript-estree", "@typescript-eslint/visitor-keys", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "a-big-triangle", "abs-svg-path", "accepts", "acorn", "acorn-dynamic-import", "acorn-jsx", "add-line-numbers", "affine-hull", "ajv", "ajv-errors", "ajv-keywords", "almost-equal", "alpha-complex", "alpha-shape", "ansi-colors", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "arg", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-bounds", "array-flatten", "array-normalize", "array-range", "array-rearrange", "array-union", "array-uniq", "array-unique", "asn1.js", "assert", "assign-symbols", "astral-regex", "async", "async-each", "async-limiter", "atob", "atob-lite", "balanced-match", "barycentric", "base", "base64-js", "batch", "big-rat", "big.js", "binary-extensions", "binary-search-bounds", "bindings", "bit-twiddle", "bitmap-sdf", "bl", "bluebird", "bn.js", "body-parser", "bonjour", "boundary-cells", "box-intersect", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "buble", "bubleify", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "callsites", "camel-case", "camelcase", "canvas-fit", "cdt2d", "cell-orientation", "chalk", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "circumcenter", "circumradius", "clamp", "class-utils", "clean-css", "clean-pslg", "cliui", "collection-visit", "color-alpha", "color-convert", "color-id", "color-name", "color-normalize", "color-parse", "color-rgba", "color-space", "colormap", "colors", "commander", "commondir", "compare-angle", "compare-cell", "compare-oriented-cell", "component-emitter", "compressible", "compression", "compute-dims", "concat-map", "concat-stream", "connect-history-api-fallback", "console-browserify", "const-max-uint32", "const-pinf-float64", "constants-browserify", "content-disposition", "content-type", "convex-hull", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "core-util-is", "country-regex", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "css-font", "css-font-size-keywords", "css-font-stretch-keywords", "css-font-style-keywords", "css-font-weight-keywords", "css-global-keywords", "css-loader", "css-system-font-keywords", "csscolorparser", "cssesc", "cubic-hermite", "cwise-compiler", "cyclist", "d", "d3", "d3-array", "d3-collection", "d3-color", "d3-dispatch", "d3-force", "d3-hierarchy", "d3-interpolate", "d3-path", "d3-quadtree", "d3-shape", "d3-timer", "debug", "decamelize", "decode-uri-component", "deep-equal", "deep-is", "default-gateway", "define-properties", "define-property", "defined", "del", "delaunay-triangulate", "depd", "des.js", "destroy", "detect-file", "detect-kerning", "detect-node", "diff", "diffie-hellman", "dts-bundle-generator", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "html-loader", "ify-loader", "markdown-it", "plotly.js", "prettier", "style-loader", "tmp", "ts-loader", "ts-node", "typedoc", "typedoc-plugin-external-module-name", "typescript", "webpack", "webpack-cli", "webpack-dev-server", "webpack-merge", "m2r", "numpy", "sphinx", "sphinx-bootstrap-theme", "sphinx-js"], "https://github.com/spcl/dace": ["absl-py", "aenum", "astunparse", "chardet", "click", "cmake", "decorator", "flask", "graphviz", "idna", "itsdangerous", "jinja2", "markupsafe", "mpmath", "networkx", "numpy", "packaging", "ply", "pyparsing", "pyyaml", "requests", "scikit-build", "scipy", "six", "sympy", "tqdm", "urllib3", "websockets", "werkzeug"], "https://github.com/CardiacModelling/nonlinear-time-dependent-leak": ["matplotlib", "numpy", "scipy"], "https://github.com/templateflow/python-client": ["coverage", "pybids", "pytest", "pytest-cov", "pytest-xdist", "requests", "tqdm", "nbsphinx", "packaging", "pydot", "pydotplus", "sphinx", "sphinx-argparse", "sphinx-rtd-theme", "sphinxcontrib-apidoc"], "https://github.com/redmod-team/profit": ["numpy", "pyyaml", "sphinx-math-dollar", "chaospy", "gpflow", "pyccel", "pytest", "scipy"], "https://github.com/pavolgaj/ObsPlanner": ["matplotlib", "numpy"], "https://github.com/nick-youngblut/MGSIM": ["biopython", "configobj", "docopt", "numpy", "pandas", "scipy"], "https://github.com/fcproj/agrotagger": ["com.github.fcproj:JFCUtil", "com.hp.hpl.jena:iri", "com.hp.hpl.jena:jena", "com.ibm.icu:icu4j", "commons-io:commons-io", "commons-logging:commons-logging", "junit:junit", "maui:maui", "maxent:opennlp.maxent", "mysql:mysql-connector-java", "net.sourceforge.jexcelapi:jxl", "nz.ac.waikato.cms.weka:weka-stable", "opennlp-tools:opennlp.maxent", "org.apache.commons:commons-compress", "org.apache.lucene:lucene-xercesImpl", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.pdfbox:pdfbox", "org.apache.poi:poi", "org.apache.poi:poi-ooxml", "org.apache.poi:poi-ooxml-schemas", "org.apache.poi:poi-scratchpad", "snowball:org.tartarussnowball", "trove:trove", "wikipediaminer:org.wikipedia.miner", "jfcutil:org.jfcutils"], "https://github.com/epiviz/epiviz": ["jquery"], "https://github.com/filips123/EthAvatar.JS": ["@drizzle-utils/contract-event-stream", "@drizzle-utils/new-block-stream", "aegir", "chai", "commander", "cross-fetch", "form-data", "ipfs-http-client", "user-settings", "web3", "@babel/cli", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-builder-react-jsx-experimental", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-do-expressions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-default-from", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-function-bind", "@babel/plugin-proposal-function-sent", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-pipeline-operator", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-throw-expressions", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-do-expressions", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-default-from", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-flow", "@babel/plugin-syntax-function-bind", "@babel/plugin-syntax-function-sent", "@babel/plugin-syntax-import-meta", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-pipeline-operator", "@babel/plugin-syntax-throw-expressions", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-flow-strip-types", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-development", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-react-pure-annotations", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-flow", "@babel/preset-modules", "@babel/preset-react", "@babel/preset-stage-0", "@babel/register", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@commitlint/cli", "@commitlint/config-conventional", "@commitlint/ensure", "@commitlint/execute-rule", "@commitlint/format", "@commitlint/is-ignored", "@commitlint/lint", "@commitlint/load", "@commitlint/message", "@commitlint/parse", "@commitlint/read", "@commitlint/resolve-extends", "@commitlint/rules", "@commitlint/to-lines", "@commitlint/top-level", "@commitlint/travis-cli", "@ethersproject/abi", "@ethersproject/address", "@ethersproject/bignumber", "@ethersproject/bytes", "@ethersproject/constants", "@ethersproject/hash", "@ethersproject/keccak256", "@ethersproject/logger", "@ethersproject/properties", "@ethersproject/rlp", "@ethersproject/signing-key", "@ethersproject/strings", "@ethersproject/transactions", "@hapi/address", "@hapi/bourne", "@hapi/hoek", "@hapi/joi", "@hapi/topo", "@marionebl/sander", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@samverschueren/stream-to-observable", "@sindresorhus/is", "@szmarczak/http-timer", "@tootallnate/once", "@types/bn.js", "@types/color-name", "@types/glob", "@types/json-schema", "@types/json5", "@types/minimatch", "@types/minimist", "@types/node", "@types/normalize-package-data", "@types/unist", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abort-controller", "accepts", "acorn", "acorn-jsx", "acorn-node", "acorn-walk", "add-stream", "after", "agent-base", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "ansi-align", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "any-observable", "any-signal", "anymatch", "append-buffer", "append-transform", "aproba", "archy", "are-we-there-yet", "argparse", "argv", "arr-diff", "arr-flatten", "arr-union", "array-find-index", "array-flatten", "array-ify", "array-includes", "array-union", "array-uniq", "array-unique", "array.prototype.flat", "arraybuffer.slice", "arrify", "asn1", "asn1.js", "assert", "assert-plus", "assertion-error", "assign-symbols", "astral-regex", "async", "async-each"], "https://github.com/quadrama/DramaNLP": ["commons-io:commons-io", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.coref-asl\n\t\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.metadata-asl\n\t\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.ner-asl\n\t\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.segmentation-asl\n\t\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\t\tde.tudarmstadt.ukp.dkpro.core.berkeleyparser-gpl\n\t\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\t\tde.tudarmstadt.ukp.dkpro.core.io.xmi-asl\n\t\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\t\tde.tudarmstadt.ukp.dkpro.core.languagetool-asl\n\t\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\t\tde.tudarmstadt.ukp.dkpro.core.matetools-gpl\n\t\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\t\tde.tudarmstadt.ukp.dkpro.core.stanfordnlp-gpl\n\t\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\t\tde.tudarmstadt.ukp.dkpro.core.tokit-asl\n\t\t\t\t", "de.unistuttgart.ims:uimautil", "junit:junit", "org.apache.jena:jena-tdb", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.uima:uimafit-core", "org.apache.uima:uimaj-core", "org.languagetool:language-all", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.coref-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\tde.tudarmstadt.ukp.dkpro.core.api.metadata-asl\n \t", "de.tudarmstadt.ukp.dkpro.core:\n \t\tde.tudarmstadt.ukp.dkpro.core.api.segmentation-asl\n \t", "org.apache.uima:jcasgen-maven-plugin", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.segmentation-asl\n \t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\t\tde.tudarmstadt.ukp.dkpro.core.io.xmi-asl\n \t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\t\tde.tudarmstadt.ukp.dkpro.core.languagetool-asl\n \t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\t\tde.tudarmstadt.ukp.dkpro.core.stanfordnlp-gpl\n \t\t\t", "de.unistuttgart.ims.uima.io:generic-xml-reader", "de.unistuttgart.ims:commons", "de.unistuttgart.ims:de.unistuttgart.ims.drama.api", "de.unistuttgart.ims:de.unistuttgart.ims.drama.io.core", "de.unistuttgart.ims:de.unistuttgart.ims.drama.util", "org.apache.commons:commons-csv", "org.apache.commons:commons-math3", "org.codehaus.mojo:exec-maven-plugin", "org.eclipse.m2e:lifecycle-mapping", "xom:xom", "com.lexicalscope.jewelcli:jewelcli", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\tde.tudarmstadt.ukp.dkpro.core.berkeleyparser-gpl\n\t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\tde.tudarmstadt.ukp.dkpro.core.api.coref-asl\n \t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\tde.tudarmstadt.ukp.dkpro.core.api.ner-asl\n \t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\tde.tudarmstadt.ukp.dkpro.core.io.xmi-asl\n \t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\tde.tudarmstadt.ukp.dkpro.core.languagetool-asl\n \t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\tde.tudarmstadt.ukp.dkpro.core.matetools-gpl\n \t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\tde.tudarmstadt.ukp.dkpro.core.stanfordnlp-gpl\n \t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\tde.tudarmstadt.ukp.dkpro.core.tokit-asl\n \t\t", "de.unistuttgart.ims:de.unistuttgart.ims.drama.core", "de.unistuttgart.ims:de.unistuttgart.ims.drama.core.ml", "org.apache.maven.plugins:maven-shade-plugin", "de.tudarmstadt.ukp.dkpro.core:\n \t\tde.tudarmstadt.ukp.dkpro.core.io.xmi-asl\n \t", "org.cleartk:cleartk-eval", "org.cleartk:cleartk-ml-mallet", "de.unistuttgart.ims:cleartk-util", "org.apache.commons:commons-collections4", "org.cleartk:cleartk-ml", "org.cleartk:cleartk-ml-libsvm", "org.cleartk:cleartk-ml-weka", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\tde.tudarmstadt.ukp.dkpro.core.api.io-asl\n \t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\tde.tudarmstadt.ukp.dkpro.core.api.syntax-asl\n \t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\t\tde.tudarmstadt.ukp.dkpro.core.io.penntree-asl\n \t\t", "org.jsoup:jsoup"], "https://github.com/Kitware/itk-vtk-viewer": ["@babel/plugin-transform-runtime", "@babel/preset-env", "@babel/runtime", "@thewtex/iconselect.js", "axios", "babel-plugin-istanbul", "babel-preset-mobx", "commander", "copy-webpack-plugin", "css-element-queries", "curry", "eventemitter3", "express", "husky", "imjoy-core", "itk", "karma", "karma-chrome-launcher", "karma-firefox-launcher", "karma-junit-reporter", "karma-tap", "karma-tap-pretty-reporter", "karma-webpack", "kw-doc", "kw-web-suite", "lint-staged", "mobx", "mousetrap", "ndarray", "open", "prettier", "promise-file-reader", "puppeteer", "regenerator-runtime", "request", "resemblejs", "tap-markdown", "tap-spec", "tape", "tape-catch", "vtk.js", "webpack-dev-server", "webpackbar", "workbox-build", "workbox-webpack-plugin", "worker-loader"], "https://github.com/academic/thesaurus-manager": ["brianium/paratest", "doctrine/doctrine-bundle", "doctrine/doctrine-cache-bundle", "doctrine/doctrine-fixtures-bundle", "doctrine/orm", "friendsofsymfony/jsrouting-bundle", "friendsofsymfony/rest-bundle", "incenteev/composer-parameter-handler", "ircmaxell/password-compat", "javiereguiluz/easyadmin-bundle", "jms/di-extra-bundle", "jms/serializer-bundle", "knplabs/knp-menu-bundle", "knplabs/knp-paginator-bundle", "liip/functional-test-bundle", "liip/imagine-bundle", "mopa/bootstrap-bundle", "nelmio/api-doc-bundle", "ostico/phporient", "php", "phpunit/phpunit", "sensio/distribution-bundle", "sensio/framework-extra-bundle", "sensio/generator-bundle", "stof/doctrine-extensions-bundle", "symfony/monolog-bundle", "symfony/phpunit-bridge", "symfony/swiftmailer-bundle", "symfony/symfony", "twbs/bootstrap", "vich/uploader-bundle", "willdurand/hateoas-bundle", "behat/transliterator", "brianium/habitat", "composer/semver", "doctrine/annotations", "doctrine/cache", "doctrine/collections", "doctrine/common", "doctrine/data-fixtures", "doctrine/dbal", "doctrine/inflector", "doctrine/instantiator", "doctrine/lexer", "gedmo/doctrine-extensions", "imagine/imagine", "jdorn/sql-formatter", "jms/aop-bundle", "jms/cg", "jms/metadata", "jms/parser-lib", "jms/serializer", "knplabs/knp-components", "knplabs/knp-menu", "michelf/php-markdown", "monolog/monolog", "mopa/composer-bridge", "myclabs/deep-copy", "ocramius/package-versions", "ocramius/proxy-manager", "pagerfanta/pagerfanta", "paragonie/random_compat", "phpcollection/phpcollection", "phpdocumentor/reflection-docblock", "phpoption/phpoption", "phpspec/prophecy", "phpunit/php-code-coverage", "phpunit/php-file-iterator", "phpunit/php-text-template", "phpunit/php-timer", "phpunit/php-token-stream", "phpunit/phpunit-mock-objects", "psr/log", "sebastian/code-unit-reverse-lookup", "sebastian/comparator", "sebastian/diff", "sebastian/environment", "sebastian/exporter", "sebastian/global-state", "sebastian/object-enumerator", "sebastian/recursion-context", "sebastian/resource-operations", "sebastian/version", "sensiolabs/security-checker", "swiftmailer/swiftmailer", "symfony/polyfill-intl-icu", "symfony/polyfill-mbstring", "symfony/polyfill-php56", "symfony/polyfill-php70", "symfony/polyfill-util", "twig/extensions", "twig/twig", "willdurand/hateoas", "willdurand/jsonp-callback-validator", "willdurand/negotiation", "zendframework/zend-code", "zendframework/zend-eventmanager"], "https://github.com/milaboratory/mixcr": ["com.milaboratory:milib", "info.picocli:picocli", "io.repseq:repseqio", "junit:junit", "net.sf.trove4j:trove4j", "org.apache.maven.plugins:maven-antrun-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:buildnumber-maven-plugin", "org.lz4:lz4-java", "org.mockito:mockito-all"], "https://github.com/Fu-PusH/statement-finder": ["del", "gulp", "gulp-angular-templatecache", "gulp-connect", "gulp-csso", "gulp-if", "gulp-inject", "gulp-jscs", "gulp-jscs-stylish", "gulp-jshint", "gulp-jsonmin", "gulp-load-plugins", "gulp-minify-html", "gulp-plumber", "gulp-task-listing", "gulp-uglify", "gulp-useref", "gulp-util", "jshint", "jshint-stylish"], "https://github.com/openmc-dev/openmc": ["h5py", "ipython", "lxml", "matplotlib", "numpy", "pandas", "scipy", "uncertainties", "jupyter", "sphinx-numfig", "sphinxcontrib-katex", "sphinxcontrib-svg2pdfconverter"], "https://github.com/brelsford/topology": ["decorator", "matplotlib", "networkx", "nose", "numpy", "plotly", "pyparsing", "pyshp", "python-dateutil", "pytz", "requests", "scipy", "six"], "https://github.com/thela/django_log_to_telegram": ["django", "requests"], "https://github.com/cigroup-ol/metaopt": ["coverage", "bumpversion", "wheel", "sphinx", "distribute", "matplotlib", "numpy", "scikit-learn", "scipy", "flake8", "pep8-naming", "multiprocessing", "ordereddict", "mock", "nose", "tox", "coveralls", "express", "grunt", "grunt-contrib-connect", "grunt-contrib-cssmin", "grunt-contrib-jshint", "grunt-contrib-qunit", "grunt-contrib-sass", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-zip", "mustache", "socket.io", "underscore"], "https://github.com/lucananni93/CTCF_Spatial_Patterns": ["dask", "matplotlib", "networkx", "numpy", "pandas", "pybedtools", "python-louvain", "scipy", "seaborn", "statannot", "statsmodels"], "https://github.com/stfbnc/fathon": ["cython", "numpy", "numpydoc"], "https://github.com/prisms-center/CASMcode": ["sphinx", "sphinx-argparse", "sphinx-rtd-theme", "bokeh", "deap", "mock", "pandas", "prisms-jobs", "scikit-learn", "scipy", "sh", "six", "tornado", "pytest"], "https://github.com/ccd-utexas/binstarsolver": ["matplotlib", "numba", "numpy", "scipy", "sphinx", "sphinxcontrib-napoleon"], "https://github.com/wallissoncarvalho/HidroData": ["asn1crypto", "attrs", "certifi", "cffi", "chardet", "click", "click-plugins", "cligj", "cryptography", "cycler", "fiona", "gdal", "geopandas", "idna", "kiwisolver", "matplotlib", "mkl-service", "munch", "netcdf4", "numpy", "pandas", "plotly", "pycparser", "pyopenssl", "pyparsing", "pyproj", "pysocks", "python-dateutil", "pytz", "requests", "rtree", "shapely", "sip", "six", "tornado", "tqdm", "urllib3", "wincertstore", "xarray"], "https://github.com/XPRESSyourself/XPRESSplot": ["matplotlib", "numpy", "pandas", "plotly", "plotly-express", "scikit-learn", "scipy", "seaborn"], "https://github.com/airr-community/airr-standards": ["prov", "pyyaml", "setuptools", "sphinx", "sphinx-book-theme", "sphinxcontrib-autoprogram", "yamlordereddictloader", "pandas"], "https://github.com/joaomcteixeira/taurenmd": ["bioplottemplates", "pyquaternion", "commonmark", "mock", "sphinx", "sphinx-argparse", "sphinx-rtd-theme"], "https://github.com/jyhmiinlin/pynufft": ["numpy", "scipy"], "https://github.com/atrisovic/econ-data-policy": ["matplotlib", "numpy", "pandas", "seaborn"], "https://github.com/DPBayes/DP-cross-silo-federated-learning": ["blas", "bokeh", "bzip2", "ca-certificates", "certifi", "cffi", "click", "cloog", "cloudpickle", "cmake", "cudatoolkit", "curl", "cycler", "cython", "cytoolz", "dask", "dask-core", "dask-jobqueue", "distributed", "docrep", "expat", "fourier-accountant", "freetype", "gcc", "gmp", "hdf5", "heapdict", "icu", "intel-openmp", "isl", "jbig", "jinja2", "jpeg", "kiwisolver", "krb5", "libcurl", "libcxx", "libcxxabi", "libedit", "libffi", "libgfortran", "libiconv", "libopenblas", "libpng", "libssh2", "libtiff", "libuv", "libxml2", "libxslt", "locket", "lzo", "markupsafe", "matplotlib", "mkl", "mkl-fft", "mkl-include", "mkl-random", "mock", "mpc", "mpfr", "mpmath", "msgpack-python", "ncurses", "ninja", "nodejs", "numexpr", "numpy", "numpy-base", "olefile", "openssl", "packaging", "pandas", "partd", "pbr", "pillow", "pip", "psutil", "pycparser", "pyparsing", "python", "python-dateutil", "pytorch", "pytz", "pyyaml", "qt", "readline", "rhash", "scikit-learn", "scipy", "setuptools", "six", "sklearn", "sortedcontainers", "sqlite", "tables", "tblib", "tk", "toolz", "torchvision", "tornado", "unixodbc", "wget", "wheel", "xz", "yaml", "zict", "zlib", "zstd"], "https://github.com/statsmodels/statsmodels": ["cython", "flake8", "isort", "jupyter", "matplotlib", "nbconvert", "nbsphinx", "notebook", "numpydoc", "pandas-datareader", "pytest", "pytest-randomly", "pytest-xdist", "pyyaml", "seaborn", "simplegeneric", "sphinx", "sphinx-material", "numpy", "pandas", "patsy", "scipy"], "https://github.com/SciGraph/SciGraph": ["com.carrotsearch:junit-benchmarks", "com.google.code.findbugs:jsr305", "com.google.guava:guava", "com.google.inject.extensions:guice-assistedinject", "com.google.inject.extensions:guice-throwingproviders", "com.google.inject:guice", "com.mycila:license-maven-plugin", "junit:junit", "nl.jqno.equalsverifier:equalsverifier", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-eclipse-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-pmd-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:cobertura-maven-plugin", "org.codehaus.mojo:findbugs-maven-plugin", "org.codehaus.mojo:taglist-maven-plugin", "org.eluder.coveralls:coveralls-maven-plugin", "org.hamcrest:hamcrest-library", "org.mockito:mockito-core", "org.neo4j.test:neo4j-harness", "org.neo4j:neo4j-io", "org.neo4j:neo4j-kernel", "com.tinkerpop.blueprints:blueprints-core", "commons-cli:commons-cli", "commons-io:commons-io", "commons-validator:commons-validator", "io.dropwizard:dropwizard-configuration", "io.dropwizard:dropwizard-core", "net.sourceforge.owlapi:owlapi-distribution", "org.apache.commons:commons-lang3", "org.apache.lucene:lucene-analyzers-common", "org.apache.lucene:lucene-misc", "org.apache.lucene:lucene-queryparser", "org.apache.lucene:lucene-suggest", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.mapdb:mapdb", "org.neo4j:neo4j-consistency-check", "org.neo4j:neo4j-cypher", "org.neo4j:neo4j-graphviz", "org.prefixcommons:curie-util", "org.semanticweb.elk:elk-owlapi", "io.scigraph:scigraph-core", "net.htmlparser.jericho:jericho-html", "org.apache.opennlp:opennlp-tools", "org.apache.commons:commons-math3", "com.tinkerpop.blueprints:blueprints-graph-jung", "commons-codec:commons-codec", "io.dropwizard:dropwizard-assets", "io.dropwizard:dropwizard-auth", "io.dropwizard:dropwizard-hibernate", "io.dropwizard:dropwizard-testing", "io.dropwizard:dropwizard-views-mustache", "io.scigraph:scigraph-analysis", "io.scigraph:scigraph-entity", "io.swagger:swagger-compat-spec-parser", "io.swagger:swagger-jersey2-jaxrs", "io.swagger:swagger-parser", "net.sf.dozer:dozer", "org.apache.commons:commons-csv", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.shiro:shiro-core", "org.glassfish.hk2:hk2-api", "org.glassfish.jersey.containers:jersey-container-servlet-core", "org.glassfish.jersey.core:jersey-common", "org.glassfish.jersey.media:jersey-media-multipart", "org.hsqldb:hsqldb", "org.neo4j:neo4j-jmx", "org.skyscreamer:jsonassert", "org.slf4j:slf4j-api", "ru.vyarus:dropwizard-guicey"], "https://github.com/giannisdoukas/ipython2cwl": ["astor", "gitpython", "ipython", "jupyter-repo2docker", "nbconvert", "nbformat", "pyyaml", "coverage", "coveralls", "cwltool", "docker", "matplotlib", "mypy", "pandas", "pycodestyle", "virtualenv"], "https://github.com/Neurita/pypes": ["ansible", "better-exceptions", "boyle", "bumpversion", "click", "flake8", "hansel", "kaptan", "matplotlib", "nibabel", "nilearn", "nipy", "nipype", "numpy", "pandas", "pdbpp", "pre-commit", "pydicom", "pytest", "scikit_learn", "xlwt", "mkdocs", "recommonmark"], "https://github.com/pesummary/pesummary": ["astropy", "corner", "deepdish", "gwpy", "h5py", "ligo-skymap", "matplotlib-base", "numpy", "p-astro", "pandas", "pepredicates", "plotly", "pygments", "pytables", "python-lal", "python-lalinference", "python-lalsimulation", "scipy", "seaborn", "statsmodels", "beautifulsoup4", "coloredlogs", "coverage", "coverage-badge", "ipykernel", "jupyter-client", "nbformat", "nbsphinx", "pytest", "pytest-cov", "sphinx", "sphinx-argparse", "sphinx-rtd-theme", "sphinxcontrib-programoutput", "testfixtures", "configparser", "lalsuite", "ligo-gracedb", "matplotlib", "tables", "tqdm", "pycbc"], "https://github.com/nilsreiter/CorefAnnotator": ["com.google.guava:guava", "com.lexicalscope.jewelcli:jewelcli", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\t\tde.tudarmstadt.ukp.dkpro.core-asl\n\t\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\t\tde.tudarmstadt.ukp.dkpro.core-gpl\n\t\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.coref-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.lexmorph-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.metadata-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.segmentation-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.semantics-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.syntax-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.io.conll-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.io.text-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.io.xmi-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.stanfordnlp-gpl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.tokit-asl\n\t\t\t", "de.unistuttgart.ims.uima.io:generic-xml-reader", "de.unistuttgart.ims:creta.api", "de.unistuttgart.ims:de.unistuttgart.ims.drama.api", "de.unistuttgart.ims:uimautil", "junit:junit", "org.apache.commons:commons-collections4", "org.apache.commons:commons-math3", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.poi:poi", "org.apache.poi:poi-ooxml", "org.apache.uima:jcasgen-maven-plugin", "org.apache.uima:uimafit-core", "org.apache.velocity:velocity-tools", "org.codehaus.mojo:build-helper-maven-plugin", "org.codehaus.plexus:plexus-archiver", "org.eclipse.collections:eclipse-collections", "org.eclipse.collections:eclipse-collections-api", "org.glassfish.jaxb:jaxb-runtime", "org.json:json", "org.jvnet.jaxb2.maven2:maven-jaxb2-plugin", "org.kordamp.ikonli:ikonli-fontawesome-pack", "org.kordamp.ikonli:ikonli-materialdesign-pack", "org.kordamp.ikonli:ikonli-swing", "org.mockito:mockito-core", "org.openjfx:javafx-controls", "org.openjfx:javafx-swing", "org.reflections:reflections", "sh.tak.appbundler:appbundle-maven-plugin"], "https://github.com/tripal/tripal_galaxy": ["statonlab/tripal-test-suite", "doctrine/instantiator", "fzaninotto/faker", "guzzlehttp/guzzle", "guzzlehttp/promises", "guzzlehttp/psr7", "myclabs/deep-copy", "phar-io/manifest", "phar-io/version", "phpdocumentor/reflection-common", "phpdocumentor/reflection-docblock", "phpdocumentor/type-resolver", "phpspec/prophecy", "phpunit/php-code-coverage", "phpunit/php-file-iterator", "phpunit/php-text-template", "phpunit/php-timer", "phpunit/php-token-stream", "phpunit/phpunit", "psr/http-message", "sebastian/code-unit-reverse-lookup", "sebastian/comparator", "sebastian/diff", "sebastian/environment", "sebastian/exporter", "sebastian/global-state", "sebastian/object-enumerator", "sebastian/object-reflector", "sebastian/recursion-context", "sebastian/resource-operations", "sebastian/version", "symfony/console", "symfony/contracts", "symfony/polyfill-mbstring", "theseer/tokenizer", "webmozart/assert"], "https://github.com/hipster-philology/protogenie": ["click", "regex"], "https://github.com/PGijsbers/gama": ["black", "category-encoders", "liac-arff", "numpy", "pandas", "psutil", "scikit-learn", "scipy", "stopit"], "https://github.com/collab-uniba/personality": ["asn1crypto", "attrs", "automat", "beautifulsoup4", "certifi", "cffi", "chardet", "constantly", "cryptography", "cssselect", "gitdb2", "gitpython", "hyperlink", "idna", "incremental", "lxml", "mysqlclient", "nltk", "numpy", "parsel", "pyasn1", "pyasn1-modules", "pycparser", "pydispatcher", "pygit2", "pygithub", "pyjwt", "pyopenssl", "pysolr", "python-dateutil", "pytz", "pyyaml", "queuelib", "regex", "requests", "rpy2", "scrapy", "selenium", "service-identity", "six", "smmap2", "sqlalchemy", "sqlalchemy-utils", "twisted", "unidecode", "urllib3", "w3lib", "watson-developer-cloud", "zope-interface", "mysql-python"], "https://github.com/sertansenturk/makammusicbrainz": ["eyed3", "six"], "https://github.com/biowdl/germline-DNA": ["cromwell", "miniwdl", "pytest-workflow", "rtg-tools", "wdl-aid"], "https://github.com/CLARIAH/grlc": ["mock", "pytest", "docopt", "flask", "flask-cors", "gevent", "greenlet", "gunicorn", "html5lib", "isodate", "itsdangerous", "keepalive", "markupsafe", "pyaml", "pygithub", "pyparsing", "pyyaml", "rdflib", "rdflib-jsonld", "requests", "setuptools", "simplejson", "six", "sparqltransformer", "sparqlwrapper", "waitress", "werkzeug", "chai", "cors", "docco", "event-stream", "express", "gulp", "gulp-clean", "gulp-concat", "gulp-connect", "gulp-declare", "gulp-handlebars", "gulp-header", "gulp-jshint", "gulp-less", "gulp-order", "gulp-rename", "gulp-uglify", "gulp-watch", "gulp-wrap", "jshint-stylish", "less", "mocha", "selenium-webdriver", "swagger-client"], "https://github.com/openvax/isovar": ["cached-property", "nose", "pandas", "psutil", "pyensembl", "pylint", "pysam", "six", "varcode"], "https://github.com/iimog/wikidata-game-flower-color": ["doctrine/doctrine-bundle", "doctrine/doctrine-cache-bundle", "doctrine/orm", "incenteev/composer-parameter-handler", "php", "satooshi/php-coveralls", "sensio/distribution-bundle", "sensio/framework-extra-bundle", "sensio/generator-bundle", "symfony/monolog-bundle", "symfony/phpunit-bridge", "symfony/polyfill-apcu", "symfony/swiftmailer-bundle", "symfony/symfony", "doctrine/annotations", "doctrine/cache", "doctrine/collections", "doctrine/common", "doctrine/dbal", "doctrine/inflector", "doctrine/instantiator", "doctrine/lexer", "guzzle/guzzle", "jdorn/sql-formatter", "monolog/monolog", "paragonie/random_compat", "psr/cache", "psr/log", "sensiolabs/security-checker", "swiftmailer/swiftmailer", "symfony/polyfill-intl-icu", "symfony/polyfill-mbstring", "symfony/polyfill-php56", "symfony/polyfill-php70", "symfony/polyfill-util", "twig/twig"], "https://github.com/seawander/nmf_imaging": ["numpy", "scipy"], "https://github.com/GiulioRossetti/cdlib": ["aslpaw", "bimlpa", "demon", "eva-lcd", "future", "karateclub", "matplotlib", "networkx", "nf1", "numpy", "omega-index-py3", "pandas", "pquality", "pulp", "python-louvain", "scikit-learn", "scipy", "seaborn", "sphinx", "tqdm", "chinese-whispers", "markov-clustering", "angel-cd", "infomap", "leidenalg", "python-igraph", "wurlitzer"], "https://github.com/neuhofmo/RecBlast": ["argparse", "biopython", "matplotlib", "mygene", "numpy", "pandas", "requests", "seaborn", "uuid"], "https://github.com/cyverse-vice/jupyterlab-scipy": ["jupyter-server-proxy", "bokeh", "datashader", "descartes", "fiona", "geojson", "geojsonio", "geopandas", "geoviews", "hvplot", "ipyleaflet", "ipynb", "ipywidgets", "matplotlib", "numpy", "opencv-python", "pandas", "planet", "pyproj", "pytest", "rasterio", "requests", "scikit-image", "scikit-learn", "shapely", "tqdm"], "https://github.com/UWDIRECT/UWDIRECT.github.io": ["github-pages", "jekyll", "jekyll-sitemap", "octopress", "sass"], "https://github.com/CoffeaTeam/coffea": ["awkward", "awkward1", "cloudpickle", "futures", "ipywidgets", "lz4", "matplotlib", "mplhep", "numba", "numpy", "packaging", "pandas", "scipy", "tqdm", "uproot", "uproot-methods", "uproot4"], "https://github.com/Rothamsted/knetminer": ["com.brsanthu:google-analytics-java", "com.fasterxml.jackson.core:jackson-databind", "commons-io:commons-io", "javax.annotation:javax.annotation-api", "javax.servlet.jsp:javax.servlet.jsp-api", "javax.servlet:javax.servlet-api", "javax.servlet:jstl", "junit:junit", "net.sourceforge.ondex.core:lucene", "net.sourceforge.ondex.core:memory", "net.sourceforge.ondex.core:tools", "net.sourceforge.ondex.core:workflow-api", "net.sourceforge.ondex.modules:cyjs_json", "net.sourceforge.ondex.modules:generic", "net.sourceforge.ondex.modules:oxl", "org.apache.httpcomponents:httpclient", "org.apache.logging.log4j:log4j-1.2-api", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.logging.log4j:log4j-jcl", "org.apache.logging.log4j:log4j-slf4j-impl", "org.apache.logging.log4j:log4j-web", "org.apache.lucene:lucene-analyzers-common", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-pmd-plugin", "org.apache.maven.plugins:maven-project-info-reports-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.maven.plugins:maven-surefire-report-plugin", "org.apache.maven.plugins:maven-war-plugin", "org.apache.taglibs:taglibs-standard-spec", "org.codehaus.mojo:cobertura-maven-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.codehaus.mojo:taglist-maven-plugin", "org.json:json", "org.springframework:spring-core", "org.springframework:spring-web", "org.springframework:spring-webmvc", "org.tuckey:urlrewritefilter", "uk.ac.rothamsted.knetminer.backend:cypher-client", "uk.ac.rothamsted.knetminer.common:server-datasource-ondexlocal", "uk.ac.rothamsted.knetminer.common:client-base", "taglibs:standard", "uk.ac.rothamsted.knetminer.common:server-datasource-api"], "https://github.com/multipaths/DiffuPath": ["bio2bel", "chart-studio", "click", "diffupy", "matplotlib", "matplotlib-venn", "networkx", "numpy", "openpyxl", "pandas", "pathme", "plotly", "pybel", "scikit-learn", "scipy", "sphinx", "sphinx-autodoc-typehints", "sphinx-click", "sphinx-rtd-theme", "tqdm"], "https://github.com/matplotlib/mpl-probscale": ["matplotlib", "numpy"], "https://github.com/richardjgowers/GCMCbenchmarks": ["docopt", "numpy", "pandas", "scipy", "statsmodels"], "https://github.com/daft-dev/daft": ["atomicwrites", "attrs", "certifi", "colorama", "cycler", "entrypoints", "flake8", "importlib-metadata", "kiwisolver", "matplotlib", "mccabe", "more-itertools", "numpy", "packaging", "pluggy", "py", "pycodestyle", "pyflakes", "pyparsing", "pytest", "python-dateutil", "six", "wcwidth", "wincertstore", "zipp"], "https://github.com/arose/ngl": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-compilation-targets", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-external-helpers", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-bigint", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/register", "@babel/template", "@babel/traverse", "@babel/types", "@bcoe/v8-coverage", "@cnakazawa/watch", "@istanbuljs/load-nyc-config", "@istanbuljs/schema", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@sinonjs/commons", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/chroma-js", "@types/color-name", "@types/estree", "@types/events", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/jest", "@types/minimatch", "@types/node", "@types/promise-polyfill", "@types/signals", "@types/sprintf-js", "@types/stack-utils", "@types/yargs", "@types/yargs-parser", "abab", "acorn", "acorn-dynamic-import", "acorn-globals", "acorn-jsx", "acorn-walk", "ajv", "ajv-keywords", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-find-index", "array-includes", "array-union", "array-uniq", "array-unique", "arrify", "asn1", "assert-plus", "assertion-error", "assign-symbols", "astral-regex", "async-each", "asynckit", "atob", "aws-sign2", "aws4", "babel-code-frame", "babel-jest", "babel-plugin-array-includes", "babel-plugin-dynamic-import-node", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-preset-jest", "babelrc-rollup", "backbone", "balanced-match", "base", "bcrypt-pbkdf", "binary-extensions", "brace-expansion", "braces", "browser-process-hrtime", "browser-resolve", "browser-stdout", "browserslist", "bs-logger", "bser", "buble", "buffer-from", "builtin-modules", "cache-base", "call-me-maybe", "caller-path", "callsites", "camelcase", "camelcase-keys", "caniuse-lite", "capture-exit", "caseless", "chai", "chalk", "chardet", "check-error", "chokidar", "chroma-js", "ci-info", "circular-json", "class-utils", "cli-cursor", "cli-width", "cliui", "co", "collect-v8-coverage", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "commondir", "component-emitter", "concat-map", "concat-stream", "contains-path", "convert-source-map", "copy-descriptor", "core-js-compat", "core-util-is", "cp-file", "cpy", "cpy-cli", "cross-spawn", "cssom", "cssstyle", "currently-unhandled", "dashdash", "data-urls", "debug", "debug-log", "decamelize", "decamelize-keys", "decode-uri-component", "deep-eql", "deep-is", "define-properties", "define-property", "deglob", "del", "delayed-stream", "detect-newline", "diff", "diff-sequences", "dir-glob", "doctrine", "domexception", "ecc-jsbn", "electron-to-chromium", "emoji-regex", "end-of-stream", "error-ex", "es-abstract", "es-to-primitive", "escape-string-regexp", "escodegen", "eslint", "eslint-plugin-import", "eslint-plugin-react", "jest", "mocha", "promise-polyfill", "rollup", "rollup-plugin-babel", "rollup-plugin-buble", "rollup-plugin-commonjs", "rollup-plugin-internal", "rollup-plugin-json", "rollup-plugin-node-resolve", "rollup-watch", "signals", "slimerjs", "source-map-support", "sprintf-js", "standard", "three", "ts-jest", "typedoc", "typescript", "uglify-js", "update", "download", "file-api", "performance-now"], "https://github.com/fa-me/spotlob": ["dill", "ipympl", "ipython", "ipywidgets", "m2r", "matplotlib", "nbval", "numpy", "opencv-python", "pandas", "pillow", "pytest", "pytest-cov", "setuptools", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "tox", "voila"], "https://github.com/thompsonsed/pycoalescence": ["-", "configparser", "gdal", "numpy", "pandas", "breathe", "exhale", "ipykernel", "nbsphinx", "sphinx"], "https://github.com/sdss/marvin": ["babel-preset-es2015", "grunt", "grunt-babel", "grunt-bootlint", "grunt-contrib-concat", "grunt-contrib-cssmin", "grunt-contrib-imagemin", "grunt-contrib-sass", "grunt-contrib-uglify", "grunt-newer", "load-grunt-tasks"], "https://github.com/brmather/pycurious": ["cython", "numpy", "pytest", "scipy", "webdav"], "https://github.com/MHKiT-Software/MHKiT-MATLAB": ["pandas"], "https://github.com/sigsep/sigsep-mus-2018-website": ["@babel/code-frame", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-split-export-declaration", "@babel/highlight", "@babel/template", "@babel/traverse", "@babel/types", "@sindresorhus/is", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "acorn-jsx", "ajv", "ajv-keywords", "align-text", "alphanum-sort", "amdefine", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-find-index", "array-flatten", "array-includes", "array-union", "array-uniq", "array-unique", "arrify", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "babel-code-frame", "babel-core", "babel-eslint", "babel-generator", "babel-helper-bindify-decorators", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-explode-class", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helper-vue-jsx-merge-props", "babel-helpers", "babel-loader", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-async-generators", "babel-plugin-syntax-class-properties", "babel-plugin-syntax-decorators", "babel-plugin-syntax-dynamic-import", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-jsx", "babel-plugin-syntax-object-rest-spread", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-generator-functions", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-class-properties", "babel-plugin-transform-decorators", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-regenerator", "babel-plugin-transform-runtime", "babel-plugin-transform-strict-mode", "babel-plugin-transform-vue-jsx", "babel-preset-env", "babel-preset-stage-2", "babel-preset-stage-3", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "balloon-css", "base", "base64-js", "batch", "bcrypt-pbkdf", "bfj-node4", "big.js", "binary-extensions", "block-stream", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browser-split", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "bulma", "bulmaswatch", "bytes", "cacache", "cache-base", "cacheable-request", "caller-path", "callsites", "camel-case", "camelcase", "camelcase-keys", "camelize", "caniuse-api", "caniuse-db", "caniuse-lite", "caseless", "center-align", "chalk", "chardet", "check-types", "chokidar", "chownr", "cipher-base", "circular-json", "clap", "class-utils", "clean-css", "cli-cursor", "cli-spinners", "cli-width", "cliui", "clone", "clone-deep", "clone-response", "co", "coa", "coalescy", "code-point-at", "collection-visit", "color", "color-convert", "color-name", "color-string", "colormin", "colors", "combined-stream", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "console-browserify", "console-control-strings", "consolidate", "constants-browserify", "contains-path", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "copy-webpack-plugin", "core-js", "core-util-is", "cosmiconfig", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "css-color-names", "css-loader", "css-select", "css-selector-tokenizer", "css-what", "cssesc", "cssnano", "csso", "cuint", "currently-unhandled", "cyclist", "d", "d3", "d3-array", "d3-axis", "d3-brush", "d3-chord", "d3-collection", "d3-color", "eslint", "eslint-config-standard", "eslint-friendly-formatter", "eslint-loader", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-standard", "eslint-plugin-vue", "extract-text-webpack-plugin", "file-loader", "font-awesome", "friendly-errors-webpack-plugin", "howler", "html-webpack-plugin", "mousetrap", "node-notifier", "node-sass", "optimize-css-assets-webpack-plugin", "ora", "portfinder", "postcss-import", "postcss-loader", "postcss-url", "rimraf", "sass-loader", "semver", "shelljs", "uglifyjs-webpack-plugin", "url-loader", "vue", "vue-awesome", "vue-lazyload", "vue-loader", "vue-markdown", "vue-resource", "vue-router", "vue-spinner", "vue-style-loader", "vue-template-compiler", "waveform-playlist", "webpack", "webpack-bundle-analyzer", "webpack-dev-server", "webpack-merge", "numpy", "pandas", "python-dateutil", "pytz", "six"], "https://github.com/amusecode/amuse": ["docutils", "h5py", "mpi4py", "numpy", "pytest", "setuptools", "wheel", "matplotlib", "amuse-framework", "nose", "pip"], "https://github.com/bwbohl/introduction-to-mei": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@rollup/plugin-commonjs", "@rollup/plugin-node-resolve", "@rollup/pluginutils", "@types/color-name", "@types/estree", "@types/mime-types", "@types/node", "@types/resolve", "abbrev", "accepts", "acorn", "acorn-jsx", "agent-base", "ajv", "amdefine", "ansi-colors", "ansi-escapes", "ansi-gray", "ansi-regex", "ansi-styles", "ansi-wrap", "anymatch", "append-buffer", "aproba", "archy", "are-we-there-yet", "argparse", "arr-diff", "arr-filter", "arr-flatten", "arr-map", "arr-union", "array-each", "array-find-index", "array-initial", "array-last", "array-slice", "array-sort", "array-unique", "asn1", "assert-plus", "assign-symbols", "astral-regex", "async-done", "async-each", "async-foreach", "async-limiter", "async-settle", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "babel-eslint", "babel-plugin-dynamic-import-node", "babel-plugin-transform-html-import-to-string", "bach", "balanced-match", "base", "batch", "bcrypt-pbkdf", "binary-extensions", "bindings", "block-stream", "body", "brace-expansion", "braces", "browserslist", "buffer-crc32", "buffer-equal", "buffer-from", "builtin-modules", "bytes", "cache-base", "callsites", "camelcase", "camelcase-keys", "caniuse-lite", "caseless", "chalk", "chardet", "chokidar", "class-utils", "clean-css", "cli-cursor", "cli-width", "cliui", "clone", "clone-buffer", "clone-stats", "cloneable-readable", "code-point-at", "collection-map", "collection-visit", "color-convert", "color-name", "color-support", "colors", "combined-stream", "commander", "commondir", "component-emitter", "concat-map", "concat-stream", "concat-with-sourcemaps", "connect", "connect-livereload", "console-control-strings", "continuable-cache", "convert-source-map", "copy-descriptor", "copy-props", "core-js", "core-js-compat", "core-util-is", "cross-spawn", "currently-unhandled", "d", "dashdash", "debug", "decamelize", "decode-uri-component", "deep-is", "default-compare", "default-resolution", "define-properties", "define-property", "delayed-stream", "delegates", "depd", "destroy", "detect-file", "doctrine", "duplexify", "each-props", "ecc-jsbn", "ee-first", "electron-to-chromium", "emoji-regex", "encodeurl", "end-of-stream", "error", "error-ex", "es5-ext", "es6-iterator", "es6-symbol", "es6-weak-map", "escape-html", "escape-string-regexp", "eslint", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "estree-walker", "esutils", "etag", "expand-brackets", "expand-tilde", "ext", "extend", "extend-shallow", "external-editor", "glob", "gulp", "gulp-autoprefixer", "gulp-clean-css", "gulp-connect", "gulp-eslint", "gulp-header", "gulp-sass", "gulp-tap", "gulp-zip", "highlight.js", "marked", "node-qunit-puppeteer", "qunit", "rollup", "rollup-plugin-babel", "rollup-plugin-terser", "yargs"], "https://github.com/JaneliaSciComp/SharkViewer": ["@babel/cli", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/polyfill", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/runtime-corejs3", "@babel/template", "@babel/traverse", "@babel/types", "@janelia/three-orbit-unlimited-controls", "@types/glob", "@types/json-schema", "@types/json5", "@types/minimatch", "@types/node", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "accepts", "acorn", "acorn-jsx", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "argparse", "aria-query", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-includes", "array-union", "array-uniq", "array-unique", "array.prototype.flat", "array.prototype.flatmap", "asn1.js", "assert", "assign-symbols", "ast-types-flow", "astral-regex", "async", "async-each", "async-limiter", "atob", "axe-core", "axobject-query", "babel-plugin-dynamic-import-node", "balanced-match", "base", "base64-js", "batch", "big.js", "binary-extensions", "bindings", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "callsites", "camel-case", "camelcase", "caniuse-lite", "chalk", "chardet", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "clean-css", "clean-stack", "clean-webpack-plugin", "cli-cursor", "cli-width", "cliui", "collection-visit", "color-convert", "color-name", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "confusing-browser-globals", "connect-history-api-fallback", "console-browserify", "constants-browserify", "contains-path", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "core-js", "core-js-compat", "core-js-pure", "core-util-is", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "css-select", "css-what", "cyclist", "damerau-levenshtein", "debug", "decamelize", "decode-uri-component", "deep-equal", "deep-is", "default-gateway", "define-properties", "define-property", "eslint", "eslint-config-airbnb", "eslint-config-prettier", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-prettier", "eslint-plugin-react", "html-webpack-plugin", "minimist", "prettier", "rimraf", "terser-webpack-plugin", "three", "three-obj-loader", "three-orbit-controls", "webpack", "webpack-cli", "webpack-dev-server", "webpack-merge"], "https://github.com/KeplerGO/lightkurve": ["codacy-coverage", "codecov", "pytest", "pytest-cov", "pytest-doctestplus", "pytest-remotedata", "astropy", "astroquery", "bokeh", "bs4", "fbpca", "ipython", "matplotlib", "numba", "numpy", "oktopus", "pandas", "patsy", "requests", "scipy", "tqdm", "uncertainties", "amunra-sphinx-theme", "ghp-import", "graphviz", "nbsphinx", "numpydoc", "pandocfilters", "sphinx", "sphinx-automodapi", "sphinxcontrib-rawfiles"], "https://github.com/transientlunatic/gravpy": ["astropy", "matplotlib", "numpy", "scipy", "numpydoc", "sphinx", "coverage", "py", "pytest"], "https://github.com/astroufsc/chimera": ["coverage", "nose", "wheel"], "https://github.com/cogan-shimizu-wsu/ExperimentAnnotationTracker": ["abbrev", "accord", "ajv", "align-text", "ansi-colors", "ansi-cyan", "ansi-escapes", "ansi-gray", "ansi-red", "ansi-regex", "ansi-styles", "ansi-wrap", "anymatch", "append-buffer", "archy", "argparse", "arr-diff", "arr-filter", "arr-flatten", "arr-map", "arr-union", "array-differ", "array-each", "array-initial", "array-last", "array-slice", "array-sort", "array-union", "array-uniq", "array-unique", "asap", "asn1", "assert-plus", "assign-symbols", "async", "async-done", "async-each", "async-settle", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "bach", "balanced-match", "base", "bcrypt-pbkdf", "beeper", "better-console", "binary-extensions", "binaryextensions", "bindings", "brace-expansion", "braces", "browserslist", "buffer-equal", "buffer-from", "cache-base", "camelcase", "caniuse-lite", "caseless", "center-align", "chalk", "chardet", "chokidar", "class-utils", "clean-css", "cli-cursor", "cli-table", "cli-width", "cliui", "clone", "clone-buffer", "clone-stats", "cloneable-readable", "code-point-at", "collection-map", "collection-visit", "color-convert", "color-name", "color-support", "colors", "combined-stream", "commander", "component-emitter", "concat-map", "concat-stream", "concat-with-sourcemaps", "config-chain", "convert-source-map", "copy-descriptor", "copy-props", "core-util-is", "css", "d", "dashdash", "dateformat", "debug", "decamelize", "decode-uri-component", "deep-assign", "deepmerge", "default-compare", "default-resolution", "defaults", "define-properties", "define-property", "del", "delayed-stream", "deprecated", "detect-file", "detect-indent", "diff", "duplexer", "duplexer2", "duplexify", "each-props", "ecc-jsbn", "editions", "editorconfig", "electron-to-chromium", "end-of-stream", "errno", "error-ex", "es5-ext", "es6-iterator", "es6-symbol", "es6-weak-map", "escape-string-regexp", "event-stream", "expand-brackets", "expand-range", "expand-tilde", "ext", "extend", "extend-shallow", "external-editor", "extglob", "extsprintf", "fancy-log", "fast-deep-equal", "fast-json-stable-stringify", "figures", "file-uri-to-path", "filename-regex", "fill-range", "find-index", "find-up", "findup", "findup-sync", "fined", "first-chunk-stream", "flagged-respawn", "flush-write-stream", "for-in", "for-own", "forever-agent", "fork-stream", "form-data", "fragment-cache", "from", "fs-mkdirp-stream", "fs.realpath", "fsevents", "function-bind", "gaze", "get-caller-file", "get-imports", "get-value", "getpass", "glob", "glob-base", "glob-parent", "glob-stream", "glob-watcher", "glob2base", "global-modules", "global-prefix", "globby", "globule", "glogg", "graceful-fs", "growly", "gulp", "gulp-autoprefixer", "gulp-chmod", "gulp-clean-css", "gulp-clone", "gulp-concat", "gulp-concat-css", "gulp-copy", "gulp-dedupe", "gulp-flatten", "gulp-header", "gulp-help", "gulp-if", "gulp-json-editor", "gulp-less", "gulp-match", "gulp-notify", "gulp-plumber", "gulp-print", "gulp-rename", "gulp-replace", "gulp-rtlcss", "gulp-uglify", "gulp-util", "gulp-watch", "gulplog", "har-schema", "har-validator", "has", "has-ansi", "has-flag", "has-gulplog", "has-symbols", "has-value", "has-values", "homedir-polyfill", "hosted-git-info", "http-signature", "iconv-lite", "image-size", "import-regex", "indx", "inflight", "inherits", "ini", "inquirer", "interpret", "invert-kv", "ip-regex", "is", "is-absolute", "is-accessor-descriptor", "is-arrayish", "is-binary-path", "is-buffer", "is-data-descriptor", "is-descriptor", "is-dotfile", "is-equal-shallow", "is-extendable", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-negated-glob", "is-number", "is-obj", "is-path-cwd"], "https://github.com/jenojp/extractacy": ["pytest", "spacy"], "https://github.com/aaronSig/rainforest-rhythms": ["@reach/router", "@turf/turf", "@types/howler", "@types/isomorphic-fetch", "@types/jest", "@types/marked", "@types/node", "@types/reach__router", "@types/react", "@types/react-dom", "@types/react-leaflet", "@types/react-medium-image-zoom", "@types/react-redux", "@types/react-slick", "@types/redux", "@types/redux-thunk", "@types/reselect", "date-fns", "eslint-plugin-react-hooks", "howler", "immutable", "isomorphic-fetch", "leaflet", "mdx.macro", "react", "react-dom", "react-leaflet", "react-medium-image-zoom", "react-redux", "react-scripts", "react-spring", "redux", "redux-thunk", "reselect", "typescript", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-call-delegate", "@babel/helper-create-class-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-flow", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-typescript", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-flow-strip-types", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-constant-elements", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-typescript", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@cnakazawa/watch", "@csstools/convert-colors", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@mdx-js/mdx", "@mdx-js/tag", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@svgr/babel-plugin-add-jsx-attribute", "@svgr/babel-plugin-remove-jsx-attribute", "@svgr/babel-plugin-remove-jsx-empty-expression", "@svgr/babel-plugin-replace-jsx-attribute-value", "@svgr/babel-plugin-svg-dynamic-title", "@svgr/babel-plugin-svg-em-dimensions", "@svgr/babel-plugin-transform-react-native-svg", "@svgr/babel-plugin-transform-svg-component", "@svgr/babel-preset", "@svgr/core", "@svgr/hast-util-to-babel-ast", "@svgr/plugin-jsx", "@svgr/plugin-svgo", "@svgr/webpack", "@turf/along", "@turf/area", "@turf/bbox", "@turf/bbox-clip", "@turf/bbox-polygon", "@turf/bearing", "@turf/bezier-spline", "@turf/boolean-clockwise", "@turf/boolean-contains", "@turf/boolean-crosses", "@turf/boolean-disjoint", "@turf/boolean-equal", "@turf/boolean-overlap", "@turf/boolean-parallel", "@turf/boolean-point-in-polygon", "@turf/boolean-point-on-line", "@turf/boolean-within", "@turf/buffer", "@turf/center", "@turf/center-mean", "@turf/center-median", "@turf/center-of-mass", "@turf/centroid", "@turf/circle", "@turf/clean-coords", "@turf/clone", "@turf/clusters", "@turf/clusters-dbscan", "@turf/clusters-kmeans", "@turf/collect", "@turf/combine", "@turf/concave", "@turf/convex", "@turf/destination", "@turf/difference", "@turf/dissolve", "@turf/distance", "@turf/ellipse", "@turf/envelope", "@turf/explode", "@turf/flatten", "@turf/flip", "@turf/great-circle", "@turf/helpers", "@turf/hex-grid", "@turf/interpolate", "@turf/intersect", "@turf/invariant", "@turf/isobands", "@turf/isolines", "@turf/kinks", "@turf/length", "@turf/line-arc", "@turf/line-chunk", "@turf/line-intersect", "@turf/line-offset", "@turf/line-overlap", "@turf/line-segment", "@turf/line-slice", "@turf/line-slice-along", "@turf/line-split", "@turf/line-to-polygon", "@turf/mask", "@turf/meta", "@turf/midpoint", "@turf/nearest-point", "@turf/nearest-point-on-line", "@turf/nearest-point-to-line", "@turf/planepoint", "@turf/point-grid", "@turf/point-on-feature", "@turf/point-to-line-distance", "@turf/points-within-polygon", "@turf/polygon-tangents", "@turf/polygon-to-line", "@turf/polygonize", "@turf/projection", "@turf/random", "@turf/rewind", "@turf/rhumb-bearing", "@turf/rhumb-destination", "@turf/rhumb-distance", "@turf/sample", "@turf/sector", "@turf/shortest-path", "@turf/simplify", "@turf/square", "@turf/square-grid", "@turf/standard-deviational-ellipse", "@turf/tag", "@turf/tesselate", "@turf/tin", "@turf/transform-rotate", "@turf/transform-scale", "@turf/transform-translate", "@turf/triangle-grid", "@turf/truncate", "@turf/union", "@turf/unkink-polygon", "@turf/voronoi", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/geojson", "@types/history", "@types/hoist-non-react-statics", "@types/istanbul-lib-coverage", "@types/jest-diff", "@types/leaflet", "@types/prop-types", "@types/q", "@types/stack-utils"], "https://github.com/valentina-s/time-series-nmf": ["numpy", "scipy"], "https://github.com/Nikronic/Optimized-MDVRP": ["codecov", "numpy", "pytest", "scipy"], "https://github.com/pr-omethe-us/PyTeCK": ["cantera", "numpy", "pint", "pyked", "pytest", "pytest-cov", "pyyaml", "scipy", "tables"], "https://github.com/bumps/bumps": ["six"], "https://github.com/jtempkin/enhanced_sampling_toolkit": ["numpy"], "https://github.com/automatedskip/homerent.io": ["absl-py", "appnope", "astor", "astunparse", "attrs", "backcall", "bleach", "cachetools", "certifi", "chardet", "click", "cycler", "decorator", "defusedxml", "entrypoints", "et-xmlfile", "flask", "gast", "google-auth", "google-auth-oauthlib", "google-pasta", "grpcio", "h5py", "idna", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "itsdangerous", "jdcal", "jedi", "jinja2", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "keras", "keras-applications", "keras-preprocessing", "kiwisolver", "markdown", "markupsafe", "matplotlib", "mistune", "nbconvert", "nbformat", "notebook", "numpy", "oauthlib", "openpyxl", "opt-einsum", "pandas", "pandocfilters", "parso", "patsy", "pexpect", "pickleshare", "plotly", "prometheus-client", "prompt-toolkit", "protobuf", "ptyprocess", "pyasn1", "pyasn1-modules", "pygments", "pyparsing", "pyrsistent", "python-dateutil", "pytz", "pyyaml", "pyzmq", "qtconsole", "qtpy", "requests", "requests-oauthlib", "retrying", "rsa", "scikit-learn", "scipy", "seaborn", "send2trash", "simplejson", "six", "sklearn", "statsmodels", "tensorboard", "tensorboard-plugin-wit", "tensorflow", "tensorflow-estimator", "termcolor", "terminado", "testpath", "tornado", "traitlets", "urllib3", "uwsgi", "wcwidth", "webencodings", "werkzeug", "widgetsnbextension", "wrapt", "xlrd", "zipp"], "https://github.com/a-slide/NanoCount": ["colorlog", "pandas", "pysam", "tqdm"], "https://github.com/NLeSC/dask-cassandra-loader": ["cassandra-driver", "dask", "fsspec", "pandas", "sqlalchemy", "coverage", "distributed", "pycodestyle", "pytest", "pytest-cov"], "https://github.com/explosion/spaCy": ["blis", "catalogue", "cymem", "cython", "flake8", "jsonschema", "mock", "murmurhash", "numpy", "pathlib", "plac", "preshed", "pytest", "pytest-timeout", "requests", "srsly", "thinc", "tqdm", "wasabi", "@jupyterlab/outputarea", "@jupyterlab/rendermime", "@mdx-js/mdx", "@mdx-js/tag", "@phosphor/widgets", "@rehooks/online-status", "@sindresorhus/slugify", "@svgr/webpack", "autoprefixer", "browser-monads", "classnames", "codemirror", "gatsby", "gatsby-image", "gatsby-mdx", "gatsby-plugin-catch-links", "gatsby-plugin-manifest", "gatsby-plugin-offline", "gatsby-plugin-plausible", "gatsby-plugin-react-helmet", "gatsby-plugin-react-svg", "gatsby-plugin-sass", "gatsby-plugin-sharp", "gatsby-plugin-sitemap", "gatsby-plugin-svgr", "gatsby-remark-copy-linked-files", "gatsby-remark-images", "gatsby-remark-prismjs", "gatsby-remark-smartypants", "gatsby-remark-unwrap-images", "gatsby-source-filesystem", "gatsby-transformer-remark", "gatsby-transformer-sharp", "html-to-react", "intersection-observer", "md-attr-parser", "node-sass", "parse-numeric-range", "prettier", "prismjs", "prop-types", "raw-loader", "react", "react-dom", "react-helmet", "react-intersection-observer", "remark-react", "unist-util-visit"], "https://github.com/mjuez/TFM2016_Analisis-Visual-Revisiones-Codigo": ["@octokit/rest", "@types/bluebird", "@types/body-parser", "@types/chai", "@types/chai-as-promised", "@types/chai-http", "@types/express", "@types/mathjs", "@types/mocha", "@types/mongoose", "@types/node", "@types/sinon", "@types/sinon-mongoose", "@types/twix", "bluebird", "body-parser", "chai", "chai-as-promised", "chai-http", "cheerio", "express", "gulp", "gulp-sourcemaps", "gulp-typedoc", "gulp-typescript", "json2csv", "mathjs", "mocha", "moment", "mongoose", "request", "request-promise", "sinon", "sinon-mongoose", "ts-node", "tslint", "twix", "typedoc", "typescript", "@types/debug", "@types/morgan", "debug", "morgan"], "https://github.com/owlcollab/owltools": ["org.apache.maven.plugins:maven-surefire-plugin", "org.bbop:OWLTools-Core", "org.apache.httpcomponents:httpclient", "org.bbop:OWLTools-Annotation", "com.google.guava:guava", "com.googlecode.javaewah:JavaEWAH", "org.apache.commons:commons-lang3", "org.apache.commons:commons-math3", "javax.servlet:servlet-api", "org.bbop:OWLTools-Sim", "org.eclipse.jetty:jetty-server", "com.google.code.gson:gson", "commons-io:commons-io", "de.derivo:sparqldl-api", "log4j:log4j", "net.sf.trove4j:trove4j", "net.sourceforge.owlapi:org.semanticweb.hermit", "net.sourceforge.owlapi:owlapi-distribution", "org.apache.ant:ant", "org.apache.commons:commons-math", "org.apache.maven.plugins:maven-jar-plugin", "org.bbop:oboformat-tools", "org.geneontology:expression-materializing-reasoner", "org.geneontology:obographs", "org.prefixcommons:curie-util", "org.semanticweb.elk:elk-owlapi", "uk.ac.ebi.interpro:graphdraw", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.solr:solr-solrj", "org.forester:Forester", "org.geneontology.lego:Lego", "org.yaml:snakeyaml", "commons-collections:commons-collections", "junit:junit", "org.apache.jena:jena-core", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.wagon:wagon-ssh", "org.codehaus.mojo:versions-maven-plugin", "org.slf4j:jcl-over-slf4j", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "rhino:js", "org.apache.maven.plugins:maven-resources-plugin", "org.bbop:OWLTools-Oort", "org.bbop:OWLTools-Solr", "org.bbop:OWLTools-Web", "org.skife.maven:really-executable-jar-maven-plugin", "pl.project13.maven:git-commit-id-plugin"], "https://github.com/mmhss/sstrong-import": ["com.amazonaws:aws-java-sdk", "com.amazonaws:aws-lambda-java-core", "com.amazonaws:aws-lambda-java-events", "com.heroku.sdk:heroku-maven-plugin", "com.itglance.base:base", "com.mysema.maven:apt-maven-plugin", "com.querydsl:querydsl-apt", "com.querydsl:querydsl-jpa", "commons-io:commons-io", "mysql:mysql-connector-java", "org.projectlombok:lombok", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-batch", "org.springframework.boot:spring-boot-starter-data-jpa"], "https://github.com/I2Cvb/retinopathy": ["ipython", "joblib", "markupsafe", "matplotlib", "mock", "nose", "numpy", "scikit-learn", "scipy", "sphinx", "sphinx-rtd-theme", "terminado", "tornado", "virtualenv", "virtualenv-clone", "virtualenvwrapper"], "https://github.com/sgsaenger/vipster": ["@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "abbrev", "ajv", "amdefine", "ansi-align", "ansi-regex", "ansi-styles", "anymatch", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-find-index", "array-union", "array-uniq", "array-unique", "asn1", "assert-plus", "assign-symbols", "async-each", "async-foreach", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "balanced-match", "base", "bcrypt-pbkdf", "binary-extensions", "block-stream", "bootstrap", "boxen", "brace-expansion", "braces", "browserslist", "cache-base", "call-me-maybe", "caller-callsite", "caller-path", "callsites", "camelcase", "camelcase-keys", "caniuse-lite", "capture-stack-trace", "caseless", "chalk", "chokidar", "ci-info", "class-utils", "cli-boxes", "cliui", "code-point-at", "collection-visit", "color-convert", "color-name", "combined-stream", "component-emitter", "concat-map", "configstore", "console-control-strings", "copy-descriptor", "core-util-is", "cosmiconfig", "create-error-class", "cross-spawn", "crypto-random-string", "currently-unhandled", "dashdash", "debug", "decamelize", "decode-uri-component", "deep-extend", "define-property", "delayed-stream", "delegates", "dependency-graph", "dir-glob", "dot-prop", "duplexer3", "ecc-jsbn", "electron-to-chromium", "end-of-stream", "error-ex", "escape-string-regexp", "esprima", "execa", "expand-brackets", "extend", "extend-shallow", "extglob", "extsprintf", "fast-deep-equal", "fast-glob", "fast-json-stable-stringify", "fill-range", "find-up", "for-in", "forever-agent", "form-data", "fragment-cache", "fs-extra", "fs.realpath", "fsevents", "fstream", "gauge", "gaze", "get-caller-file", "get-stdin", "get-stream", "get-value", "getpass", "glob", "glob-parent", "glob-to-regexp", "global-dirs", "globby", "globule", "got", "graceful-fs", "har-schema", "har-validator", "has-ansi", "has-flag", "has-unicode", "has-value", "has-values", "hosted-git-info", "http-signature", "ignore", "ignore-by-default", "import-cwd", "import-fresh", "import-from", "import-lazy", "imurmurhash", "in-publish", "indent-string", "inflight", "inherits", "ini", "invert-kv", "is-accessor-descriptor", "is-arrayish", "is-binary-path", "is-buffer", "is-ci", "is-data-descriptor", "is-descriptor", "is-directory", "is-extendable", "is-extglob", "is-finite", "is-fullwidth-code-point", "is-glob", "is-installed-globally", "is-npm", "is-number", "is-obj", "is-path-inside", "is-plain-object", "is-redirect", "is-retry-allowed", "is-stream", "is-typedarray", "is-utf8", "is-windows", "isarray", "isexe", "isobject", "isstream", "js-base64", "js-yaml", "jsbn", "json-parse-better-errors", "json-schema", "json-schema-traverse", "json-stringify-safe", "jsonfile", "jsprim", "kind-of", "latest-version", "lcid", "load-json-file", "locate-path", "lodash", "log-symbols", "loud-rejection", "lowercase-keys", "lru-cache", "make-dir", "map-age-cleaner", "map-cache", "map-obj", "map-visit", "mem", "meow", "merge2", "micromatch", "mime-db", "mime-types", "mimic-fn", "minimatch", "minimist", "mixin-deep", "mkdirp", "ms", "nan", "nanomatch", "nice-try", "node-gyp", "node-releases", "node-sass", "nodemon", "nopt", "normalize-package-data", "normalize-path", "normalize-range", "npm-run-path", "npmlog", "num2fraction", "number-is-nan", "oauth-sign", "object-assign", "object-copy", "object-visit", "object.pick", "once", "os-homedir", "os-locale", "os-tmpdir", "osenv", "p-defer", "p-finally", "p-is-promise", "p-limit", "p-locate", "p-try", "package-json", "parse-json", "pascalcase", "path-dirname", "path-exists", "postcss-cli"], "https://github.com/SHDShim/PeakPo": ["matplotlib", "periodictable", "pyfai", "pymatgen", "pyopencl", "pyqt4", "pytheos", "uncertainties"], "https://github.com/rangeetpan/decomposeDNNintoModules": ["graphviz", "keras", "matplotlib", "mpmath", "numpy", "pytest", "scikit-image", "scikit-learn", "tensorflow"], "https://github.com/InsightSoftwareConsortium/ITKColorNormalization": ["ritk", "itk-spcn", "itkwidgets"], "https://github.com/coin-or/Dip": ["coinor-gimpy", "pulp"], "https://github.com/Thales1330/PSP": ["jekyll", "jekyll-seo-tag", "@docusaurus/core", "@docusaurus/preset-classic", "clsx", "galleria", "react", "react-dom", "rehype-katex", "remark-math"], "https://github.com/fepegar/torchio": ["bump2version", "click", "codecov", "coverage", "coveralls", "flake8", "mypy", "pip", "pre-commit", "pylint", "pytest", "pytest-cov", "sphinx", "sphinx-rtd-theme", "tox", "twine", "watchdog", "wheel", "humanize", "nibabel", "numpy", "python-deprecated", "scipy", "simpleitk", "torch", "torchvision", "tqdm"], "https://github.com/phenoscape/phenoscape-owl-tools": ["appdirs", "funcsigs", "matplotlib", "mock", "nose", "numpy", "packaging", "pandas", "patsy", "pbr", "pyparsing", "python-dateutil", "pytz", "scipy", "six", "statsmodels"], "https://github.com/htcondor/htcondor-ce": ["cherrypy", "flask", "genshi", "htcondor", "linkchecker", "mkdocs", "mkdocs-material", "pymdown-extensions"], "https://github.com/hugadams/pyparty": ["scikit-image", "traits"], "https://github.com/NLeSC/baklava": ["configparser", "ipaddress", "ruamel-yaml", "hacking", "mock", "pytest"], "https://github.com/howardyclo/grammar-pattern": ["certifi", "cymem", "cytoolz", "dill", "editdistance", "en-core-web-lg", "joblib", "msgpack-numpy", "msgpack-python", "murmurhash", "nltk", "numpy", "pathlib", "plac", "preshed", "prettytable", "regex", "six", "spacy", "termcolor", "theano", "thinc", "toolz", "tqdm", "ujson", "wrapt"], "https://github.com/ufbmi/mdc_search": ["grunt", "grunt-angular-templates", "grunt-autoprefixer", "grunt-concurrent", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-htmlmin", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-filerev", "grunt-google-cdn", "grunt-newer", "grunt-ng-annotate", "grunt-svgmin", "grunt-usemin", "grunt-wiredep", "jit-grunt", "jshint-stylish", "time-grunt"], "https://github.com/aplowman/first-principles-zr-grain-boundaries": ["atomistic", "autopep8", "castep-parse", "humanize", "ipykernel", "lammps-parse", "numpy", "pylint", "rope", "ruamel-yaml"], "https://github.com/dlozeve/tda-networks": ["altair", "beakerx", "bokeh", "cython", "dask", "dill", "dionysus", "graphviz", "ipyparallel", "jupyter", "jupyterlab", "matplotlib", "network2tikz", "networkx", "nltk", "numpy", "pandas", "pyclustering", "python-igraph", "python-language-server", "scikit-learn", "scipy", "sklearn_tda", "autopep8", "backcall", "bleach", "click", "cloudpickle", "cycler", "decorator", "distributed", "entrypoints", "future", "heapdict", "html5lib", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "jsonschema", "jupyter-client", "jupyter-console", "jupyter-core", "jupyterlab-launcher", "kiwisolver", "locket", "markupsafe", "mccabe", "mistune", "msgpack", "nbconvert", "nbformat", "notebook", "packaging", "pandocfilters", "parso", "partd", "pexpect", "pickleshare", "pluggy", "prometheus-client", "prompt-toolkit", "psutil", "ptyprocess", "py4j", "pycodestyle", "pydocstyle", "pyflakes", "pygments", "pyparsing", "python-dateutil", "python-jsonrpc-server", "pytz", "pyyaml", "pyzmq", "qtconsole", "rope", "send2trash", "simplegeneric", "six", "sklearn-tda", "snowballstemmer", "sortedcontainers", "tblib", "terminado", "testpath", "toolz", "tornado", "traitlets", "typing", "wcwidth", "webencodings", "widgetsnbextension", "yapf", "zict"], "https://github.com/mustakcsecuet/COIN-Attacks": ["VSSDK.CoreUtility", "VSSDK.CoreUtility.10", "VSSDK.Editor", "VSSDK.Editor.10", "VSSDK.IDE", "VSSDK.IDE.10", "VSSDK.IDE.8", "VSSDK.IDE.9", "VSSDK.OLE.Interop", "VSSDK.Shell.10", "VSSDK.Shell.Immutable.10", "VSSDK.Shell.Interop", "VSSDK.Shell.Interop.8", "VSSDK.Shell.Interop.9", "VSSDK.Text", "VSSDK.Text.10", "VSSDK.TextManager.Interop", "VSSDK.TextManager.Interop.8"], "https://github.com/LargerPanda/ceph": ["configobj", "coverage", "discover", "fixtures", "flake8", "mock", "pytest", "python-subunit", "testrepository", "testtools", "tox", "pecan", "argparse", "requests"], "https://github.com/glukicov/ML_GPU": ["atari-py", "ftfy", "graphviz", "imageio", "ipywidgets", "joblib", "jupyter", "matplotlib", "nbdime", "nltk", "numexpr", "numpy", "opencv-python", "pandas", "pillow", "pydot", "pyglet", "requests", "scikit-image", "scikit-learn", "scipy", "spacy", "tensorboard", "tensorboard-plugin-profile", "tensorflow", "tensorflow-datasets", "tensorflow-hub", "tensorflow-serving-api", "tf-agents", "tqdm", "transformers", "urlextract", "xgboost", "gym", "tensorflow-addons", "tensorflow-probability", "tfx"], "https://github.com/devitocodes/devito": ["cupy-cuda102", "dask-cuda", "dask-labextension", "jupyterlab", "jupyterlab-nvdashboard", "ipyparallel", "matplotlib", "mpi4py", "pandas", "anytree", "cached-property", "cgen", "click", "codecov", "codepy", "distributed", "flake8", "multidict", "nbval", "numpy", "pip", "psutil", "py-cpuinfo", "pyrevolve", "pytest", "pytest-cov", "pytest-runner", "scipy", "sympy"], "https://github.com/pnlbwh/TBSS": ["dipy", "matplotlib", "nibabel", "nilearn", "numpy", "pandas", "plumbum", "psutil", "pynrrd", "pytest"], "https://github.com/scipy/scipy": ["cython", "matplotlib", "mpmath", "numpy", "pillow", "pybind11", "pytest", "pytest-env", "pytest-timeout", "pytest-xdist"], "https://github.com/DiamondLightSource/SuRVoS": ["cython", "h5py", "matplotlib", "mrcfile", "networkx", "numpy", "pandas", "scikit-image", "scikit-learn", "scipy", "seaborn", "six", "tifffile"], "https://github.com/wri/restoration-mapper": ["awscli", "boto3", "click", "coverage", "flake8", "geopandas", "hickle", "keras", "matplotlib", "pandas", "pycountry", "pycountry-convert", "pytest", "python-dotenv", "reverse-geocoder", "s2cloudless", "scikit-image", "scipy", "seaborn", "sentinelhub", "sphinx", "tensorflow", "tflearn", "tqdm"], "https://github.com/ICB-DCM/tumor2d": ["pytest"], "https://github.com/sertansenturk/symbtrdataextractor": ["networkx", "numpy", "python-levenshtein"], "https://github.com/chrisma/ScrumLint": ["distribute", "django", "django-bootstrap3", "django-extensions", "django-model-utils", "django-suit", "greenlet", "jsonfield", "requests", "six", "wsgiref"], "https://github.com/TheoryInPractice/BEAVr": ["matplotlib", "networkx", "numpy", "pydot", "wxpython"], "https://github.com/jloveric/high-order-layers": ["autopep8", "gym", "matplotlib", "numpy", "pandas", "sklearn", "tensorflow", "tensorflow-datasets", "absl-py", "astunparse", "attrs", "cachetools", "certifi", "chardet", "cloudpickle", "cycler", "dill", "future", "gast", "google-auth", "google-auth-oauthlib", "google-pasta", "googleapis-common-protos", "grpcio", "h5py", "idna", "joblib", "keras-preprocessing", "kiwisolver", "markdown", "oauthlib", "opt-einsum", "promise", "protobuf", "pyasn1", "pyasn1-modules", "pycodestyle", "pyglet", "pyparsing", "python-dateutil", "pytz", "requests", "requests-oauthlib", "rsa", "scikit-learn", "scipy", "six", "tensorboard", "tensorboard-plugin-wit", "tensorflow-estimator", "tensorflow-metadata", "termcolor", "threadpoolctl", "tqdm", "urllib3", "werkzeug", "wheel", "wrapt"], "https://github.com/jcreinhold/selfsupervised3d": ["numpy", "torch", "torchvision"], "https://github.com/mlp6/fem": ["ipython", "jupyter", "jupyterlab", "pylint", "pytest", "pytest-cov", "pytest-pep8", "sphinx", "sphinxcontrib-napoleon", "pytest-xdist", "h5py", "matplotlib", "numpy", "pyevtk", "scipy"], "https://github.com/Eden-Kramer-Lab/replay_trajectory_classification": ["dask", "joblib", "matplotlib", "networkx", "numba", "numpy", "pandas", "patsy", "pytest", "regularized-glm", "scikit-learn", "scipy", "statsmodels", "xarray"], "https://github.com/nschloe/colorio": ["colorspacious", "colour-science", "perfplot", "pygmsh"], "https://github.com/tsalo/convert-eprime": ["future", "numpy", "pandas", "setuptools"], "https://github.com/projectglow/glow": ["nptyping", "numpy", "pandas", "typeguard"], "https://github.com/FRidh/scintillations": ["numpy", "scipy", "streaming", "acoustics", "pytest"], "https://github.com/pitt-rnel/perceptmapper": ["kivy", "pyyaml"], "https://github.com/carnisj/bcdi": ["-ipyw-jlab-nb-ext-conf", "alabaster", "anaconda-client", "anaconda-navigator", "apptools", "argon2-cffi", "asteval", "attrs", "babel", "backcall", "beautifulsoup4", "blas", "bleach", "blosc", "brotlipy", "bzip2", "ca-certificates", "certifi", "cffi", "chardet", "cloudpickle", "clyent", "cmarkgfm", "colorama", "conda", "conda-build", "conda-package-handling", "configobj", "console-shortcut", "cryptography", "cycler", "cython", "cytoolz", "dask-core", "decorator", "defusedxml", "docutils", "entrypoints", "envisage", "fabio", "filelock", "freetype", "future", "glob2", "h5py", "hdf5", "hdf5plugin", "icc-rt", "icu", "idna", "imageio", "imagesize", "importlib-metadata", "intel-openmp", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "joblib", "jpeg", "json5", "jsonschema", "jupyter-client", "jupyter-core", "jupyterlab", "jupyterlab-server", "kiwisolver", "libpng", "libsodium", "libtiff", "lmfit", "lz4-c", "lzo", "m2w64-gcc-libgfortran", "m2w64-gcc-libs", "m2w64-gcc-libs-core", "m2w64-gmp", "m2w64-libwinpthread-git", "markupsafe", "matplotlib", "matplotlib-base", "mayavi", "menuinst", "mistune", "mkl", "mkl-fft", "mkl-random", "mkl-service", "msys2-conda-epoch", "navigator-updater", "nbconvert", "nbformat", "networkx", "notebook", "numexpr", "numpy", "numpy-base", "olefile", "openssl", "packaging", "pandoc", "pandocfilters", "parso", "pickleshare", "pillow", "pip", "pkginfo", "powershell-shortcut", "prometheus-client", "prompt-toolkit", "psutil", "pycosat", "pycparser", "pyface", "pygments", "pyopengl", "pyopenssl", "pyparsing", "pyqt", "pyrsistent", "pysocks", "pytables", "python", "python-dateutil", "pytz", "pywavelets", "pywin32", "pywinpty", "pyyaml", "pyzmq", "qt", "qtpy", "readme-renderer", "requests", "requests-toolbelt", "ruamel-yaml", "scikit-image", "scikit-learn", "scipy", "send2trash", "setuptools", "silx", "sip", "six", "snappy", "snowballstemmer", "soupsieve", "sphinx", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "sqlite", "terminado", "testpath", "threadpoolctl", "tk", "toolz", "tornado", "tqdm", "traitlets", "traits", "traitsui", "twine", "uncertainties", "urllib3", "vc", "vs2015-runtime", "vtk", "wcwidth", "webencodings", "wheel", "widgetsnbextension", "win-inet-pton", "wincertstore", "winpty", "xmltodict", "xrayutilities", "xz", "yaml", "zeromq", "zipp", "zlib", "zstd"], "https://github.com/pysal/esda": ["libpysal", "pandas", "scikit-learn", "scipy", "coverage", "coveralls", "nose", "nose-exclude", "nose-progressive", "sphinx", "sphinxcontrib-napoleon", "numpydoc", "sphinx-bootstrap-theme", "sphinx-gallery", "sphinxcontrib-bibtex", "numba", "codecov", "geopandas", "pytest", "pytest-cov", "twine"], "https://github.com/pedropro/TACO": ["cython", "graphviz", "jupyter", "matplotlib", "numpy", "pandas", "pillow", "requests", "seaborn"], "https://github.com/nkratzke/twista": ["certifi", "click", "flask", "jupyterlab", "matplotlib", "neo4j", "py2neo", "python-dateutil", "termcolor", "tqdm", "tweepy"], "https://github.com/MicroPasts/egyptExplorationSocietyBuhen": ["pybossa-client"], "https://github.com/Lasagne/Lasagne": ["jinja2", "mock", "numpydoc", "pep8", "pytest", "pytest-cov", "pytest-pep8", "sphinx", "sphinx-rtd-theme", "theano", "numpy"], "https://github.com/Andros-Spica/EMAC-Angourakis-et-al-2019": ["express", "grunt-cli", "mustache", "socket.io"], "https://github.com/fg-inet/DASH-streaming-setup": ["@types/mime-types", "agent-base", "async-limiter", "balanced-match", "brace-expansion", "buffer-crc32", "buffer-from", "concat-map", "concat-stream", "core-util-is", "debug", "extract-zip", "fd-slicer", "fs.realpath", "glob", "https-proxy-agent", "inflight", "inherits", "isarray", "mime", "mime-db", "mime-types", "minimatch", "minimist", "mkdirp", "ms", "once", "path-is-absolute", "pend", "process-nextick-args", "progress", "proxy-from-env", "puppeteer", "puppeteer-core", "readable-stream", "rimraf", "safe-buffer", "string_decoder", "typedarray", "util-deprecate", "wrappy", "ws", "yauzl", "abbrev", "accepts", "ansi-align", "anymatch", "array-flatten", "basic-auth", "binary-extensions", "body-parser", "boxen", "braces", "bytes", "capture-stack-trace", "chokidar", "ci-info", "cli-boxes", "codem-isoboxer", "color-convert", "color-name", "configstore", "content-disposition", "content-type", "cookie", "cookie-parser", "cookie-signature", "create-error-class", "cross-spawn", "crypto-random-string", "dashjs", "deep-extend", "depd", "destroy", "dot-prop", "duplexer3", "ee-first", "encodeurl", "escape-html", "escape-string-regexp", "etag", "express", "fast-deep-equal", "fill-range", "finalhandler", "forwarded", "fresh", "fsevents", "get-stream", "glob-parent", "global-dirs", "got", "graceful-fs", "has-flag", "http-errors", "iconv-lite", "ignore-by-default", "import-lazy", "imsc", "imurmurhash", "ini", "ipaddr.js", "is-binary-path", "is-ci", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-installed-globally", "is-npm", "is-number", "is-obj", "is-path-inside", "is-redirect", "is-retry-allowed", "is-stream", "isexe", "latest-version", "lowercase-keys", "lru-cache", "make-dir", "media-typer", "merge-descriptors", "methods", "morgan", "negotiator", "nodemon", "nopt", "normalize-path", "on-finished", "on-headers", "p-finally", "package-json", "parseurl", "path-is-inside", "path-to-regexp", "picomatch", "prepend-http", "proxy-addr", "pseudomap", "pstree.remy", "qs", "range-parser", "raw-body", "rc", "readdirp", "registry-auth-token", "registry-url", "safer-buffer", "sax", "semver", "semver-diff", "send", "serve-static", "setprototypeof", "shebang-command", "shebang-regex", "signal-exit", "statuses", "strip-eof", "strip-json-comments", "term-size", "timed-out", "to-regex-range", "toidentifier", "touch", "type-is", "undefsafe", "unique-string", "unpipe", "unzip-response", "update-notifier", "url-parse-lax", "utils-merge", "vary", "which", "widest-line", "write-file-atomic", "xdg-basedir", "yallist"], "https://github.com/JiaweiZhuang/xESMF": ["ipython", "nbsphinx", "numpydoc"], "https://github.com/astrorama/SourceXtractorPlusPlus": ["sphinxcontrib-bibtex"], "https://github.com/ssec/sift": ["appdirs", "blockdiag", "numpy", "pillow", "pyproj", "pyyaml", "sphinx-rtd-theme", "sphinxcontrib-blockdiag", "sphinxcontrib-seqdiag", "sqlalchemy", "donfig", "h5py", "imageio", "matplotlib", "netcdf4", "numba", "pygrib", "pyqt5", "pyqtgraph", "pyshp", "rasterio", "satpy", "scikit-image", "shapely", "vispy"], "https://github.com/IMMM-SFA/proxymod": ["configobj"], "https://github.com/bgruening/docker-galaxy-stable": ["amqp", "anyjson", "babel", "beaker", "bioblend", "boto", "bx-python", "cheetah", "decorator", "dictobj", "docutils", "ecdsa", "fabric", "kombu", "mako", "markdown", "markupsafe", "mercurial", "nose", "numpy", "paramiko", "parsley", "paste", "pastedeploy", "pbr", "psutil", "pulsar-galaxy-lib", "pycrypto", "pyparsing", "pysam", "pytz", "pyyaml", "repoze-lru", "requests", "requests-toolbelt", "routes", "six", "sqlalchemy", "sqlalchemy-migrate", "sqlparse", "svgwrite", "tempita", "testfixtures", "wchartype", "webhelpers", "webob", "whoosh"], "https://github.com/reflectometry/refl1d": ["docutils", "ipython", "jinja2", "nose", "periodictable", "pyreadline", "setuptools", "sphinx", "wheel", "wxpython", "bumps", "matplotlib", "numpy", "scipy"], "https://github.com/napari/napari": ["black", "check-manifest", "flake8", "pre-commit", "recommonmark", "scikit-image", "sphinx", "sphinx-rtd-theme", "pygithub", "tqdm", "twine", "fsspec", "pandas", "pooch", "pytest", "pytest-faulthandler", "pytest-ordering", "pytest-qt", "pytest-timeout", "xarray", "zarr"], "https://github.com/sgrieve/spatial_efd": ["codecov", "flake8", "future", "matplotlib", "numpy", "pyshp", "pytest-cov", "pytest"], "https://github.com/genn-team/genn": ["deprecated", "numpy", "psutil", "six"], "https://github.com/AxFoundation/strax": ["blosc", "boto3", "dill", "immutabledict", "lz4", "numba", "numexpr", "numpy", "packaging", "pandas", "pdmongo", "psutil", "pymongo", "scipy", "tqdm", "zstd"], "https://github.com/pofatu/pypofatu": ["attrs", "clldutils", "pybtex", "tqdm", "xlrd"], "https://github.com/bsc-mem/UEPREDICT": ["imbalanced-learn", "lightgbm", "matplotlib", "numpy", "pandas", "scikit-learn", "tensorflow"], "https://github.com/Smart-Contract-Modelling-uOttawa/Symboleo-Compliance-Checker": ["com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.jolira:onejar-maven-plugin", "it.unibo.alice.tuprolog:2p-core", "it.unibo.alice.tuprolog:tuprolog", "org.apache.logging.log4j:log4j-1.2-api", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-appserver", "org.apache.logging.log4j:log4j-cassandra", "org.apache.logging.log4j:log4j-core", "org.apache.logging.log4j:log4j-couchdb", "org.apache.logging.log4j:log4j-flume-ng", "org.apache.logging.log4j:log4j-iostreams", "org.apache.logging.log4j:log4j-jcl", "org.apache.logging.log4j:log4j-jdbc-dbcp2", "org.apache.logging.log4j:log4j-jmx-gui", "org.apache.logging.log4j:log4j-jpa", "org.apache.logging.log4j:log4j-jul", "org.apache.logging.log4j:log4j-liquibase", "org.apache.logging.log4j:log4j-mongodb3", "org.apache.logging.log4j:log4j-taglib", "org.apache.logging.log4j:log4j-web"], "https://github.com/smarie/python-spawny": ["future", "psutil", "pytest", "pytest-logging", "virtualenv", "mkdocs", "mkdocs-material", "pytest-html", "pytest-runner", "setuptools-scm", "xunitparser", "coverage", "pylint", "pytest-cov", "requests", "pandoc", "pypandoc"], "https://github.com/usnistgov/jarvis": ["joblib", "matplotlib", "numpy", "pytest", "requests", "scipy", "spglib", "toolz", "xmltodict"], "https://github.com/diana-hep/carl": ["astropy", "coverage", "numpy", "pytest", "pytest-cov", "pytest-pep8", "scikit-learn", "scipy", "six", "theano"], "https://github.com/PTB-PSt1/PyDynamic": ["matplotlib", "numpy", "pandas", "scipy", "alabaster", "appdirs", "astroid", "async-generator", "attrs", "babel", "bleach", "cffi", "chardet", "click", "click-log", "colorama", "commonmark", "coverage", "cryptography", "dataclasses", "decorator", "defusedxml", "distlib", "docutils", "entrypoints", "filelock", "gitdb", "gitpython", "idna", "imagesize", "importlib-metadata", "importlib-resources", "iniconfig", "invoke", "ipython-genutils", "isort", "jeepney", "jinja2", "jsonschema", "jupyter-client", "jupyter-core", "jupyterlab-pygments", "keyring", "lazy-object-proxy", "markupsafe", "mccabe", "mistune", "more-itertools", "mypy-extensions", "nbclient", "nbconvert", "nbformat", "nest-asyncio", "packaging", "pandocfilters", "pathspec", "pkginfo", "pluggy", "py", "pycparser", "pygments", "pyrsistent", "python-gitlab", "pyzmq", "readme-renderer", "regex", "requests", "requests-toolbelt", "rfc3986", "secretstorage", "semver", "smmap", "snowballstemmer", "sortedcontainers", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "testpath", "toml", "tornado", "tqdm", "traitlets", "twine", "typed-ast", "typing-extensions", "urllib3", "virtualenv", "webencodings", "wheel", "wrapt", "zipp", "certifi", "cycler", "kiwisolver", "pillow", "pyparsing", "python-dateutil", "pytz", "six"], "https://github.com/mne-tools/mne-python": ["dipy", "h5py", "imageio", "imageio-ffmpeg", "joblib", "jupyter", "matplotlib", "mayavi", "nibabel", "nilearn", "numba", "numexpr", "numpy", "pandas", "psutil", "pyqt5", "pyqt5-sip", "pysurfer", "python-picard", "pyvista", "pyvistaqt", "scikit-learn", "scipy", "sip", "statsmodels", "tqdm", "vtk", "xlrd", "memory-profiler", "neo", "seaborn", "sphinx", "sphinx-bootstrap-theme", "sphinx-fontawesome", "check-manifest", "flake8", "flake8-array-spacing", "pydocstyle", "pytest", "pytest-cov", "pytest-harvest", "pytest-timeout", "twine", "wheel"], "https://github.com/mlbernauer/drugstandards": ["python-levenshtein"], "https://github.com/kundajelab/kerasAC": ["abstention", "boto3", "deeplift", "h5py", "keras", "numpy", "pandas", "psutil", "pybigwig", "pysam", "tables", "tiledb"], "https://github.com/felicitia/TestAnalyzer": ["aniso8601", "appnope", "asn1crypto", "attrs", "backcall", "beautifulsoup4", "bleach", "boto", "boto3", "botocore", "bs4", "bz2file", "certifi", "cffi", "chardet", "click", "colorama", "cryptography", "cython", "decorator", "defusedxml", "docutils", "entrypoints", "flask", "flask-restful", "gensim", "idna", "importlib-metadata", "inflect", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "itsdangerous", "jaraco-itertools", "jedi", "jinja2", "jmespath", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "lxml", "markupsafe", "mistune", "more-itertools", "nbconvert", "nbformat", "notebook", "numpy", "pandas", "pandocfilters", "parso", "pep517", "pexpect", "pickleshare", "prometheus-client", "prompt-toolkit", "ptyprocess", "pycparser", "pygments", "pyopenssl", "pyrsistent", "pysocks", "python-dateutil", "pytoml", "pytz", "pyzmq", "qtconsole", "requests", "s3transfer", "scipy", "send2trash", "six", "smart-open", "soupsieve", "terminado", "testpath", "tornado", "traitlets", "urllib3", "virtualenv", "wcwidth", "webencodings", "werkzeug", "widgetsnbextension", "zipp"], "https://github.com/sshilpika/error-log-analysis": ["-libgcc-mutex", "attrs", "backcall", "bleach", "ca-certificates", "certifi", "chardet", "click", "cycler", "datetime", "dbus", "decorator", "defusedxml", "entrypoints", "expat", "findspark", "flask", "flask-sijax", "fontconfig", "freetype", "future", "glib", "gmp", "gst-plugins-base", "gstreamer", "h5py", "icu", "idna", "importlib-metadata", "influxdb", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "itsdangerous", "jedi", "jinja2", "joblib", "jpeg", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "keras", "keras-applications", "keras-preprocessing", "kiwisolver", "ld-impl-linux-64", "libedit", "libffi", "libgcc-ng", "libpng", "libsodium", "libstdcxx-ng", "libuuid", "libxcb", "libxml2", "markupsafe", "matplotlib", "mistune", "nbconvert", "nbformat", "ncurses", "notebook", "numpy", "openssl", "pandas", "pandoc", "pandocfilters", "parso", "patsy", "pcre", "pexpect", "pickleshare", "pip", "prometheus-client", "prompt-toolkit", "ptyprocess", "py4j", "pygments", "pyparsing", "pyqt", "pyrsistent", "pyspark", "python", "python-dateutil", "pytz", "pyyaml", "pyzmq", "qt", "qtconsole", "readline", "requests", "scikit-learn", "scipy", "send2trash", "setuptools", "sijax", "sip", "six", "sqlalchemy", "sqlalchemy-utils", "sqlite", "statsmodels", "terminado", "testpath", "theano", "tk", "tornado", "traitlets", "urllib3", "wcwidth", "webencodings", "werkzeug", "wheel", "widgetsnbextension", "xz", "zeromq", "zipp", "zlib", "zope-interface"], "https://github.com/dhermes/bezier": ["numpy", "sphinx", "sphinx-docstring-typing", "sphinx-rtd-theme", "pytest", "scipy", "sympy"], "https://github.com/sphinx-gallery/sphinx-gallery": ["check-manifest", "flake8", "joblib", "matplotlib", "numpy", "pillow", "plotly", "pytest", "pytest-coverage", "seaborn", "sphinx", "sphinx-rtd-theme", "sphinx-gallery"], "https://github.com/pysal/pysal": ["access", "coverage", "esda", "giddy", "inequality", "libpysal", "mapclassify", "mgwr", "pointpats", "pytest", "pytest-cov", "python-dateutil", "segregation", "spaghetti", "spglm", "spint", "splot", "spreg", "spvcm", "tobler", "urllib3", "bokeh", "coveralls", "ipywidgets", "jupyter", "nose", "nose-progressive", "pytest-mpl", "sphinx", "sphinxcontrib-napoleon", "statsmodels", "twine", "wheel", "doc2dash", "numpydoc", "sphinx-bootstrap-theme", "sphinx-gallery", "sphinxcontrib-bibtex", "descartes", "folium", "geojson", "geopandas", "matplotlib", "mplleaflet", "numba", "numexpr", "palettable", "pandana", "scikit-learn", "seaborn", "urbanaccess", "nose-exclude", "pandas"], "https://github.com/numericalalgorithmsgroup/pybobyqa": ["numpy", "pandas", "scipy", "nose"], "https://github.com/PyNIPT/pynipt": ["pandas", "paralexe", "psutil", "shleeh", "tqdm"], "https://github.com/jesford/cluster-lensing": ["astropy", "cluster-lensing", "numpy", "pandas", "scipy"], "https://github.com/cosanlab/nltools": ["deepdish", "joblib", "matplotlib", "nibabel", "nilearn", "numpy", "pandas", "pynv", "scikit-learn", "scipy", "seaborn", "six", "networkx", "sphinx", "sphinx-bootstrap-theme", "sphinx-gallery", "sphinxcontrib-napoleon", "sphinxcontrib-yt"], "https://github.com/plantinformatics/pretzel": ["@kyleshockey/object-assign-deep", "@types/body-parser", "@types/connect", "@types/express", "@types/express-serve-static-core", "@types/ldapjs", "@types/mime", "@types/node", "@types/passport", "@types/serve-static", "abbrev", "accept-language", "accepts", "acorn", "acorn-jsx", "ajv", "ajv-keywords", "ansi-align", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "arrify", "asn1", "assert-plus", "assertion-error", "assign-symbols", "async", "async-each", "asynckit", "atob", "aws-sign2", "aws4", "babel-code-frame", "babel-runtime", "backoff", "balanced-match", "base", "base64-js", "basic-auth", "bcp47", "bcrypt-pbkdf", "bcryptjs", "bent", "binary-extensions", "bl", "bluebird", "body-parser", "bops", "boxen", "brace-expansion", "braces", "browser-stdout", "bson", "btoa", "buffer", "buffer-shims", "bunyan", "bytes", "bytesish", "cache-base", "caller-path", "callsites", "camelcase", "camelize", "canonical-json", "capture-stack-trace", "caseless", "chai", "chalk", "charenc", "check-error", "chokidar", "ci-info", "circular-json", "class-utils", "cldrjs", "cli-boxes", "cli-cursor", "cli-width", "co", "code-point-at", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "configstore", "connect", "content-disposition", "content-security-policy-builder", "content-type", "cookie", "cookie-signature", "cookiejar", "copy-descriptor", "core-js", "core-util-is", "cors", "create-error-class", "cross-fetch", "cross-spawn", "crypt", "crypto-random-string", "d", "dashdash", "dashify", "debug", "decode-uri-component", "deep-eql", "deep-equal", "deep-extend", "deep-is", "define-property", "del", "delayed-stream", "depd", "destroy", "diff", "dns-prefetch-control", "doctrine", "dom-serializer", "domelementtype", "domhandler", "domutils", "dont-sniff-mimetype", "dot-prop", "dtrace-provider", "duplex", "duplexer", "duplexer3", "ecc-jsbn", "ee-first", "ejs", "encode-3986", "encodeurl", "encoding", "entities", "es5-ext", "es6-iterator", "es6-map", "es6-promise", "es6-promisify", "es6-set", "es6-symbol", "es6-weak-map", "escape-html", "escape-string-regexp", "escope", "eslint", "eslint-config-loopback", "espree", "esquery", "esrecurse", "estraverse", "esutils", "etag", "event-emitter", "eventemitter2", "eventsource", "execa", "exit-hook", "expand-brackets", "express", "express-sse", "extend-shallow", "extglob", "extsprintf", "eyes", "fast-deep-equal", "fast-json-patch", "fast-json-stable-stringify", "fast-levenshtein", "figures", "file-entry-cache", "fill-range", "finalhandler", "flat-cache", "for-in", "forever-agent", "form-data", "formidable", "forwarded", "fragment-cache", "frameguard", "fresh", "from", "fs.realpath", "fsevents", "generate-function", "generate-object-property", "get-func-name", "get-stream", "get-value", "getpass", "glob", "glob-parent", "global-dirs", "globalize", "globals", "globby", "got", "graceful-fs", "growl", "har-schema", "har-validator", "has-ansi", "has-flag", "has-value", "has-values", "he", "helmet", "helmet-csp", "hide-powered-by", "hpkp", "hsts", "htmlparser2", "http-errors", "http-signature", "http-status", "httpntlm", "httpreq", "iconv-lite", "ieee754", "ienoopen", "ignore", "ignore-by-default", "import-lazy", "imurmurhash", "inflection", "inflight", "inherits", "ini", "inquirer", "interpret", "invert-kv", "jquery-param", "lodash", "loopback", "loopback-boot", "loopback-component-explorer", "loopback-component-passport", "loopback-connector-mongodb", "loopback-datasource-juggler", "memory-cache", "mocha", "mongoose", "morgan", "node", "nodemon", "nsp", "passport-ldapauth", "qs", "serve-favicon", "smtp-server", "strong-error-handler", "superagent", "binary-search-bounds", "bootstrap", "broccoli-asset-rev", "colresizable", "d3-scale-chromatic", "ember-ajax", "ember-array-helper", "ember-auto-import", "ember-bootstrap", "ember-browserify", "ember-cli", "ember-cli-app-version", "ember-cli-babel", "ember-cli-build-date", "ember-cli-dependency-checker", "ember-cli-document-title", "ember-cli-htmlbars", "ember-cli-htmlbars-inline-precompile", "ember-cli-inject-live-reload", "ember-cli-jshint", "ember-cli-jsoneditor", "ember-cli-qunit", "ember-cli-release", "ember-cli-sass", "ember-cli-shims", "ember-cli-sri", "ember-cli-test-loader", "ember-cli-uglify", "ember-component-inbound-actions", "ember-composable-helpers", "ember-concurrency", "ember-content-editable", "ember-contextual-table", "ember-csv", "ember-data", "ember-data-model-fragments", "ember-data-partial-model", "ember-export-application-global", "ember-load-initializers", "ember-lodash", "ember-modal-dialog", "ember-promise-helpers", "ember-radio-button", "ember-resolver", "ember-run-raf", "ember-scroll-to", "ember-simple-auth", "ember-toggle", "ember-tooltips", "ember-truth-helpers", "ember-ui-sortable", "ember-welcome-page", "ember-wormhole", "jsoneditor", "loader.js", "moment", "node-sass", "normalize-wheel", "phantom", "sass"], "https://github.com/ryanpdwyer/1605-phasekick": ["beautifulsoup4", "bunch", "munch", "pathlib", "requests", "seaborn", "setuptools-git", "tqdm", "lxml"], "https://github.com/NatLibFi/Skosmos": ["components/handlebars.js", "components/jquery", "components/jqueryui", "davidstutz/bootstrap-multiselect", "easyrdf/easyrdf", "etdsolutions/waypoints", "ext-gettext", "ext-intl", "ext-mbstring", "ext-xsl", "grimmlink/qtip2", "malihu/malihu-custom-scrollbar-plugin", "medialize/uri.js", "ml/json-ld", "mockery/mockery", "monolog/monolog", "newerton/jquery-mousewheel", "pamelafox/lscache", "phpunit/phpunit", "punic/punic", "symfony/dom-crawler", "twig/extensions", "twig/twig", "twitter/bootstrap", "twitter/typeahead.js", "umpirsky/twig-gettext-extractor", "vakata/jstree", "willdurand/negotiation"], "https://github.com/jcchiba/GANSta": ["absl-py", "astor", "certifi", "gast", "google-pasta", "grpcio", "h5py", "keras-applications", "keras-preprocessing", "kthread", "markdown", "mock", "opencv-python", "protobuf", "pyqt5", "pyqt5-sip", "python-minifier", "six", "termcolor", "tqdm", "werkzeug", "wrapt"], "https://github.com/chembience/chembience": ["django", "django-extensions", "djangorestframework", "uwsgi", "lxml", "markdown", "numpy", "pillow", "psycopg2", "pygments", "requests", "six", "jupyter", "sqlparse", "hashids", "psycopg2-binary", "django-dbbackup"], "https://github.com/Quantum-TII/qprime": ["numba", "numpy"], "https://github.com/OpenKnowledgeMaps/Headstart": ["@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-builder-react-jsx-experimental", "@babel/helper-call-delegate", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-development", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-react-pure-annotations", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-react", "@babel/template", "@babel/traverse", "@babel/types", "@types/glob", "@types/minimatch", "@types/node", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abbrev", "accepts", "acorn", "adjust-sourcemap-loader", "ajv", "ajv-errors", "ajv-keywords", "amdefine", "ansi-colors", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "are-we-there-yet", "argparse", "arity-n", "arr-diff", "arr-flatten", "arr-union", "array-find-index", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "aws-sign2", "aws4", "babel-code-frame", "babel-core", "babel-generator", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-replace-supers", "babel-helpers", "babel-loader", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-dynamic-import-node", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-object-assign", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-preset-es2015", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "block-stream", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "bootstrap", "bootstrap-sass", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "caller-callsite", "caller-path", "callsites", "camel-case", "camelcase", "camelcase-keys", "caniuse-lite", "caseless", "chalk", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "clean-css", "clean-webpack-plugin", "cliui", "clone-deep", "co", "code-point-at", "collection-visit", "color-convert", "color-name", "combined-stream", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "babel-eslint", "babel-jest", "babel-preset-jest", "copy-webpack-plugin", "css-loader", "d3", "dateformat", "dsv-loader", "enzyme", "enzyme-adapter-react-16", "eslint", "eslint-config-react-app", "eslint-plugin-flowtype", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "eslint-plugin-react-hooks", "exports-loader", "expose-loader", "external-loader", "fibers", "file-loader", "font-awesome", "handlebars", "handlebars-loader", "hoek", "html-webpack-plugin", "hyphenation.en-us", "hypher", "imports-loader", "javascript-state-machine", "jest", "jquery", "mark.js", "mediator-js", "mini-css-extract-plugin", "node-sass", "php-loader", "popper.js", "postcss-loader", "react", "react-bootstrap", "react-dom", "react-redux", "react-test-renderer", "redux", "redux-mock-store", "resolve", "resolve-url-loader", "sass", "sass-loader", "shave", "style-loader", "truncate", "url-loader", "webpack", "webpack-cli", "webpack-dev-server", "webpack-merge", "aioredis", "certifi", "elasticsearch", "elasticsearch-dsl", "flasgger", "flask", "flask-cors", "flask-restx", "flask-sqlalchemy", "google-api-python-client", "google-auth-httplib2", "google-auth-oauthlib", "gunicorn", "hiredis", "marshmallow", "nltk", "pandas", "pandas-schema", "pytest", "pyyaml", "redis", "scikit-learn", "spacy", "spacy-cld", "werkzeug"], "https://github.com/radnut/amc": ["numpydoc", "sphinx"], "https://github.com/omuse-geoscience/omuse": ["amuse-framework", "docutils", "f90nml", "h5py", "mpi4py", "netcdf4", "nose", "numpy", "wheel", "setuptools", "cdsapi"], "https://github.com/klugem/watchdog": ["com.beust:jcommander", "com.google.code.gson:gson", "com.jcraft:jsch", "com.sun.mail:javax.mail", "commons-codec:commons-codec", "commons-io:commons-io", "edu.princeton.cup:java-cup", "io.github.classgraph:classgraph", "net.sf.jsignature.io-tools:easystream", "org.apache.commons:commons-lang3", "org.apache.commons:commons-vfs2", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.codehaus.mojo:license-maven-plugin", "org.ini4j:ini4j", "org.nanohttpd:nanohttpd", "org.opengis.cite.xerces:xercesImpl-xsd11", "org.openjfx:javafx-controls", "org.openjfx:javafx-fxml", "org.slf4j:slf4j-nop", "us.levk:drmaa-common"], "https://github.com/nils-wisiol/pypuf": ["matplotlib", "numpy", "pandas", "polymath", "pycodestyle", "pylint", "scikit-learn", "scipy", "seaborn", "sp80022suite"], "https://github.com/ladisk/pyDIC": ["cycler", "kiwisolver", "matplotlib", "numpy", "pyparsing", "pyqt5", "pyqtgraph", "python-dateutil", "pytz", "scipy", "sip", "six", "tqdm"], "https://github.com/easyDiffraction/easyDiffraction": ["easyinterface", "numpy", "pyside2", "pyyaml"], "https://github.com/pauleve/pint": ["boolean-py", "colomoto-jupyter", "networkx"], "https://github.com/e5k/TephraProb": ["requests", "tqdm", "check-manifest", "detox", "pip-tools", "pyroma", "tox", "tox-pyenv", "zest-releaser", "pytest", "pytest-cov", "pytest-env", "pytest-flakes", "pytest-mccabe", "pytest-pep8", "pytest-runner"], "https://github.com/fmalmeida/bacannot": ["sphinx", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml"], "https://github.com/delph-in/pydmrs": ["pydelphin"], "https://github.com/GenericMappingTools/pygmt": ["black", "blackdoc", "coverage", "flake8", "ipython", "jupyter", "matplotlib", "nbsphinx", "pylint", "pytest", "pytest-cov", "pytest-mpl", "sphinx", "sphinx-gallery", "sphinx-rtd-theme", "netcdf4", "numpy", "packaging", "pandas", "xarray"], "https://github.com/pymedphys/pymedphys": ["autopep8", "mypy", "pylint", "deepdiff", "pytest", "pytest-cov", "tox", "xlwings", "cypress", "@cypress/listr-verbose-renderer", "@cypress/request", "@cypress/xvfb", "@samverschueren/stream-to-observable", "@types/sinonjs__fake-timers", "@types/sizzle", "ajv", "ansi-escapes", "ansi-regex", "ansi-styles", "any-observable", "arch", "asn1", "assert-plus", "async", "asynckit", "aws-sign2", "aws4", "balanced-match", "bcrypt-pbkdf", "bluebird", "brace-expansion", "buffer-crc32", "buffer-from", "cachedir", "caseless", "chalk", "check-more-types", "ci-info", "cli-cursor", "cli-table3", "cli-truncate", "code-point-at", "color-convert", "color-name", "colors", "combined-stream", "commander", "common-tags", "concat-map", "concat-stream", "core-util-is", "cross-spawn", "dashdash", "date-fns", "debug", "delayed-stream", "ecc-jsbn", "elegant-spinner", "end-of-stream", "escape-string-regexp", "eventemitter2", "execa", "executable", "exit-hook", "extend", "extract-zip", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "fd-slicer", "figures", "forever-agent", "form-data", "fs-extra", "fs.realpath", "get-stream", "getos", "getpass", "glob", "global-dirs", "graceful-fs", "har-schema", "har-validator", "has-ansi", "has-flag", "http-signature", "indent-string", "inflight", "inherits", "ini", "is-ci", "is-fullwidth-code-point", "is-installed-globally", "is-observable", "is-path-inside", "is-promise", "is-stream", "is-typedarray", "isarray", "isexe", "isstream", "jsbn", "json-schema", "json-schema-traverse", "json-stringify-safe", "jsonfile", "jsprim", "lazy-ass", "listr", "listr-silent-renderer", "listr-update-renderer", "listr-verbose-renderer", "lodash", "lodash.once", "log-symbols", "log-update", "mime-db", "mime-types", "mimic-fn", "minimatch", "minimist", "mkdirp", "moment", "ms", "nice-try", "npm-run-path", "number-is-nan", "oauth-sign", "object-assign", "once", "onetime", "ospath", "p-finally", "p-map", "path-is-absolute", "path-key", "pend", "performance-now", "pify", "pretty-bytes", "process-nextick-args", "psl", "pump", "punycode", "qs", "querystring", "ramda", "readable-stream", "request-progress", "restore-cursor", "rimraf", "rxjs", "safe-buffer", "safer-buffer", "semver", "shebang-command", "shebang-regex", "signal-exit", "slice-ansi", "sshpk", "string-width", "string_decoder", "strip-ansi", "strip-eof", "supports-color", "symbol-observable", "throttleit", "tmp", "tough-cookie", "tslib", "tunnel-agent", "tweetnacl", "typedarray", "universalify", "untildify", "uri-js", "url", "util-deprecate", "uuid", "verror", "which", "wrap-ansi", "wrappy", "yauzl", "pymedphys_databases", "pymedphys_dicom", "pymedphys_fileformats", "pymedphys_utilities", "pymedphys_mudensity", "csv-compare", "ipython", "jinja2", "mosaiq-connection", "mosaiq-field-export", "notebook", "numpy", "pandas"], "https://github.com/anuprulez/galaxy_tool_recommendation": ["csvkit", "h5py", "hyperopt", "keras", "numpy", "scikit-learn", "tensorflow"], "https://github.com/BMKEG/sciDT-pipeline": ["com.github.jsonld-java:jsonld-java", "edu.isi.bmkeg:UimaBioC"], "https://github.com/Irstea/otolithe": ["commitplease", "grunt", "grunt-bowercopy", "grunt-cli", "grunt-compare-size", "grunt-contrib-concat", "grunt-contrib-csslint", "grunt-contrib-jshint", "grunt-contrib-qunit", "grunt-contrib-requirejs", "grunt-contrib-uglify", "grunt-git-authors", "grunt-html", "grunt-jscs", "load-grunt-tasks", "rimraf", "testswarm"], "https://github.com/hugovk/pypistats": ["appdirs", "freezegun", "numpy", "pandas", "pytablewriter", "pytest", "pytest-cov", "python-slugify", "requests", "requests-mock", "python-dateutil"], "https://github.com/single-cell-genetics/vireo": ["matplotlib", "numpy", "scipy"], "https://github.com/bionode/bionode": ["all-contributors-cli", "async", "bionode-fasta", "bionode-ncbi", "bionode-seq", "contributor", "coveralls", "debug", "dependency-check", "docco", "doxx", "glob", "istanbul", "jsdom", "minimist", "nock", "pumpify", "request", "requesturl-stream", "standard", "tap-spec", "tape", "tape-nock", "tool-stream"], "https://github.com/Edric-Matwiejew/QuOp_MPI": ["h5py", "mpi4py", "networkx", "numpy", "scipy", "m2r"], "https://github.com/evanodell/parlitools": ["brfs", "browserify", "corslite", "csv2geojson", "jshint", "mapbox.js", "mocha", "phantomjs-prebuilt", "polyline", "st", "tape", "togeojson", "topojson", "uglify-js", "wellknown", "zuul", "chai", "eslint", "eslint-plugin-html", "mocha-phantomjs-core", "mversion", "jake", "karma", "leaflet", "magic-string"], "https://github.com/steven-murray/hankel": ["pre-commit", "pytest", "pytest-cov", "mpmath", "numpy", "scipy", "ipykernel", "nbsphinx", "numpydoc", "pandoc", "sphinx", "sphinx-rtd-theme"], "https://github.com/guillochon/MOSFiT": ["astrocats", "astropy", "dropbox", "emcee", "extinction", "numpydoc", "schwimmbad", "sphinx-automodapi", "sphinxcontrib-autoprogram", "cython", "dynesty", "inflect", "matplotlib", "mpi4py", "nbstripout", "numexpr", "numpy", "palettable", "scipy", "seaborn", "six"], "https://github.com/lascivaroma/priapeia": ["mycapytain", "requests"], "https://github.com/vahtras/loprop": ["pytest", "pytest-cov", "daltools", "h5py"], "https://github.com/pv8/noipy": ["flake8", "pytest", "tox", "requests"], "https://github.com/MAfarrag/Hapi": ["geopandas", "numpy", "pandas", "shapely", "gdal"], "https://github.com/monteirotorres/ProtCHOIR": ["biopython", "jinja2", "matplotlib", "networkx", "numpy", "pandas", "parasail", "progressbar2"], "https://github.com/dejac001/adsorption_isotherm_fitting": ["chem-util", "matplotlib", "numpy", "pandas", "pyomo", "realgas", "scipy", "alabaster", "appdirs", "babel", "certifi", "chardet", "colorama", "commonmark", "cycler", "docutils", "idna", "imagesize", "jinja2", "kiwisolver", "latexcodec", "markupsafe", "nose", "oset", "packaging", "ply", "pybtex", "pybtex-docutils", "pygments", "pyparsing", "python-dateutil", "pytz", "pyutilib", "pyyaml", "recommonmark", "requests", "six", "snowballstemmer", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-applehelp", "sphinxcontrib-bibtex", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "urllib3"], "https://github.com/GilesStrong/lumin": ["fastprogress", "h5py", "ipython", "jupyter", "jupyter-contrib-nbextensions", "matplotlib", "numpy", "pandas", "pdpbox", "prettytable", "rfpimp", "scikit-learn", "scipy", "seaborn", "sparse", "statsmodels", "sympy", "torch", "typing", "m2r", "sphinx", "sphinx-autodoc-annotation", "sphinx-autodoc-typehints"], "https://github.com/worldsensing/xyz-iot-monitoring": ["buffer-writer", "iconv", "inherits", "irc", "irc-colors", "lodash", "nan", "node-icu-charset-detector", "node-postgres-named", "node-red-contrib-loop-processing", "node-red-contrib-re-postgres", "node-red-node-daemon", "node-red-node-irc", "packet-reader", "pg", "pg-connection-string", "pg-cursor", "pg-int8", "pg-packet-stream", "pg-pool", "pg-types", "pgpass", "postgres-array", "postgres-bytea", "postgres-date", "postgres-interval", "semver", "split", "through", "util", "vm", "xtend", "@material-ui/core", "@testing-library/jest-dom", "@testing-library/react", "@testing-library/user-event", "axios", "bootstrap", "react", "react-dom", "react-iframe", "react-router", "react-router-dom", "react-scripts", "flask", "flask-cors", "flask-restful", "flask-sqlalchemy", "psycopg2", "coverage", "factory-boy", "pytest", "pytest-cov", "pytest-mock"], "https://github.com/rcsb/ciftools-java": ["com.google.code.gson:gson", "javax.annotation:javax.annotation-api", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/cgre-aachen/pynoddy": ["nose", "pyevtk", "salib"], "https://github.com/bashtage/linearmodels": ["black", "flake8", "ipython", "matplotlib", "nbconvert", "nbformat", "nbsphinx", "numpydoc", "pytest", "seaborn", "sphinx", "sphinx-material", "sphinxcontrib-spelling", "xarray", "cython", "mypy-extensions", "numpy", "pandas", "patsy", "property-cached", "scipy", "statsmodels", "jupyter", "notebook", "sphinx-autodoc-typehints"], "https://github.com/pygae/galgebra": ["sympy", "ipython", "nbval", "pytest", "pytest-cov", "pytest-xdist", "ipykernel", "matplotlib", "nbsphinx", "nbsphinx-link", "notedown", "numba", "numpy", "numpydoc", "pygments", "recommonmark", "releases", "scipy", "semantic-version", "sphinx-markdown-tables", "sphinx-rtd-theme", "sphinxcontrib-bibtex"], "https://github.com/SandstoneHPC/sandstone-ide": ["backports-abc", "backports-ssl-match-hostname", "cerberus", "certifi", "funcsigs", "mock", "pbr", "peewee", "ptyprocess", "pydispatcher", "python-magic", "simplepam", "singledispatch", "six", "terminado", "tornado", "watchdog", "bower", "chromedriver", "grunt", "grunt-contrib-clean", "grunt-contrib-connect", "grunt-ngdocs", "http-server", "jasmine", "jsdoc", "karma", "karma-chrome-launcher", "karma-firefox-launcher", "karma-jasmine", "karma-junit-reporter", "karma-ng-html2js-preprocessor", "karma-phantomjs-launcher", "node-gyp", "phantomjs-prebuilt", "protractor", "shelljs"], "https://github.com/darothen/pyrcel": ["assimulo", "numba", "numpy", "pandas", "scipy", "xarray"], "https://github.com/DD-DeCaF/id-mapper": ["apispec", "appdirs", "attrs", "backcall", "black", "blinker", "certifi", "chardet", "click", "coverage", "decorator", "dparse", "ecdsa", "flake8", "flake8-bugbear", "flake8-docstrings", "flask", "flask-apispec", "flask-cors", "gevent", "greenlet", "gunicorn", "idna", "importlib-metadata", "ipython", "ipython-genutils", "isort", "itsdangerous", "jedi", "jinja2", "markupsafe", "marshmallow", "mccabe", "more-itertools", "packaging", "parso", "pathspec", "pexpect", "pickleshare", "pluggy", "prompt-toolkit", "ptyprocess", "py", "py2neo", "pyasn1", "pycodestyle", "pydocstyle", "pyflakes", "pygments", "pyparsing", "pytest", "pytest-cov", "python-jose", "pyyaml", "raven", "regex", "requests", "rsa", "safety", "setuptools", "six", "snowballstemmer", "toml", "tqdm", "traitlets", "typed-ast", "urllib3", "wcwidth", "webargs", "werkzeug", "zipp", "zope-event", "zope-interface"], "https://github.com/Colectica/curation": ["Antlr", "AutoMapper", "bootstrap", "bootstrap-sortable", "ColecticaRepositoryLibrary", "dropzone", "elmah.corelibrary", "Elmah.MVC", "EntityFramework", "ExcelDataReader", "ExcelDataReader.DataSet", "Glimpse", "Glimpse.Ado", "Glimpse.AspNet", "Glimpse.EF6", "Glimpse.Mvc5", "jQuery", "jQuery.UI.Combined", "jQuery.Validation", "Knockout-Sortable", "knockoutjs", "LibGit2Sharp", "LibGit2Sharp.NativeBinaries", "log4net", "LumenWorks.Framework.IO", "MarkdownDeep.NET", "Microsoft.AspNet.Identity.Core", "Microsoft.AspNet.Identity.EntityFramework", "Microsoft.AspNet.Identity.Owin", "Microsoft.AspNet.Mvc", "Microsoft.AspNet.Razor", "Microsoft.AspNet.Web.Optimization", "Microsoft.AspNet.WebPages", "Microsoft.jQuery.Unobtrusive.Validation", "Microsoft.Owin", "Microsoft.Owin.Host.SystemWeb", "Microsoft.Owin.Security", "Microsoft.Owin.Security.Cookies", "Microsoft.Owin.Security.Facebook", "Microsoft.Owin.Security.Google", "Microsoft.Owin.Security.MicrosoftAccount", "Microsoft.Owin.Security.OAuth", "Microsoft.Owin.Security.Twitter", "Microsoft.Web.Infrastructure", "Modernizr", "Moment.js", "Newtonsoft.Json", "Owin", "PDFsharp-MigraDoc-WPF", "Respond", "SharpZipLib", "Twitter.Typeahead", "underscore.js", "WebGrease", "DynamicInterop", "MathNet.Numerics.Signed", "R.NET.Community", "RazorEngine", "DotNetZip", "nClam"], "https://github.com/harnesscloud/harness-resource-manager": ["flask", "flask-classy", "requests"], "https://github.com/huggingface/transformers": ["dataclasses", "filelock", "numpy", "packaging", "regex", "requests", "sacremoses", "sentencepiece", "tokenizers", "tqdm", "conllu", "datasets", "elasticsearch", "faiss-cpu", "fire", "git-python", "matplotlib", "nltk", "pandas", "psutil", "pytest", "pytorch-lightning", "rouge-score", "sacrebleu", "scikit-learn", "seqeval", "streamlit", "tensorboard", "tensorflow-datasets", "torch", "appdirs", "argon2-cffi", "async-generator", "attrs", "backcall", "bleach", "cachecontrol", "certifi", "cffi", "chardet", "click", "colorama", "contextlib2", "cycler", "decorator", "defusedxml", "dill", "distlib", "distro", "entrypoints", "future", "html5lib", "idna", "ipaddr", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "jupyterlab-pygments", "kiwisolver", "lockfile", "markupsafe", "mistune", "msgpack", "nbclient", "nbconvert", "nbformat", "nest-asyncio", "notebook", "opencv-python", "pandocfilters", "parso", "pep517", "pexpect", "pickleshare", "pillow", "progress", "prometheus-client", "prompt-toolkit", "ptyprocess", "pyaml", "pyarrow", "pycparser", "pygments", "pyparsing", "pyrsistent", "python-dateutil", "pytoml", "pytz", "pyyaml", "pyzmq", "qtconsole", "qtpy", "retrying", "send2trash", "six", "terminado", "testpath", "torchvision", "tornado", "traitlets", "urllib3", "wcwidth", "webencodings", "wget", "widgetsnbextension", "xxhash", "gitpython", "scipy", "tensorboardx", "transformers", "py-rouge", "h5py", "knockknock"], "https://github.com/stadelmanma/netl-ap-map-flow": ["numpy", "pillow", "pint", "pyyaml", "scipy", "codecov", "coverage", "pep8", "pytest", "pytest-cache", "pytest-cov", "pytest-pep8"], "https://github.com/jl-wynen/isle": ["h5py", "numpy", "pentinsula", "psutil", "pybind11", "pyyaml", "scipy"], "https://github.com/rodighiero/DH2020": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@pixi/accessibility", "@pixi/app", "@pixi/constants", "@pixi/core", "@pixi/display", "@pixi/extract", "@pixi/filter-alpha", "@pixi/filter-blur", "@pixi/filter-color-matrix", "@pixi/filter-displacement", "@pixi/filter-fxaa", "@pixi/filter-noise", "@pixi/graphics", "@pixi/interaction", "@pixi/loaders", "@pixi/math", "@pixi/mesh", "@pixi/mesh-extras", "@pixi/mixin-cache-as-bitmap", "@pixi/mixin-get-child-by-name", "@pixi/mixin-get-global-position", "@pixi/particles", "@pixi/polyfill", "@pixi/prepare", "@pixi/runner", "@pixi/settings", "@pixi/sprite", "@pixi/sprite-animated", "@pixi/sprite-tiling", "@pixi/spritesheet", "@pixi/text", "@pixi/text-bitmap", "@pixi/ticker", "@pixi/utils", "@tarekraafat/autocomplete.js", "@types/anymatch", "@types/glob", "@types/html-minifier-terser", "@types/json-schema", "@types/minimatch", "@types/node", "@types/source-list-map", "@types/tapable", "@types/uglify-js", "@types/webpack", "@types/webpack-sources", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "accepts", "acorn", "afinn-165", "ajv", "ajv-errors", "ajv-keywords", "ansi-colors", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "apparatus", "aproba", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1.js", "assert", "assign-symbols", "async", "async-each", "async-limiter", "atob", "babel-loader", "babel-plugin-dynamic-import-node", "balanced-match", "base", "base64-js", "batch", "big.js", "binary-extensions", "bindings", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "camel-case", "camelcase", "caniuse-lite", "chalk", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "clean-css", "cliui", "collection-visit", "color-convert", "color-name", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "console-browserify", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "core-js-compat", "css-loader", "csv-parser", "d3", "d3-force-reuse", "fast-dice-coefficient", "file-loader", "fps", "html-loader", "html-webpack-plugin", "mini-css-extract-plugin", "natural", "normalize.css", "pixi-viewport", "pixi.js", "remove-accents", "stopword", "webpack", "webpack-cli", "webpack-dev-server"], "https://github.com/scalaris-team/scalaris": ["commons-cli:commons-cli", "org.apache.maven.plugins:maven-source-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.erlang.otp:jinterface", "json", "checkstyle:checkstyle", "com.google.collections:google-collections", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.jdom:jdom", "org.slf4j:slf4j-api", "org.codehaus.jackson:jackson-core-asl", "org.codehaus.jackson:jackson-mapper-asl", "org.testng:testng", "com.yahoo.ycsb:core", "de.zib.scalaris:java-api", "org.apache.maven.plugins:maven-assembly-plugin", "org.datanucleus:datanucleus-core", "org.json:json", "de.zib.scalaris:datanucleus-store", "javax.jdo:jdo-api", "junit:junit", "log4j:log4j", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.poi:poi", "org.datanucleus:datanucleus-api-jdo", "org.datanucleus:datanucleus-maven-plugin"], "https://github.com/FEEprojects/plantower": ["pyserial"], "https://github.com/aibasel/pyperplan": ["wheel"], "https://github.com/theboocock/NGaDNAP": ["coveralls", "pytest", "pytest-cov", "tox"], "https://github.com/DeathStar3/symfinder": ["com.j2html:j2html", "junit:junit", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.eclipse.jdt:org.eclipse.jdt.core", "org.json:json", "org.neo4j.driver:neo4j-java-driver", "org.neo4j.test:neo4j-harness", "org.neo4j:neo4j", "org.yaml:snakeyaml", "org.slf4j:slf4j-api", "jasmine-core", "karma", "karma-chrome-launcher", "karma-firefox-launcher", "karma-helpful-reporter", "karma-jasmine", "karma-jquery", "karma-spec-reporter"], "https://github.com/AdmiralenOla/Scoary": ["argparse", "ete3", "scipy", "six"], "https://github.com/NickleDave/visual-search-nets": ["attrs", "imageio", "joblib", "jupyterlab", "matplotlib", "numpy", "pandas", "pyprojroot", "scikit-learn", "scikit-posthocs", "scipy", "seaborn", "searchstims", "tensorboard", "torch", "torchvision", "tqdm"], "https://github.com/dhondta/AppmemDumper": ["patool", "pyunpack", "tinyscript"], "https://github.com/scikit-hep/boost-histogram": ["numpy", "pytest", "pytest-benchmark", "setuptools", "setuptools-scm", "typing", "typing-extensions", "nbsphinx", "recommonmark", "sphinx", "sphinx-book-theme", "sphinx-copybutton"], "https://github.com/vsoch/askci": ["beautifulsoup4", "coreapi", "cython", "django", "django-chosen", "django-crispy-forms", "django-datatables-view", "django-dirtyfields", "django-extensions", "django-filter", "django-form-utils", "django-gravatar2", "django-guardian", "django-hstore", "django-notifications-hq", "django-ratelimit", "django-rest-swagger", "django-rq", "django-taggit", "django-taggit-templatetags", "django-user-agents", "djangorestframework", "h5py", "ipython", "markdown", "numexpr", "oauth2client", "pillow", "psycopg2-binary", "pygments", "python-social-auth", "python3-saml", "pyyaml", "requests", "requests-oauthlib", "requests-toolbelt", "retrying", "rq-scheduler", "sendgrid", "sentry-sdk", "social-auth-app-django", "social-auth-core", "uwsgi", "github-pages"], "https://github.com/boutiques/boutiques": ["docopt", "jsonschema", "nexus-sdk", "pytest", "requests", "simplejson", "mock", "pyyaml", "tabulate", "termcolor"], "https://github.com/nansencenter/nansat": ["gdal", "numpy", "pillow", "pythesint", "python-dateutil", "urllib3"], "https://github.com/cdanielmachado/reframed": ["numpy", "python-libsbml", "reframed", "scipy", "sympy", "bump2version", "coverage", "flake8", "pip", "sphinx", "tox", "twine", "watchdog", "wheel"], "https://github.com/LightForm-group/matflow": ["autopep8", "ipykernel", "pylint", "rope", "twine", "black", "click", "hickle", "hpcflow", "matflow-demo-extension", "numpy", "pyperclip", "ruamel-yaml"], "https://github.com/Capitains/Hook": ["beautifulsoup4", "flask", "flask-login", "flask-sqlalchemy", "github-flask", "mock", "requests-mock", "tabulate", "unicode-slugify"], "https://github.com/arokem/ISBI2015": ["dipy", "seaborn"], "https://github.com/a-slide/NanoSnake": ["ftputil", "loguru", "pandas", "snakemake"], "https://github.com/laplizard/infoplot": ["php", "phpdocumentor/phpdocumentor", "phpunit/phpunit", "cilex/cilex", "cilex/console-service-provider", "container-interop/container-interop", "doctrine/annotations", "doctrine/instantiator", "doctrine/lexer", "erusev/parsedown", "herrera-io/json", "herrera-io/phar-update", "jms/metadata", "jms/parser-lib", "jms/serializer", "justinrainbow/json-schema", "kherge/version", "monolog/monolog", "nikic/php-parser", "phpcollection/phpcollection", "phpdocumentor/fileset", "phpdocumentor/graphviz", "phpdocumentor/reflection", "phpdocumentor/reflection-docblock", "phpoption/phpoption", "phpspec/prophecy", "phpunit/php-code-coverage", "phpunit/php-file-iterator", "phpunit/php-text-template", "phpunit/php-timer", "phpunit/php-token-stream", "phpunit/phpunit-mock-objects", "pimple/pimple", "psr/log", "sebastian/comparator", "sebastian/diff", "sebastian/environment", "sebastian/exporter", "sebastian/global-state", "sebastian/recursion-context", "sebastian/version", "seld/jsonlint", "symfony/config", "symfony/console", "symfony/event-dispatcher", "symfony/filesystem", "symfony/finder", "symfony/process", "symfony/stopwatch", "symfony/translation", "symfony/validator", "symfony/yaml", "twig/twig", "zendframework/zend-cache", "zendframework/zend-config", "zendframework/zend-eventmanager", "zendframework/zend-filter", "zendframework/zend-i18n", "zendframework/zend-json", "zendframework/zend-math", "zendframework/zend-serializer", "zendframework/zend-servicemanager", "zendframework/zend-stdlib", "zetacomponents/base", "zetacomponents/document"], "https://github.com/hugadams/PAME": ["chaco", "ipython", "matplotlib", "mayavi", "mpmath", "numpy", "pandas", "pil", "pyyaml", "scipy", "traits", "traitsui"], "https://github.com/torressa/cspy": ["networkx", "numpy", "pandas", "parameterized", "pulp", "osmnx"], "https://github.com/ConservationInternational/trends.earth": ["boto3", "invoke", "numba", "pip", "pylint", "pyqt5", "sphinx", "sphinx-intl", "sphinx-rtd-theme", "transifex-client", "httplib2", "marshmallow", "openpyxl", "pyqtgraph", "requests", "earthengine-api", "matplotlib", "matplotlib-scalebar", "numpy", "pandas", "pillow", "rollbar"], "https://github.com/OpenChemistry/avogadrolibs": ["scikit-build", "wheel"], "https://github.com/ondrolexa/pywerami": ["matplotlib", "numpy", "scipy", "wheel"], "https://github.com/Sulstice/datacity": ["affinegap", "btrees", "camelot-py", "categorical-distance", "certifi", "cffi", "chardet", "click", "colorama", "csvmatch", "datetime-distance", "decorator", "dedupe", "dedupe-hcluster", "dedupe-variable-datetime", "doublemetaphone", "elixir", "et-xmlfile", "fastcluster", "feedparser", "future", "fuzzy-pandas", "haversine", "highered", "idna", "jdcal", "jellyfish", "jinja2", "levenshtein-search", "lxml", "markupsafe", "numpy", "opencv-python", "openpyxl", "pandas", "pbr", "pdfminer-six", "persistent", "pycparser", "pycryptodome", "pyhacrf-datamade", "pylbfgs", "pypdf2", "python-dateutil", "pytz", "requests", "rlr", "sgmllib3k", "simplecosine", "six", "sodapy", "sortedcontainers", "sqlalchemy", "sqlalchemy-migrate", "sqlparse", "tabula", "tempita", "tqdm", "unidecode", "urllib3", "xlrd", "xlwt", "zope-index", "zope-interface", "@testing-library/jest-dom", "@testing-library/react", "@testing-library/user-event", "ag-grid-community", "ag-grid-react", "gh-pages", "react", "react-dom", "react-scripts", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-builder-react-jsx-experimental", "@babel/helper-call-delegate", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-flow", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-syntax-typescript", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-flow-strip-types", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-constant-elements", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-development", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-typescript", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/preset-react", "@babel/preset-typescript", "@babel/runtime", "@babel/runtime-corejs3", "@babel/template", "@babel/traverse", "@babel/types", "@cnakazawa/watch", "@csstools/convert-colors", "@csstools/normalize.css", "@hapi/address", "@hapi/bourne", "@hapi/hoek", "@hapi/joi", "@hapi/topo", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@sheerun/mutationobserver-shim", "@svgr/babel-plugin-add-jsx-attribute", "@svgr/babel-plugin-remove-jsx-attribute", "@svgr/babel-plugin-remove-jsx-empty-expression", "@svgr/babel-plugin-replace-jsx-attribute-value", "@svgr/babel-plugin-svg-dynamic-title", "@svgr/babel-plugin-svg-em-dimensions", "@svgr/babel-plugin-transform-react-native-svg", "@svgr/babel-plugin-transform-svg-component", "@svgr/babel-preset", "@svgr/core", "@svgr/hast-util-to-babel-ast", "@svgr/plugin-jsx", "@svgr/plugin-svgo", "@svgr/webpack", "@testing-library/dom", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/color-name", "@types/eslint-visitor-keys", "@types/events", "@types/glob", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/json-schema", "@types/minimatch", "@types/node", "@types/parse-json", "@types/prop-types", "@types/q", "@types/react", "@types/react-dom", "@types/stack-utils", "@types/testing-library__dom", "@types/testing-library__react", "@types/yargs", "@types/yargs-parser", "@typescript-eslint/eslint-plugin", "@typescript-eslint/experimental-utils", "@typescript-eslint/parser", "@typescript-eslint/typescript-estree", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "accepts", "acorn", "acorn-globals", "acorn-jsx", "acorn-walk", "address", "adjust-sourcemap-loader", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "alphanum-sort", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "argparse", "aria-query", "arity-n", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-flatten", "array-includes", "array-union", "array-uniq", "array-unique", "array.prototype.flat", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-types-flow", "astral-regex", "async", "async-each", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axobject-query", "babel-code-frame", "babel-eslint", "babel-extract-comments", "babel-jest", "babel-loader"], "https://github.com/bootphon/phonemizer": ["attrs", "joblib", "segments"], "https://github.com/chrisgorgo/alleninf": ["matplotlib", "nibabel", "numpy", "pandas", "pymc", "scikit-learn", "scipy", "seaborn", "tables"], "https://github.com/opentox/lazar-rest": ["haml", "lazar", "sass", "sinatra", "qsar-report", "rack-cors", "unicorn"], "https://github.com/SeqWare/seqware": ["asm:asm", "com.amazonaws:aws-java-sdk", "com.amazonaws:aws-java-sdk-core", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", "com.fasterxml:classmate", "com.github.seqware:seqware-common", "com.github.seqware:seqware-distribution", "com.github.seqware:seqware-ext-admin-testing", "com.github.seqware:seqware-ext-testing", "com.github.seqware:seqware-meta-db", "com.github.seqware:seqware-pipeline", "com.github.seqware:seqware-portal", "com.github.seqware:seqware-webservice", "com.github.stefanbirkner:system-rules", "com.google.code.findbugs:jsr305", "com.google.code.gson:gson", "com.google.guava:guava", "com.sun.jersey.contribs:jersey-moxy", "com.sun.jersey.contribs:jersey-multipart", "com.sun.jersey.glassfish.v3.osgi:jersey-gf-server", "com.sun.jersey.glassfish.v3.osgi:jersey-gf-servlet", "com.sun.jersey.glassfish.v3.osgi:jersey-gf-statsproviders", "com.sun.jersey:jersey-client", "com.sun.jersey:jersey-core", "com.sun.jersey:jersey-grizzly", "com.sun.jersey:jersey-json", "com.versioneye:versioneye-maven-plugin", "commons-beanutils:commons-beanutils", "commons-collections:commons-collections", "commons-dbutils:commons-dbutils", "commons-digester:commons-digester", "commons-io:commons-io", "commons-lang:commons-lang", "commons-logging:commons-logging", "javax.validation:validation-api", "javax.xml.bind:jaxb-api", "joda-time:joda-time", "junit:junit", "log4j:log4j", "net.sf.beanlib:beanlib", "net.sf.beanlib:beanlib-hibernate", "net.sf.jopt-simple:jopt-simple", "net.sf.opencsv:opencsv", "org.apache.commons:commons-collections4", "org.apache.commons:commons-compress", "org.apache.commons:commons-exec", "org.apache.commons:commons-lang3", "org.apache.hadoop:hadoop-common", "org.apache.maven.plugins:maven-antrun-plugin", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-clean-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-enforcer-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-install-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-jxr-plugin", "org.apache.maven.plugins:maven-pmd-plugin", "org.apache.maven.plugins:maven-project-info-reports-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-scm-publish-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.maven.plugins:maven-war-plugin", "org.apache.tomcat.maven:tomcat7-maven-plugin", "org.apache.tomcat:tomcat-dbcp", "org.apache.zookeeper:zookeeper", "org.codehaus.jackson:jackson-core-asl", "org.codehaus.jackson:jackson-mapper-asl", "org.codehaus.jettison:jettison", "org.codehaus.mojo:build-helper-maven-plugin", "org.codehaus.mojo:cobertura-maven-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.codehaus.mojo:findbugs-maven-plugin", "org.codehaus.mojo:versions-maven-plugin", "org.codehaus.woodstox:stax2-api", "org.easymock:easymock", "org.eclipse.m2e:lifecycle-mapping", "org.glassfish.hk2.external:asm-all-repackaged", "org.hamcrest:hamcrest-all", "org.hibernate.javax.persistence:hibernate-jpa-2.1-api", "org.hibernate:hibernate-core", "org.hibernate:hibernate-entitymanager", "org.hibernate:hibernate-validator", "org.javassist:javassist", "org.jboss.logging:jboss-logging", "org.jvnet.mimepull:mimepull", "org.mockito:mockito-all", "org.mockito:mockito-core", "org.mortbay.jetty:jetty-util", "org.netbeans.api:org-openide-util-lookup", "org.objenesis:objenesis", "org.postgresql:postgresql", "org.powermock:powermock-api-easymock", "org.powermock:powermock-api-mockito", "org.powermock:powermock-core", "org.powermock:powermock-module-junit4", "org.raml:raml-parser", "org.restlet.jee:org.restlet", "org.restlet.jee:org.restlet.ext.fileupload", "org.restlet.jee:org.restlet.ext.httpclient", "org.restlet.jee:org.restlet.ext.jackson", "org.restlet.jee:org.restlet.ext.jaxb", "org.restlet.jee:org.restlet.ext.json", "org.restlet.jee:org.restlet.ext.jsslutils", "org.restlet.jee:org.restlet.ext.net", "org.restlet.jee:org.restlet.ext.protobuf", "org.restlet.jee:org.restlet.ext.servlet", "org.restlet.jee:org.restlet.ext.slf4j", "org.restlet.jee:org.restlet.ext.wadl", "org.restlet.jee:org.restlet.ext.xml", "org.restlet.jee:org.restlet.ext.xstream", "org.restlet.jee:org.restlet.test", "org.slf4j:jcl-over-slf4j", "org.slf4j:jul-to-slf4j", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "org.springframework:spring-aop", "org.springframework:spring-beans", "org.springframework:spring-context", "org.springframework:spring-context-support", "org.springframework:spring-core", "org.springframework:spring-jdbc", "org.springframework:spring-orm", "org.springframework:spring-struts", "org.springframework:spring-test", "org.springframework:spring-tx", "org.springframework:spring-web", "org.springframework:spring-webmvc", "org.yaml:snakeyaml", "stax:stax-api", "xml-apis:xml-apis", "antlr:antlr", "cglib:cglib", "com.amazonaws:aws-java-sdk-s3", "com.sdicons.jsontools:jsontools-core", "com.thoughtworks.xstream:xstream", "commons-codec:commons-codec", "commons-dbcp:commons-dbcp", "javax.transaction:jta", "org.apache.maven.plugins:maven-dependency-plugin", "org.hamcrest:hamcrest-core", "org.hsqldb:hsqldb", "com.h2database:h2", "de.huxhorn.lilith:de.huxhorn.lilith.3rdparty.junique", "org.apache.hadoop:hadoop-hdfs", "org.apache.httpcomponents:httpcore", "org.apache.oozie:oozie-client", "org.jdom:jdom", "org.rendersnake:rendersnake", "com.google.inject:guice", "org.clojure:clojure", "org.clojure:java.jdbc", "org.json:json", "com.sun.xml.bind:jaxb-impl", "javax.ws.rs:jsr311-api", "javax:javaee-web-api", "org.eclipse.persistence:eclipselink", "org.eclipse.persistence:javax.persistence", "org.eclipse.persistence:org.eclipse.persistence.jpa.modelgen.processor", "org.glassfish.embedded:maven-embedded-glassfish-plugin", "org.glassfish:bean-validator", "adsf", "builder", "coderay", "compass", "fast-aleck", "haml", "kramdown", "nanoc", "nokogiri", "rainpress", "rdiscount", "rubypants", "sass", "systemu", "chunky_png", "cri", "ffi", "fssm", "rack", "net.sourceforge.seqware:seqware-bin-linux-x86-64-cat-5.67", "net.sourceforge.seqware:seqware-bin-linux-x86-64-echo-5.67"], "https://github.com/msmbuilder/osprey": ["bokeh", "matplotlib", "numpy", "pandas", "pyyaml", "scikit-learn", "scipy", "six", "sqlalchemy", "numpydoc", "python"], "https://github.com/urschrei/CDP": ["alembic", "fabric", "flask", "flask-assets", "flask-sqlalchemy", "flask-wtf", "ipython", "jsmin", "mysql-python", "pyelasticsearch", "pyyaml", "sqlalchemy", "yuicompressor"], "https://github.com/comic/grand-challenge.org": ["@fortawesome/fontawesome-free", "@github/markdown-toolbar-element", "blueimp-file-upload", "bootstrap", "bootswatch", "chart.js", "datatables.net-bs4", "datatables.net-buttons-bs4", "jquery", "jquery-ui", "jquery.cookie", "mathjax", "popper.js", "sass"], "https://github.com/roland-wallner/dss2020-ex1": ["matplotlib", "numpy", "pandas"], "https://github.com/tasoc/corrections": ["astropy", "bottleneck", "h5py", "lightkurve", "matplotlib", "numpy", "pytest", "pyyaml", "requests", "scikit-learn", "scipy", "statsmodels", "tqdm"], "https://github.com/lucasberent/mapleDocs": ["com.fasterxml.jackson.core:jackson-databind", "com.jayway.jsonpath:json-path", "io.jsonwebtoken:jjwt-api", "io.jsonwebtoken:jjwt-impl", "io.jsonwebtoken:jjwt-jackson", "org.apache.commons:commons-collections4", "org.apache.commons:commons-lang3", "org.elasticsearch.client:elasticsearch-rest-client", "org.elasticsearch.client:elasticsearch-rest-high-level-client", "org.elasticsearch:elasticsearch", "org.everit.json:org.everit.json.schema", "org.mapstruct:mapstruct", "org.mongodb:mongo-java-driver", "org.postgresql:postgresql", "org.projectlombok:lombok", "org.springframework.boot:spring-boot-devtools", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-data-jpa", "org.springframework.boot:spring-boot-starter-data-mongodb", "org.springframework.boot:spring-boot-starter-security", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-web", "org.springframework.security:spring-security-test", "@angular-devkit/architect", "@angular-devkit/build-angular", "@angular-devkit/build-optimizer", "@angular-devkit/build-webpack", "@angular-devkit/core", "@angular-devkit/schematics", "@angular/animations", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/language-service", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/router", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@istanbuljs/schema", "@jsdevtools/coverage-istanbul-loader", "@ngtools/webpack", "@schematics/angular", "@schematics/update", "@types/color-name", "@types/events", "@types/glob", "@types/jasmine", "@types/jasminewd2", "@types/minimatch", "@types/node", "@types/q", "@types/selenium-webdriver", "@types/source-list-map", "@types/webpack-sources", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "@yarnpkg/lockfile", "accepts", "acorn", "adm-zip", "after", "agent-base", "agentkeepalive", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "alphanum-sort", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "app-root-path", "append-transform", "aproba", "arg", "argparse", "aria-query", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-types-flow", "async", "async-each", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axobject-query", "babel-loader", "babel-plugin-dynamic-import-node", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64-js", "base64id", "batch", "bcrypt-pbkdf", "better-assert", "big.js", "binary-extensions", "blob", "blocking-proxy", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "browserstack", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "builtins", "bytes", "cacache", "cache-base", "caller-callsite", "caller-path", "callsite", "callsites", "camelcase", "caniuse-api", "caniuse-lite", "canonical-path", "caseless", "chalk", "chardet", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "circular-dependency-plugin", "class-utils", "clean-stack", "cli-cursor", "cli-spinners", "cli-width", "@angular/cdk", "@angular/material", "cliui", "clone", "@types/file-saver", "angular4-jsoneditor", "codelyzer", "file-saver", "jasmine-core", "jasmine-spec-reporter", "jqwidgets-ng", "jwt-decode", "karma", "karma-chrome-launcher", "karma-coverage-istanbul-reporter", "karma-jasmine", "karma-jasmine-html-reporter", "ngx-json-viewer", "ngx-toastr", "ngx-treeview", "protractor", "rxjs", "ts-node", "tslib", "tslint", "typescript", "zone.js"], "https://github.com/bakirtzisg/cybok-cli": ["beautifulsoup4", "lxml", "matplotlib", "networkx", "pygraphviz", "requests", "sty", "whoosh"], "https://github.com/SuperElastix/SimpleElastix": ["cmake", "sphinx-rtd-theme", "sphinx-tabs"], "https://github.com/fsherry/bilevelmri": ["numpy", "scipy", "torch"], "https://github.com/USEPA/standardizedinventories": ["argparse", "bs4", "numpy", "pandas", "pyyaml", "regex", "requests", "selenium", "webdriver-manager", "state", "latitude", "longitude", "trifid"], "https://github.com/ilogue/niprov": ["grunt", "grunt-contrib-qunit", "-", "coveralls", "mako", "mock", "pymongo", "pyramid", "pyramid-mako", "shortuuid", "sphinx", "waitress"], "https://github.com/kundajelab/atac_dnase_pipelines": ["bedtools", "bioconductor-rsamtools", "boost", "bowtie2", "cutadapt", "ghostscript", "gnuplot", "graphviz", "gsl", "htslib", "jinja2", "libgfortran", "libtool", "macs2", "matplotlib", "metaseq", "ncurses", "nomkl", "numpy", "openblas", "openssl", "pandas", "picard", "pigz", "preseq", "pybedtools", "pyfaidx", "pysam", "python-dateutil", "python-levenshtein", "r", "r-bitops", "r-catools", "r-snow", "r-snowfall", "r-spp", "sambamba", "samtools", "scipy", "six", "trim-galore", "ucsc-bedclip", "ucsc-bedgraphtobigwig", "ucsc-bedtobigbed", "ucsc-bigwigaverageoverbed", "ucsc-bigwiginfo", "ucsc-fetchchromsizes", "ucsc-twobittofa", "ucsc-wigtobigwig", "zlib", "idr", "java-jdk", "python"], "https://github.com/ktmeaton/NCBImeta": ["biopython", "lxml", "numpy", "pyyaml"], "https://github.com/University-of-Potsdam-MM/Reflect.UP": ["@angular-devkit/build-optimizer", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/http", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@babel/code-frame", "@babel/highlight", "@ionic-native/core", "@ionic-native/file", "@ionic-native/http", "@ionic-native/in-app-browser", "@ionic-native/keyboard", "@ionic-native/local-notifications", "@ionic-native/network", "@ionic-native/photo-viewer", "@ionic-native/push", "@ionic-native/splash-screen", "@ionic-native/status-bar", "@ionic/app-scripts", "@ionic/storage", "@ngx-translate/core", "@ngx-translate/http-loader", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "ajv", "ajv-keywords", "align-text", "amdefine", "ansi-regex", "ansi-styles", "anymatch", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-find-index", "array-flatten", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "balanced-match", "base", "base64-js", "bcrypt-pbkdf", "big.js", "binary-extensions", "block-stream", "bn.js", "body", "body-parser", "boom", "brace-expansion", "braces", "brorand", "browser-resolve", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-xor", "builtin-modules", "builtin-status-codes", "bytes", "cache-base", "camelcase", "camelcase-keys", "caniuse-lite", "caseless", "center-align", "chalk", "chokidar", "cipher-base", "class-utils", "clean-css", "cliui", "code-point-at", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "component-emitter", "concat-map", "console-browserify", "console-control-strings", "constants-browserify", "content-disposition", "content-type", "continuable-cache", "cookie", "cookie-signature", "copy-descriptor", "cordova-android", "cordova-browser", "cordova-ios", "cordova-plugin-advanced-http", "cordova-plugin-badge", "cordova-plugin-customurlscheme", "cordova-plugin-device", "cordova-plugin-file", "cordova-plugin-inappbrowser", "cordova-plugin-ionic-keyboard", "cordova-plugin-ionic-webview", "cordova-plugin-local-notification", "cordova-plugin-network-information", "cordova-plugin-splashscreen", "cordova-plugin-statusbar", "cordova-plugin-whitelist", "cordova-sqlite-storage", "cordova-sqlite-storage-dependencies", "cordova-support-google-services", "core-util-is", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "cryptiles", "crypto-browserify", "currently-unhandled", "d", "dashdash", "debug", "decamelize", "decode-uri-component", "define-properties", "define-property", "delayed-stream", "delegates", "depd", "des.js", "destroy", "diff", "diffie-hellman", "doctrine", "domain-browser", "dotenv", "dotenv-defaults", "dotenv-webpack", "ecc-jsbn", "ee-first", "electron-to-chromium", "elliptic", "emojis-list", "encodeurl", "enhanced-resolve", "errno", "error", "error-ex", "es-abstract", "es-to-primitive", "es5-ext", "es6-iterator", "es6-map", "es6-set", "es6-symbol", "es6-weak-map", "escape-html", "escape-string-regexp", "escope", "esprima", "esrecurse", "estraverse", "estree-walker", "esutils", "etag", "event-emitter", "events", "evp_bytestokey", "execa", "expand-brackets", "expand-range", "express", "ext", "extend", "extend-shallow", "extglob", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "faye-websocket", "filename-regex", "fill-range", "finalhandler", "find-up", "for-in", "for-own", "forever-agent", "form-data", "forwarded", "fragment-cache", "fresh", "fs-extra", "fs.realpath", "fsevents", "fstream", "function-bind", "gauge", "gaze", "get-caller-file", "get-stdin", "get-stream", "get-value", "getpass", "glob", "glob-base", "glob-parent", "globule", "graceful-fs", "har-schema", "har-validator", "has", "has-ansi", "has-flag", "has-symbols", "has-unicode", "has-value", "has-values", "hash-base", "hash.js", "hmac-drbg", "hoek", "hosted-git-info", "http-errors", "http-parser-js", "http-signature", "https-browserify", "ion2-calendar", "ionic-angular", "ionic-cache", "ionicons", "jquery", "moment", "phonegap-plugin-multidex", "rxjs", "sw-toolbox", "tslint", "tunnel-agent", "typescript", "underscore", "zone.js"], "https://github.com/mdolab/OpenAeroStruct": ["matplotlib", "numpy", "openmdao", "scipy", "mock", "networkx", "numpydoc", "six", "sphinx", "sphinx-rtd-theme", "sqlitedict", "parameterized", "redbaron", "requests-mock"], "https://github.com/amcpherson/remixt": ["appnope", "backcall", "bokeh", "certifi", "cycler", "decorator", "dill", "ipython", "ipython-genutils", "jedi", "jinja2", "kiwisolver", "markupsafe", "matplotlib", "networkx", "numexpr", "numpy", "packaging", "pandas", "parso", "pexpect", "pickleshare", "pillow", "prompt-toolkit", "ptyprocess", "pygments", "pyparsing", "python-dateutil", "pytz", "pyyaml", "scipy", "seaborn", "six", "tables", "tornado", "traitlets", "typing-extensions", "wcwidth"], "https://github.com/fbpic/fbpic": ["h5py", "numba", "numpy", "python-dateutil", "scipy", "more-itertools", "openpmd-viewer", "pytest"], "https://github.com/sjcross/MIA": ["com.atlassian.commonmark:commonmark", "com.github.SJCross:Common", "de.biomedical-imaging.imagej:ij_ridge_detect", "fr.inra.ijpb:MorphoLibJ_", "io.github.classgraph:classgraph", "mpicbg:mpicbg", "net.imagej:imagej", "net.imagej:imagej-legacy", "net.imagej:imagej-ops", "net.imagej:imagej-ui-swing", "net.objecthunter:exp4j", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-project-info-reports-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.maven:maven-model", "org.apache.poi:poi", "org.apache.poi:poi-ooxml", "org.apache.xmlbeans:xmlbeans", "org.codehaus.mojo:exec-maven-plugin", "org.eluder.coveralls:coveralls-maven-plugin", "org.junit.jupiter:junit-jupiter-engine", "org.junit.jupiter:junit-jupiter-params", "sc.fiji:AnalyzeSkeleton_", "sc.fiji:Auto_Local_Threshold", "sc.fiji:bUnwarpJ_", "sc.fiji:Colocalisation_Analysis", "sc.fiji:Colour_Deconvolution", "sc.fiji:CorrectBleach_", "sc.fiji:TrackMate_", "sc.fiji:Trainable_Segmentation"], "https://github.com/RiceMunk/omnifit": ["astropy", "lmfit", "matplotlib"], "https://github.com/cronelab/bci2000web": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-builder-react-jsx-experimental", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-default-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-default-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-development", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-react-pure-annotations", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/preset-react", "@babel/register", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@popperjs/core", "@restart/context", "@restart/hooks", "@sindresorhus/is", "@szmarczak/http-timer", "@types/anymatch", "@types/classnames", "@types/color-name", "@types/glob", "@types/html-minifier-terser", "@types/invariant", "@types/json-schema", "@types/minimatch", "@types/node", "@types/prop-types", "@types/react", "@types/react-transition-group", "@types/source-list-map", "@types/tapable", "@types/uglify-js", "@types/warning", "@types/webpack", "@types/webpack-sources", "@types/websocket", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abbrev", "accepts", "acorn", "ajv", "ajv-errors", "ajv-keywords", "ansi-align", "ansi-regex", "ansi-styles", "anymatch", "aproba", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1.js", "assert", "assign-symbols", "async-each", "async-limiter", "atob", "babel-loader", "babel-plugin-dynamic-import-node", "balanced-match", "base", "base64-js", "bci2k", "big.js", "binary-extensions", "bluebird", "bn.js", "body-parser", "boolbase", "bootstrap", "boxen", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "cacheable-request", "caller-callsite", "caller-path", "callsites", "camel-case", "camelcase", "caniuse-lite", "chalk", "chokidar", "chownr", "chrome-trace-event", "ci-info", "cipher-base", "class-utils", "classnames", "clean-css", "clean-webpack-plugin", "cli-boxes", "cliui", "clone-response", "collection-visit", "color-convert", "color-name", "commander", "commondir", "component-emitter", "concat-map", "concat-stream", "configstore", "console-browserify", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "core-js-compat", "core-util-is", "cosmiconfig", "create-ecdh", "create-hash", "create-hmac", "cross-env", "cross-spawn", "crypto-browserify", "crypto-random-string", "css-loader", "express", "express-ws", "html-webpack-plugin", "mini-css-extract-plugin", "nodemon", "opn", "postcss-loader", "react", "react-bootstrap", "react-dom", "react-router-dom", "sass", "sass-loader", "telnet-client", "webpack", "webpack-cli", "write-file-webpack-plugin"], "https://github.com/epigen/crop-seq": ["argparse", "flowcytometrytools", "h5py", "matplotlib", "numpy", "pandas", "scikit-learn", "scipy", "seaborn", "statsmodels"], "https://github.com/rholson1/peyecoder": ["numpy", "opencv-python", "pillow", "pyaudio", "pyside2", "python-dateutil", "shiboken2", "six", "sortedcontainers", "timecode", "opencv-python-headless"], "https://github.com/dmnfarrell/pandastable": ["future", "matplotlib", "numexpr", "pandas", "xlrd", "numpy"], "https://github.com/YeoLab/flotilla": ["cython", "flake8", "ipython", "ipywidgets", "jinja2", "joblib", "jsonschema", "matplotlib", "networkx", "nose", "numpy", "pandas", "patsy", "pip", "pymongo", "pytest", "pyyaml", "pyzmq", "scikit-learn", "scipy", "seaborn", "setuptools", "six", "statsmodels", "tornado", "brewer2mpl", "husl", "pytest-cov", "python-coveralls", "semantic-version", "xlrd", "fabric", "jupyter", "numpydoc", "runipy", "sphinx", "pandoc", "sinatra", "rack", "rack-protection", "tilt"], "https://github.com/amisr/flipchem": ["numpy"], "https://github.com/TGAC/brassica": ["activerecord-delay_touching", "annotate", "autoprefixer-rails", "better_errors", "binding_of_caller", "bio-vcf", "bootstrap-sass", "capistrano-chruby", "capistrano-rails", "capistrano3-delayed-job", "capistrano3-puma", "capybara", "coffee-rails", "compass-rails", "cookies_eu", "daemons", "database_cleaner", "delayed_job", "delayed_job_active_record", "devise", "dotenv-rails", "draper", "elasticsearch-model", "elasticsearch-rails", "exception_notification", "factory_bot_rails", "faker", "font-awesome-sass", "haml-rails", "hashie", "jquery-rails", "kaminari", "launchy", "nokogiri", "obo", "omniauth", "omniauth-orcid", "paperclip", "pg", "poltergeist", "pry", "pry-doc", "pry-nav", "pry-rails", "puma", "quiet_assets", "railroady", "rails", "reform", "reform-rails", "roo", "roo-xls", "rspec-html-matchers", "rspec-rails", "rubyzip", "sass-rails", "scenic", "shoulda-matchers", "simplecov", "spring", "squeel", "therubyracer", "thin", "typhoeus", "uglifier", "vcr", "webmock", "whenever", "writeexcel", "actionmailer", "actionpack", "actionview", "activejob", "activemodel", "activerecord", "activesupport", "addressable", "arel", "bcrypt", "builder", "capistrano", "capistrano-bundler", "capistrano-stats", "chronic", "chunky_png", "climate_control", "cliver", "cocaine", "coderay", "coffee-script", "coffee-script-source", "colorize", "compass", "concurrent-ruby", "crack", "crass", "debug_inspector", "declarative", "declarative-builder", "declarative-option", "diff-lcs", "disposable", "docile", "dotenv", "elasticsearch", "elasticsearch-api", "elasticsearch-transport", "erubis", "ethon", "eventmachine", "execjs", "factory_bot", "faraday", "ffi", "fssm", "globalid", "haml", "hashdiff", "hike", "html2haml", "i18n", "jquery-cookie-rails", "json", "jwt", "libv8", "loofah", "mail", "method_source", "mime-types", "mime-types-data", "mimemagic", "minitest", "mini_mime", "mini_portile2", "multipart-post", "multi_json", "multi_xml", "net-scp", "net-ssh", "oauth2", "omniauth-oauth2", "orm_adapter", "polyamorous", "public_suffix", "rack", "rack-test", "rails-deprecated_sanitizer", "rails-dom-testing", "rails-html-sanitizer", "railties", "rake", "ref", "representable", "request_store", "responders", "rspec", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec-support", "ruby-ole", "ruby_parser", "safe_yaml", "sass", "sexp_processor", "simplecov-html", "slop", "spreadsheet", "sprockets", "sprockets-rails", "sshkit", "thor", "thread_safe", "tilt", "tzinfo", "uber", "warden", "websocket-driver", "websocket-extensions", "xpath", "yard"], "https://github.com/silx-kit/fabio": ["cython", "lxml", "numpy", "sphinx", "sphinxcontrib-programoutput", "h5py", "pillow", "wheel"], "https://github.com/numericalalgorithmsgroup/dfols": ["numpy", "pandas", "scipy", "nose"], "https://github.com/zeeguu-ecosystem/Zeeguu-API": ["beautifulsoup4", "blinker", "feedparser", "flask", "flask-assets", "flask-cors", "flask-sqlalchemy", "mysqlclient", "numpy", "regex", "sentry-sdk"], "https://github.com/AVAuco/ssd_head_keras": ["absl-py", "apturl", "astor", "attrs", "backcall", "beautifulsoup4", "bleach", "blinker", "brlapi", "chardet", "checkbox-support", "command-not-found", "cryptography", "cycler", "decorator", "defer", "defusedxml", "entrypoints", "feedparser", "future", "gast", "google-pasta", "grpcio", "guacamole", "h5py", "html5lib", "httplib2", "idna", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "keras", "keras-applications", "keras-preprocessing", "kiwisolver", "language-selector", "louis", "lxml", "mako", "markdown", "markupsafe", "matplotlib", "mistune", "mock", "mpmath", "nbconvert", "nbformat", "nose", "notebook", "numpy", "oauthlib", "onboard", "opencv-python", "padme", "pandas", "pandocfilters", "parso", "pexpect", "pickleshare", "pkg-resources", "plainbox", "prometheus-client", "prompt-toolkit", "protobuf", "ptyprocess", "pyasn1", "pycups", "pycurl", "pygments", "pygobject", "pyjwt", "pyparsing", "pyrsistent", "python-apt", "python-dateutil", "python-debian", "python-systemd", "pytz", "pyxdg", "pyyaml", "pyzmq", "qtconsole", "reportlab", "requests", "scikit-learn", "scipy", "screen-resolution-extra", "send2trash", "sessioninstaller", "six", "ssh-import-id", "sympy", "system-service", "tensorboard", "tensorflow-estimator", "tensorflow-gpu", "termcolor", "terminado", "testpath", "tornado", "tqdm", "traitlets", "ufw", "unattended-upgrades", "urllib3", "virtualenv", "wcwidth", "webencodings", "werkzeug", "widgetsnbextension", "wrapt", "xdiagnose", "xkit", "xlsxwriter"], "https://github.com/PRIMAVERA-H2020/primavera-dmt": ["cf-units", "cython", "django", "django-filter", "django-solo", "django-tables2", "mock", "netcdftime", "numpy", "partial-date-time", "psycopg2"], "https://github.com/MartinMalyMM/pairef": ["matplotlib", "numpy", "pytest", "sphinx", "sphinx-rtd-theme"], "https://github.com/ImperialCollegeLondon/covid19model": ["datetime", "pyyaml", "scipy", "statsmodels"], "https://github.com/BrkRaw/bruker": ["nibabel", "numpy", "openpyxl", "pandas", "pillow", "shleeh", "tqdm", "xlrd"], "https://github.com/oicr-gsi/shesmu": ["ca.on.oicr.gsi:server-utils", "ca.on.oicr.gsi:shesmu-pluginapi", "com.cosium.code:maven-git-code-format", "com.fasterxml.jackson.core:jackson-databind", "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", "com.fasterxml.jackson.module:jackson-module-jsonSchema", "commons-cli:commons-cli", "io.github.bonigarcia:webdrivermanager", "io.prometheus:simpleclient", "io.prometheus:simpleclient_common", "io.prometheus:simpleclient_hotspot", "org.apache.commons:commons-text", "org.apache.httpcomponents:httpclient", "org.codehaus.mojo:build-helper-maven-plugin", "org.junit.jupiter:junit-jupiter-api", "org.junit.jupiter:junit-jupiter-engine", "org.kohsuke.metainf-services:metainf-services", "org.ow2.asm:asm-commons", "org.ow2.asm:asm-tree", "org.ow2.asm:asm-util", "org.seleniumhq.selenium:selenium-java", "pl.project13.maven:git-commit-id-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-shade-plugin", "com.atlassian.jira:jira-rest-java-client-api", "com.atlassian.jira:jira-rest-java-client-core", "io.atlassian.fugue:fugue", "com.hierynomus:sshj", "org.mongodb:mongodb-driver-sync", "org.apache.maven.plugins:maven-surefire-plugin", "com.google.code.gson:gson", "com.squareup.okhttp:logging-interceptor", "com.squareup.okhttp:okhttp", "io.gsonfire:gson-fire", "io.swagger:swagger-annotations", "io.swagger:swagger-codegen-maven-plugin", "javax.annotation:javax.annotation-api", "org.threeten:threetenbp", "org.apache.maven.plugins:maven-jar-plugin", "ca.on.oicr.gsi.runscanner:runscanner-dto", "com.github.lgooddatepicker:LGoodDatePicker", "ca.on.oicr.gsi:cerberus-client", "ca.on.oicr.gsi:pipedev-decider-utils", "ca.on.oicr.gsi:pipedev-provenance-impl", "ca.on.oicr.gsi:provenance-core", "com.github.seqware:seqware-pipeline"], "https://github.com/coderdj/emo": ["bokeh", "colorama", "django", "django-auth-ldap", "flake8", "flask", "greenlet", "itsdangerous", "jinja2", "markdown", "markupsafe", "mccabe", "mpld3", "nose", "pep8", "prettytable", "pyflakes", "pygments", "pymongo", "pyparsing", "pystache", "python-dateutil", "pytz", "pyyaml", "pyzmq", "requests", "six", "south", "tables", "tornado", "tqdm", "werkzeug", "wheel", "blint", "node-static", "phantomjs", "bootstrap", "font-awesome", "jquery", "moment", "node-sass", "cglib:cglib", "commons-io:commons-io", "junit:junit", "log4j:log4j", "org.springframework:spring-context", "org.springframework:spring-core", "com.highcharts.export:highcharts-export-convert", "commons-codec:commons-codec", "commons-fileupload:commons-fileupload", "commons-lang:commons-lang", "javax.servlet:javax.servlet-api", "org.apache.maven.plugins:maven-war-plugin", "org.mortbay.jetty:jetty-maven-plugin", "org.springframework:spring-web", "org.springframework:spring-webmvc", "taglibs:standard", "com.google.code.gson:gson"], "https://github.com/ladisk/DyS": ["matplotlib", "numpy", "python", "scipy", "vtk"], "https://github.com/Quasars/orange-spectroscopy": ["anyqt", "colorcet", "extranormal3", "h5py", "orange3", "pillow", "pyqtgraph", "renishawwire", "scipy", "serverfiles", "spectral"], "https://github.com/WorldVistA/VistA": ["chardet", "configparser", "future", "paramiko", "pillow", "reportlab", "xlrd", "pexpect"], "https://github.com/faroit/CountNet": ["audioread", "bleach", "decorator", "enum34", "h5py", "html5lib", "joblib", "keras", "librosa", "llvmlite", "markdown", "numba", "numpy", "protobuf", "pyyaml", "resampy", "scikit-learn", "scipy", "sklearn", "soundfile", "tensorflow", "werkzeug", "cffi", "pycparser", "six", "tensorflow-tensorboard", "wheel"], "https://github.com/HHTpy/HHTpywrapper": ["astropy", "patool", "pymatbridge", "pyunpack", "pyzmq", "matplotlib", "numpy", "scipy"], "https://github.com/constantinpape/z5": ["junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.janelia.saalfeldlab:n5"], "https://github.com/samapriya/hdxpop": ["beautifulsoup4", "requests"], "https://github.com/pik-copan/pycopancore": ["blist", "numba", "numpy", "profilehooks", "pylama", "pylama-pylint", "pylint", "pytest", "pytest-cov", "python-louvain", "scipy", "sympy"], "https://github.com/MARLEY-MC/marley": ["guzzle-sphinx-theme", "sphinx"], "https://github.com/garrettwrong/cuTWED": ["cffi", "ipywidgets", "numpy", "pycuda", "pytest", "tqdm", "pip", "setuptools", "six", "virtualenv", "recommonmark", "sphinx", "sphinx-rtd-theme"], "https://github.com/greenape/mknotebooks": ["mkdocs", "nbconvert", "pytest", "twine", "async-generator", "attrs", "bleach", "certifi", "cffi", "chardet", "click", "colorama", "cryptography", "defusedxml", "docutils", "entrypoints", "future", "idna", "importlib-metadata", "iniconfig", "ipython-genutils", "jeepney", "jinja2", "joblib", "jsonschema", "jupyter-client", "jupyter-core", "jupyterlab-pygments", "keyring", "livereload", "lunr", "markdown", "markupsafe", "mistune", "more-itertools", "nbclient", "nbformat", "nest-asyncio", "nltk", "packaging", "pandocfilters", "pkginfo", "pluggy", "py", "pycparser", "pygments", "pyparsing", "pyrsistent", "python-dateutil", "pyyaml", "pyzmq", "readme-renderer", "regex", "requests", "requests-toolbelt", "rfc3986", "secretstorage", "six", "testpath", "toml", "tornado", "tqdm", "traitlets", "urllib3", "webencodings", "zipp", "gitpython", "matplotlib", "pandas", "ipykernel", "ipywidgets", "mkdocs-material", "numpy", "tabulate", "appnope", "argon2-cffi", "backcall", "cycler", "decorator", "gitdb", "ipython", "jedi", "kiwisolver", "mkdocs-material-extensions", "notebook", "parso", "pexpect", "pickleshare", "pillow", "prometheus-client", "prompt-toolkit", "ptyprocess", "pymdown-extensions", "pytz", "send2trash", "smmap", "terminado", "wcwidth", "widgetsnbextension"], "https://github.com/bbglab/muts-needle-plot": ["biojs-events", "browserify", "d3", "d3-tip", "del", "gulp", "gulp-chmod", "gulp-concat", "gulp-gzip", "gulp-minify-css", "gulp-rename", "gulp-streamify", "gulp-uglify", "gulp-util", "gulp-watch", "js-class", "js-extend", "mkdirp", "sniper", "underscore", "vinyl-source-stream", "watchify"], "https://github.com/NickleDave/crowsetta": ["attrs", "evfuncs", "koumura", "numpy", "scipy"], "https://github.com/ISA-tools/stato": ["junit:junit", "net.sourceforge.owlapi:org.semanticweb.hermit", "net.sourceforge.owlapi:owlapi-distribution", "net.sourceforge.owlapi:owlapi-reasoner", "org.apache.maven.plugins:maven-compiler-plugin"], "https://github.com/LJMUAstroecology/flirpy": ["natsort", "numpy", "opencv-python-headless", "psutil", "pyftdi", "pyserial", "pytest", "pyudev", "pyusb", "tqdm"], "https://github.com/OntoElect/Code": ["nltk", "numpy", "pandas", "psutil", "pyahocorasick", "textract", "foo"], "https://github.com/diging/giles-eco-cepheus": ["com.github.jai-imageio:jai-imageio-core", "commons-io:commons-io", "edu.asu.diging.giles-eco:september-util", "edu.asu.diging:giles-eco-kafka-util", "edu.asu.diging:giles-eco-requests", "edu.asu.diging:giles-eco-util", "javax.servlet:javax.servlet-api", "javax.servlet:jstl", "junit:junit", "log4j:log4j", "org.apache.maven.plugins:maven-war-plugin", "org.apache.pdfbox:pdfbox", "org.apache.pdfbox:pdfbox-tools", "org.apache.tika:tika-core", "org.apache.tika:tika-parsers", "org.apache.tiles:tiles-api", "org.apache.tiles:tiles-core", "org.apache.tiles:tiles-jsp", "org.apache.tiles:tiles-servlet", "org.apache.tiles:tiles-template", "org.apache.tomcat.maven:tomcat7-maven-plugin", "org.aspectj:aspectjrt", "org.aspectj:aspectjweaver", "org.codehaus.mojo:buildnumber-maven-plugin", "org.mockito:mockito-all", "org.slf4j:jcl-over-slf4j", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "org.springframework.kafka:spring-kafka", "org.springframework.security:spring-security-config", "org.springframework.security:spring-security-core", "org.springframework.security:spring-security-taglibs", "org.springframework:spring-aop", "org.springframework:spring-context", "org.springframework:spring-core", "org.springframework:spring-web", "org.springframework:spring-webmvc"], "https://github.com/scikit-hep/mplhep": ["matplotlib", "numpy", "packaging", "requests", "scipy"], "https://github.com/alimanfoo/vcfnp": ["h5py", "numpy", "pyfasta", "cython", "nose"], "https://github.com/bjodah/finitediff": ["numpy"], "https://github.com/pysit/pysit": ["matplotlib", "numpy", "obspy", "pyamg", "scipy"], "https://github.com/observingClouds/eurec4a_snd": ["basemap", "basemap-data-hires", "bottleneck", "eccodes", "matplotlib", "metpy", "netcdf4", "numpy", "pillow", "tqdm"], "https://github.com/colloidlab/ccc-calculator": ["numpy", "pyyaml"], "https://github.com/elihuihms/itcsimlib": ["matplotlib", "numpy", "pyx", "scipy", "sympy"], "https://github.com/tigefa4u/tigefa4u.github.io": ["twbs/bootstrap", "github-pages", "html-proofer", "jekyll-admin", "json", "octopress", "pygments.rb", "rake", "rouge", "travis", "wdm"], "https://github.com/dvolgyes/zenodo_get": ["requests", "wget"], "https://github.com/alexander-rossner/dh-researchtool-landscape": ["serve"], "https://github.com/pylayers/pylayers": ["appnope", "apptools", "attrs", "backcall", "basemap", "bleach", "certifi", "chardet", "click", "configobj", "cycler", "decorator", "defusedxml", "descartes", "dominate", "entrypoints", "envisage", "future", "geocoder", "graphviz", "h5py", "idna", "imageio", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "kiwisolver", "llvmlite", "markupsafe", "matplotlib", "mayavi", "mistune", "nbconvert", "nbformat", "networkx", "notebook", "numba", "numpy", "osmapi", "pandas", "pandocfilters", "parso", "pexpect", "pickleshare", "pillow", "prometheus-client", "prompt-toolkit", "ptyprocess", "pyface", "pygments", "pylayers", "pyparsing", "pyproj", "pyrsistent", "pyshp", "python-dateutil", "pytz", "pyzmq", "qtconsole", "ratelim", "requests", "scikit-learn", "scipy", "seaborn", "send2trash", "shapely", "simplejson", "simplekml", "six", "sklearn", "smopy", "terminado", "testpath", "torch", "torchfile", "torchvision", "torchviz", "tornado", "tqdm", "traitlets", "traits", "traitsui", "triangle", "urllib3", "visdom", "vtk", "wcwidth", "webencodings", "websocket-client", "widgetsnbextension"], "https://github.com/alexrashed/eval_rest": ["com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-databind", "com.h2database:h2", "com.jayway.jsonpath:json-path", "commons-beanutils:commons-beanutils", "javax.el:javax.el-api", "javax.servlet:javax.servlet-api", "javax.ws.rs:javax.ws.rs-api", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-eclipse-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.eclipse.persistence:eclipselink", "org.glassfish.jersey.containers:jersey-container-jetty-http", "org.glassfish.jersey.containers:jersey-container-servlet", "org.glassfish.jersey.containers:jersey-container-servlet-core", "org.glassfish.jersey.core:jersey-client", "org.glassfish.jersey.core:jersey-server", "org.glassfish.jersey.ext:jersey-declarative-linking", "org.glassfish.jersey.media:jersey-media-json-jackson", "org.glassfish.jersey.media:jersey-media-moxy", "org.glassfish.web:javax.el", "org.hibernate.javax.persistence:hibernate-jpa-2.1-api", "org.jboss.resteasy:async-http-servlet-3.0", "org.jboss.resteasy:resteasy-atom-provider", "org.jboss.resteasy:resteasy-cache-core", "org.jboss.resteasy:resteasy-client", "org.jboss.resteasy:resteasy-jaxb-provider", "org.jboss.resteasy:resteasy-jaxrs", "org.jboss.resteasy:resteasy-jettison-provider", "org.jboss.resteasy:resteasy-links", "org.jboss.resteasy:resteasy-multipart-provider", "org.jboss.resteasy:resteasy-servlet-initializer", "org.jboss.resteasy:resteasy-yaml-provider", "org.springframework.hateoas:spring-hateoas", "org.springframework.plugin:spring-plugin-core", "org.springframework:spring-core", "org.springframework:spring-test", "org.springframework:spring-web", "org.springframework:spring-webmvc", "at.ac.tuwien.dsg.bakk:service", "org.apache.maven.plugins:maven-war-plugin", "org.eclipse.jetty:jetty-maven-plugin", "at.ac.tuwien.dsg.bakk:model", "at.ac.tuwien.dsg.bakk.rest:base"], "https://github.com/jovo/PyGraphStat": ["h5py", "matplotlib", "multiprocessing", "networkx", "numpy", "scipy"], "https://github.com/dannyboscan/angular-and-rails": ["angular-rails-templates", "angular_rails_csrf", "devise", "jbuilder", "rails", "sass-rails", "sdoc", "spring", "sqlite3", "uglifier", "actionmailer", "actionpack", "actionview", "activemodel", "activerecord", "activesupport", "arel", "bcrypt", "builder", "erubis", "execjs", "hike", "i18n", "json", "mail", "mime-types", "minitest", "multi_json", "orm_adapter", "polyglot", "rack", "rack-test", "railties", "rake", "rdoc", "sass", "sprockets", "sprockets-rails", "thor", "thread_safe", "tilt", "treetop", "tzinfo", "warden"], "https://github.com/Aletechdev/ava": ["biojs-events", "browserify", "d3", "d3-tip", "del", "gulp", "gulp-chmod", "gulp-concat", "gulp-gzip", "gulp-minify-css", "gulp-rename", "gulp-streamify", "gulp-uglify", "gulp-util", "gulp-watch", "js-class", "js-extend", "mkdirp", "sniper", "underscore", "vinyl-source-stream", "watchify"], "https://github.com/annotation/text-fabric": ["flask", "ipython", "markdown", "psutil", "pygithub", "pyyaml", "requests", "rpyc"], "https://github.com/ksmet1977/luxpy": ["imageio", "matplotlib", "numpy", "pandas", "scipy"], "https://github.com/thorstenwagner/spie-photonics-europe-2016": ["javax.vecmath:vecmath", "junit:junit", "org.apache.commons:commons-math3", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-source-plugin"], "https://github.com/root-project/root": ["cffi", "metakernel", "notebook", "numba", "numpy", "cppyy-backend", "cppyy-cling", "VSSDK.CoreUtility", "VSSDK.CoreUtility.10", "VSSDK.Editor", "VSSDK.Editor.10", "VSSDK.IDE", "VSSDK.IDE.10", "VSSDK.IDE.8", "VSSDK.IDE.9", "VSSDK.OLE.Interop", "VSSDK.Shell.10", "VSSDK.Shell.Immutable.10", "VSSDK.Shell.Interop", "VSSDK.Shell.Interop.8", "VSSDK.Shell.Interop.9", "VSSDK.Text", "VSSDK.Text.10", "VSSDK.TextManager.Interop", "VSSDK.TextManager.Interop.8"], "https://github.com/slimsuite/SLiMScape": ["org.apache.commons:commons-csv", "org.apache.felix:maven-bundle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.biojava:biojava3-core", "org.cytoscape:presentation-api", "org.cytoscape:service-api", "org.cytoscape:session-api", "org.cytoscape:swing-app-api", "org.cytoscape:swing-application-api", "org.ops4j.pax.logging:pax-logging-api", "org.osgi:org.osgi.core"], "https://github.com/AlanLoh/nenupy": ["astroplan", "astropy", "dask", "healpy", "matplotlib", "mocpy", "numba", "numexpr", "numpy", "pyproj", "reproject", "scipy", "sqlalchemy"], "https://github.com/waterlandlab/CluBCpG": ["fastcluster", "joblib", "numpy", "pandas", "pebble", "pysam", "scikit-learn", "scipy", "tqdm", "sphinx-argparse", "sphinx-rtd-theme", "sphinxcontrib-autoprogram"], "https://github.com/diging/citesphere-importer": ["com.google.guava:guava", "com.opencsv:opencsv", "com.zaxxer:HikariCP", "commons-io:commons-io", "edu.asu.diging:citesphere-messages", "edu.asu.diging:simple-users", "javax.servlet:javax.servlet-api", "javax.xml.bind:jaxb-api", "junit:junit", "log4j:log4j", "mysql:mysql-connector-java", "nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect", "org.apache.commons:commons-collections4", "org.apache.commons:commons-lang3", "org.apache.maven.plugins:maven-war-plugin", "org.apache.tomcat.maven:tomcat7-maven-plugin", "org.aspectj:aspectjrt", "org.aspectj:aspectjweaver", "org.glassfish.jaxb:jaxb-runtime", "org.hibernate:hibernate-core", "org.mockito:mockito-all", "org.slf4j:jcl-over-slf4j", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "org.springframework.data:spring-data-jpa", "org.springframework.data:spring-data-releasetrain", "org.springframework.kafka:spring-kafka", "org.springframework.security:spring-security-config", "org.springframework.security:spring-security-core", "org.springframework.security:spring-security-taglibs", "org.springframework:spring-aop", "org.springframework:spring-context", "org.springframework:spring-framework-bom", "org.springframework:spring-webmvc", "org.thymeleaf.extras:thymeleaf-extras-springsecurity5", "org.thymeleaf:thymeleaf", "org.thymeleaf:thymeleaf-spring5"], "https://github.com/OpenDroneMap/ODM": ["appsettings", "attrs", "beautifulsoup4", "cloudpickle", "cryptography", "edt", "exifread", "fiona", "gpxpy", "joblib", "laspy", "loky", "lxml", "matplotlib", "networkx", "numpy", "pillow", "psutil", "pyodm", "pyopenssl", "pyproj", "pysolar", "pytz", "pyyaml", "rasterio", "repoze-lru", "scikit-learn", "scipy", "xmltodict"], "https://github.com/openrsp/openrsp": ["sphinx", "sphinx-rtd-theme"], "https://github.com/AliTVTeam/AliTV": ["@babel/code-frame", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/highlight", "@babel/parser", "@babel/template", "@babel/traverse", "@babel/types", "abbrev", "acorn", "acorn-jsx", "agent-base", "agentkeepalive", "ajv", "align-text", "amdefine", "ansi-escapes", "ansi-regex", "ansi-styles", "append-transform", "aproba", "archy", "arg", "argparse", "array-find-index", "asn1", "assert-plus", "astral-regex", "async", "async-limiter", "asynckit", "aws-sign2", "aws4", "bcrypt-pbkdf", "bind-obj-methods", "bluebird", "browser-process-hrtime", "browserify-zlib", "buffer-crc32", "buffer-from", "builtin-modules", "builtins", "cacache", "caching-transform", "callsites", "camelcase", "camelcase-keys", "capture-stack-trace", "caseless", "catharsis", "center-align", "chalk", "chardet", "chownr", "clean-yaml-object", "cli", "cli-cursor", "cli-width", "cliui", "coffeescript", "color-convert", "color-name", "color-support", "colors", "combined-stream", "commander", "commondir", "concat-map", "concat-stream", "config-chain", "console-browserify", "convert-source-map", "copy-concurrently", "core-util-is", "coveralls", "cp-file", "cross-spawn", "cyclist", "dashdash", "date-now", "dateformat", "debug", "decamelize", "deep-is", "default-require-extensions", "delayed-stream", "diff", "doctrine", "dom-serializer", "domain-browser", "domelementtype", "domhandler", "domutils", "duplexify", "ecc-jsbn", "editorconfig", "ejs", "emoji-regex", "encoding", "end-of-stream", "entities", "err-code", "error-ex", "es6-error", "es6-promise", "es6-promisify", "escape-string-regexp", "escodegen", "eslint", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "esm", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "eventemitter2", "events-to-array", "exit", "extend", "external-editor", "extract-zip", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "fd-slicer", "figgy-pudding", "figures", "file-entry-cache", "find-cache-dir", "find-up", "findup-sync", "flat-cache", "flatted", "flush-write-stream", "foreground-child", "forever-agent", "form-data", "from2", "fs-exists-cached", "fs-minipass", "fs-write-stream-atomic", "fs.realpath", "function-loop", "functional-red-black-tree", "genfun", "get-caller-file", "get-stdin", "get-stream", "getobject", "getpass", "glob", "glob-parent", "globals", "graceful-fs", "growl", "grunt", "grunt-contrib-jasmine", "grunt-contrib-jshint", "grunt-contrib-nodeunit", "grunt-contrib-uglify", "grunt-coveralls", "grunt-eslint", "grunt-istanbul-coverage", "grunt-jsbeautifier", "grunt-jsdoc", "grunt-known-options", "grunt-legacy-log", "grunt-legacy-log-utils", "grunt-legacy-util", "grunt-template-jasmine-istanbul", "gzip-size", "handlebars", "har-schema", "har-validator", "has-ansi", "has-flag", "hasha", "hooker", "hosted-git-info", "html-escaper", "htmlparser2", "http-cache-semantics", "http-proxy-agent", "http-signature", "https-proxy-agent", "humanize-ms", "iconv-lite", "iferr", "ignore", "ignore-walk", "import-fresh", "imurmurhash", "indent-string", "infer-owner", "inflight", "inherits", "ini", "inquirer", "ip", "is-arrayish", "is-buffer", "is-builtin-module", "is-extglob", "is-finite", "is-fullwidth-code-point", "is-glob", "is-promise", "is-stream", "is-typedarray", "is-utf8", "isarray", "isexe", "isstream", "istanbul", "istanbul-lib-coverage", "istanbul-lib-hook", "istanbul-lib-instrument", "istanbul-lib-report", "istanbul-lib-source-maps", "istanbul-reports", "js-beautify", "js-tokens", "js-yaml", "js2xmlparser", "jsbn", "jsdoc", "jsesc", "jshint", "json-parse-better-errors", "json-schema", "json-schema-traverse", "json-stable-stringify-without-jsonify", "json-stringify-safe", "jsonparse", "JSONStream", "jsprim", "kind-of", "klaw", "lazy-cache", "lcov-parse", "levn", "linkify-it"], "https://github.com/Finn-Lab/EukCC": ["configargparse", "ete3", "pre-commit", "pyfaidx", "pyyaml", "pygmes"], "https://github.com/amlalejini/ALife-2020--SignalGP-Genetic-Regulation": ["jekyll-relative-links", "hjson"], "https://github.com/rinde/RinECJ": ["ch.qos.logback:logback-classic", "com.google.code.findbugs:jsr305", "com.google.guava:guava", "com.google.truth:truth", "com.puppycrawl.tools:checkstyle", "edu.gmu.cs:ecj", "junit:junit", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.eclipse.m2e:lifecycle-mapping", "org.jacoco:jacoco-maven-plugin", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/spacetelescope/drizzlepac": ["acstools", "astropy", "astroquery", "bokeh", "fitsblender", "lxml", "matplotlib", "nictools", "numpy", "pandas", "photutils", "pypdf2", "pyyaml", "requests", "scikit-learn", "scipy", "spherical-geometry", "stregion", "stsci-image", "stsci-imagestats", "stsci-skypac", "stsci-stimage", "stsci-tools", "stwcs", "tables", "tweakwcs"], "https://github.com/smoh/gaia-comoving-stars": ["schwimmbad", "six"], "https://github.com/ckrapu/sprcom": ["matplotlib", "numpy", "scipy", "seaborn", "theano", "pymc3"], "https://github.com/Terradue/rOpenSearch": ["com.github.github:site-maven-plugin", "de.jutzig:github-release-plugin", "org.apache.maven.plugins:maven-antrun-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.scm:maven-scm-provider-gitexe", "org.codehaus.mojo:build-helper-maven-plugin", "org.codehaus.mojo:exec-maven-plugin"], "https://github.com/essepuntato/rash": ["electron-packager", "electron-prebuilt", "com.googlecode.maven-download-plugin:download-maven-plugin", "commons-cli:commons-cli", "commons-io:commons-io", "junit:junit", "net.sf.saxon:Saxon-HE", "org.apache.maven.plugins:maven-compiler-plugin", "async", "cheerio", "electron", "electron-json-storage", "electron-spell-check-provider", "electron-window-manager", "fs-extra", "gulp", "gulp-concat", "gulp-sourcemaps", "gulp-watch", "jquery", "melanke-watchjs", "node-datetime", "octonode", "request", "superagent", "net.lingala.zip4j:zip4j", "org.codehaus.mojo:exec-maven-plugin", "commons-configuration:commons-configuration", "commons-lang:commons-lang", "org.apache.commons:commons-lang3", "org.apache.jena:apache-jena-libs", "org.apache.maven.plugins:maven-clean-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.opennlp:opennlp-tools", "org.jsoup:jsoup", "org.slf4j:slf4j-api", "org.slf4j:slf4j-simple", "log4j:log4j", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-eclipse-plugin", "org.apache.maven.plugins:maven-enforcer-plugin", "org.apache.maven.plugins:maven-remote-resources-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.opennlp:opennlp-maxent", "org.codehaus.mojo:build-helper-maven-plugin", "org.slf4j:slf4j-log4j12", "org.slf4j:slf4j-nop", "ansi-html", "ansi-regex", "ansi-styles", "babel-code-frame", "babel-core", "babel-generator", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-builder-react-jsx", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helpers", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-class-properties", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-flow", "babel-plugin-syntax-jsx", "babel-plugin-syntax-object-rest-spread", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-class-properties", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-flow-strip-types", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-react-constant-elements", "babel-plugin-transform-react-display-name", "babel-plugin-transform-react-jsx", "babel-plugin-transform-react-jsx-self", "babel-plugin-transform-react-jsx-source", "babel-plugin-transform-regenerator", "babel-plugin-transform-runtime", "babel-plugin-transform-strict-mode", "babel-preset-es2015", "babel-preset-es2016", "babel-preset-es2017", "babel-preset-latest", "babel-preset-react", "babel-preset-react-app", "babel-register", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "brace-expansion", "chalk", "concat-map", "convert-source-map", "debug", "detect-indent", "escape-string-regexp", "eslint-config-react-app", "esutils", "eventsource", "faye-websocket", "globals", "has-ansi", "home-or-tmp", "html-entities", "inherits", "invariant", "is-finite", "jsesc", "json3", "json5", "minimatch", "minimist", "mkdirp", "ms", "number-is-nan", "opn", "original", "os-homedir", "os-tmpdir", "path-is-absolute", "pinkie", "pinkie-promise", "private", "querystringify", "react-dev-utils", "regenerate", "regenerator-transform", "regexpu-core", "regjsgen", "regjsparser", "repeating", "requires-port", "slash", "sockjs-client", "source-map", "source-map-support", "strip-ansi", "supports-color", "to-fast-properties", "trim-right", "url-parse", "websocket-driver", "websocket-extensions", "aphrodite", "brace", "isomorphic-fetch", "lodash", "material-ui", "mobx", "mobx-react", "node-uuid", "react", "react-ace", "react-dom", "react-scripts", "react-tap-event-plugin"], "https://github.com/pygridtools/gridmap": ["cloudpickle", "drmaa", "psutil", "pyzmq"], "https://github.com/dftlibs/numgrid": ["basis_set_exchange", "cffi", "cpp-coveralls", "numpy", "pycodestyle", "pytest", "PyYAML", "argcomplete", "asn1crypto", "atomicwrites", "attrs", "basis-set-exchange", "certifi", "chardet", "cryptography", "future", "idna", "ipaddress", "jsonschema", "more-itertools", "pluggy", "py", "pycparser", "pyopenssl", "pyrsistent", "pyyaml", "requests", "six", "urllib3"], "https://github.com/sckott/serrano": ["addressable", "ast", "codecov", "colorize", "crack", "docile", "faraday", "faraday_middleware", "hashdiff", "json", "multipart-post", "multi_json", "parallel", "parser", "power_assert", "public_suffix", "rainbow", "rake", "regexp_parser", "rexml", "rubocop", "rubocop-ast", "rubocop-performance", "ruby-progressbar", "safe_yaml", "simplecov", "simplecov-html", "standard", "test-unit", "thor", "unicode-display_width", "vcr", "webmock", "bundler"], "https://github.com/snewhouse/exotic-dna-ngs": ["adam", "art", "bamtools", "bamutil", "bbmap", "bcbio-nextgen", "bcbio-prioritize", "bcbio-variation", "bcbio-variation-recall", "bcftools", "beagle", "bedtools", "biopython", "blast", "blat", "bowtie2", "bwa", "bwakit", "canvas", "cnvkit", "cramtools", "cromwell", "crossmap", "cwl2wdl", "cwltool", "eigensoft", "ensembl-vep", "expansionhunter", "fastahack", "fastqc", "fermi2", "freebayes", "gatk", "gatk4", "gemini", "gvcftools", "hap-py", "hisat2", "igvtools", "impute2", "jannovar-cli", "khmer", "kraken-all", "lumpy-sv", "manta", "metaseq", "metasv", "minimap2", "mosaik", "multiqc", "ncbi-genome-download", "nextflow", "ngsutils", "parallel", "picard", "pindel", "platypus-variant", "plink", "plink2", "pysam", "pysamstats", "pywdl", "rtg-tools", "sambamba", "samblaster", "samtools", "shapeit", "singularity", "skewer", "smashbenchmarking", "snap-aligner", "snpeff", "snpsift", "sourmash", "sra-tools", "star", "strelka", "svtools", "svtyper", "ucsc-bedgraphtobigwig", "ucsc-bedtobigbed", "ucsc-bigbedtobed", "ucsc-bigwigsummary", "vardict", "vardict-java", "variantbam", "varscan", "vcfanno", "vcfkit", "vcflatten", "vcflib", "vcftoolbox", "vcftools", "wdltool"], "https://github.com/numenta/gridcodingrange": ["pybind11"], "https://github.com/KWB-R/fakin": ["bootstrap"], "https://github.com/fpavogt/fcmaker": ["aplpy", "astroplan", "astropy", "astroquery", "matplotlib", "numpy", "p2api", "pillow", "pytz", "pyyaml", "scipy"], "https://github.com/falafeljan/recogito-user-testing": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-compilation-targets", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/template", "@babel/traverse", "@babel/types", "@types/caseless", "@types/node", "@types/request", "@types/tough-cookie", "accepts", "acorn", "acorn-jsx", "acorn-node", "acorn-walk", "ajv", "ansi-escapes", "ansi-regex", "ansi-styles", "argparse", "array-flatten", "array-includes", "asn1", "asn1.js", "assert", "assert-plus", "astral-regex", "asynckit", "aws-sign2", "aws4", "babel-plugin-dynamic-import-node", "babelify", "balanced-match", "base64-js", "bcrypt-pbkdf", "bn.js", "body-parser", "brace-expansion", "brorand", "browser-pack", "browser-request", "browser-resolve", "browserify", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-xor", "builtin-status-codes", "bytes", "cached-path-relative", "callsites", "caniuse-lite", "caseless", "chalk", "chardet", "cipher-base", "cli-cursor", "cli-width", "cloudant-follow", "color-convert", "color-name", "combine-source-map", "combined-stream", "concat-map", "concat-stream", "console-browserify", "constants-browserify", "contains-path", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "core-js-compat", "core-util-is", "cors", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "dash-ast", "dashdash", "debug", "debug-log", "deep-is", "define-properties", "defined", "deglob", "delayed-stream", "depd", "deps-sort", "des.js", "destroy", "detective", "diffie-hellman", "doctrine", "domain-browser", "dotenv", "duplexer2", "ecc-jsbn", "ee-first", "electron-to-chromium", "elliptic", "emoji-regex", "encodeurl", "error-ex", "errs", "es-abstract", "es-to-primitive", "escape-html", "escape-string-regexp", "eslint", "eslint-config-standard", "eslint-config-standard-jsx", "eslint-import-resolver-node", "eslint-module-utils", "eslint-plugin-es", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-react", "eslint-plugin-standard", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "etag", "events", "evp_bytestokey", "exorcist", "express", "extend", "external-editor", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "fast-safe-stringify", "figures", "file-entry-cache", "finalhandler", "find-root", "find-up", "flat-cache", "flatted", "forever-agent", "form-data", "forwarded", "fresh", "fs.realpath", "function-bind", "functional-red-black-tree", "gensync", "get-assigned-identifiers", "get-stdin", "getpass", "glob", "glob-parent", "globals", "graceful-fs", "har-schema", "har-validator", "has", "has-flag", "has-symbols", "minimist", "nano", "node-fetch", "standard", "uuid"], "https://github.com/CalebBell/fluids": ["numpy", "scipy", "ipython", "nbsphinx", "numba", "numpydoc", "pint", "coveralls", "fuzzywuzzy", "pytest", "pytest-cov", "sympy"], "https://github.com/ImperialCollegeLondon/acoustics-db": ["boxsdk", "matplotlib", "pandas", "pillow"], "https://github.com/mfroeling/QMRITools": ["grunt", "grunt-compare-size", "grunt-contrib-concat", "grunt-contrib-csslint", "grunt-contrib-cssmin", "grunt-contrib-jshint", "grunt-contrib-qunit", "grunt-contrib-uglify", "grunt-git-authors", "grunt-html", "rimraf", "testswarm"], "https://github.com/tqbl/ood_audio": ["absl-py", "alabaster", "audioread", "babel", "cachetools", "certifi", "cffi", "chardet", "decorator", "docutils", "entrypoints", "flake8", "flake8-docstrings", "future", "google-auth", "google-auth-oauthlib", "grpcio", "h5py", "idna", "imagesize", "jinja2", "joblib", "librosa", "llvmlite", "markdown", "markupsafe", "mccabe", "numba", "numpy", "oauthlib", "packaging", "pandas", "pillow", "protobuf", "pyasn1", "pyasn1-modules", "pycodestyle", "pycparser", "pydocstyle", "pyflakes", "pygments", "pyparsing", "python-dateutil", "pytz", "requests", "requests-oauthlib", "resampy", "rsa", "scikit-learn", "scipy", "six", "snowballstemmer", "soundfile", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "tensorboard", "torch", "torchvision", "tqdm", "urllib3", "werkzeug"], "https://github.com/delphi-hub/delphi-webapp": ["@nuxt/opencollective", "@saeris/vue-spinners", "ansi-styles", "bootstrap", "bootstrap-vue", "chalk", "color-convert", "color-name", "consola", "escape-string-regexp", "has-flag", "lodash", "material-design-icons-iconfont", "node-fetch", "popper.js", "portal-vue", "supports-color", "vue", "vue-functional-data-merge", "vue-loading-overlay", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@hapi/address", "@hapi/bourne", "@hapi/hoek", "@hapi/joi", "@hapi/topo", "@intervolga/optimize-cssnano-plugin", "@mdi/font", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@sindresorhus/is", "@soda/friendly-errors-webpack-plugin", "@types/color-name", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "@types/normalize-package-data", "@types/q", "@vue/babel-helper-vue-jsx-merge-props", "@vue/babel-plugin-transform-vue-jsx", "@vue/babel-preset-app", "@vue/babel-preset-jsx", "@vue/babel-sugar-functional-vue", "@vue/babel-sugar-inject-h", "@vue/babel-sugar-v-model", "@vue/babel-sugar-v-on", "@vue/cli-overlay", "@vue/cli-plugin-babel", "@vue/cli-plugin-eslint", "@vue/cli-plugin-router", "@vue/cli-plugin-vuex", "@vue/cli-service", "@vue/cli-shared-utils", "@vue/component-compiler-utils", "@vue/preload-webpack-plugin", "@vue/web-component-wrapper", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "accepts", "acorn", "acorn-jsx", "acorn-walk", "address", "adler-32", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "alphanum-sort", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "any-promise", "anymatch", "aproba", "arch", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "astral-regex", "async", "async-each", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axios", "babel-code-frame", "babel-core", "babel-eslint", "babel-generator", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helpers", "babel-loader", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-dynamic-import-node", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-async-generators", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-object-rest-spread", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-generator-functions", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-preset-env", "babel-preset-stage-3", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "bfj", "big.js", "binary-extensions", "core-js", "cross-env", "css-loader", "eslint", "eslint-plugin-vue", "file-loader", "flat", "jquery", "sass", "sass-loader", "textarea-caret", "vue-axios", "vue-cli-plugin-vuetify", "vue-json-excel", "vue-resource", "vue-router", "vue-template-compiler", "vuelidate", "vuetify", "vuetify-loader", "xlsx"], "https://github.com/taishi-i/nagisa": ["dynet", "numpy", "six"], "https://github.com/slimgroup/Azure2019": ["azure", "numpy"], "https://github.com/afilipanog/afilipanog.github.io": ["bootstrap", "browser-sync", "font-awesome", "gulp", "gulp-clean-css", "gulp-header", "gulp-less", "gulp-rename", "gulp-uglify", "jquery"], "https://github.com/samapriya/Sat-Pipeline-CLI": ["bs4", "earthengine-api", "future", "gdal", "google-api-python-client", "planet", "pprint", "progressbar2", "pycrypto", "pyopenssl", "pyshp", "pytest", "requests", "requests-toolbelt", "retrying", "shapely", "simplejson"], "https://github.com/shah314/graphcoloring": ["commons-cli:commons-cli", "org.apache.maven.plugins:maven-compiler-plugin"], "https://github.com/YeoLab/gscripts": ["clipper", "matplotlib", "matplotlib-venn", "numpy", "pybedtools", "pysam", "scikit-learn", "scipy", "screed", "setuptools"], "https://github.com/FitzwilliamMuseum/ahrc-linking-islands": ["jekyll", "jekyll-feed", "jekyll-mentions", "jekyll-seo-tag", "jekyll-sitemap", "jemoji", "kramdown", "kramdown-parser-gfm", "minima", "tzinfo-data", "activesupport", "addressable", "colorator", "concurrent-ruby", "em-websocket", "eventmachine", "ffi", "forwardable-extended", "gemoji", "html-pipeline", "http_parser.rb", "i18n", "jekyll-sass-converter", "jekyll-watch", "liquid", "listen", "mercenary", "minitest", "mini_portile2", "nokogiri", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rexml", "rouge", "safe_yaml", "sass", "sass-listen", "thread_safe", "tzinfo", "zeitwerk"], "https://github.com/cern-fts/webfts": ["node-minify"], "https://github.com/brinkmanlab/feature_merge": ["gffutils", "pbr"], "https://github.com/dohalloran/phylo-node": ["chai", "download", "express", "mocha", "socket.io", "electron-prebuilt"], "https://github.com/IMTtugraz/PyQMRI": ["cython", "h5py", "ipyparallel", "mako", "matplotlib", "numexpr", "numpy", "pyfftw", "pyopencl", "pyqt5", "sympy"], "https://github.com/openearth/aeolis": ["matplotlib", "netcdf4", "numpy", "pandas"], "https://github.com/obreitwi/py-veer": ["pbr"], "https://github.com/InsightSoftwareConsortium/ITKElastix": ["ritk", "imageio", "ipympl", "ipywidgets", "itk", "itk-core", "itk-elastix", "itk-filtering", "itk-numerics", "itk-registration", "itk-segmentation", "itkwidgets", "jupyterlab", "matplotlib", "numpy", "pyqt5", "pyqt5-sip", "qtpy"], "https://github.com/meijer-jeroen/contingent-evolution-2020": ["circlize", "colorspace", "complexheatmap", "cowplot", "data-table", "dendsort", "devtools", "docstring", "doparallel", "foreach", "ggrepel", "ggthemes", "gplots", "gridtext", "heatmap-plus", "magick", "parallel", "rcolorbrewer", "scales", "tidyverse"], "https://github.com/pandera-dev/pandera": ["asv", "black", "codecov", "mypy", "numpy", "pandas", "pip", "pre-commit", "pylint", "pytest", "pytest-cov", "pyyaml", "scipy", "sphinx", "sphinx-autodoc-typehints", "sphinx-rtd-theme", "twine", "wrapt"], "https://github.com/cheshire3/cheshire3": ["docutils", "lxml", "lz4", "paste", "zopyx-txng3-ext"], "https://github.com/ludwig-burtscher/invenio-with-provenance": ["requests"], "https://github.com/CeON/CERMINE": ["junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.eclipse.m2e:lifecycle-mapping", "org.slf4j:jcl-over-slf4j", "tw.edu.ntu.csie:libsvm", "commons-fileupload:commons-fileupload", "javax.servlet.jsp:jsp-api", "javax.servlet:jstl", "javax.servlet:servlet-api", "jaxen:jaxen", "org.codehaus.jackson:jackson-jaxrs", "org.springframework:spring-context", "org.springframework:spring-web", "org.springframework:spring-webmvc", "pl.edu.icm.sedno:sedno-tools", "com.google.guava:guava", "com.itextpdf:itextpdf", "commons-cli:commons-cli", "commons-collections:commons-collections", "commons-configuration:commons-configuration", "commons-io:commons-io", "commons-lang:commons-lang", "edu.umass.cs.mallet:grmm-deps", "edu.umass.cs.mallet:mallet", "org.apache.maven.plugins:maven-assembly-plugin", "org.bouncycastle:bcprov-jdk15on", "org.jdom:jdom", "xerces:xercesImpl", "xmlunit:xmlunit", "pl.edu.icm.cermine:cermine-impl", "grunt", "grunt-compare-size", "grunt-css", "grunt-git-authors", "grunt-html", "grunt-junit", "rimraf", "testswarm"], "https://github.com/mjiUST/VasNet": ["dominate", "scipy", "torch", "torchvision", "visdom"], "https://github.com/scleveland/NADV": ["bio", "coffee-rails", "jquery-rails", "pg", "rails", "sass-rails", "uglifier", "web-app-theme", "actionmailer", "actionpack", "activemodel", "activerecord", "activeresource", "activesupport", "archive-tar-minitar", "arel", "builder", "coffee-script", "coffee-script-source", "columnize", "erubis", "execjs", "hike", "i18n", "journey", "json", "linecache19", "mail", "mime-types", "multi_json", "polyglot", "rack", "rack-cache", "rack-ssl", "rack-test", "railties", "rake", "rdoc", "ruby-debug-base19", "ruby-debug19", "ruby_core_source", "sass", "sprockets", "thor", "tilt", "treetop", "tzinfo"], "https://github.com/nextcloud/android": ["fastlane", "addressable", "atomos", "aws-eventstream", "aws-partitions", "aws-sdk-core", "aws-sdk-kms", "aws-sdk-s3", "aws-sigv4", "babosa", "CFPropertyList", "claide", "colored", "colored2", "commander-fastlane", "declarative", "declarative-option", "digest-crc", "domain_name", "dotenv", "emoji_regex", "excon", "faraday", "faraday-cookie_jar", "faraday_middleware", "fastimage", "fastlane-plugin-huawei_appgallery_connect", "gh_inspector", "google-api-client", "google-cloud-core", "google-cloud-env", "google-cloud-errors", "google-cloud-storage", "googleauth", "highline", "http-cookie", "httpclient", "jmespath", "json", "jwt", "memoist", "mini_magick", "mini_mime", "multipart-post", "multi_json", "nanaimo", "naturally", "os", "plist", "public_suffix", "rake", "representable", "retriable", "rouge", "rubyzip", "security", "signet", "simctl", "slack-notifier", "terminal-notifier", "terminal-table", "tty-cursor", "tty-screen", "tty-spinner", "uber", "unf", "unf_ext", "unicode-display_width", "word_wrap", "xcodeproj", "xcpretty", "xcpretty-travis-formatter", "com.google.android:android", "commons-lang:commons-lang", "io.appium:java-client", "io.selendroid:selendroid-client", "io.selendroid:selendroid-standalone", "junit:junit", "org.apache.httpcomponents:httpclient", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.seleniumhq.selenium:selenium-java"], "https://github.com/neurodata/mvlearn": ["graspy", "joblib", "matplotlib", "numpy", "pandas", "python-picard", "scikit-learn", "scipy", "seaborn", "torch", "tqdm", "ipykernel", "ipython", "nbsphinx", "numpydoc", "recommonmark", "sphinx", "sphinx-rtd-theme"], "https://github.com/TUM-CPN/CropTypes": ["geojson", "geomet", "geopandas", "jupyterlab", "matplotlib", "numpy", "pandas", "pickle-mixin", "pillow", "scikit-learn", "shapely"], "https://github.com/BMKEG/UimaBioC": ["args4j:args4j", "au.com.nicta.csp:BRATEval", "bioc:BioC_Java", "com.google.code.gson:gson", "com.google.code.gson:gson-extras", "edu.isi.bmkeg:lapdftext", "edu.isi.bmkeg:uimaBioC-fanseParser-models", "edu.stanford.nlp:stanford-corenlp", "edu.stanford.nlp:stanford-parser", "junit:junit", "log4j:log4j", "org.apache.commons:commons-io", "org.apache.commons:commons-math3", "org.apache.hadoop:hadoop-client", "org.apache.hadoop:hadoop-hdfs", "org.apache.hadoop:hadoop-mapreduce-client-common", "org.apache.hadoop:hadoop-mapreduce-client-core", "org.apache.hadoop:hadoop-mapreduce-client-jobclient", "org.apache.jena:apache-jena-libs", "org.apache.jena:jena-text", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.uima:uimafit-core", "org.apache.uima:uimafit-cpe", "org.apache.uima:uimafit-spring", "org.bigmech.fries:vpdmf-fries-es", "org.cleartk:cleartk-ml-crfsuite", "org.cleartk:cleartk-ml-mallet", "org.cleartk:cleartk-ml-opennlp-maxent", "org.cleartk:cleartk-opennlp-tools", "org.cleartk:cleartk-snowball", "org.cleartk:cleartk-token", "org.cleartk:cleartk-type-system", "org.cleartk:cleartk-util", "org.clulab:reach_2.11", "org.codehaus.mojo:build-helper-maven-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.eclipse.m2e:lifecycle-mapping", "org.jsoup:jsoup", "org.projectlombok:lombok", "org.reflections:reflections", "org.simmetrics:simmetrics-chapman", "org.simmetrics:simmetrics-core", "org.simmetrics:simmetrics-taglink", "org.springframework.boot:spring-boot-starter-data-elasticsearch", "org.springframework.security:spring-security-config", "org.springframework.security:spring-security-core", "org.springframework.security:spring-security-web", "org.springframework:spring-test", "tratz:fanseparser"], "https://github.com/jbathmann/pyMANGA": ["@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "ansi-regex", "ansi-styles", "anymatch", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-union", "array-uniq", "array-unique", "arrify", "assign-symbols", "async-each", "atob", "autoprefixer", "balanced-match", "base", "binary-extensions", "brace-expansion", "braces", "browserslist", "cache-base", "call-me-maybe", "camelcase", "caniuse-lite", "chalk", "chokidar", "class-utils", "cliui", "code-point-at", "collection-visit", "color-convert", "color-name", "component-emitter", "concat-map", "copy-descriptor", "core-util-is", "cosmiconfig", "cross-spawn", "debug", "decamelize", "decode-uri-component", "define-property", "dependency-graph", "dir-glob", "electron-to-chromium", "error-ex", "escape-string-regexp", "esprima", "execa", "expand-brackets", "extend-shallow", "extglob", "fast-glob", "fill-range", "find-up", "for-in", "fragment-cache", "fs-extra", "fs.realpath", "fsevents", "get-caller-file", "get-stdin", "get-stream", "get-value", "glob", "glob-parent", "glob-to-regexp", "globby", "graceful-fs", "has-flag", "has-value", "has-values", "ignore", "inflight", "inherits", "invert-kv", "is-accessor-descriptor", "is-arrayish", "is-binary-path", "is-buffer", "is-data-descriptor", "is-descriptor", "is-directory", "is-extendable", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-number", "is-plain-object", "is-stream", "is-windows", "isarray", "isexe", "isobject", "js-yaml", "jsonfile", "kind-of", "lcid", "locate-path", "lodash", "lodash.debounce", "log-symbols", "lru-cache", "map-cache", "map-visit", "mem", "merge2", "micromatch", "mimic-fn", "minimatch", "minimist", "mixin-deep", "ms", "nan", "nanomatch", "node-releases", "normalize-path", "normalize-range", "npm-run-path", "num2fraction", "number-is-nan", "object-assign", "object-copy", "object-visit", "object.pick", "once", "os-homedir", "os-locale", "p-finally", "p-limit", "p-locate", "p-try", "parse-json", "pascalcase", "path-dirname", "path-exists", "path-is-absolute", "path-key", "path-type", "pify", "posix-character-classes", "postcss", "postcss-cli", "postcss-load-config", "postcss-load-options", "postcss-load-plugins", "postcss-reporter", "postcss-value-parser", "pretty-hrtime", "process-nextick-args", "pseudomap", "read-cache", "readable-stream", "readdirp", "regex-not", "remove-trailing-separator", "repeat-element", "repeat-string", "require-directory", "require-from-string", "require-main-filename", "resolve-url", "ret", "safe-buffer", "safe-regex", "semver", "set-blocking", "set-value", "shebang-command", "shebang-regex", "signal-exit", "slash", "snapdragon", "snapdragon-node", "snapdragon-util", "source-map", "source-map-resolve", "source-map-url", "split-string", "sprintf-js", "static-extend", "string-width", "string_decoder", "strip-ansi", "strip-eof", "supports-color", "to-object-path", "to-regex", "to-regex-range", "union-value", "universalify", "unset-value", "upath", "urix", "use", "util-deprecate", "which", "which-module", "wrap-ansi", "wrappy", "y18n", "yallist", "yargs", "yargs-parser"], "https://github.com/THzbiophotonics/Fit-TDS": ["matplotlib", "mpi4py", "numba", "numpy", "pyqt5", "pyqt5-sip", "pyswarm", "scipy"], "https://github.com/ICGC-TCGA-PanCancer/OxoGWrapperWorkflow": ["com.github.seqware:seqware-distribution", "com.hubspot.jinjava:jinjava", "com.jayway.jsonpath:json-path", "com.pyx4j:maven-junction-plugin", "io.seqware:seqware-bin-linux-x86-64-jre-8.0.45", "net.sourceforge.seqware:seqware-bin-linux-x86-64-cat-5.67", "net.sourceforge.seqware:seqware-bin-linux-x86-64-echo-5.67", "net.sourceforge.seqware:seqware-bin-linux-x86-64-perl-5.14.1", "org.apache.maven.plugins:maven-clean-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.codehaus.mojo:properties-maven-plugin"], "https://github.com/franknu/cgmodsel": ["matplotlib", "numpy", "pandas", "scipy"], "https://github.com/openpathsampling/openpathsampling": ["jinja2", "jupyter", "matplotlib", "nbconvert", "netcdf4", "openmm", "packaging", "pytables", "runipy", "scikit-learn", "sphinx", "sphinx-rtd-theme"], "https://github.com/Teichlab/cellphonedb": ["boto3", "click", "cython", "flask", "flask-restful", "flask-testing", "geosketch", "pandas", "pika", "pyyaml", "requests", "rpy2", "sqlalchemy", "tqdm"], "https://github.com/pear2/Net_Transmitter": ["php", "phpunit/phpunit"], "https://github.com/oslocyclotronlab/ompy": ["cython", "matplotlib", "numpy", "pandas", "pathos", "pymultinest", "scipy", "termtables", "tqdm", "uncertainties", "ipython", "mock", "nbsphinx", "nbsphinx-link", "sphinx", "sphinx-autodoc-typehints", "sphinx-automodapi"], "https://github.com/GooglingTheCancerGenome/sv-gen": ["codacy-coverage", "pytest", "pytest-cov", "snakemake", "yatiml"], "https://github.com/benmontet/f3": ["mahotas"], "https://github.com/rubbs14/CSP-Analyzer": ["DynamicLanguageRuntime", "IronPython", "LiveCharts", "LiveCharts.WinForms", "LiveCharts.Wpf", "Newtonsoft.Json", "python2", "certifi", "cycler", "decorator", "imbalanced-learn", "imblearn", "kiwisolver", "matplotlib", "networkx", "numpy", "pandas", "pillow", "pyparsing", "python-dateutil", "pytz", "pywavelets", "pyyaml", "scikit-image", "scikit-learn", "scipy", "seaborn", "six"], "https://github.com/hugomilan/tlmbht": ["jekyll", "jekyll-feed", "minima", "addressable", "colorator", "ffi", "forwardable-extended", "jekyll-sass-converter", "jekyll-watch", "kramdown", "liquid", "listen", "mercenary", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "safe_yaml", "sass"], "https://github.com/GRIFFINCollaboration/beamCompanionExplorer": ["grunt", "grunt-contrib-connect", "grunt-contrib-qunit", "phantomjs"], "https://github.com/arnikz/PIQMIe": ["cairosvg", "cherrypy", "genshi", "python-magic"], "https://github.com/SuperDARN/pydarn": ["deepdish", "h5py", "matplotlib", "numpy", "pathlib2", "pyyaml"], "https://github.com/CharafeddineMechalikh/PureEdgeSim": ["ch.qos.logback:logback-classic", "ch.qos.logback:logback-core", "com.google.code.gson:gson", "com.opencsv:opencsv", "com.sun.mail:javax.mail", "javax.activation:activation", "org.apache.commons:commons-lang3", "org.apache.commons:commons-math3", "org.cloudsimplus:cloudsim-plus", "org.knowm.xchart:xchart", "org.slf4j:slf4j-api"], "https://github.com/Andros-Spica/Postdocs-Angourakis-2019": ["express", "grunt-cli", "mustache", "socket.io"], "https://github.com/austindrenski/AD.PartialEquilibriumApi": ["AD.Collections", "AD.IO", "AD.Xml", "JetBrains.Annotations", "Microsoft.NETCore.Platforms", "Microsoft.Win32.Primitives", "NETStandard.Library", "System.AppContext", "System.Collections", "System.Collections.Concurrent", "System.Console", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tools", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.Compression", "System.IO.Compression.ZipFile", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Linq.Expressions", "System.Net.Http", "System.Net.Primitives", "System.Net.Sockets", "System.ObjectModel", "System.Reflection", "System.Reflection.Extensions", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.InteropServices.RuntimeInformation", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Text.Encoding.Extensions", "System.Text.RegularExpressions", "System.Threading", "System.Threading.Tasks", "System.Threading.Timer", "System.Xml.ReaderWriter", "System.Xml.XDocument", "System.Collections.Immutable", "System.Linq.Parallel", "System.Threading.Tasks.Parallel"], "https://github.com/LightForm-group/xrdfit": ["dill", "ipywidgets", "lmfit", "matplotlib", "notebook", "numpy", "pandas", "tqdm"], "https://github.com/spcl/stencilflow": ["astunparse", "click", "graphviz", "h5py", "matplotlib", "mpi4py", "networkx", "numpy", "pydot", "pytest", "python-pydot"], "https://github.com/kdmurray91/libqcpp": ["jinja2", "matplotlib", "mpld3", "nose", "numpy", "pyyaml", "six", "alabaster", "sphinx"], "https://github.com/nipy/nibabel": ["pytest", "matplotlib", "numpydoc", "sphinx", "texext", "numpy", "packaging"], "https://github.com/openearth/flamingo": ["sphinxcontrib-napoleon", "docopt", "nose", "numpy", "pandas", "psutil", "scipy"], "https://github.com/ARGOeu/poem-2": ["appdirs", "asgiref", "certifi", "cffi", "chardet", "click", "cryptography", "deepdiff", "defusedxml", "distlib", "django", "django-rest-auth", "django-webpack-loader", "djangorestframework", "djangorestframework-api-key", "djangosaml2", "dparse", "filelock", "idna", "importlib-metadata", "importlib-resources", "jsonpickle", "ndg-httpsclient", "ordered-set", "packaging", "pipenv", "psycopg2-binary", "pyasn1", "pycparser", "pyopenssl", "pyparsing", "pysaml2", "python-dateutil", "pytz", "pyyaml", "requests", "safety", "six", "sqlparse", "toml", "unidecode", "urllib3", "virtualenv", "virtualenv-clone", "zipp", "coverage", "discover", "factory-boy", "mock", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-compilation-targets", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/preset-react", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@emotion/cache", "@emotion/core", "@emotion/css", "@emotion/hash", "@emotion/memoize", "@emotion/serialize", "@emotion/sheet", "@emotion/stylis", "@emotion/unitless", "@emotion/utils", "@emotion/weak-memoize", "@fortawesome/fontawesome-common-types", "@fortawesome/fontawesome-svg-core", "@fortawesome/free-solid-svg-icons", "@fortawesome/react-fontawesome", "@popperjs/core", "@types/cookie", "@types/object-assign", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "acorn", "acorn-dynamic-import", "acorn-jsx", "ajv", "ajv-errors", "ajv-keywords", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "aproba", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-includes", "array-unique", "asap", "asn1.js", "assert", "assign-symbols", "astral-regex", "async", "async-each", "atob", "autoprefixer", "babel-helper-builder-react-jsx", "babel-loader", "babel-plugin-dynamic-import-node", "babel-plugin-emotion", "babel-plugin-macros", "babel-plugin-syntax-flow", "babel-plugin-syntax-jsx", "babel-plugin-transform-flow-strip-types", "babel-plugin-transform-react-display-name", "babel-plugin-transform-react-jsx", "babel-plugin-transform-react-jsx-self", "babel-plugin-transform-react-jsx-source", "babel-preset-flow", "babel-preset-react", "babel-runtime", "babel-types", "balanced-match", "base", "base64-js", "big.js", "binary-extensions", "bindings", "bluebird", "bn.js", "bootstrap", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-xor", "builtin-status-codes", "cacache", "cache-base", "caller-callsite", "caller-path", "callsites", "camelcase", "caniuse-lite", "chain-function", "chalk", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "classnames", "cli", "cli-cursor", "cli-width", "cliui", "collect-stream", "collection-visit", "color-convert", "color-name", "commander", "commondir", "component-emitter", "concat-map", "concat-stream", "console-browserify", "constants-browserify", "contains-path", "convert-source-map", "cookie", "copy-concurrently", "copy-descriptor", "core-js", "core-js-compat", "core-util-is", "cosmiconfig", "create-ecdh", "create-emotion", "create-hash", "create-hmac", "create-react-context", "cross-spawn", "crypto-browserify", "css-loader", "cssesc", "csstype", "cyclist", "date-now", "debug", "decamelize", "decode-uri-component", "deep-equal", "eslint", "eslint-config-standard", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-react", "eslint-plugin-standard", "file-loader", "formik", "install", "jshint", "postcss-loader", "react", "react-autosuggest", "react-diff-viewer", "react-dom", "react-notifications", "react-popper", "react-popup", "react-router", "react-router-dom", "react-select", "react-table", "reactstrap", "style-loader", "universal-cookie", "url-loader", "webpack", "webpack-bundle-tracker", "webpack-cli", "yup"], "https://github.com/HelioML/HelioML": ["github-pages", "guard", "guard-jekyll-plus", "guard-livereload", "jekyll-feed", "jekyll-redirect-from", "jekyll-scholar", "tzinfo-data", "activesupport", "addressable", "citeproc", "citeproc-ruby", "coderay", "coffee-script", "coffee-script-source", "colorator", "commonmarker", "concurrent-ruby", "csl", "csl-styles", "dnsruby", "em-websocket", "ethon", "eventmachine", "execjs", "faraday", "ffi", "formatador", "forwardable-extended", "gemoji", "github-pages-health-check", "guard-compat", "html-pipeline", "http_parser.rb", "i18n", "jekyll", "jekyll-avatar", "jekyll-coffeescript", "jekyll-commonmark", "jekyll-commonmark-ghpages", "jekyll-default-layout", "jekyll-gist", "jekyll-github-metadata", "jekyll-mentions", "jekyll-optional-front-matter", "jekyll-paginate", "jekyll-readme-index", "jekyll-relative-links", "jekyll-remote-theme", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-swiss", "jekyll-theme-architect", "jekyll-theme-cayman", "jekyll-theme-dinky", "jekyll-theme-hacker", "jekyll-theme-leap-day", "jekyll-theme-merlot", "jekyll-theme-midnight", "jekyll-theme-minimal", "jekyll-theme-modernist", "jekyll-theme-primer", "jekyll-theme-slate", "jekyll-theme-tactile", "jekyll-theme-time-machine", "jekyll-titles-from-headings", "jekyll-watch", "jemoji", "kramdown", "latex-decode", "liquid", "listen", "lumberjack", "mercenary", "method_source", "minima", "minitest", "mini_portile2", "multipart-post", "multi_json", "namae", "nenv", "nokogiri", "notiffany", "octokit", "pathutil", "pry", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "ruby-enum", "rubyzip", "ruby_dep", "safe_yaml", "sass", "sass-listen", "sawyer", "shellany", "terminal-table", "thor", "thread_safe", "typhoeus", "tzinfo", "unicode-display_width", "datascience", "folium", "jupyter-book", "matplotlib", "nbinteract", "numpy", "pandas", "scipy"], "https://github.com/SwissTPH/TBRU_serialTB": ["ipython", "jupyter", "numpy", "pandas", "scikit-learn", "scipy"], "https://github.com/liminoid/liminoid-react": ["@babel/cli", "@babel/core", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-private-methods", "@babel/preset-env", "@babel/preset-react", "@babel/register", "@fortawesome/fontawesome-svg-core", "@fortawesome/free-solid-svg-icons", "@fortawesome/react-fontawesome", "@rollup/plugin-commonjs", "@rollup/plugin-json", "@rollup/plugin-node-resolve", "@rollup/plugin-replace", "@rollup/plugin-sucrase", "babel-eslint", "babel-jest", "babel-plugin-transform-object-rest-spread", "clipboard", "eslint", "eslint-config-airbnb-base", "eslint-config-prettier", "eslint-plugin-babel", "eslint-plugin-import", "eslint-plugin-prettier", "ignore-styles", "ionicons", "jest", "liminoid-js", "postcss-nested", "prettier", "prismjs", "react", "react-dom", "react-simple-code-editor", "rollup", "rollup-plugin-babel", "rollup-plugin-postcss", "rollup-plugin-terser", "sinon", "tippy.js"], "https://github.com/HaroldMills/Vesper": ["birdvoxdetect", "django", "jsonschema", "pyephem", "resampy", "ruamel-yaml", "scipy"], "https://github.com/iterative/dvc": ["appdirs", "colorama", "configobj", "dataclasses", "dictdiffer", "distro", "dpath", "flatten-dict", "flufl-lock", "funcy", "gitpython", "grandalf", "jsonpath-ng", "nanotime", "networkx", "packaging", "pathspec", "ply", "pyasn1", "pydot", "pygtrie", "pywin32", "requests", "rich", "ruamel-yaml", "setuptools", "shortuuid", "shtab", "speedcopy", "tabulate", "toml", "tqdm", "voluptuous", "win-unicode-console", "zc-lockfile", "psutil", "pyinstaller"], "https://github.com/ultralytics/yolov5": ["cython", "matplotlib", "numpy", "opencv-python", "pillow", "pyyaml", "scipy", "tensorboard", "torch", "torchvision", "tqdm", "flask", "gunicorn", "pip"], "https://github.com/spa-networks/hpa": ["numpy"], "https://github.com/PX4/Firmware": ["argcomplete", "argparse", "cerberus", "coverage", "empy", "jinja2", "matplotlib", "numpy", "packaging", "pandas", "pkgconfig", "psutil", "pygments", "pyros-genmsg", "pyserial", "pyulog", "pyyaml", "requests", "setuptools", "six", "toml", "wheel"], "https://github.com/speckleworks/SpeckleRhino": ["Grasshopper", "RhinoCommon", "SpeckleCore", "SpecklePopup", "sqlite-net-pcl", "System.ValueTuple", "CefSharp.WinForms"], "https://github.com/alan-turing-institute/sktime": ["wheel", "jupyter", "m2r2", "matplotlib", "nbsphinx", "numba", "numpydoc", "pmdarima", "pygments", "seaborn", "sphinx", "sphinx-rtd-theme", "tsfresh", "scikit-posthocs", "sktime", "cython", "pandas", "pytest", "pytest-cov", "scikit-learn", "statsmodels", "check-manifest", "colorama", "flake8", "flake8-bugbear", "flake8-print", "pre-commit", "twine"], "https://github.com/Phlya/coolpuppy": ["cooler", "cooltools", "cython", "m2r", "matplotlib", "natsort", "numpy", "pandas", "scipy", "ipykernel", "nbsphinx", "sphinx", "sphinx-argparse"], "https://github.com/sigsep/website": ["@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/runtime", "@babel/runtime-corejs2", "@babel/template", "@babel/traverse", "@babel/types", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "@types/q", "@vue/babel-helper-vue-jsx-merge-props", "@vue/babel-plugin-transform-vue-jsx", "@vue/babel-preset-app", "@vue/babel-preset-jsx", "@vue/babel-sugar-functional-vue", "@vue/babel-sugar-inject-h", "@vue/babel-sugar-v-model", "@vue/babel-sugar-v-on", "@vue/component-compiler-utils", "@vuepress/core", "@vuepress/markdown", "@vuepress/markdown-loader", "@vuepress/plugin-active-header-links", "@vuepress/plugin-google-analytics", "@vuepress/plugin-last-updated", "@vuepress/plugin-nprogress", "@vuepress/plugin-register-components", "@vuepress/plugin-search", "@vuepress/shared-utils", "@vuepress/theme-default", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abbrev", "accepts", "acorn", "agentkeepalive", "ajv", "ajv-errors", "ajv-keywords", "algoliasearch", "alphanum-sort", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "async", "async-each", "async-limiter", "asynckit", "atob", "autocomplete.js", "autoprefixer", "aws-sign2", "aws4", "babel-loader", "babel-plugin-dynamic-import-node", "babel-plugin-module-resolver", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browser-split", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-json", "buffer-xor", "builtin-status-codes", "bytes", "cac", "cacache", "cache-base", "cache-loader", "call-me-maybe", "caller-callsite", "caller-path", "callsites", "camel-case", "camelcase", "camelize", "caniuse-api", "caniuse-lite", "caseless", "chalk", "chokidar", "chownr", "chrome-trace-event", "ci-info", "cipher-base", "class-utils", "clean-css", "clipboard", "cliui", "coa", "code-point-at", "collection-visit", "color", "color-convert", "color-name", "color-string", "combined-stream", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "consola", "console-browserify", "consolidate", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "copy-webpack-plugin", "core-js", "core-util-is", "cosmiconfig", "create-ecdh", "vuepress", "vuepress-plugin-mathjax", "waveform-playlist"], "https://github.com/dejac001/distillation": ["-", "numpy", "scipy"], "https://github.com/simeonreusch/ztffps": ["astropy", "bs4", "datetime", "fastapi", "html5lib", "iminuit", "keyring", "lxml", "matplotlib", "numpy", "pandas", "psycopg2", "pymongo", "requests", "sfdmap", "slackclient", "sncosmo", "sqlalchemy", "uvicorn", "ztflc", "ztfquery"], "https://github.com/django-salesforce/django-salesforce": ["pytz", "requests", "simplejson"], "https://github.com/jellis18/PAL2": ["acor", "astropy", "backports-ssl-match-hostname", "certifi", "cython", "ephem", "funcsigs", "functools32", "gnureadline", "h5py", "healpy", "ipython", "jinja2", "jsonschema", "markupsafe", "matplotlib", "mistune", "mock", "mpi4py", "nose", "numexpr", "numpy", "pbr", "ptyprocess", "pygments", "pyparsing", "python-dateutil", "pytz", "pyzmq", "scikit-sparse", "scipy", "six", "statsmodels", "terminado", "tornado", "wheel"], "https://github.com/rsa-tools/rsat-code": ["d3", "grunt", "grunt-contrib-concat", "grunt-contrib-cssmin", "grunt-contrib-jasmine", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-sass", "load-grunt-tasks", "jsdom", "seedrandom", "smash", "uglify-js", "vows", "faucet", "jshint", "rollup", "tape"], "https://github.com/tompollard/phd_thesis_markdown": ["grunt", "grunt-cli", "grunt-contrib-watch", "grunt-express", "grunt-make", "grunt-notify", "grunt-open"], "https://github.com/fpavogt/pyqz": ["matplotlib", "numpy", "scipy"], "https://github.com/fnl/medic": ["sqlalchemy"], "https://github.com/SciTools/iris": ["mo-pack", "nc-time-axis", "pandas", "pyugrid", "stratify", "cartopy", "cf-units", "cftime", "dask", "matplotlib", "netcdf4", "numpy", "scipy", "xxhash", "sphinx", "sphinx-copybutton", "sphinx-gallery", "sphinx-panels", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "scitools-pyke", "setuptools", "wheel", "asv", "black", "filelock", "imagehash", "nose", "pillow", "pre-commit", "requests"], "https://github.com/neglectos/dockerhub_analysis": ["cycler", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "kiwisolver", "matplotlib", "numpy", "pandas", "pkg-resources", "pyparsing", "python-dateutil", "pytz", "scipy", "seaborn", "six", "tqdm"], "https://github.com/mosdef-hub/foyer": ["bump2version", "codecov", "lark-parser", "lxml", "mbuild", "networkx", "openmm", "parmed", "pytest", "pytest-cov", "pytest-timeout", "requests", "requests-mock"], "https://github.com/calipho-sib/feature-viewer": ["biojs-events", "bootstrap", "bower", "browserify", "d3", "grunt", "grunt-bump", "grunt-cli", "grunt-connect", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-serve", "jquery", "load-grunt-tasks", "mkdirp", "nextprot", "prunner", "sniper", "watchify"], "https://github.com/academic/vipa": ["a2lix/translation-form-bundle", "apy/datagrid-bundle", "baskin/history-bundle", "braincrafted/bootstrap-bundle", "bulutyazilim/location-bundle", "caseyamcl/Phpoaipmh", "contentfarm/disposable-email-list", "doctrine/doctrine-bundle", "doctrine/doctrine-fixtures-bundle", "doctrine/orm", "exercise/htmlpurifier-bundle", "friendsofphp/php-cs-fixer", "friendsofsymfony/elastica-bundle", "friendsofsymfony/jsrouting-bundle", "friendsofsymfony/rest-bundle", "friendsofsymfony/user-bundle", "fzaninotto/faker", "h4cc/alice-fixtures-bundle", "hwi/oauth-bundle", "incenteev/composer-parameter-handler", "ircmaxell/password-compat", "jbouzekri/file-uploader-bundle", "jms/di-extra-bundle", "jms/serializer-bundle", "jms/translation-bundle", "knplabs/knp-menu-bundle", "knplabs/knp-paginator-bundle", "liip/functional-test-bundle", "liuggio/fastest", "nelmio/alice", "nelmio/api-doc-bundle", "norzechowicz/aceeditor-bundle", "openjournalsoftware/bibtex", "pagerfanta/pagerfanta", "php", "presta/sitemap-bundle", "prezent/doctrine-translatable-bundle", "problematic/acl-manager-bundle", "sensio/distribution-bundle", "sensio/framework-extra-bundle", "sensio/generator-bundle", "stephanecollot/datetimepicker-bundle", "stof/doctrine-extensions-bundle", "symfony/assetic-bundle", "symfony/monolog-bundle", "symfony/phpunit-bridge", "symfony/swiftmailer-bundle", "symfony/symfony", "tetranz/select2entity-bundle", "twig/extensions", "vipa/export-bundle", "vipa/import-bundle", "wdalmut/php-deb-packager", "white-october/pagerfanta-bundle", "wikimedia/composer-merge-plugin", "willdurand/js-translation-bundle", "behat/transliterator", "caseyamcl/phpoaipmh", "composer/ca-bundle", "doctrine/annotations", "doctrine/cache", "doctrine/collections", "doctrine/common", "doctrine/data-fixtures", "doctrine/dbal", "doctrine/doctrine-cache-bundle", "doctrine/inflector", "doctrine/instantiator", "doctrine/lexer", "ezyang/htmlpurifier", "gedmo/doctrine-extensions", "guzzlehttp/guzzle", "guzzlehttp/promises", "guzzlehttp/psr7", "imagine/imagine", "jdorn/sql-formatter", "jms/aop-bundle", "jms/cg", "jms/metadata", "jms/parser-lib", "jms/serializer", "knplabs/gaufrette", "knplabs/knp-components", "knplabs/knp-gaufrette-bundle", "knplabs/knp-menu", "kriswallsmith/assetic", "kriswallsmith/buzz", "league/flysystem", "liip/imagine-bundle", "michelf/php-markdown", "monolog/monolog", "myclabs/deep-copy", "nikic/php-parser", "oneup/uploader-bundle", "paragonie/random_compat", "phpcollection/phpcollection", "phpdocumentor/reflection-common", "phpdocumentor/reflection-docblock", "phpdocumentor/type-resolver", "phpoption/phpoption", "phpspec/prophecy", "phpunit/php-code-coverage", "phpunit/php-file-iterator", "phpunit/php-text-template", "phpunit/php-timer", "phpunit/php-token-stream", "phpunit/phpunit", "phpunit/phpunit-mock-objects", "prezent/doctrine-translatable", "psr/http-message", "psr/log", "ruflin/elastica", "sebastian/code-unit-reverse-lookup", "sebastian/comparator", "sebastian/diff", "sebastian/environment", "sebastian/exporter", "sebastian/global-state", "sebastian/object-enumerator", "sebastian/recursion-context", "sebastian/resource-operations", "sebastian/version", "sensiolabs/security-checker", "swiftmailer/swiftmailer", "symfony/polyfill-apcu", "symfony/polyfill-intl-icu", "symfony/polyfill-mbstring", "symfony/polyfill-php54", "symfony/polyfill-php55", "symfony/polyfill-php56", "symfony/polyfill-php70", "symfony/polyfill-util", "symfony/security-acl", "twig/twig", "webmozart/assert", "willdurand/jsonp-callback-validator", "willdurand/negotiation"], "https://github.com/IndexedConv/IndexedConv": ["h5py", "matplotlib", "numpy", "sphinxcontrib-katex", "torch", "torchvision"], "https://github.com/VlachosGroup/openmkm": ["cantera", "matplotlib", "monty", "numpy", "palettable", "scipy", "github-pages", "jekyll", "tzinfo-data"], "https://github.com/nipype/pydra": ["attrs", "cloudpickle", "filelock", "packaging", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-apidoc"], "https://github.com/sherlock-clustering/Sherlock_DiVE": ["grunt", "grunt-browserify", "grunt-codacy", "grunt-contrib-clean", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-jsdoc", "nonew", "three", "three-buffergeometry-sort", "three.trackball"], "https://github.com/datalad/datalad": ["wrapt", "-"], "https://github.com/asreview/asreview-covid19": ["asreview"], "https://github.com/mikahama/akusanat": ["django", "mongodb", "nodejs", "pyexecjs", "pymongo", "requests"], "https://github.com/laderast/ready_for_r_site": ["bootstrap"], "https://github.com/GlobalNamesArchitecture/taxamatch_rb": ["biodiversity", "bundler", "coveralls", "cucumber", "damerau-levenshtein", "json", "rake", "rspec", "rubocop"], "https://github.com/adbar/htmldate": ["lxml", "pytest", "python-dateutil", "requests"], "https://github.com/jonescompneurolab/hnn": ["github-pages", "matplotlib", "mne-python", "mpi", "numpy", "pyopengl", "pyqt5", "pyqtgraph", "scipy"], "https://github.com/iross/km_indexer": ["elasticsearch", "psycopg2", "python-dateutil", "wait-for-it"], "https://github.com/jameslyons/python_speech_features": ["mock", "numpy", "scipy"], "https://github.com/biolink/biolink-model": ["biolinkml", "antlr4-python3-runtime", "argparse", "attrs", "certifi", "cfgraph", "chardet", "click", "env", "graphviz", "idna", "importlib-metadata", "isodate", "jsonasobj", "jsonschema", "pathtools", "pbr", "prefixcommons", "prologterms", "pyjsg", "pyparsing", "pyrsistent", "pyshex", "pyshexc", "pyyaml", "rdflib", "rdflib-jsonld", "requests", "shexjsg", "six", "sparql-slurper", "sparqlwrapper", "urllib3", "watchdog", "zipp"], "https://github.com/x10-lang/x10": ["com.esotericsoftware:kryo", "com.hazelcast:hazelcast"], "https://github.com/MicroPasts/projectAndvariLOD": ["pybossa-client"], "https://github.com/griffin-h/lightcurve_fitting": ["codecov", "coverage", "flake8", "ipython", "matplotlib", "numpydoc", "pytest", "sphinx", "sphinx-copybutton", "sphinx-rtd-theme", "astropy", "corner", "emcee", "numpy", "scipy"], "https://github.com/lanl/VizAly-Foresight": ["apsw", "matplotlib", "numpy"], "https://github.com/cytoscape/cytoscape.js-cxtmenu": ["accepts", "acorn", "acorn-dynamic-import", "acorn-jsx", "ajv", "ajv-keywords", "align-text", "ansi-bgblack", "ansi-bgblue", "ansi-bgcyan", "ansi-bggreen", "ansi-bgmagenta", "ansi-bgred", "ansi-bgwhite", "ansi-bgyellow", "ansi-black", "ansi-blue", "ansi-bold", "ansi-colors", "ansi-cyan", "ansi-dim", "ansi-escapes", "ansi-gray", "ansi-green", "ansi-grey", "ansi-hidden", "ansi-html", "ansi-inverse", "ansi-italic", "ansi-magenta", "ansi-red", "ansi-regex", "ansi-reset", "ansi-strikethrough", "ansi-styles", "ansi-underline", "ansi-white", "ansi-wrap", "ansi-yellow", "any", "anymatch", "argparse", "arr-diff", "arr-flatten", "arr-map", "arr-pluck", "arr-union", "array-find-index", "array-flatten", "array-includes", "array-sort", "array-union", "array-uniq", "array-unique", "arrayify-compact", "arrify", "ask-when", "asn1.js", "assemble-core", "assemble-fs", "assemble-handle", "assemble-loader", "assemble-render-file", "assemble-streams", "assert", "assertion-error", "assign-deep", "assign-symbols", "async", "async-array-reduce", "async-done", "async-each", "async-each-series", "async-helpers", "async-settle", "atob", "author-regex", "babel-code-frame", "babel-core", "babel-generator", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helpers", "babel-loader", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-preset-env", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "bach", "balanced-match", "base", "base-argv", "base-cli", "base-cli-process", "base-cli-schema", "base-compose", "base-config", "base-config-process", "base-config-schema", "base-cwd", "base-data", "base-engines", "base-env", "base-generators", "base-helpers", "base-namespace", "base-option", "base-pkg", "base-plugins", "base-project", "base-questions", "base-routes", "base-runtimes", "base-store", "base-task", "base64-js", "batch", "big.js", "binary-extensions", "bindings", "bn.js", "body-parser", "bonjour", "brace-expansion", "braces", "brorand", "browser-stdout", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cache-base", "caller-path", "callsites", "camel-case", "camelcase", "camelcase-keys", "caniuse-lite", "center-align", "chai", "chalk", "check-error", "choices-separator", "chokidar", "cipher-base", "circular-json", "class-utils", "cli-cursor", "cli-width", "cliui", "clone", "clone-buffer", "clone-deep", "clone-stats", "cloneable-readable", "co", "code-point-at", "collection-visit", "color-convert", "color-name", "commander", "common-config", "common-middleware", "common-questions", "commondir", "component-emitter", "composer", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "console-browserify", "constants-browserify", "contains-path", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-descriptor", "copy-task", "copyright-regex", "core-js", "core-util-is", "cp-file", "cpy", "cpy-cli", "create-ecdh", "create-hash", "create-hmac", "cross-env", "cross-spawn", "crypto-browserify", "currently-unhandled", "eslint", "gh-pages", "mocha", "npm-run-all", "rimraf", "update", "updater-license", "webpack", "webpack-dev-server"], "https://github.com/BrennerG/DS1": ["altair", "astor", "attrs", "backcall", "base58", "bleach", "blinker", "boto3", "botocore", "cachetools", "certifi", "chardet", "click", "decorator", "defusedxml", "docutils", "entrypoints", "enum-compat", "future", "idna", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "jmespath", "jsonschema", "jupyter-client", "jupyter-core", "markupsafe", "mistune", "nbconvert", "nbformat", "notebook", "numpy", "packaging", "pandas", "pandocfilters", "parso", "pathtools", "pexpect", "pickleshare", "pillow", "plotly", "prometheus-client", "prompt-toolkit", "protobuf", "ptyprocess", "pydeck", "pygments", "pyparsing", "pyrsistent", "python-dateutil", "pytz", "pyzmq", "requests", "retrying", "s3transfer", "send2trash", "six", "streamlit", "terminado", "testpath", "toml", "toolz", "tornado", "traitlets", "tzlocal", "urllib3", "validators", "watchdog", "wcwidth", "webencodings", "widgetsnbextension"], "https://github.com/KitwareMedical/HASI": ["ritk", "ritk-boneenhancement", "itk-boneenhancement", "itk-bonemorphometry", "itk-elastix", "itk-hasi", "itkwidgets"], "https://github.com/SELAB-AA/arvue-platform": ["com.amazonaws:aws-java-sdk", "com.google.code.gson:gson", "com.google.guava:guava", "commons-io:commons-io", "junit:junit", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.mockito:mockito-core", "org.syslog4j:syslog4j", "velocity:velocity", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.felix:maven-bundle-plugin", "org.apache.felix:org.apache.felix.framework", "org.apache.felix:org.apache.felix.http.jetty", "org.apache.felix:org.apache.felix.main", "org.apache.felix:org.osgi.core", "org.apache.maven.plugins:maven-antrun-plugin", "org.apache.maven.plugins:maven-assembly-plugin"], "https://github.com/rjfarmer/gfort2py": ["cython", "numpy", "six"], "https://github.com/danhey/maelstrom": ["astropy", "exoplanet", "matplotlib", "numpy", "pymc3", "seaborn", "theano", "tqdm"], "https://github.com/lewisacidic/synergy-maps": ["json", "networkx", "nose", "pandas", "scikit-learn", "tsne", "grunt", "grunt-autoprefixer", "grunt-concurrent", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-htmlmin", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-filerev", "grunt-google-cdn", "grunt-karma", "grunt-newer", "grunt-ng-annotate", "grunt-svgmin", "grunt-usemin", "grunt-wiredep", "jshint-stylish", "load-grunt-tasks", "time-grunt"], "https://github.com/KamilSJaron/smudgeplot": ["numpy", "scipy"], "https://github.com/zfit/zfit": ["cloudpickle", "colorama", "colored", "colorlog", "iminuit", "numdifftools", "numpy", "ordered-set", "pandas", "scipy", "tabulate", "tensorflow", "tensorflow-probability", "texttable", "uproot", "bumpversion", "check-manifest", "coverage", "flake8", "pip", "pydata-sphinx-theme", "pytest", "pytest-ordering", "pytest-rerunfailures", "pytest-runner", "pytest-xdist", "scikit-hep-testdata", "setupext-janitor", "setuptools", "setuptools-scm", "setuptools-scm-git-archive", "sphinx", "sphinx-autodoc-typehints", "sphinx-copybutton", "tox", "twine", "watchdog", "wheel"], "https://github.com/arkottke/pykooh": ["numba", "numpy", "setuptools", "codacy-coverage", "cryptography", "cython", "flake8", "ipykernel", "jupyter-client", "nbconvert", "nbformat", "obspy", "pydocstyle", "pytest", "pytest-cov", "pytest-flake8", "pytest-runner", "watchdog", "wheel", "yapf", "jinja2", "matplotlib", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex"], "https://github.com/gvoysey/corti": ["attrs", "blessed", "Cython", "docopt", "hypothesis", "ipython", "matplotlib", "mypy", "numpy", "pandas", "progressbar2", "pycodestyle", "pydocstyle", "pylint", "pypet", "pytest", "pytest-cov", "PyYAML", "scipy", "tqdm", "astroid", "backcall", "backports.functools-lru-cache", "coverage", "cycler", "cython", "decorator", "ipython-genutils", "isort", "jedi", "kiwisolver", "lazy-object-proxy", "mccabe", "more-itertools", "numexpr", "parso", "pexpect", "pickleshare", "pluggy", "prompt-toolkit", "ptyprocess", "py", "pygments", "pyparsing", "python-dateutil", "python-utils", "pytz", "pyyaml", "simplegeneric", "six", "snowballstemmer", "subprocess32", "tables", "traitlets", "typed-ast", "wcwidth", "wrapt"], "https://github.com/bongadi/ARV-Predictor-OngadiB": ["@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/http", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/router", "@angular/tsc-wrapped", "@ionic-native/android-permissions", "@ionic-native/contacts", "@ionic-native/core", "@ionic-native/file", "@ionic-native/file-chooser", "@ionic-native/file-path", "@ionic-native/google-plus", "@ionic-native/in-app-browser", "@ionic-native/keyboard", "@ionic-native/splash-screen", "@ionic-native/status-bar", "@ionic/app-scripts", "@ionic/cli-framework", "@ionic/cli-utils", "@ionic/discover", "@ionic/storage", "@types/concat-stream", "@types/d3", "@types/d3-array", "@types/d3-axis", "@types/d3-brush", "@types/d3-chord", "@types/d3-collection", "@types/d3-color", "@types/d3-contour", "@types/d3-dispatch", "@types/d3-drag", "@types/d3-dsv", "@types/d3-ease", "@types/d3-fetch", "@types/d3-force", "@types/d3-format", "@types/d3-geo", "@types/d3-hierarchy", "@types/d3-interpolate", "@types/d3-path", "@types/d3-polygon", "@types/d3-quadtree", "@types/d3-random", "@types/d3-scale", "@types/d3-scale-chromatic", "@types/d3-selection", "@types/d3-shape", "@types/d3-time", "@types/d3-time-format", "@types/d3-timer", "@types/d3-transition", "@types/d3-voronoi", "@types/d3-zoom", "@types/form-data", "@types/geojson", "@types/localforage", "@types/meteor-accounts-phone", "@types/node", "@types/qs", "@types/underscore", "abbrev", "abstract-leveldown", "accepts", "acorn", "acorn-dynamic-import", "ajv", "ajv-keywords", "align-text", "amdefine", "angular-auth-oidc-client", "angular-d3-charts", "ansi-escapes", "ansi-regex", "ansi-styles", "ansicolors", "anymatch", "aproba", "archiver", "archiver-utils", "archy", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "array-find-index", "array-flatten", "array-unique", "asap", "asn1", "asn1.js", "assert", "assert-plus", "ast-types", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "autoprefixer", "aws-sign2", "aws4", "babel-cli", "babel-code-frame", "babel-core", "babel-generator", "babel-helper-evaluate-path", "babel-helper-flip-expressions", "babel-helper-is-nodes-equiv", "babel-helper-is-void-0", "babel-helper-mark-eval-scopes", "babel-helper-remove-or-void", "babel-helper-to-multiple-sequence-expressions", "babel-helpers", "babel-messages", "babel-plugin-minify-constant-folding", "babel-plugin-minify-dead-code-elimination", "babel-plugin-minify-flip-comparisons", "babel-plugin-minify-guarded-expressions", "babel-plugin-minify-infinity", "babel-plugin-minify-mangle-names", "babel-plugin-minify-numeric-literals", "babel-plugin-minify-replace", "babel-plugin-minify-simplify", "babel-plugin-minify-type-constructors", "babel-plugin-transform-inline-consecutive-adds", "babel-plugin-transform-member-expression-literals", "babel-plugin-transform-merge-sibling-variables", "babel-plugin-transform-minify-booleans", "babel-plugin-transform-property-literals", "babel-plugin-transform-regexp-constructors", "babel-plugin-transform-remove-console", "babel-plugin-transform-remove-debugger", "babel-plugin-transform-remove-undefined", "babel-plugin-transform-simplify-comparison-operators", "babel-plugin-transform-undefined-to-void", "babel-polyfill", "babel-preset-babili", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babili", "babylon", "balanced-match", "base62", "base64-js", "basic-auth", "bcrypt-pbkdf", "big.js", "binary-extensions", "bl", "block-stream", "bluebird", "bn.js", "body", "body-parser", "bonjour", "boom", "bops", "boxen", "brace-expansion", "braces", "brorand", "browser-resolve", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-fs", "browserify-rsa", "browserify-sign", "browserify-transform-tools", "browserify-zlib", "browserslist", "buffer", "buffer-crc32", "buffer-es6", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "bytes", "camelcase", "camelcase-keys", "caniuse-db", "capture-stack-trace", "caseless", "center-align", "chalk", "chardet", "chokidar", "chownr", "ci-info", "cipher-base", "clean-css", "cli-cursor", "cli-width", "clite", "cliui", "clone", "clone-deep", "co", "code-point-at", "color-convert", "color-name", "colors", "combined-stream", "commander", "component-emitter", "compress-commons", "concat-map", "concat-stream", "configstore", "console-browserify", "console-control-strings", "constants-browserify", "content-disposition", "content-type", "continuable-cache", "convert-source-map", "cookie", "cookie-signature", "cookiejar", "cordova-android", "cordova-plugin-android-permissions", "cordova-plugin-compat", "cordova-plugin-contacts", "cordova-plugin-device", "cordova-plugin-file", "cordova-plugin-filechooser", "cordova-plugin-filepath", "cordova-plugin-inappbrowser", "cordova-plugin-splashscreen", "cordova-plugin-statusbar", "cordova-plugin-whitelist", "core-js", "core-util-is", "crc", "crc32-stream", "create-ecdh", "create-error-class", "create-hash", "create-hmac", "cross-spawn", "d3", "d3-array", "d3-axis", "d3-scale", "d3-selection", "d3-time", "d3-timeline", "d3-tip", "ionic", "ionic-angular", "ionic-plugin-keyboard", "ionic2-date-picker", "ionicons", "meteor-rxjs", "ng2-validation", "ngx-pipes", "node-sass", "rxjs", "snyk", "sw-toolbox", "sweetalert2", "sync-request", "typescript", "zone.js"], "https://github.com/aquariumbio/aquarium": ["activerecord-import", "activerecord-nulldb-adapter", "alphabetical_paginate", "anemone", "angular_rails_csrf", "aquadoc", "aws-sdk", "aws-sdk-s3", "aws-sdk-ses", "bcrypt", "closure-compiler", "factory_bot_rails", "ipaddress", "mysql2", "oj", "paperclip", "protected_attributes_continued", "puma", "rack-cors", "rails", "redcarpet", "rspec-rails", "rspec-sorbet", "rubocop", "rubocop-rails", "rubocop-sorbet", "sassc-rails", "simplecov", "sorbet", "sorbet-rails", "sorbet-runtime", "tzinfo-data", "web-console", "where-or", "will_paginate", "yard", "yard-activerecord", "actionmailer", "actionpack", "actionview", "activejob", "activemodel", "activerecord", "activesupport", "addressable", "arel", "ast", "aws-eventstream", "aws-partitions", "aws-sdk-core", "aws-sdk-kms", "aws-sdk-v1", "aws-sigv4", "builder", "climate_control", "concurrent-ruby", "crass", "debug_inspector", "diff-lcs", "docile", "erubis", "factory_bot", "faraday", "ffi", "globalid", "i18n", "jmespath", "json", "loofah", "mail", "mime-types", "mime-types-data", "mimemagic", "minitest", "mini_mime", "mini_portile2", "multipart-post", "nio4r", "nokogiri", "octokit", "parallel", "parlour", "parser", "public_suffix", "rack", "rack-test", "rails-deprecated_sanitizer", "rails-dom-testing", "rails-html-sanitizer", "railties", "rainbow", "rake", "regexp_parser", "rexml", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec-support", "rubocop-ast", "ruby-progressbar", "sassc", "sawyer", "simplecov-html", "sorbet-static", "sprockets", "sprockets-rails", "terrapin", "thor", "thread_safe", "tilt", "tzinfo", "unicode-display_width", "@bower_components/angular-animate", "@bower_components/angular-aria", "@bower_components/angular-material", "@bower_components/angular-messages", "@bower_components/blueimp-canvas-to-blob", "@bower_components/blueimp-load-image", "@bower_components/blueimp-tmpl", "@bower_components/jquery", "@bower_components/ace-builds", "@bower_components/angular", "@bower_components/angular-cookies", "@bower_components/angular-material-icons", "@bower_components/angular-resource", "@bower_components/bootstrap-css", "@bower_components/datatables.net", "@bower_components/github-markdown-css", "@bower_components/jquery-autocomplete", "@bower_components/jquery-cookie", "@bower_components/jquery-file-upload", "@bower_components/jquery-ui", "@bower_components/jquery-ujs", "@bower_components/lodash", "@bower_components/markdown-it", "@bower_components/should", "@bower_components/underscore", "angular", "argparse", "blueimp-canvas-to-blob", "blueimp-load-image", "blueimp-tmpl", "entities", "jquery", "linkify-it", "mdurl", "should-equal", "should-format", "should-type", "should-type-adaptors", "should-util", "sprintf-js", "uc.micro", "cypress", "sqlite3", "test-unit"], "https://github.com/appukuttan-shailesh/morphounit": ["elephant", "neo", "neurom", "sciunit", "seaborn", "tabulate"], "https://github.com/mbari-media-management/vars-avfoundation": ["ch.qos.logback:logback-classic", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.scijava:native-lib-loader", "org.slf4j:slf4j-api"], "https://github.com/phon-ca/phon": ["ca.hedlund:desktopicons", "ca.hedlund:tst", "ca.phon.opgraph:opgraph-app", "ca.phon.opgraph:opgraph-common-nodes", "ca.phon.opgraph:opgraph-core", "ca.phon.opgraph:opgraph-library", "ca.phon.opgraph:opgraph-xml-io", "ca.phon:jbreadcrumb", "ca.phon:native-dialogs", "com.atlassian.commonmark:commonmark", "com.atlassian.commonmark:commonmark-ext-gfm-tables", "com.fifesoft:autocomplete", "com.fifesoft:rsyntaxtextarea", "com.github.davidmoten:rtree", "com.github.insubstantial:substance", "com.github.insubstantial:substance-swingx", "com.jgoodies:jgoodies-common", "com.jgoodies:jgoodies-forms", "com.jgoodies:jgoodies-looks", "com.sun.xml.bind:jaxb-core", "com.sun.xml.bind:jaxb-impl", "com.teamdev:jxbrowser", "commons-cli:commons-cli", "commons-io:commons-io", "de.susebox:jtopas", "guru.nidi:graphviz-java", "javax.activation:activation", "javax.xml.bind:jaxb-api", "junit:junit", "net.lingala.zip4j:zip4j", "net.sf.opencsv:opencsv", "net.sourceforge.jexcelapi:jxl", "org.antlr:antlr", "org.antlr:antlr3-maven-plugin", "org.apache.commons:commons-collections4", "org.apache.commons:commons-lang3", "org.apache.derby:derby", "org.apache.logging.log4j:log4j-1.2-api", "org.apache.logging.log4j:log4j-core", "org.apache.logging.log4j:log4j-slf4j-impl", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.velocity:velocity", "org.apache.velocity:velocity-tools", "org.codehaus.groovy:groovy-all", "org.dockingframes:docking-frames-common", "org.dockingframes:docking-frames-core", "org.eclipse.jgit:org.eclipse.jgit", "org.eclipse.jgit:org.eclipse.jgit.ui", "org.jsoup:jsoup", "org.jvnet.jaxb2.maven2:maven-jaxb2-plugin", "org.mozilla:rhino", "org.swinglabs.swingx:swingx-all", "org.swinglabs:swingx", "uk.co.caprica:vlcj", "com.github.zafarkhaja:java-semver", "org.antlr:stringtemplate"], "https://github.com/kbroman/AdvData": ["github-pages"], "https://github.com/insilichem/gaudiview": ["pyyaml", "tkintertable"], "https://github.com/bdhammel/least-squares-ellipse-fitting": ["flake8", "numpy", "pytest", "pytest-cov"], "https://github.com/matthiaskoenig/pkdb": ["jupyterlab", "pandas", "requests", "coverage", "django-nose", "factory-boy", "flake8", "ipdb", "ipython", "mock", "nose-progressive", "django", "django-cors-headers", "django-elasticsearch-dsl", "django-elasticsearch-dsl-drf", "django-extra-fields", "django-filter", "django-model-utils", "django-rest-email-auth", "django-storages", "djangorestframework", "drf-yasg", "elasticsearch-dsl", "gunicorn", "ipykernel", "json-logging", "markdown", "matplotlib", "numpy", "pint", "pip", "pkdb-analysis", "psycopg2-binary", "scipy", "@fortawesome/fontawesome-free", "@statnett/vue-plotly", "@vue/cli-plugin-babel", "@vue/cli-plugin-eslint", "@vue/cli-plugin-unit-mocha", "@vue/cli-service", "@vue/test-utils", "acorn", "axios", "base-64", "chai", "css-loader", "node-sass", "sass-loader", "style-loader", "stylus", "stylus-loader", "vega", "vega-embed", "vega-lite", "vue", "vue-auth-image", "vue-cli-plugin-vuetify", "vue-multiselect", "vue-plotly", "vue-resource", "vue-router", "vue-template-compiler", "vue-text-highlight", "vuetify", "vuex", "vuex-persist"], "https://github.com/manoelcampos/cloudsim-plus": ["com.mycila:license-maven-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "ch.qos.logback:logback-classic", "ch.qos.logback:logback-core", "com.google.code.gson:gson", "org.apache.commons:commons-collections4", "org.apache.commons:commons-lang3", "org.apache.commons:commons-math3", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-jxr-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.maven.plugins:maven-surefire-report-plugin", "org.easymock:easymock", "org.easymock:easymockclassextension", "org.jacoco:jacoco-maven-plugin", "org.junit.jupiter:junit-jupiter-api", "org.junit.jupiter:junit-jupiter-engine", "org.junit.platform:junit-platform-launcher", "org.powermock:powermock-api-easymock", "org.powermock:powermock-module-junit4", "org.slf4j:slf4j-api", "org.sonatype.plugins:nexus-staging-maven-plugin", "express", "grunt", "grunt-autoprefixer", "grunt-cli", "grunt-contrib-connect", "grunt-contrib-cssmin", "grunt-contrib-jshint", "grunt-contrib-qunit", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-retire", "grunt-sass", "grunt-zip", "mustache", "node-sass", "snyk", "socket.io", "org.apache.maven.plugins:maven-shade-plugin", "org.cloudsimplus:cloudsim-plus", "org.apache.maven.plugins:maven-enforcer-plugin", "org.openjdk.jmh:jmh-core", "org.openjdk.jmh:jmh-generator-annprocess"], "https://github.com/pystruct/pystruct": ["ad3", "cvxopt", "cython", "future", "numpy", "scikit-learn", "scipy"], "https://github.com/mozillazg/phrase-pinyin-data": ["pypinyin", "requests"], "https://github.com/pabloaaf/Factor-TranscriptionCaseStudy": ["aws-sdk", "base64-js", "bson", "buffer", "events", "fs", "ieee754", "isarray", "jmespath", "long", "punycode", "querystring", "sax", "url", "xml2js", "xmlbuilder", "@grpc/proto-loader", "body-parser", "express", "grpc", "hbs", "mocha", "supertest", "uuid", "abort-controller", "accepts", "agent-base", "ansi-colors", "ansi-regex", "ansi-styles", "anymatch", "argparse", "array-flatten", "array.prototype.map", "arrify", "asynckit", "balanced-match", "bignumber.js", "binary-extensions", "bluebird", "bowser", "brace-expansion", "braces", "browser-stdout", "buffer-equal-constant-time", "busboy", "bytes", "camelcase", "camelize", "chalk", "chokidar", "cliui", "color-convert", "color-name", "combined-stream", "commander", "component-emitter", "concat-map", "content-disposition", "content-security-policy-builder", "content-type", "cookie", "cookie-signature", "cookiejar", "core-util-is", "dasherize", "debug", "decamelize", "define-properties", "delayed-stream", "depd", "destroy", "dicer", "diff", "dns-prefetch-control", "dont-sniff-mimetype", "dotenv", "ecdsa-sig-formatter", "ee-first", "emoji-regex", "encodeurl", "es-abstract", "es-array-method-boxes-properly", "es-get-iterator", "es-to-primitive", "escape-html", "escape-string-regexp", "esprima", "etag", "event-target-shim", "expect-ct", "express-fileupload", "extend", "fast-text-encoding", "feature-policy", "fill-range", "finalhandler", "find-up", "flat", "form-data", "formidable", "forwarded", "frameguard", "fresh", "fs.realpath", "fsevents", "function-bind", "gaxios", "gcp-metadata", "get-caller-file", "glob", "glob-parent", "google-auth-library", "google-p12-pem", "googleapis", "googleapis-common", "growl", "gtoken", "has", "has-flag", "has-symbols", "he", "helmet", "helmet-crossdomain", "helmet-csp", "hide-powered-by", "hpkp", "hsts", "http-errors", "https-proxy-agent", "iconv-lite", "ienoopen", "inflight", "inherits", "ipaddr.js", "is-arguments", "is-binary-path", "is-buffer", "is-callable", "is-date-object", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-map", "is-number", "is-regex", "is-set", "is-stream", "is-string", "is-symbol", "isexe", "iterate-iterator", "iterate-value", "js-yaml", "json-bigint", "jsonwebtoken", "jwa", "jws", "kareem", "locate-path", "lodash", "lodash.includes", "lodash.isboolean", "lodash.isinteger", "lodash.isnumber", "lodash.isplainobject", "lodash.isstring", "lodash.once", "log-symbols", "lru-cache", "media-typer", "memory-pager", "merge-descriptors", "methods", "mime", "mime-db", "mime-types", "minimatch", "mongodb", "mongoose", "mongoose-legacy-pluralize", "mpath", "mquery", "ms", "negotiator", "nocache", "node-fetch", "node-forge", "normalize-path", "object-inspect", "object-keys", "object.assign", "on-finished", "once", "p-limit", "p-locate", "p-try", "parseurl", "path-exists", "path-is-absolute", "path-to-regexp", "picomatch", "process-nextick-args", "promise.allsettled", "proxy-addr", "qs", "range-parser", "raw-body", "readable-stream", "readdirp", "referrer-policy", "regexp-clone", "require-directory", "require-main-filename", "require_optional", "resolve-from", "safe-buffer", "safer-buffer", "saslprep", "semver", "send", "serialize-javascript", "serve-static", "set-blocking", "setprototypeof", "sift", "sliced", "source-map", "sparse-bitfield", "sprintf-js", "statuses", "streamsearch", "string-width", "string.prototype.trimend", "string.prototype.trimstart", "string_decoder", "strip-ansi", "strip-json-comments", "superagent", "supports-color", "to-regex-range", "toidentifier", "type-is", "uglify-js", "unpipe", "url-template", "util-deprecate", "utils-merge", "vary", "which", "which-module", "wide-align", "workerpool", "wrap-ansi", "wrappy", "x-xss-protection", "yargs", "@angular-devkit/build-angular", "@angular/animations", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/language-service", "@angular/localize", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/router", "@types/jasmine", "@types/jasminewd2", "@types/node", "bootstrap", "codelyzer", "intl", "jasmine-core", "jasmine-spec-reporter", "jquery", "karma", "karma-chrome-launcher", "karma-coverage-istanbul-reporter", "karma-jasmine", "karma-jasmine-html-reporter", "popper.js", "protractor", "puppeteer", "rxjs", "ts-node", "tslib", "tslint", "typescript", "zone.js"], "https://github.com/PonteIneptique/archives_org_latin_toolkit": ["pandas"], "https://github.com/GeoStat-Framework/welltestpy": ["anaflow", "matplotlib", "numpy", "pandas", "scipy", "spotpy", "setuptools", "setuptools-scm", "pytest", "pytest-cov", "numpydoc", "sphinx-gallery"], "https://github.com/guaix-ucm/numina": ["astropy", "contextlib2", "cython", "enum34", "lmfit", "matplotlib", "numpy", "pytest", "python-dateutil", "pyyaml", "scikit-image", "scipy", "setuptools", "six", "pytest-remotedata", "mock"], "https://github.com/mariogeiger/se3cnn": ["appdirs", "lie-learn", "scipy"], "https://github.com/craws/OpenAtlas": ["commitplease", "grunt", "grunt-bowercopy", "grunt-cli", "grunt-compare-size", "grunt-contrib-concat", "grunt-contrib-csslint", "grunt-contrib-jshint", "grunt-contrib-qunit", "grunt-contrib-requirejs", "grunt-contrib-uglify", "grunt-git-authors", "grunt-html", "grunt-jscs", "load-grunt-tasks", "rimraf", "testswarm", "jshint"], "https://github.com/sjvrijn/mf2": ["hypothesis", "matplotlib", "pandas", "pyprojroot", "pytest", "pytest-cov", "pytest-regressions", "numpy"], "https://github.com/docable/docable": ["@sindresorhus/is", "@szmarczak/http-timer", "@types/cacheable-request", "@types/http-cache-semantics", "@types/keyv", "@types/node", "@types/responselike", "ansi-regex", "ansi-styles", "argparse", "asn1", "bcrypt-pbkdf", "bl", "boolbase", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "cacheable-lookup", "cacheable-request", "camelcase", "chalk", "charenc", "check-disk-space", "cheerio", "chownr", "cliui", "clone-response", "color-convert", "color-name", "concat-stream", "core-util-is", "cross-spawn", "crypt", "css-select", "css-what", "debug", "decamelize", "decompress-response", "defer-to-connect", "docker-modem", "dockerode", "dom-serializer", "domelementtype", "domhandler", "domutils", "duplexer3", "emoji-regex", "end-of-stream", "entities", "escape-string-regexp", "esprima", "execa", "find-up", "fs-constants", "fs-extra", "get-caller-file", "get-stream", "got", "graceful-fs", "has-flag", "highlight.js", "htmlparser2", "http-cache-semantics", "inherits", "invert-kv", "is-buffer", "is-fullwidth-code-point", "is-stream", "isarray", "isexe", "js-yaml", "json-buffer", "jsonfile", "jsonparse", "JSONStream", "keyv", "lcid", "locate-path", "lodash", "lowercase-keys", "map-age-cleaner", "marked", "md5", "mem", "mimic-fn", "mimic-response", "minimist", "mkdirp", "ms", "mustache", "nice-try", "normalize-url", "npm-run-path", "nth-check", "once", "os-locale", "p-cancelable", "p-defer", "p-event", "p-finally", "p-is-promise", "p-limit", "p-locate", "p-timeout", "p-try", "parse5", "path-exists", "path-key", "process-nextick-args", "pump", "readable-stream", "require-directory", "require-main-filename", "responselike", "safe-buffer", "safer-buffer", "semver", "set-blocking", "shebang-command", "shebang-regex", "signal-exit", "simple-git", "split-ca", "sprintf-js", "ssh2", "ssh2-streams", "streamsearch", "string-width", "string_decoder", "strip-ansi", "strip-eof", "supports-color", "systeminformation", "tar-fs", "tar-stream", "through", "to-buffer", "to-readable-stream", "tweetnacl", "type-fest", "typedarray", "universalify", "util-deprecate", "which", "which-module", "wrap-ansi", "wrappy", "xtend", "y18n", "yargs", "yargs-parser", "@types/color-name", "agentkeepalive", "algoliasearch", "archive-type", "async", "balanced-match", "base64-js", "bluebird", "brace-expansion", "buffer", "buffer-crc32", "caw", "commander", "concat-map", "config-chain", "content-disposition", "csv-parse", "decode-uri-component", "decompress", "decompress-tar", "decompress-tarbz2", "decompress-targz", "decompress-unzip", "delay", "dom-walk", "download", "envify", "es6-promise", "events", "ext-list", "ext-name", "fd-slicer", "file-type", "filename-reserved-regex", "filenamify", "foreach", "from2", "fs-minipass", "fs.realpath", "get-proxy", "gfm-code-block-regex", "gfm-code-blocks", "glob", "global", "graceful-readlink", "has-symbol-support-x", "has-to-string-tag-x", "ieee754", "inflight", "ini", "into-stream", "ip", "is-natural-number", "is-object", "is-plain-obj", "is-port-available", "is-retry-allowed", "isurl", "load-script", "make-dir", "md5-file", "mime-db", "min-document", "minimatch", "minipass", "minizlib", "npm-conf", "object-assign", "object-keys", "path-is-absolute", "pend", "pify", "pinkie", "pinkie-promise", "prepend-http", "process", "progress", "proto-list", "query-string", "querystring-es3", "reduce", "scp2", "seek-bzip", "sort-keys", "sort-keys-length", "split-on-first", "strict-uri-encode", "strip-dirs", "strip-outer", "tar", "timed-out", "trim-repeated", "tunnel-agent", "unbzip2-stream", "url-parse-lax", "url-to-options", "yallist", "yauzl"], "https://github.com/qbicsoftware/projectwizard-portlet": ["com.github.lookfirst:sardine", "com.opencsv:opencsv", "com.wcs.wcslib:wcslib-vaadin-widget-multifileupload", "commons-io:commons-io", "life.qbic.openbis:openbis_api", "life.qbic:core-utils-lib", "life.qbic:experimental-design-lib", "life.qbic:omero-client-lib", "life.qbic:openbis-client-lib", "life.qbic:portal-utils-lib", "org.mariadb.jdbc:mariadb-java-client", "org.ow2.asm:asm", "org.slf4j:jcl-over-slf4j", "org.slf4j:jul-to-slf4j", "org.vaadin.addons:flexibleoptiongroup", "org.vaadin.addons:wizards-for-vaadin"], "https://github.com/DuttonLab/kvasir": ["biopython", "pandas", "pymongo", "pytest"], "https://github.com/SolarArbiter/solarforecastarbiter-core": ["asynctest", "coverage", "flake8", "pytest", "pytest-asyncio", "pytest-cov", "pytest-mock", "requests-mock", "aiohttp", "bokeh", "click", "jsonschema", "matplotlib", "netcdf4", "numpy", "pandas", "plotly", "psutil", "pvlib", "python-dateutil", "requests", "scipy", "selenium", "sentry-sdk", "statsmodels", "tables", "xarray", "sphinx", "sphinx-rtd-theme"], "https://github.com/duecredit/duecredit": ["citeproc-py", "requests", "six"], "https://github.com/epiviz/epivizFileParser": ["aiocache", "dask", "distributed", "h5py", "mkdocs", "numpy", "pandas", "pysam", "pytest", "requests", "sanic", "sanic-cors", "scikit-learn", "scipy", "tiledb", "ujson", "umsgpack", "uvloop", "aiodns", "aiofiles", "aiohttp"], "https://github.com/Accenture/AmpliGraph": ["-", "beautifultable", "flake8", "networkx", "numpy", "pandas", "pytest", "pyyaml", "rdflib", "recommonmark", "scikit-learn", "scipy", "setuptools", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex", "tqdm", "tensorflow"], "https://github.com/dockstore/dockstore": ["com.github.spotbugs:spotbugs-maven-plugin", "com.googlecode.maven-download-plugin:download-maven-plugin", "com.puppycrawl.tools:checkstyle", "io.dockstore:bom-internal", "io.swagger.codegen.v3:swagger-codegen-maven-plugin", "io.swagger:swagger-codegen-maven-plugin", "javax.xml.bind:jaxb-api", "net.revelc.code:impsort-maven-plugin", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-clean-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-enforcer-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-install-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-scm-publish-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.maven.shared:maven-dependency-analyzer", "org.apache.maven.shared:maven-dependency-plugin", "org.codehaus.mojo:build-helper-maven-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.codehaus.mojo:license-maven-plugin", "org.codehaus.mojo:versions-maven-plugin", "org.eluder.coveralls:coveralls-maven-plugin", "org.jacoco:jacoco-maven-plugin", "org.scala-tools:maven-scala-plugin", "org.simplify4u.plugins:pgpverify-maven-plugin", "pl.project13.maven:git-commit-id-plugin", "io.dockstore:dockstore-common", "io.dockstore:dockstore-integration-testing", "io.dockstore:dockstore-webservice", "ch.qos.logback:logback-access", "ch.qos.logback:logback-classic", "ch.qos.logback:logback-core", "cloud.localstack:localstack-utils", "com.amazonaws:aws-encryption-sdk-java", "com.amazonaws:aws-java-sdk-s3", "com.auth0:java-jwt", "com.beust:jcommander", "com.chuusai:shapeless_2.12", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", "com.fasterxml.jackson.datatype:jackson-datatype-hibernate5", "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", "com.fasterxml.jackson:jackson-bom", "com.fasterxml:classmate", "com.github.ben-manes.caffeine:caffeine", "com.github.jsonld-java:jsonld-java", "com.github.stefanbirkner:system-rules", "com.github.zafarkhaja:java-semver", "com.google.api-client:google-api-client", "com.google.apis:google-api-services-oauth2", "com.google.apis:google-api-services-storage", "com.google.code.findbugs:annotations", "com.google.code.findbugs:findbugs", "com.google.code.findbugs:jsr305", "com.google.code.gson:gson", "com.google.guava:guava", "com.google.http-client:google-http-client", "com.google.http-client:google-http-client-jackson", "com.google.j2objc:j2objc-annotations", "com.google.oauth-client:google-oauth-client", "com.googlecode.json-simple:json-simple", "com.spotify:docker-client", "com.squareup.okhttp3:okhttp", "com.squareup.okhttp3:okhttp-urlconnection", "com.squareup.okio:okio", "com.sun.xml.bind:jaxb-core", "com.sun.xml.bind:jaxb-impl", "com.typesafe:config", "commons-beanutils:commons-beanutils", "commons-codec:commons-codec", "commons-io:commons-io", "commons-logging:commons-logging", "commons-net:commons-net", "commons-validator:commons-validator", "eu.timepit:refined_2.11", "io.cwl:cwlavro-generated", "io.cwl:cwlavro-tools", "io.dockstore:zenodo-client-generated", "io.dropwizard.metrics:metrics-annotation", "io.dropwizard.metrics:metrics-core", "io.dropwizard.metrics:metrics-healthchecks", "io.dropwizard:dropwizard-assets", "io.dropwizard:dropwizard-auth", "io.dropwizard:dropwizard-bom", "io.dropwizard:dropwizard-client", "io.dropwizard:dropwizard-core", "io.dropwizard:dropwizard-db", "io.dropwizard:dropwizard-dependencies", "io.dropwizard:dropwizard-forms", "io.dropwizard:dropwizard-hibernate", "io.dropwizard:dropwizard-jackson", "io.dropwizard:dropwizard-jdbi3", "io.dropwizard:dropwizard-jersey", "io.dropwizard:dropwizard-jetty", "io.dropwizard:dropwizard-logging", "io.dropwizard:dropwizard-migrations", "io.dropwizard:dropwizard-testing", "io.netty:netty-bom", "io.specto:hoverfly-java", "io.spray:spray-json_2.12", "io.swagger.core.v3:swagger-annotations", "io.swagger.core.v3:swagger-integration", "io.swagger.core.v3:swagger-jaxrs2", "io.swagger.core.v3:swagger-jaxrs2-servlet-initializer", "io.swagger:swagger-annotations", "io.swagger:swagger-core", "io.swagger:swagger-jaxrs", "io.swagger:swagger-jersey2-jaxrs", "io.swagger:swagger-models", "jakarta.activation:jakarta.activation-api", "jakarta.annotation:jakarta.annotation-api", "jakarta.servlet:jakarta.servlet-api", "jakarta.validation:jakarta.validation-api", "jakarta.ws.rs:jakarta.ws.rs-api", "jakarta.xml.bind:jakarta.xml.bind-api", "javax.annotation:javax.annotation-api", "javax.persistence:javax.persistence-api", "jaxen:jaxen", "joda-time:joda-time", "junit:junit", "net.bytebuddy:byte-buddy", "net.bytebuddy:byte-buddy-agent", "net.logstash.logback:logstash-logback-encoder", "org.apache.commons:commons-compress", "org.apache.commons:commons-configuration2", "org.apache.commons:commons-csv", "org.apache.commons:commons-exec", "org.apache.commons:commons-lang3", "org.apache.commons:commons-text", "org.apache.commons:commons-vfs2", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpcore", "org.apache.httpcomponents:httpcore-nio", "org.apache.httpcomponents:httpcore-osgi", "org.assertj:assertj-core", "org.bouncycastle:bcprov-jdk15on", "org.broadinstitute:cromwell-common_2.12", "org.broadinstitute:cromwell-core_2.12", "org.broadinstitute:cromwell-wdl-transforms-draft3_2.12", "org.broadinstitute:cromwell-wom_2.12", "org.broadinstitute:language-factory-core_2.12", "org.broadinstitute:wdl-biscayne_2.12", "org.broadinstitute:wdl-draft2_2.12", "org.broadinstitute:wdl-draft3_2.12", "org.checkerframework:checker-qual", "org.codehaus.groovy:groovy", "org.codehaus.jackson:jackson-core-asl", "org.codehaus.jackson:jackson-mapper-asl", "org.easymock:easymock", "org.eclipse.jetty:jetty-continuation", "org.eclipse.jetty:jetty-http", "org.eclipse.jetty:jetty-io", "org.eclipse.jetty:jetty-server", "org.eclipse.jetty:jetty-servlet", "org.eclipse.jetty:jetty-servlets", "org.eclipse.jetty:jetty-util", "org.elasticsearch.client:rest", "org.gitlab:java-gitlab-api", "org.glassfish.jersey:jersey-bom", "org.hamcrest:hamcrest-core", "org.hibernate.javax.persistence:hibernate-jpa-2.1-api", "org.hibernate:hibernate-core", "org.hibernate:hibernate-validator", "org.javassist:javassist", "org.jboss.logging:jboss-logging", "org.json:json", "org.jvnet.mimepull:mimepull", "org.kohsuke:github-api", "org.mockito:mockito-all", "org.mockito:mockito-core", "org.objenesis:objenesis", "org.ow2.asm:asm", "org.ow2.asm:asm-commons", "org.ow2.asm:asm-tree", "org.pf4j:pf4j", "org.postgresql:postgresql", "org.powermock:powermock-api-easymock", "org.powermock:powermock-api-mockito-common", "org.powermock:powermock-api-mockito2", "org.powermock:powermock-api-support", "org.powermock:powermock-core", "org.powermock:powermock-module-junit4", "org.reactivestreams:reactive-streams", "org.reflections:reflections", "org.scala-lang.modules:scala-xml_2.12", "org.scala-lang:scala-library", "org.scala-lang:scala-reflect", "org.scalacheck:scalacheck_2.12", "org.slf4j:jcl-over-slf4j", "org.slf4j:slf4j-api", "org.typelevel:cats-core_2.12", "org.typelevel:macro-compat_2.12", "org.yaml:snakeyaml", "software.amazon.awssdk:bom", "com.fasterxml.jackson.core:jackson-databind", "com.google.code.maven-replacer-plugin:replacer", "org.glassfish.jersey.core:jersey-client", "org.glassfish.jersey.core:jersey-common", "org.glassfish.jersey.media:jersey-media-json-jackson", "org.glassfish.jersey.media:jersey-media-multipart", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider", "com.github.kongchen:swagger-maven-plugin", "io.dockstore:dockstore-language-plugin-parent", "io.dockstore:swagger-java-bitbucket-client", "io.dockstore:swagger-java-discourse-client", "io.dockstore:swagger-java-quay-client", "io.dockstore:swagger-java-sam-client", "io.dockstore:swagger-java-zenodo-client", "io.swagger.core.v3:swagger-maven-plugin", "org.glassfish.jersey.core:jersey-server", "org.liquibase:liquibase-maven-plugin", "org.openapitools:openapi-generator-maven-plugin", "software.amazon.awssdk:regions", "software.amazon.awssdk:sqs", "io.dockstore:swagger-java-client", "io.dockstore:dockstore-client", "io.dockstore:openapi-java-client", "avro", "cwl-runner", "cwltool", "requests", "ruamel-yaml", "schema-salad", "setuptools", "avro-cwl"], "https://github.com/jacobwindsor/kaavio-showdown": ["babel-cli", "babel-core", "babel-eslint", "babel-plugin-transform-runtime", "babel-preset-es2015", "babel-preset-es2015-rollup", "babel-preset-stage-0", "babel-register", "babel-runtime", "chai", "coveralls", "del", "easystatic", "eslint", "eslint-config-airbnb", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "istanbul", "mocha", "pretty", "rollup", "rollup-plugin-babel", "should", "showdown", "sinon"], "https://github.com/julemai/EEE-DA": ["backcall", "cftime", "cycler", "decorator", "install", "ipython", "ipython-genutils", "jedi", "joblib", "kiwisolver", "matplotlib", "netcdf4", "numpy", "pandas", "parso", "pexpect", "pickleshare", "prompt-toolkit", "ptyprocess", "pygments", "pyparsing", "pyproj", "pyshp", "python-dateutil", "pytz", "scikit-learn", "scipy", "six", "threadpoolctl", "traitlets", "wcwidth", "xarray"], "https://github.com/materialsproject/custodian": ["coverage", "coveralls", "pycodestyle", "pymatgen", "pytest", "pytest-cov", "monty", "ruamel-yaml", "sentry-sdk"], "https://github.com/Samreay/Pippin": ["astropy", "chainconsumer", "colorama", "coloredlogs", "matplotlib", "numpy", "pandas", "pyyaml", "scipy", "sklearn", "pytest"], "https://github.com/DeepRank/deeprank": ["freesasa", "h5py", "matplotlib", "mpi4py", "numpy", "pandas", "pdb2sql", "scipy", "torch", "torchsummary", "tqdm"], "https://github.com/bionode/bionode-ncbi": ["async", "bionode-fasta", "browserify", "cheerio", "concat-stream", "contributor", "coveralls", "debug", "dependency-check", "docco", "insight", "istanbul", "JSONStream", "mkdirp", "nugget", "pumpify", "request", "split2", "standard", "tap-spec", "tape", "tape-nock", "testling", "through2", "tool-stream", "uglify-js", "xml2js", "yargs"], "https://github.com/leonardo-calcagno/covid19model_latam": ["datetime", "pyyaml", "scipy", "statsmodels"], "https://github.com/openvax/varcode": ["biopython", "memoized-property", "nose", "numpy", "pandas", "pyensembl", "pylint", "pyvcf", "sercol", "serializable"], "https://github.com/nilsreiter/uima-util": ["de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.io-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.api.metadata-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.io.text-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.matetools-gpl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.stanfordnlp-gpl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n\t\t\t\tde.tudarmstadt.ukp.dkpro.core.tokit-asl\n\t\t\t", "de.tudarmstadt.ukp.dkpro.core:\n \t\tde.tudarmstadt.ukp.dkpro.core.api.segmentation-asl\n \t", "junit:junit", "org.apache.commons:commons-collections4", "org.apache.commons:commons-configuration2", "org.apache.commons:commons-csv", "org.apache.commons:commons-dbcp2", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-scm-publish-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.uima:jcasgen-maven-plugin", "org.apache.uima:uimafit-core", "org.codehaus.mojo:build-helper-maven-plugin", "org.jsoup:jsoup"], "https://github.com/pybel/pybel": ["click", "click-plugins", "networkx", "pyparsing", "requests", "requests-file", "six", "sphinx-click", "sqlalchemy", "tqdm", "indra", "ndex2", "py2neo"], "https://github.com/hitliaomq/ELASTIC3rd": ["matplotlib", "numpy", "scipy"], "https://github.com/portugueslab/stytra": ["bump2version", "flake8", "pytest", "pytest-cov", "sphinx", "tox", "anytree", "arrayqueues", "colorspacious", "flammkuchen", "gitpython", "imageio", "imageio-ffmpeg", "lightparam", "numba", "numpy", "pandas", "pillow", "pims", "pyqtgraph", "qdarkstyle", "qimage2ndarray", "scikit-image"], "https://github.com/abhi1693/yii2-app-advanced-startup-kit": ["abhi1693/yii2-config", "abhi1693/yii2-installer", "abhi1693/yii2-system-info", "abhi1693/yii2-user", "kartik-v/yii2-widget-alert", "kartik-v/yii2-widget-sidenav", "php", "raoul2000/yii2-bootswatch-asset", "wbraganca/yii2-dynamicform", "yiisoft/yii2", "yiisoft/yii2-bootstrap", "yiisoft/yii2-codeception", "yiisoft/yii2-debug", "yiisoft/yii2-faker", "yiisoft/yii2-gii", "yiisoft/yii2-swiftmailer", "zelenin/yii2-recaptcha-widget"], "https://github.com/steelelab-delft/stlabutils": ["lmfit", "matplotlib", "pandas", "scipy"], "https://github.com/aouinizied/nfstream": ["cffi", "numpy", "pandas", "psutil", "pytest"], "https://github.com/holgern/pyedflib": ["coverage", "cython", "dateparser", "flake8", "matplotlib", "nose", "numpy", "pip", "pytest", "setuptools", "tox", "tqdm", "wheel", "numpydoc"], "https://github.com/pysal/mapclassify": ["networkx", "numpy", "pandas", "scikit-learn", "scipy", "numpydoc", "sphinx", "sphinx-bootstrap-theme", "sphinx-gallery", "sphinxcontrib-bibtex", "codecov", "geopandas", "libpysal", "palettable", "pytest", "pytest-cov"], "https://github.com/bastibe/MAPS-Scripts": ["jbof", "matplotlib", "notebook", "numpy", "pandas", "resampy", "runforrest", "scipy", "soundfile", "tqdm", "transplant"], "https://github.com/ICB-DCM/parPE": ["breathe", "exhale", "ipython", "m2r", "sphinx", "sphinx-rtd-theme", "termcolor", "amici", "colorama", "h5py", "jinja2", "numpy", "petab", "python-libsbml", "snakemake"], "https://github.com/newville/wxmplot": ["matplotlib", "numpy", "six", "wxpython"], "https://github.com/jirikuncar/eelap": ["coverage", "httpretty", "lxml", "nose", "numpy", "setuptools", "sphinxcontrib-bibtex", "sphinxcontrib-programoutput"], "https://github.com/giganticode/codeprep": ["coverage", "pytest", "pytest-mock", "appdirs", "click", "dill", "docopt", "docopt-subcommands", "joblib", "jsons", "nltk", "pygments", "pyyaml", "regex", "tqdm", "typish"], "https://github.com/raphaelvallat/yasa": ["codecov", "pytest", "pytest-cov", "pytest-sugar", "pytest-travis-fold", "lspopt", "matplotlib", "mne", "numba", "numpy", "pandas", "pyriemann", "scikit-learn", "scipy", "seaborn", "tensorpac"], "https://github.com/JonnyDaenen/Gumbo": ["com.google.guava:guava", "junit:junit", "org.antlr:antlr4-runtime", "org.apache.commons:commons-collections4", "org.apache.hadoop:hadoop-common", "org.apache.hadoop:hadoop-mapreduce-client-common", "org.apache.hadoop:hadoop-mapreduce-examples", "org.apache.maven.plugins:maven-eclipse-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.spark:spark-core_2.10", "org.codehaus.mojo:build-helper-maven-plugin"], "https://github.com/BENR0/textory": ["dask", "numpy", "satpy", "scikit-image", "scipy", "xarray", "distributed", "pytest"], "https://github.com/architecture-building-systems/CityEnergyAnalyst": ["cufflinks", "deap", "ephem", "flask-restplus", "flask-socketio", "future", "geopandas", "gevent", "ipython", "mock", "numba", "openpyxl", "osmnx", "plotly", "psutil", "py4design-cea", "pymc3", "pysal", "pyyaml", "requests", "salib", "seaborn", "setuptools", "sphinx", "staticmap", "sympy", "timezonefinder", "twine", "utm", "wntr", "xlrd", "xlwt"], "https://github.com/quexiang/STWR": ["libpysal", "numpy", "scipy", "spglm", "numpydoc", "sphinx", "sphinx-bootstrap-theme", "sphinx-gallery", "sphinxcontrib-bibtex", "sphinxcontrib-napoleon", "coverage", "coveralls", "nose", "nose-exclude", "nose-progressive", "pandas"], "https://github.com/underworldcode/underworld2": ["-", "coffee-script", "compass", "foreman", "jekyll", "sass", "addressable", "chunky_png", "coffee-script-source", "colorator", "compass-core", "compass-import-once", "execjs", "ffi", "forwardable-extended", "jekyll-sass-converter", "jekyll-watch", "kramdown", "liquid", "listen", "mercenary", "multi_json", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "safe_yaml", "thor", "jupyter", "pandoc"], "https://github.com/TerrainBento/umami": ["landlab", "numpy", "scipy"], "https://github.com/FedericoGarza/covidmx": ["descartes", "mapclassify", "mapsmx", "matplotlib", "more-itertools", "pandas", "requests", "unidecode", "wget", "xlrd"], "https://github.com/SimonGreenhill/phylogemetric": ["python-nexus"], "https://github.com/earthlab/matplotcheck": ["bumpversion", "codecov", "descartes", "pillow", "pip", "pre-commit", "pytest", "pytest-cov", "pytest-vcr", "seaborn", "setuptools", "sphinx-autobuild", "sphinx-gallery", "sphinx-rtd-theme", "folium", "geopandas", "matplotlib", "numpy", "rasterio", "scipy"], "https://github.com/landlab/landlab": ["black", "flake8", "isort", "entrypoints", "ipython", "jupyter-client", "nbformat", "nbsphinx", "pandoc", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-github-alt", "tornado", "dask", "holoviews", "jupyter", "coveralls", "pytest", "pytest-cov", "pytest-datadir", "pyyaml", "bmipy", "matplotlib", "netcdf4", "pandas", "pyshp", "scipy", "statsmodels", "xarray"], "https://github.com/saltastro/pyhrs": ["astropy", "ccdproc", "numpy", "pyspectrograph", "scipy", "specutils"], "https://github.com/MRCIEU/MELODI-Presto": ["coreapi", "django", "djangorestframework", "drf-yasg", "elasticsearch", "gunicorn", "numpy", "pandas", "pytest", "pyyaml", "requests", "scipy"], "https://github.com/kundajelab/tfmodisco": ["h5py", "joblib", "leidenalg", "matplotlib", "numpy", "psutil", "scikit-learn", "tqdm", "tensorflow", "tensorflow-gpu"], "https://github.com/jupiterbak/FAPSDemoOPCUAServer0": ["@dabh/diagnostics", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@sindresorhus/is", "@szmarczak/http-timer", "@types/async", "@types/bonjour", "@types/color-name", "@types/glob", "@types/lodash", "@types/minimatch", "@types/mkdirp", "@types/node", "@types/once", "@types/underscore", "aggregate-error", "ansi-align", "ansi-regex", "ansi-styles", "any-promise", "anymatch", "argparse", "array-flatten", "array-union", "asn1", "assert-plus", "async", "backoff", "balanced-match", "bcrypt-pbkdf", "better-assert", "binary-extensions", "bomstrip", "bonjour", "boolbase", "boxen", "brace-expansion", "braces", "browser-process-hrtime", "buffer-crc32", "buffer-indexof", "byline", "cacheable-request", "callbackify", "callsite", "camelcase", "chalk", "chokidar", "ci-info", "clean-stack", "cli-boxes", "cli-spinner", "cli-table", "cliui", "clone-response", "color", "color-convert", "color-name", "color-string", "colors", "colorspace", "concat-map", "configstore", "core-util-is", "crypto-random-string", "css-select", "css-what", "dashdash", "decamelize", "decompress-response", "deep-equal", "deep-extend", "defer-to-connect", "define-properties", "del", "delayed", "dequeue", "dir-glob", "dns-equal", "dns-packet", "dns-txt", "dom-converter", "dom-serializer", "domelementtype", "domhandler", "domutils", "dot-prop", "duplexer3", "ecc-jsbn", "emoji-regex", "enabled", "end-of-stream", "entities", "env-paths", "es-abstract", "es-to-primitive", "escape-goat", "esprima", "fast-glob", "fast-safe-stringify", "fastq", "fd-slicer", "fecha", "fill-range", "find-up", "fn.name", "foreachasync", "fs.realpath", "fsevents", "function-bind", "get-caller-file", "get-stream", "getpass", "glob", "glob-parent", "global-dirs", "globby", "got", "graceful-fs", "has", "has-flag", "has-symbols", "has-yarn", "hexy", "htmlparser2", "http-cache-semantics", "humanize", "ignore", "import-lazy", "imurmurhash", "indent-string", "inflight", "inherits", "ini", "ip", "is", "is-arguments", "is-arrayish", "is-binary-path", "is-callable", "is-ci", "is-date-object", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-installed-globally", "is-negative-zero", "is-npm", "is-number", "is-obj", "is-path-cwd", "is-path-inside", "is-regex", "is-stream", "is-symbol", "is-typedarray", "is-yarn-global", "isarray", "js-yaml", "jsbn", "json-buffer", "jsrsasign", "keyv", "kuler", "latest-version", "locate-path", "lodash", "logform", "long", "lowercase-keys", "ltx", "make-dir", "merge2", "micromatch", "mimic-response", "minimatch", "minimist", "mkdirp", "ms", "multicast-dns", "multicast-dns-service-types", "node-opcua", "node-opcua-address-space", "node-opcua-address-space-for-conformance-testing", "node-opcua-aggregates", "node-opcua-assert", "node-opcua-basic-types", "node-opcua-binary-stream", "node-opcua-buffer-utils", "node-opcua-certificate-manager", "node-opcua-chunkmanager", "node-opcua-client", "node-opcua-client-crawler", "node-opcua-client-dynamic-extension-object", "node-opcua-client-proxy", "node-opcua-common", "node-opcua-constants", "node-opcua-crypto", "node-opcua-data-access", "node-opcua-data-model", "node-opcua-data-value", "node-opcua-date-time", "node-opcua-debug", "node-opcua-enum", "node-opcua-extension-object", "node-opcua-factory", "node-opcua-generator", "node-opcua-guid", "node-opcua-hostname", "node-opcua-nodeid", "node-opcua-nodesets", "node-opcua-numeric-range", "node-opcua-object-registry", "node-opcua-packet-analyzer", "node-opcua-packet-assembler", "node-opcua-pki", "node-opcua-pseudo-session", "node-opcua-schemas", "node-opcua-secure-channel", "node-opcua-server", "node-opcua-server-discovery", "node-opcua-service-browse", "node-opcua-service-call", "node-opcua-service-discovery", "node-opcua-service-endpoints", "node-opcua-service-filter", "node-opcua-service-history", "node-opcua-service-node-management", "node-opcua-service-query", "node-opcua-service-read", "node-opcua-service-register-node", "node-opcua-service-secure-channel", "node-opcua-service-session", "node-opcua-service-subscription", "node-opcua-service-translate-browse-path", "node-opcua-service-write", "node-opcua-status-code", "node-opcua-transport", "node-opcua-types", "node-opcua-utils", "node-opcua-variant", "node-opcua-vendor-diagnostic", "node-opcua-xml2json", "node-yaml-config", "node.extend", "normalize-path", "normalize-url", "nth-check", "object-inspect", "winston", "xstate"], "https://github.com/hugadams/scikit-spectra": ["matplotlib", "pandas", "scipy"], "https://github.com/YeoLab/clipper": ["htseq", "matplotlib", "numpy", "pybedtools", "pysam", "scikit-learn", "scipy", "setuptools"], "https://github.com/Confareneoclassico/Irrigation_Model": ["ipython", "matplotlib", "numpy", "pandas", "scipy", "seaborn", "sobol-seq", "xlrd"], "https://github.com/mmaelicke/soil-moisture-dynamics-companion-code": ["matplotlib", "numpy", "pandas", "rise", "scikit-gstat", "scikit-info", "scikit-learn", "scipy"], "https://github.com/rscottweekly/processPKPD": ["numpy", "pandas", "python-dateutil", "pytz", "six"], "https://github.com/empymod/emg3d": ["coveralls", "discretize", "empymod", "h5py", "matplotlib", "numpydoc", "pytest", "pytest-console-scripts", "pytest-cov", "pytest-flake8", "scooby", "setuptools-scm", "sphinx", "sphinx-automodapi", "sphinx-numfig", "sphinx-rtd-theme", "xarray", "-", "numba", "scipy"], "https://github.com/coin-or/rbfopt": ["mock", "numpy", "numpydoc", "pyomo", "scipy"], "https://github.com/VForWaTer/metacatalog": ["geoalchemy2", "nltk", "pandas", "psycopg2-binary", "requests", "shapely", "sqlalchemy", "tabulate"], "https://github.com/piyush82/iot-simulator": ["com.rabbitmq:amqp-client", "org.apache.maven.plugins:maven-compiler-plugin", "org.codehaus.mojo:exec-maven-plugin"], "https://github.com/rabroughton/QUAD": ["bspline", "coveralls", "matplotlib", "scipy", "seaborn", "sphinx-rtd-theme", "sphinxcontrib-bibtex", "statsmodels"], "https://github.com/biocore/qurro": ["altair", "biom-format", "click", "numpy", "pandas", "scikit-bio"], "https://github.com/streamreasoning/rsplib": ["rdflib", "requests", "websocket", "websocket-client", "rsplib"], "https://github.com/NLeSC/nlesc-serverless-boilerplate": ["@testing-library/jest-dom", "@testing-library/react", "@testing-library/user-event", "@types/jest", "@types/node", "@types/react", "@types/react-dom", "aws-amplify", "aws-amplify-react", "react", "react-dom", "react-scripts", "typescript", "@aws-amplify/analytics", "@aws-amplify/api", "@aws-amplify/auth", "@aws-amplify/cache", "@aws-amplify/core", "@aws-amplify/datastore", "@aws-amplify/interactions", "@aws-amplify/predictions", "@aws-amplify/pubsub", "@aws-amplify/storage", "@aws-amplify/ui", "@aws-amplify/xr", "@aws-crypto/crc32", "@aws-sdk/eventstream-marshaller", "@aws-sdk/is-array-buffer", "@aws-sdk/types", "@aws-sdk/util-buffer-from", "@aws-sdk/util-hex-encoding", "@aws-sdk/util-utf8-node", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-builder-react-jsx-experimental", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-flow", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-syntax-typescript", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-flow-strip-types", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-constant-elements", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-development", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-react-pure-annotations", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-typescript", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/preset-react", "@babel/preset-typescript", "@babel/runtime", "@babel/runtime-corejs3", "@babel/template", "@babel/traverse", "@babel/types", "@cnakazawa/watch", "@csstools/convert-colors", "@csstools/normalize.css", "@hapi/address", "@hapi/bourne", "@hapi/hoek", "@hapi/joi", "@hapi/topo", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@sheerun/mutationobserver-shim", "@svgr/babel-plugin-add-jsx-attribute", "@svgr/babel-plugin-remove-jsx-attribute", "@svgr/babel-plugin-remove-jsx-empty-expression", "@svgr/babel-plugin-replace-jsx-attribute-value", "@svgr/babel-plugin-svg-dynamic-title", "@svgr/babel-plugin-svg-em-dimensions", "@svgr/babel-plugin-transform-react-native-svg", "@svgr/babel-plugin-transform-svg-component", "@svgr/babel-preset", "@svgr/core", "@svgr/hast-util-to-babel-ast", "@svgr/plugin-jsx", "@svgr/plugin-svgo", "@svgr/webpack", "@testing-library/dom", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/color-name", "@types/eslint-visitor-keys", "@types/glob", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/json-schema", "@types/minimatch", "@types/parse-json", "@types/prop-types", "@types/q", "@types/stack-utils", "@types/testing-library__dom", "@types/testing-library__react", "@types/yargs", "@types/yargs-parser", "@typescript-eslint/eslint-plugin", "@typescript-eslint/experimental-utils", "@typescript-eslint/parser", "@typescript-eslint/typescript-estree", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "accepts", "acorn", "acorn-globals", "acorn-jsx", "acorn-walk", "address", "adjust-sourcemap-loader", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "alphanum-sort", "amazon-cognito-identity-js", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "argparse", "aria-query", "arity-n", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-flatten", "array-includes", "array-union", "array-uniq", "array-unique", "arrify", "asap", "asn1", "boto3"], "https://github.com/lanl/CLAMR": ["docutils", "sphinx"], "https://github.com/matiscke/lcps": ["sphinx", "astropy"], "https://github.com/jdavidrcamacho/tedi": ["dynesty", "emcee", "numpy", "scipy"], "https://github.com/jupiterbak/FAPSDemoOPCUAServer": ["@dabh/diagnostics", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@sindresorhus/is", "@szmarczak/http-timer", "@types/async", "@types/bonjour", "@types/color-name", "@types/glob", "@types/lodash", "@types/minimatch", "@types/mkdirp", "@types/node", "@types/once", "@types/underscore", "aggregate-error", "ansi-align", "ansi-regex", "ansi-styles", "any-promise", "anymatch", "argparse", "array-flatten", "array-union", "asn1", "assert-plus", "async", "backoff", "balanced-match", "bcrypt-pbkdf", "better-assert", "binary-extensions", "bomstrip", "bonjour", "boolbase", "boxen", "brace-expansion", "braces", "browser-process-hrtime", "buffer-crc32", "buffer-indexof", "byline", "cacheable-request", "callbackify", "callsite", "camelcase", "chalk", "chokidar", "ci-info", "clean-stack", "cli-boxes", "cli-spinner", "cli-table", "cliui", "clone-response", "color", "color-convert", "color-name", "color-string", "colors", "colorspace", "concat-map", "configstore", "core-util-is", "crypto-random-string", "css-select", "css-what", "dashdash", "decamelize", "decompress-response", "deep-equal", "deep-extend", "defer-to-connect", "define-properties", "del", "delayed", "dequeue", "dir-glob", "dns-equal", "dns-packet", "dns-txt", "dom-converter", "dom-serializer", "domelementtype", "domhandler", "domutils", "dot-prop", "duplexer3", "ecc-jsbn", "emoji-regex", "enabled", "end-of-stream", "entities", "env-paths", "es-abstract", "es-to-primitive", "escape-goat", "esprima", "fast-glob", "fast-safe-stringify", "fastq", "fd-slicer", "fecha", "fill-range", "find-up", "fn.name", "foreachasync", "fs.realpath", "fsevents", "function-bind", "get-caller-file", "get-stream", "getpass", "glob", "glob-parent", "global-dirs", "globby", "got", "graceful-fs", "has", "has-flag", "has-symbols", "has-yarn", "hexy", "htmlparser2", "http-cache-semantics", "humanize", "ignore", "import-lazy", "imurmurhash", "indent-string", "inflight", "inherits", "ini", "ip", "is", "is-arguments", "is-arrayish", "is-binary-path", "is-callable", "is-ci", "is-date-object", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-installed-globally", "is-negative-zero", "is-npm", "is-number", "is-obj", "is-path-cwd", "is-path-inside", "is-regex", "is-stream", "is-symbol", "is-typedarray", "is-yarn-global", "isarray", "js-yaml", "jsbn", "json-buffer", "jsrsasign", "keyv", "kuler", "latest-version", "locate-path", "lodash", "logform", "long", "lowercase-keys", "ltx", "make-dir", "merge2", "micromatch", "mimic-response", "minimatch", "minimist", "mkdirp", "ms", "multicast-dns", "multicast-dns-service-types", "node-opcua", "node-opcua-address-space", "node-opcua-address-space-for-conformance-testing", "node-opcua-aggregates", "node-opcua-assert", "node-opcua-basic-types", "node-opcua-binary-stream", "node-opcua-buffer-utils", "node-opcua-certificate-manager", "node-opcua-chunkmanager", "node-opcua-client", "node-opcua-client-crawler", "node-opcua-client-dynamic-extension-object", "node-opcua-client-proxy", "node-opcua-common", "node-opcua-constants", "node-opcua-crypto", "node-opcua-data-access", "node-opcua-data-model", "node-opcua-data-value", "node-opcua-date-time", "node-opcua-debug", "node-opcua-enum", "node-opcua-extension-object", "node-opcua-factory", "node-opcua-generator", "node-opcua-guid", "node-opcua-hostname", "node-opcua-nodeid", "node-opcua-nodesets", "node-opcua-numeric-range", "node-opcua-object-registry", "node-opcua-packet-analyzer", "node-opcua-packet-assembler", "node-opcua-pki", "node-opcua-pseudo-session", "node-opcua-schemas", "node-opcua-secure-channel", "node-opcua-server", "node-opcua-server-discovery", "node-opcua-service-browse", "node-opcua-service-call", "node-opcua-service-discovery", "node-opcua-service-endpoints", "node-opcua-service-filter", "node-opcua-service-history", "node-opcua-service-node-management", "node-opcua-service-query", "node-opcua-service-read", "node-opcua-service-register-node", "node-opcua-service-secure-channel", "node-opcua-service-session", "node-opcua-service-subscription", "node-opcua-service-translate-browse-path", "node-opcua-service-write", "node-opcua-status-code", "node-opcua-transport", "node-opcua-types", "node-opcua-utils", "node-opcua-variant", "node-opcua-vendor-diagnostic", "node-opcua-xml2json", "node-yaml-config", "node.extend", "normalize-path", "normalize-url", "nth-check", "object-inspect", "winston", "xstate"], "https://github.com/Fraternalilab/POPScomp": ["jsonschema", "requests"], "https://github.com/DeepLearnPhysics/larcv3": ["cmake", "h5py", "numpy", "scikit-build"], "https://github.com/wangz10/text-classification": ["cython", "gensim", "ipython", "ipython-genutils", "matplotlib", "nltk", "notebook", "numpy", "pandas", "pymongo", "scikit-learn", "scipy", "tensorflow", "wordcloud", "xgboost"], "https://github.com/NLeSC/docker-couch-admin": ["browser-sync", "browser-sync-spa", "chalk", "del", "eslint-plugin-angular", "estraverse", "gulp", "gulp-angular-filesort", "gulp-angular-templatecache", "gulp-autoprefixer", "gulp-clean-css", "gulp-eslint", "gulp-filter", "gulp-flatten", "gulp-inject", "gulp-load-plugins", "gulp-minify-html", "gulp-ng-annotate", "gulp-protractor", "gulp-rename", "gulp-replace", "gulp-rev", "gulp-rev-replace", "gulp-sass", "gulp-size", "gulp-sourcemaps", "gulp-uglify", "gulp-useref", "gulp-util", "http-proxy-middleware", "karma", "karma-angular-filesort", "karma-coverage", "karma-jasmine", "karma-ng-html2js-preprocessor", "karma-phantomjs-launcher", "lodash", "main-bower-files", "phantomjs", "uglify-save-license", "wiredep", "wrench"], "https://github.com/cs-education/sysbuild": ["husky", "shelljs", "browserify", "expect", "jshint", "lab", "babel-core", "babel-plugin-add-module-exports", "babel-plugin-transform-es2015-modules-amd", "babel-preset-env", "babel-register", "chalk", "deeply", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "event-stream", "gulp", "gulp-autoprefixer", "gulp-babel", "gulp-cache", "gulp-clean", "gulp-concat", "gulp-connect", "gulp-eslint", "gulp-filter", "gulp-gh-pages", "gulp-html-replace", "gulp-minify-css", "gulp-minify-html", "gulp-plumber", "gulp-replace", "gulp-requirejs-bundler", "gulp-sass", "gulp-size", "gulp-sourcemaps", "gulp-uglify", "jasmine-core", "karma", "karma-babel-preprocessor", "karma-chrome-launcher", "karma-jasmine", "karma-phantomjs-launcher", "karma-requirejs", "object-assign", "requirejs", "slash"], "https://github.com/nkeim/philatracks": ["numpy", "pandas", "scipy"], "https://github.com/Qiskit/qiskit-terra": ["astroid", "coverage", "cython", "ddt", "hypothesis", "ipywidgets", "jupyter", "jupyter-sphinx", "matplotlib", "pillow", "pycodestyle", "pydot", "pygithub", "pygments", "pylatexenc", "pylint", "reno", "seaborn", "sphinx", "sphinx-autodoc-typehints", "sphinx-rtd-theme", "sphinx-tabs", "stestr", "tweedledum", "wheel", "contextvars", "dill", "fastjsonschema", "jsonschema", "networkx", "numpy", "ply", "psutil", "python-constraint", "python-dateutil", "retworkx", "scipy", "sympy"], "https://github.com/mdolab/dafoam": ["cython", "mpi4py", "numpy", "petsc4py"], "https://github.com/mikel-egana-aranguren/SADI-Galaxy-Docker": ["grunt", "grunt-contrib-copy", "grunt-contrib-watch", "grunt-exec", "grunt-contrib-qunit", "grunt-contrib-clean", "grunt-contrib-less", "grunt-recess", "grunt-spritesmith", "pytz", "pycryptopp", "beaker", "markupsafe", "blinker", "celery", "django", "django-celery", "exam", "flask", "logbook", "mock", "nose", "pep8", "pytest", "pytest-django", "tornado", "unittest2", "webob", "grunt-cli", "grunt-contrib-requirejs", "paramiko", "amqp", "anyjson", "beanstalkc", "boto", "couchdb", "kazoo", "librabbitmq", "msgpack-python", "pymongo", "pyro4", "pyyaml", "pyzmq", "redis", "softlayer-messaging", "sqlalchemy", "flup", "python-openid", "tempita", "wsgiref", "minimock", "grunt-contrib-concat", "grunt-contrib-handlebars", "grunt-contrib-uglify", "paste", "decorator", "setuptools", "sphinx"], "https://github.com/JakeBlackmore/Diatomic-Py": ["numpy", "scipy", "sympy"], "https://github.com/arXiv/arxiv-search": ["arxiv-auth", "arxiv-base", "bleach", "boto", "boto3", "botocore", "certifi", "chardet", "click", "coverage", "coveralls", "dataclasses", "docutils", "elasticsearch", "elasticsearch-dsl", "feedgen", "flask", "flask-s3", "idna", "ipaddress", "itsdangerous", "jinja2", "jmespath", "jsonschema", "lark-parser", "lxml", "markupsafe", "mccabe", "mock", "mypy", "mypy-extensions", "nose", "nose2", "pbr", "pre-commit", "psutil", "pycodestyle", "pydocstyle", "pyflakes", "pylama", "pylint", "pytest", "python-dateutil", "pytz", "requests", "retry", "s3transfer", "snowballstemmer", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-websupport", "thrift", "thrift-connector", "urllib3", "werkzeug", "wtforms", "alabaster", "appdirs", "aspy.yaml", "astroid", "attrs", "babel", "backports-datetime-fromisoformat", "cfgv", "decorator", "distlib", "docopt", "filelock", "identify", "imagesize", "importlib-metadata", "importlib-resources", "isort", "lazy-object-proxy", "more-itertools", "mysqlclient", "nodeenv", "packaging", "pluggy", "py", "pycountry", "pygments", "pyjwt", "pyparsing", "pyyaml", "redis", "redis-py-cluster", "six", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "sqlalchemy", "toml", "typed-ast", "typing-extensions", "uwsgi", "virtualenv", "wcwidth", "webencodings", "wrapt", "zipp", "amazon-kclpy"], "https://github.com/Princeton-CDH/mep-django": ["django-debug-toolbar", "pytest", "pytest-cov", "pytest-django", "pytest-ordering", "sphinx", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/template", "@babel/traverse", "@babel/types", "@cnakazawa/watch", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/transform", "@jest/types", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/istanbul-lib-coverage", "@types/jest", "@types/jest-diff", "@types/q", "@types/stack-utils", "@types/yargs", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "acorn-globals", "acorn-walk", "agent-base", "ajv", "ajv-errors", "ajv-keywords", "alphanum-sort", "amdefine", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "append-transform", "aproba", "are-we-there-yet", "argparse", "arr-flatten", "arr-union", "array-equal", "array-find-index", "array-flatten", "array-union", "array-uniq", "arrify", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "astral-regex", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "awesome-typescript-loader", "aws-sign2", "aws4", "babel-core", "babel-jest", "babel-loader", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-preset-jest", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "bfj", "big.js", "binary-extensions", "block-stream", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "brorand", "browser-process-hrtime", "browser-resolve", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "bs-logger", "bser", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "bytes", "cacache", "cache-base", "caller-callsite", "caller-path", "callsites", "camel-case", "camelcase", "camelcase-keys", "caniuse-api", "caniuse-lite", "capture-exit", "caseless", "chalk", "change-case", "check-types", "cheerio", "chokidar", "chownr", "chrome-trace-event", "ci-info", "cipher-base", "class-utils", "clean-webpack-plugin", "cli-table3", "cliui", "clone-deep", "co", "coa", "code-point-at", "collection-visit", "color", "color-convert", "color-name", "color-string", "colors", "combined-stream", "commander", "commondir", "compare-versions", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "console-browserify", "console-control-strings", "constant-case", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "core-util-is", "@types/d3", "@types/dom-inputevent", "@types/esri-leaflet", "@types/leaflet", "@types/masonry-layout", "css-loader", "d3", "esri-leaflet", "file-loader", "jest", "jest-environment-jsdom-fourteen", "jest-marbles", "leaflet", "masonry-layout", "mini-css-extract-plugin", "node-sass", "node-sass-glob-importer", "optimize-css-assets-webpack-plugin", "pa11y-ci", "postcss-loader", "rxjs", "sass-loader", "source-map-loader", "style-loader", "tablesort", "terser-webpack-plugin", "ts-jest", "typescript", "webpack", "webpack-bundle-tracker", "webpack-cli", "webpack-dev-server", "whatwg-fetch", "bleach", "cached-property", "django", "django-apptemplates", "django-autocomplete-light", "django-cas-ng", "django-csp", "django-fullurl", "django-grappelli", "django-markdownify", "django-tabular-export", "django-webpack-loader", "django-widget-tweaks", "djiffy", "eulxml", "mysqlclient", "parasolr", "progressbar2", "pucas", "py-flags", "pymarc", "python-dateutil", "rdflib", "rdflib-jsonld", "stop-words", "tweepy", "unidecode", "viapy", "wagtail"], "https://github.com/thesketh/pygen-structures": ["numpy"], "https://github.com/paudetseis/RfPy": ["cartopy", "numpy", "obspy", "stdb"], "https://github.com/maxibor/sourcepredict": ["ete3", "numpy", "pandas", "scikit-bio", "scikit-learn", "scipy", "umap-learn", "ipykernel", "nbsphinx", "sphinxcontrib-napoleon"], "https://github.com/SNLComputation/compadre": ["cmake", "nose", "numpy", "breathe"], "https://github.com/SmartAPI/smartAPI-editor": ["angular", "angular-cookies", "angular-filter", "angular-json-schema-form", "angular-marked", "angular-mocks", "angular-sanitize", "angular-ui-ace", "angular-ui-bootstrap", "angular-ui-layout", "angular-ui-router", "bootstrap", "brace", "chai", "change-case", "css-loader", "es6-promise", "es6-shim", "eslint", "eslint-config-google", "eslint-friendly-formatter", "eslint-loader", "eslint-plugin-chai-expect", "extract-text-webpack-plugin", "file-loader", "font-awesome", "font-awesome-webpack", "html-loader", "http-server", "jasmine-core", "jquery", "js-yaml", "json-editor", "json-formatter-js", "json-loader", "json-schema-view-js", "jsonformatter", "jsonlint", "karma", "karma-chai-plugins", "karma-chrome-launcher", "karma-firefox-launcher", "karma-jasmine", "karma-mocha", "karma-mocha-reporter", "karma-ng-html2js-preprocessor", "karma-ng-scenario", "karma-sourcemap-loader", "karma-webpack", "less", "less-loader", "lodash", "minimist", "mocha", "mversion", "ng-annotate-webpack-plugin", "ng-file-upload", "ng-resource", "ngstorage", "open", "open-sans-fontface", "protractor", "sinon", "sinon-chai", "spark-md5", "style-loader", "svg-inline-loader", "sway", "url-loader", "webpack", "webpack-dev-server", "worker-loader", "yaml-js"], "https://github.com/felixriese/hyperspectral-processing": ["codecov", "coverage", "matplotlib", "nbval", "notebook", "numpy", "numpydoc", "pandas", "pytest", "pytest-cov", "spectral", "sphinx", "sphinx-autobuild", "sphinx-rtd-theme", "tqdm"], "https://github.com/briandconnelly/hankshaweffect": ["configobj", "networkx", "numpy"], "https://github.com/Starlink/starlink": ["numpy", "starlink-pyast"], "https://github.com/acdh-oeaw/apis-core": ["certifi", "chardet", "confusable-homoglyphs", "defusedxml", "django", "django-autocomplete-light", "django-crispy-forms", "django-filter", "django-gm2m", "django-guardian", "django-registration", "django-reversion", "django-reversion-compare", "django-tables2", "django-url-filter", "djangorestframework", "djangorestframework-csv", "djangorestframework-xml", "et-xmlfile", "idna", "isodate", "jdcal", "odfpy", "openpyxl", "pyparsing", "python-dateutil", "pytz", "pyyaml", "rdflib", "requests", "six", "tablib", "unicodecsv", "urllib3", "xlrd", "xlwt", "calmjs-bower", "django-model-utils", "lxml"], "https://github.com/chaoss/augur": ["beaker", "click", "coloredlogs", "flask", "flask-cors", "flask-login", "flask-wtf", "gunicorn", "pandas", "psutil", "psycopg2-binary", "requests", "six", "sqlalchemy", "@types/json-stable-stringify", "@types/object-assign", "@vue/component-compiler-utils", "abbrev", "accepts", "acorn", "ajv", "align-text", "alphanum-sort", "amdefine", "ansi-regex", "ansi-styles", "ansicolors", "anymatch", "anysort", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "array-flatten", "array-unique", "arrify", "asn1", "asn1.js", "assert", "assert-plus", "async", "async-each", "asynckit", "auto-reload-brunch", "autoprefixer", "aws-sign2", "aws4", "babel", "babel-brunch", "babel-code-frame", "babel-core", "babel-generator", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helper-vue-jsx-merge-props", "babel-helpers", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-jsx", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-regenerator", "babel-plugin-transform-runtime", "babel-plugin-transform-strict-mode", "babel-plugin-transform-vue-jsx", "babel-polyfill", "babel-preset-env", "babel-preset-es2015", "babel-preset-es2016", "babel-preset-es2017", "babel-preset-latest", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "base64-js", "bcrypt-pbkdf", "big.js", "binary-extensions", "block-stream", "bluebird", "bn.js", "body-parser", "boom", "bower-config", "brace-expansion", "braces", "brorand", "browser-resolve", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserslist", "brunch", "brunch-skeletons", "buffer", "buffer-xor", "builtin-modules", "builtin-status-codes", "bytes", "camelcase", "caniuse-api", "caniuse-db", "caniuse-lite", "canvas", "canvas-prebuilt", "caseless", "cbify", "center-align", "chalk", "check-dependencies", "chokidar", "cipher-base", "clap", "clean-css", "clean-css-brunch", "cliui", "clone", "co", "coa", "code-point-at", "coffee-script", "color", "color-convert", "color-name", "color-string", "colormin", "colors", "combined-stream", "commander", "commonjs-require-definition", "computed-styles", "concat-map", "connect-slashes", "console-control-strings", "consolidate", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "core-js", "core-util-is", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "cryptiles", "crypto-browserify", "css-color-names", "css-font-size-keywords", "css-font-stretch-keywords", "css-font-style-keywords", "css-font-weight-keywords", "css-global-keywords", "css-list-helpers", "css-loader", "css-modules-loader-core", "css-parse", "css-selector-tokenizer", "css-system-font-keywords", "cssesc", "cssnano", "csso", "d3", "d3-array", "d3-axis", "d3-brush", "d3-chord", "d3-collection", "d3-color", "d3-contour", "d3-dispatch", "d3-drag", "d3-dsv", "d3-ease", "d3-fetch", "d3-force", "d3-format", "d3-geo", "d3-hierarchy", "d3-interpolate", "d3-path", "d3-polygon", "d3-quadtree", "d3-queue", "d3-random", "d3-request", "d3-scale", "d3-scale-chromatic", "d3-selection", "d3-shape", "d3-time", "d3-time-format", "d3-timer", "d3-transition", "d3-voronoi", "d3-zoom", "dashdash", "de-indent", "debug", "decamelize", "decode-uri-component", "deep-assign", "deep-extend", "define-properties", "defined", "delayed-stream", "delegates", "depd", "deppack", "deps-install", "des.js", "destroy", "detect-file", "detect-indent", "detect-libc", "detective", "diffie-hellman", "domain-browser", "dot-prop", "ecc-jsbn", "ee-first", "electron-to-chromium", "@types/chai", "@types/d3", "@types/jquery", "@types/lodash", "@types/mocha", "@types/nprogress", "@vue/cli", "@vue/cli-plugin-babel", "@vue/cli-plugin-typescript", "@vue/cli-plugin-unit-mocha", "@vue/cli-service", "@vue/test-utils", "bootstrap", "cairo", "chai", "jquery", "lodash", "nprogress", "query-string", "quill", "sass", "sass-loader", "shards-vue", "style-resources-loader", "stylus", "stylus-loader", "svgsaver", "typescript", "vega", "vega-embed", "vega-lite", "vue", "vue-class-component", "vue-multiselect", "vue-property-decorator", "vue-router", "vue-spinners", "vue-template-compiler", "vue-vega", "vuex", "vuex-persistedstate", "@ant-design-vue/babel-helper-vue-transform-on", "@ant-design-vue/babel-plugin-jsx", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@hapi/address", "@hapi/bourne", "@hapi/hoek", "@hapi/joi", "@hapi/topo", "@intervolga/optimize-cssnano-plugin", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@soda/friendly-errors-webpack-plugin", "@soda/get-current-script", "@types/anymatch", "@types/body-parser", "@types/color-name", "@types/connect", "@types/connect-history-api-fallback", "@types/express", "@types/express-serve-static-core", "@types/glob", "@types/http-proxy", "@types/http-proxy-middleware", "@types/json-schema", "@types/mime", "@types/mini-css-extract-plugin", "@types/minimatch", "@types/minimist", "@types/node", "@types/normalize-package-data", "@types/q", "@types/qs", "@types/range-parser", "@types/serve-static", "@types/source-list-map", "@types/tapable", "@types/uglify-js", "@types/webpack", "@types/webpack-dev-server", "@types/webpack-sources", "@vue/babel-helper-vue-jsx-merge-props", "@vue/babel-plugin-transform-vue-jsx", "@vue/babel-preset-app", "@vue/babel-preset-jsx", "@vue/babel-sugar-functional-vue", "@vue/babel-sugar-inject-h", "@vue/babel-sugar-v-model", "@vue/babel-sugar-v-on", "@vue/cli-overlay", "@vue/cli-plugin-eslint", "@vue/cli-plugin-router", "@vue/cli-plugin-vuex", "@vue/cli-shared-utils", "@vue/preload-webpack-plugin", "@vue/web-component-wrapper", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "acorn-jsx", "acorn-walk", "address", "aggregate-error", "ajv-errors", "ajv-keywords", "ansi-colors", "ansi-escapes", "ansi-html", "any-promise", "arch", "arr-union", "array-union", "array-uniq", "assign-symbols", "astral-regex", "async-limiter", "atob", "babel-eslint", "babel-loader", "babel-plugin-dynamic-import-node", "base", "batch", "bfj", "bindings", "bonjour", "boolbase", "browserify-zlib", "buffer-from", "buffer-indexof", "buffer-json", "cacache", "eslint", "eslint-plugin-vue", "vue-click-outside", "vue-position-sticky", "pymysql", "xlsxwriter", "numpy", "scipy", "sklearn"], "https://github.com/thiagotts/CloudReports": ["commons-lang:commons-lang", "javax.activation:activation", "javax.mail:mail", "javax.transaction:jta", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.cloudbus:cloudsim", "org.eclipse.persistence:eclipselink", "org.hibernate:hibernate-annotations", "org.xerial:sqlite-jdbc", "qrbg:qrbg"], "https://github.com/gijzelaerr/kliko": ["docker-py", "docopt", "future", "pykwalify", "repoze-lru", "coveralls", "django", "django-form-utils", "nose", "pep8", "pyyaml", "sphinx", "sphinx-rtd-theme"], "https://github.com/chrisjsewell/ipymd": ["ipython", "ipython-notebook", "matplotlib", "numpy", "pandas", "pillow", "pyopengl", "pyqt", "python", "scipy", "six"], "https://github.com/evolaemp/svmcc": ["appdirs", "biopython", "decorator", "networkx", "numpy", "pandas", "python-igraph", "scikit-learn", "scipy", "six"], "https://github.com/njss/SpaceTimeCube3D": ["chai", "mocha", "mocha-phantomjs", "node-static", "nodemon", "uglify-js", "underscore", "ws", "argparse", "uglify-js2"], "https://github.com/lagotto/lagotto": ["addressable", "ar-octopus", "better_errors", "binding_of_caller", "brakeman", "bugsnag", "bullet", "cancancan", "capistrano", "capistrano-bundler", "capistrano-npm", "capistrano-passenger", "capistrano-rails", "capybara", "capybara-screenshot", "codeclimate-test-reporter", "coffee-rails", "colorize", "config", "dalli", "database_cleaner", "devise", "dotenv", "dotiw", "draper", "email_spec", "excon", "factory_girl_rails", "faraday", "faraday-cookie_jar", "faraday_middleware", "github-markdown", "hashie", "hologram", "httplog", "immigrant", "jbuilder", "launchy", "lograge", "mail", "multi_json", "multi_xml", "mysql2", "namae", "nilify_blanks", "nokogiri", "oj", "omniauth", "omniauth-cas", "omniauth-github", "omniauth-jwt", "omniauth-orcid", "parse-cron", "poltergeist", "postrank-uri", "pry-rails", "rack-mini-profiler", "rack-test", "rails", "rake", "rouge", "rspec-rails", "rubocop", "rubyzip", "sass-rails", "shoulda-matchers", "sidekiq", "simplecov", "simple_form", "sinatra", "sprig", "spring", "spring-commands-rspec", "sprockets-rails", "state_machine", "strip_attributes", "swagger-docs", "swagger-ui_rails", "teaspoon-jasmine", "test_after_commit", "uglifier", "validates_timeliness", "vcr", "webmock", "whenever", "will_paginate", "will_paginate-bootstrap", "with_env", "zenodo", "actionmailer", "actionpack", "actionview", "activejob", "activemodel", "activerecord", "activesupport", "arel", "ast", "astrolabe", "bcrypt", "builder", "chronic", "cliver", "coderay", "coffee-script", "coffee-script-source", "concurrent-ruby", "connection_pool", "crack", "debug_inspector", "deep_merge", "diff-lcs", "docile", "domain_name", "erubis", "execjs", "factory_girl", "fastercsv", "globalid", "haml", "highline", "hike", "http-cookie", "i18n", "json", "jwt", "loofah", "method_source", "mime-types", "minitest", "mini_portile2", "multipart-post", "net-scp", "net-ssh", "oauth2", "omniauth-oauth2", "orm_adapter", "parser", "powerpack", "pry", "public_suffix", "rack", "rack-protection", "rails-deprecated_sanitizer", "rails-dom-testing", "rails-html-sanitizer", "railties", "rainbow", "redcarpet", "redis", "request_store", "responders", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec-support", "ruby-progressbar", "ruby2ruby", "ruby_parser", "safe_yaml", "sass", "sexp_processor", "simplecov-html", "slim", "slop", "sprockets", "sshkit", "teaspoon", "temple", "terminal-table", "thor", "thread_safe", "tilt", "timeliness", "tzinfo", "unf", "unf_ext", "uniform_notifier", "warden", "websocket-driver", "websocket-extensions", "xpath", "bower"], "https://github.com/CloudBindle/youxia": ["ch.qos.logback:logback-classic", "com.amazonaws:aws-java-sdk", "com.amazonaws:aws-java-sdk-core", "com.amazonaws:aws-java-sdk-ec2", "com.amazonaws:aws-java-sdk-s3", "com.amazonaws:aws-java-sdk-simpledb", "com.github.seqware:seqware-common", "com.github.seqware:seqware-meta-db", "com.github.seqware:seqware-pipeline", "com.google.code.gson:gson", "com.google.guava:guava", "com.jcabi:jcabi-aspects", "com.jcabi:jcabi-log", "com.microsoft.azure:adal4j", "com.microsoft.azure:azure-core", "com.microsoft.azure:azure-management", "com.microsoft.azure:azure-management-compute", "com.microsoft.azure:azure-management-network", "com.microsoft.azure:azure-management-scheduler", "com.microsoft.azure:azure-management-sql", "com.microsoft.azure:azure-management-storage", "com.microsoft.azure:azure-management-websites", "com.microsoft.azure:azure-media", "com.microsoft.azure:azure-servicebus", "com.microsoft.azure:azure-serviceruntime", "com.microsoft.azure:azure-storage", "com.versioneye:versioneye-maven-plugin", "commons-configuration:commons-configuration", "commons-io:commons-io", "commons-lang:commons-lang", "commons-logging:commons-logging", "io.cloudbindle:youxia-common", "junit:junit", "net.sf.jopt-simple:jopt-simple", "net.sourceforge.cobertura:cobertura", "org.apache.commons:commons-exec", "org.apache.commons:commons-lang3", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpcore", "org.apache.jclouds.api:openstack-nova", "org.apache.jclouds.driver:jclouds-slf4j", "org.apache.jclouds.driver:jclouds-sshj", "org.apache.jclouds.provider:aws-ec2", "org.apache.jclouds:jclouds-compute", "org.apache.jclouds:jclouds-core", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-clean-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-enforcer-plugin", "org.apache.maven.plugins:maven-install-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-scm-publish-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.jackson:jackson-core-asl", "org.codehaus.jackson:jackson-mapper-asl", "org.codehaus.mojo:cobertura-maven-plugin", "org.codehaus.mojo:findbugs-maven-plugin", "org.codehaus.woodstox:stax2-api", "org.easymock:easymock", "org.eluder.coveralls:coveralls-maven-plugin", "org.mockito:mockito-all", "org.powermock:powermock-api-easymock", "org.powermock:powermock-api-mockito", "org.powermock:powermock-core", "org.powermock:powermock-module-junit4", "org.slf4j:slf4j-api", "org.apache.jclouds.api:openstack-keystone", "org.apache.maven.plugins:maven-dependency-plugin", "com.jcabi:jcabi-ssh", "org.codehaus.mojo:exec-maven-plugin"], "https://github.com/AA-ALERT/psrdada-python": ["cython", "numpy", "prospector", "sphinx"], "https://github.com/joyeuxnoel8/GAME": ["numpy", "openbabel-python"], "https://github.com/refnx/refnx": ["numpy", "pytest", "scipy", "uncertainties", "corner", "cython", "h5py", "ipywidgets", "jupyter", "jupyter-sphinx", "matplotlib", "nbconvert", "nbsphinx", "numpydoc", "pandas", "pandoc", "periodictable", "setuptools", "sphinx", "sphinx-rtd-theme", "tqdm", "xlrd"], "https://github.com/plertvilai/IPAX": ["@mrmlnc/readdir-enhanced", "@shellscape/koa-send", "@shellscape/koa-static", "@sindresorhus/is", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "ajv", "ajv-keywords", "alphanum-sort", "ansi-align", "ansi-escapes", "ansi-regex", "ansi-styles", "any-observable", "any-promise", "anymatch", "app-root-path", "aproba", "arch", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-find-index", "array-union", "array-uniq", "array-unique", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-types", "async", "async-each", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "babel-code-frame", "babel-core", "babel-generator", "babel-helper-bindify-decorators", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-explode-class", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helpers", "babel-loader", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-async-generators", "babel-plugin-syntax-class-constructor-call", "babel-plugin-syntax-class-properties", "babel-plugin-syntax-decorators", "babel-plugin-syntax-dynamic-import", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-export-extensions", "babel-plugin-syntax-flow", "babel-plugin-syntax-object-rest-spread", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-generator-functions", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-class-constructor-call", "babel-plugin-transform-class-properties", "babel-plugin-transform-decorators", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-export-extensions", "babel-plugin-transform-flow-strip-types", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-preset-env", "babel-preset-es2015", "babel-preset-stage-1", "babel-preset-stage-2", "babel-preset-stage-3", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "base", "base64-js", "bcrypt-pbkdf", "big.js", "binary-extensions", "binaryextensions", "bluebird", "bn.js", "boom", "boxen", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-shims", "buffer-xor", "builtin-modules", "builtin-status-codes", "cacache", "cache-base", "cacheable-request", "call-me-maybe", "camelcase", "camelcase-keys", "caniuse-api", "caniuse-db", "caniuse-lite", "capture-stack-trace", "caseless", "chalk", "chardet", "chokidar", "chownr", "chrome-trace-event", "ci-info", "cipher-base", "clap", "class-utils", "cli-boxes", "cli-cursor", "cli-spinners", "cli-table", "cli-truncate", "cli-width", "clipboardy", "cliui", "clone", "clone-buffer", "clone-response", "clone-stats", "cloneable-readable", "co", "coa", "code-point-at", "collection-visit", "color", "color-convert", "color-name", "color-string", "colormin", "colors", "combined-stream", "commander", "commondir", "component-emitter", "concat-map", "concat-stream", "configstore", "console-browserify", "console-control-strings", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookies", "copy-concurrently", "copy-descriptor", "core-js", "core-util-is", "cosmiconfig", "create-ecdh", "create-error-class", "create-hash", "create-hmac", "cross-spawn", "cryptiles", "crypto-browserify", "crypto-random-string", "css-color-names", "css-hot-loader", "css-loader", "css-selector-tokenizer", "cssesc", "cssnano", "csso", "currently-unhandled", "cyclist", "d", "dargs", "dashdash", "date-fns", "date-now", "dateformat", "debug", "decamelize", "decamelize-keys", "decode-uri-component", "decompress-response", "deep-equal", "deep-extend", "define-properties", "define-property", "defined", "delayed-stream", "delegates", "depd", "des.js", "destroy", "detect-conflict", "align-text", "body", "bytes", "center-align", "coffeescript", "continuable-cache", "detect-indent", "error", "error-ex", "escape-string-regexp", "esprima", "esutils", "eventemitter2", "exit", "faye-websocket", "figures", "find-up", "findup-sync", "foreach", "fs.realpath", "function-bind", "gaze", "get-stdin", "getobject", "glob", "globals", "globule", "graceful-fs", "grunt", "grunt-babel", "grunt-bump", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-known-options", "grunt-legacy-log", "grunt-legacy-log-utils", "grunt-legacy-util", "grunt-shell", "grunt-wrap", "gzip-size", "has-ansi", "has-symbols", "home-or-tmp", "hooker", "hosted-git-info", "http-parser-js", "iconv-lite", "indent-string", "inflight", "inherits", "invariant", "is-arrayish", "is-buffer", "is-builtin-module", "is-finite", "is-utf8", "isarray", "isexe", "js-tokens", "js-yaml", "jsesc", "json5", "kind-of", "lazy-cache", "livereload-js", "load-json-file", "lodash", "longest", "loose-envify", "loud-rejection", "map-obj", "maxmin", "meow", "minimatch", "minimist", "mkdirp", "ms", "nopt", "normalize-package-data", "npm-run-path", "number-is-nan", "object-assign", "object-keys", "object.assign", "once", "os-homedir", "os-tmpdir", "pako", "parse-json", "path-exists", "path-is-absolute", "path-key", "path-type", "pify", "pinkie", "pinkie-promise", "pretty-bytes", "private", "process-nextick-args", "qs", "raw-body", "read-pkg", "read-pkg-up", "readable-stream", "redent", "regenerate", "regenerator-runtime", "regenerator-transform", "regexpu-core", "regjsgen", "regjsparser", "repeat-string", "repeating", "resolve", "right-align", "rimraf", "safe-buffer", "safe-json-parse", "safer-buffer", "semver", "signal-exit", "slash", "source-map", "source-map-support", "spdx-correct", "spdx-exceptions", "spdx-expression-parse", "spdx-license-ids", "sprintf-js", "string-template", "string_decoder", "strip-ansi", "strip-bom", "strip-indent", "supports-color", "tiny-lr", "to-fast-properties", "trim-newlines", "trim-right", "typedarray", "uglify-js", "uglify-to-browserify", "underscore.string", "uri-path", "util-deprecate", "validate-npm-package-license", "websocket-driver", "websocket-extensions", "which", "window-size", "wordwrap", "wrappy", "xtend", "yargs", "body-parser", "coffee-script", "ee-first", "grunt-cli", "http-errors", "lodash.assign", "media-typer", "mime-db", "mime-types", "on-finished", "parseurl", "statuses", "type-is", "unpipe", "components/jquery"], "https://github.com/ikkebr/PyBozoCrack": ["wheel"], "https://github.com/MicroPasts/MicroPasts-pybossa-theme": ["babel-cli", "babel-preset-es2015", "babelify", "browserify", "tape", "tape-run", "uglify-js"], "https://github.com/chkoar/vfi": ["numpy", "scikit-learn", "scipy"], "https://github.com/evalf/nutils": ["numpy", "stringly", "treelog"], "https://github.com/ESCOMP/CTSM": ["numpy", "sphinx", "sphinx-fortran", "autopep8", "coverage", "coveralls", "pylint"], "https://github.com/daler/erythroid-genes": ["jupyter", "mygene", "pandas", "xlrd"], "https://github.com/hdcaicyt/La-Argentina-Manuscrita": ["addressable", "colorator", "concurrent-ruby", "em-websocket", "eventmachine", "ffi", "forwardable-extended", "http_parser.rb", "i18n", "jekyll", "jekyll-sass-converter", "jekyll-watch", "kramdown", "liquid", "listen", "mercenary", "pathutil", "public_suffix", "rake", "rb-fsevent", "rb-inotify", "rouge", "safe_yaml", "sass", "sass-listen", "bundler"], "https://github.com/peterpeterp/atlantic_ace_seasonal_forecast": ["appnope", "asn1crypto", "backcall", "blas", "bzip2", "ca-certificates", "cartopy", "certifi", "cffi", "cftime", "chardet", "cloudpickle", "cryptography", "curl", "cycler", "cytoolz", "dask-core", "decorator", "freetype", "geos", "glob2", "haversine", "hdf4", "hdf5", "icu", "idna", "imageio", "intel-openmp", "ipython", "ipython-genutils", "jedi", "joblib", "jpeg", "kiwisolver", "krb5", "libcurl", "libcxx", "libcxxabi", "libedit", "libffi", "libgfortran", "libiconv", "libnetcdf", "libpng", "libssh2", "libtiff", "libxml2", "libxslt", "llvm-openmp", "lxml", "matplotlib", "matplotlib-base", "mkl", "mkl-fft", "mkl-random", "mkl-service", "ncurses", "netcdf4", "networkx", "numpy", "numpy-base", "olefile", "openssl", "owslib", "pandas", "parso", "patsy", "pexpect", "pickleshare", "pillow", "pip", "proj4", "prompt-toolkit", "ptyprocess", "pycparser", "pyepsg", "pygments", "pykdtree", "pyopenssl", "pyparsing", "pyproj", "pyshp", "pysocks", "python", "python-dateutil", "pytz", "pywavelets", "readline", "requests", "scikit-image", "scikit-learn", "scipy", "seaborn", "setuptools", "shapely", "six", "sqlite", "statsmodels", "tk", "toolz", "tornado", "traitlets", "urllib3", "wcwidth", "wheel", "xarray", "xz", "zlib", "zstd"], "https://github.com/USNavalResearchLaboratory/zernike": ["math", "matplotlib", "scipy"], "https://github.com/MarouaJaoua/life-expectancy-analysis-and-prediction": ["lime", "matplotlib", "missingno", "numpy", "pandas", "pycountry", "scikit-learn", "scipy", "seaborn"], "https://github.com/hcadavid/TimeWarpScheduleLibrary": ["junit:junit"], "https://github.com/bihealth/sodar_core": ["argon2-cffi", "awesome-slugify", "django", "django-autocomplete-light", "django-crispy-forms", "django-db-file-storage", "django-docs", "django-environ", "django-markupfield", "django-model-utils", "django-pagedown", "django-rest-knox", "djangorestframework", "drf-keyed-list", "markdown", "mistune", "psycopg2-binary", "pytz", "rules", "sphinx", "sphinx-rtd-theme", "versioneer", "wheel", "django-auth-ldap", "pyldap", "django-debug-toolbar", "django-extensions", "ipdb", "werkzeug", "beautifulsoup4", "black", "codacy-coverage", "coverage", "django-coverage-plugin", "django-test-plus", "factory-boy", "flake8", "pytest-django", "pytest-sugar", "selenium", "tblib"], "https://github.com/cmbant/CAMB": ["scipy", "sympy"], "https://github.com/SolarArbiter/solarforecastarbiter-dashboard": ["coverage", "flake8", "pytest", "pytest-cov", "pytest-mock", "blinker", "bokeh", "cryptography", "flask", "flask-dance", "flask-seasurf", "flask-sqlalchemy", "gevent", "gunicorn", "jsonschema", "prometheus-flask-exporter", "pymysql", "python-jose", "requests", "sentry-sdk", "sqlalchemy", "sqlalchemy-utils", "tables", "pandas", "solarforecastarbiter"], "https://github.com/ilent2/ott": ["sphinxcontrib-matlabdomain"], "https://github.com/Phlya/adjustText": ["matplotlib", "numpy", "ipykernel", "nbsphinx", "sphinx"], "https://github.com/UmbertoGostoli/Simulation-for-Scottish-Gov": ["matplotlib", "networkx", "numpy", "pandas", "scikit-learn", "scipy"], "https://github.com/fzyukio/koe": ["3d-view", "@choojs/findup", "@mapbox/geojson-area", "@mapbox/geojson-rewind", "@mapbox/geojson-types", "@mapbox/jsonlint-lines-primitives", "@mapbox/mapbox-gl-supported", "@mapbox/point-geometry", "@mapbox/tiny-sdf", "@mapbox/unitbezier", "@mapbox/vector-tile", "@mapbox/whoots-js", "@plotly/d3-sankey", "@plotly/d3-sankey-circular", "@turf/area", "@turf/centroid", "@turf/helpers", "@turf/meta", "a-big-triangle", "abbrev", "abs-svg-path", "accepts", "acorn", "acorn-dynamic-import", "acorn-jsx", "add-line-numbers", "affine-hull", "ajv", "align-text", "almost-equal", "alpha-complex", "alpha-shape", "alphanum-sort", "amdefine", "animate.css", "ansi-regex", "ansi-styles", "ansicolors", "anymatch", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "array-bounds", "array-find-index", "array-flatten", "array-normalize", "array-range", "array-rearrange", "array-unique", "asap", "asn1", "assert", "assert-plus", "async", "async-each", "async-foreach", "asynckit", "atob", "atob-lite", "audiobuffer-to-wav", "autoprefixer", "aws-sign2", "aws4", "babel-cli", "babel-code-frame", "babel-core", "babel-generator", "babel-helper-builder-react-jsx", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-replace-supers", "babel-helpers", "babel-loader", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-syntax-flow", "babel-plugin-syntax-jsx", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-flow-strip-types", "babel-plugin-transform-react-display-name", "babel-plugin-transform-react-jsx", "babel-plugin-transform-react-jsx-self", "babel-plugin-transform-react-jsx-source", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-polyfill", "babel-preset-es2015", "babel-preset-flow", "babel-preset-react", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "barycentric", "base64-arraybuffer", "base64-js", "batch", "bcrypt-pbkdf", "big-rat", "big.js", "binary-extensions", "binary-search-bounds", "bindings", "bit-twiddle", "bitmap-sdf", "bl", "block-stream", "bluebird", "bn.js", "body-parser", "boom", "bootstrap-datepicker", "bootstrap-loader", "bootstrap-sass", "bootstrap-slider", "bootswatch", "boundary-cells", "box-intersect", "brace-expansion", "braces", "browserify-aes", "browserify-zlib", "browserslist", "buble", "bubleify", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "builtin-modules", "builtin-status-codes", "bytes", "camelcase", "camelcase-keys", "caniuse-api", "caniuse-db", "canvas-fit", "cardinal", "caseless", "cdt2d", "cell-orientation", "center-align", "chalk", "charenc", "chokidar", "chownr", "circumcenter", "circumradius", "clamp", "clap", "classnames", "clean-pslg", "cliui", "clone", "co", "coa", "code-point-at", "color", "color-alpha", "color-convert", "color-id", "color-name", "color-normalize", "color-parse", "color-rgba", "color-space", "color-string", "colormap", "colormin", "colors", "combined-stream", "commander", "commondir", "compare-angle", "compare-cell", "compare-oriented-cell", "components-font-awesome", "compressible", "compression", "compute-dims", "compute-euclidean-distance", "concat-map", "concat-stream", "config", "connect-history-api-fallback", "console-browserify", "console-control-strings", "const-max-uint32", "const-pinf-float64", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "convex-hull", "cookie", "cookie-signature", "core-js", "core-util-is", "cosmiconfig", "country-regex", "cross-spawn", "crypt", "cryptiles", "crypto-browserify", "css", "css-color-names", "css-element-queries", "css-font", "css-font-size-keywords", "css-font-stretch-keywords", "css-font-style-keywords", "css-font-weight-keywords", "css-global-keywords", "css-loader", "css-selector-tokenizer", "css-system-font-keywords", "csscolorparser", "cssesc", "audio-resampler", "d3", "dotenv-webpack", "dropzone", "expose-loader", "extract-text-webpack-plugin", "fft.js", "file-loader", "file-saver", "font-awesome", "font-awesome-webpack", "fs", "imports-loader", "jquery", "jquery-contextmenu", "jquery-getscrollbarwidth", "jquery.browser", "jquery.event.drag", "jquery.scrollintoview", "jszip", "keyboardjs", "less", "lodash", "marked", "md5", "node-fs", "node-sass", "numjs", "papaparse", "plotly.js", "postcss", "postcss-loader", "raven-js", "react", "react-bootstrap", "react-dom", "react-hot-loader", "react-router", "react-router-bootstrap", "react-router-dom", "redux", "resolve-url-loader", "sass-loader", "script-loader", "slick-carousel", "source-map-loader", "style-loader", "url-loader", "url-parse", "webpack", "webpack-bundle-tracker", "webpack-dev-server", "yamljs", "tensorflow", "flake8", "flake8-docstrings", "flake8-polyfill", "flake8-putty", "jupyter-nbextensions-configurator", "line-profiler", "nose", "openpyxl", "pycodestyle", "pydocstyle", "nltk", "uwsgi", "amqp", "appdirs", "appnope", "aspy-yaml", "backports-shutil-get-terminal-size", "bandit", "billiard", "boltons", "brotlipy", "cached-property", "celery", "certifi", "cffi", "click", "colorama", "coverage", "cycler", "dask", "decorator", "dj-database-url", "django", "django-bulk-update", "django-celery-results", "django-cors-headers", "django-extensions", "django-js-reverse", "django-log-request-id", "django-model-utils", "django-naomi", "django-redis", "django-tz-detect", "django-webpack-loader", "django-widget-tweaks", "djangorestframework", "dotmap", "enum34", "gitdb2", "gitpython", "gunicorn", "ipython", "isort", "kombu", "librosa", "matplotlib", "mccabe", "model-mommy", "mysqlclient", "networkx", "nodeenv", "notebook", "olefile", "packaging", "pathlib2", "pbr", "pexpect", "pickleshare", "pillow", "pre-commit", "progress", "prompt-toolkit", "psycopg2", "ptyprocess", "pycparser", "pycspade", "pydub", "pyflakes", "pymlfunc", "pyparsing", "python-dateutil", "python-decouple", "pytz", "pyyaml", "raven", "redis", "requests", "safety", "scandir", "scikit-image", "scikit-learn", "simplegeneric", "six", "smmap2", "sortedcontainers", "stevedore", "termcolor", "toolz", "traitlets", "tzlocal", "urllib3", "vine", "virtualenv", "wcwidth", "whitenoise", "3d-view-controls", "@babel/runtime", "@babel/runtime-corejs2", "@mapbox/gl-matrix", "@mapbox/shelf-pack", "@types/prop-types", "@types/react", "brfs", "buffer-equal"], "https://github.com/ewels/MultiQC": ["click", "coloredlogs", "future", "lzstring", "pyyaml", "requests", "simplejson", "spectra"], "https://github.com/gbif/registry": ["ch.qos.logback:logback-classic", "ch.qos.logback:logback-core", "com.diffplug.spotless:spotless-maven-plugin", "com.google.code.findbugs:jsr305", "com.google.guava:guava", "com.squareup.okhttp3:logging-interceptor", "com.squareup.okhttp3:okhttp", "com.squareup.okio:okio", "com.squareup.retrofit2:converter-jackson", "com.squareup.retrofit2:converter-scalars", "com.squareup.retrofit2:converter-simplexml", "com.squareup.retrofit2:retrofit", "com.squareup.retrofit2:retrofit-mock", "com.zaxxer:HikariCP", "commons-beanutils:commons-beanutils", "commons-io:commons-io", "commons-logging:commons-logging", "commons-validator:commons-validator", "io.cucumber:cucumber-java", "io.cucumber:cucumber-junit", "io.cucumber:cucumber-spring", "io.github.openfeign:feign-core", "io.github.openfeign:feign-hystrix", "io.github.openfeign:feign-jackson", "io.github.openfeign:feign-slf4j", "io.jsonwebtoken:jjwt", "io.zonky.test:embedded-database-spring-test", "janino:janino", "net.logstash.logback:logstash-logback-encoder", "org.apache.commons:commons-digester3", "org.apache.maven.plugins:maven-enforcer-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.zookeeper:zookeeper", "org.cache2k:cache2k-api", "org.cache2k:cache2k-jcache", "org.codehaus.jettison:jettison", "org.codehaus.woodstox:woodstox-core-asl", "org.dspace:xoai-data-provider", "org.dspace:xoai-service-provider", "org.elasticsearch.client:elasticsearch-rest-client", "org.elasticsearch.client:elasticsearch-rest-client-sniffer", "org.elasticsearch.client:elasticsearch-rest-high-level-client", "org.elasticsearch:elasticsearch", "org.elasticsearch:elasticsearch-core", "org.gbif.common:gbif-postal-service", "org.gbif.directory:directory-api", "org.gbif.directory:directory-ws-client", "org.gbif.metrics:metrics-ws-client", "org.gbif.occurrence:download-query-tools", "org.gbif.registry:registry-directory", "org.gbif.registry:registry-doi", "org.gbif.registry:registry-domain", "org.gbif.registry:registry-events", "org.gbif.registry:registry-identity", "org.gbif.registry:registry-mail", "org.gbif.registry:registry-messaging", "org.gbif.registry:registry-metadata", "org.gbif.registry:registry-oaipmh", "org.gbif.registry:registry-persistence", "org.gbif.registry:registry-pipelines", "org.gbif.registry:registry-search", "org.gbif.registry:registry-security", "org.gbif.registry:registry-service", "org.gbif.registry:registry-surety", "org.gbif.registry:registry-ws", "org.gbif.registry:registry-ws-client", "org.gbif:gbif-api", "org.gbif:gbif-common", "org.gbif:gbif-common-mybatis", "org.gbif:gbif-common-ws", "org.gbif:gbif-doi", "org.gbif:gbif-httputils", "org.gbif:gbif-parsers", "org.junit.jupiter:junit-jupiter-engine", "org.jvnet.mock-javamail:mock-javamail", "org.mockito:mockito-junit-jupiter", "org.mybatis.spring.boot:mybatis-spring-boot-starter", "org.mybatis.spring.boot:mybatis-spring-boot-starter-test", "org.mybatis:mybatis", "org.projectlombok:lombok", "org.springframework.boot:spring-boot-dependencies", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.cloud:spring-cloud-starter-openfeign", "org.springframework.cloud:spring-cloud-starter-zookeeper-config", "org.springframework.cloud:spring-cloud-starter-zookeeper-discovery", "org.testcontainers:elasticsearch", "org.xmlunit:xmlunit-core", "org.xmlunit:xmlunit-matchers", "org.apache.maven.plugins:maven-jar-plugin", "org.hibernate.validator:hibernate-validator", "org.jacoco:jacoco-maven-plugin", "org.springframework.boot:spring-boot-configuration-processor", "org.springframework.boot:spring-boot-devtools", "org.springframework.boot:spring-boot-starter", "org.springframework.boot:spring-boot-starter-actuator", "org.springframework.boot:spring-boot-starter-amqp", "org.springframework.boot:spring-boot-starter-security", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-validation", "org.springframework.boot:spring-boot-starter-web", "org.springframework:spring-oxm", "com.beust:jcommander", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", "com.sun.jersey.contribs:jersey-apache-client4", "com.sun.jersey:jersey-client", "com.sun.jersey:jersey-core", "com.yammer.metrics:metrics-core", "com.yammer.metrics:metrics-ganglia", "javax.mail:mail", "javax.validation:validation-api", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpcore", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.janino:janino", "org.gbif.common:gbif-cli", "org.junit.jupiter:junit-jupiter-params", "org.kohsuke.metainf-services:metainf-services", "org.mockito:mockito-core", "org.postgresql:postgresql", "org.slf4j:slf4j-api", "org.springframework:spring-beans", "org.springframework:spring-context", "org.springframework:spring-context-support", "org.springframework:spring-jdbc", "org.springframework.boot:spring-boot-starter-freemarker", "org.springframework.boot:spring-boot-starter-mail", "junit:junit", "org.freemarker:freemarker", "joda-time:joda-time", "org.apache.commons:commons-lang3", "org.apache.velocity:velocity", "org.assertj:assertj-core", "org.hamcrest:hamcrest-core", "org.slf4j:jcl-over-slf4j", "org.slf4j:jul-to-slf4j", "org.liquibase:liquibase-core", "org.liquibase:liquibase-maven-plugin", "org.springframework.security:spring-security-test"], "https://github.com/quicklizard99/cheddar": ["ghp-import", "jinja2", "jinja2-highlight", "markdown", "pelican"], "https://github.com/ggventurini/python-deltasigma": ["matplotlib", "numpy", "scipy", "sphinx"], "https://github.com/moonso/stranger": ["click", "coloredlogs", "pyyaml"], "https://github.com/qcscine/sparrow": ["pytest"], "https://github.com/smart-facility/petajakarta-web": ["grunt", "grunt-concurrent", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-jsdoc", "grunt-static-handlebars", "jshint"], "https://github.com/sakoho81/miplib": ["h5py", "jpype1", "matplotlib", "numba", "numpy", "pandas", "pims", "psf", "pyculib", "scikit-image", "scipy", "simpleitk"], "https://github.com/nstarman/starkplot": ["decorator", "matplotlib", "numpy"], "https://github.com/passaH2O/GeoFlood": ["affine", "attrs", "blas", "bokeh", "bzip2", "ca-certificates", "certifi", "cfitsio", "cftime", "click", "click-plugins", "cligj", "cloudpickle", "curl", "cycler", "cytoolz", "dask", "dask-core", "dask-image", "dask-rasterio", "decorator", "distributed", "eikonalfm", "expat", "fiona", "freetype", "freexl", "fsspec", "gdal", "geopandas", "geos", "geotiff", "gettext", "git", "glib", "hdf4", "hdf5", "heapdict", "icc-rt", "icu", "imageio", "intel-openmp", "jinja2", "jpeg", "kealib", "kiwisolver", "krb5", "libboost", "libclang", "libcurl", "libffi", "libgdal", "libiconv", "libkml", "libnetcdf", "libpng", "libpq", "libspatialindex", "libspatialite", "libssh2", "libtiff", "libxml2", "llvmlite", "locket", "lz4-c", "m2w64-expat", "m2w64-gcc-libgfortran", "m2w64-gcc-libs", "m2w64-gcc-libs-core", "m2w64-gettext", "m2w64-gmp", "m2w64-libiconv", "m2w64-libwinpthread-git", "m2w64-xz", "markupsafe", "matplotlib", "matplotlib-base", "mkl", "mkl-fft", "mkl-random", "mkl-service", "msgpack-python", "msys2-conda-epoch", "munch", "netcdf4", "networkx", "numba", "numpy", "numpy-base", "olefile", "openjpeg", "openssl", "packaging", "pandas", "partd", "patsy", "pcre", "pillow", "pims", "pip", "poppler", "poppler-data", "postgresql", "proj", "psutil", "pyparsing", "pyproj", "pyqt", "pyqt5-sip", "pyqtwebengine", "python", "python-abi", "python-dateutil", "pytz", "pywavelets", "pyyaml", "qt", "rasterio", "rtree", "scikit-fmm", "scikit-image", "scipy", "setuptools", "shapely", "six", "slicerator", "snuggs", "sortedcontainers", "sqlite", "statsmodels", "tbb", "tblib", "tifffile", "tk", "toolz", "tornado", "typing-extensions", "vc", "vs2015-runtime", "wheel", "wincertstore", "xarray", "xerces-c", "xz", "yaml", "zict", "zlib", "zstd"], "https://github.com/thompsonsed/pycoalescence_examples": ["pycoalescence"], "https://github.com/horizon-institute/artmaps-azure": ["BouncyCastle", "Microsoft.AspNet.Mvc", "Microsoft.AspNet.Razor", "Microsoft.AspNet.WebApi", "Microsoft.AspNet.WebApi.Client", "Microsoft.AspNet.WebApi.Core", "Microsoft.AspNet.WebApi.WebHost", "Microsoft.AspNet.WebPages", "Microsoft.Net.Http", "Microsoft.Web.Infrastructure", "Microsoft.WindowsAzure.Caching", "Microsoft.WindowsAzure.ConfigurationManager", "Newtonsoft.Json", "Microsoft.Data.Edm", "Microsoft.Data.OData", "Microsoft.Data.Services.Client", "System.Spatial", "WindowsAzure.Storage", "CsvTools", "HtmlAgilityPack"], "https://github.com/Unidata/MetPy": ["myst-parser", "netcdf4", "pillow", "sphinx", "sphinx-gallery", "cartopy", "pyproj", "doc8", "flake8", "flake8-bugbear", "flake8-builtins", "flake8-comprehensions", "flake8-copyright", "flake8-docstrings", "flake8-import-order", "flake8-mutable", "flake8-pep3101", "flake8-print", "flake8-quotes", "flake8-rst-docstrings", "pep8-naming", "pycodestyle", "pydocstyle", "pyflakes", "restructuredtext-lint", "coverage", "pytest", "pytest-mpl"], "https://github.com/miso-lims/miso-lims": ["aopalliance:aopalliance", "ca.on.oicr.gsi.runscanner:runscanner-dto", "ca.on.oicr.gsi:oscore", "ca.on.oicr.gsi:visionmate", "cglib:cglib-nodep", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.fasterxml.jackson.datatype:jackson-datatype-jsr310", "com.google.guava:guava", "com.googlecode.json-simple:json-simple", "com.h2database:h2", "com.jolira:onejar-maven-plugin", "com.opencsv:opencsv", "com.samaxes.maven:minify-maven-plugin", "com.sun.jersey.contribs.jersey-oauth:oauth-client", "com.sun.jersey.contribs.jersey-oauth:oauth-signature", "com.sun.jersey.contribs:jersey-apache-client", "com.sun.jersey:jersey-client", "commons-codec:commons-codec", "commons-fileupload:commons-fileupload", "commons-httpclient:commons-httpclient", "commons-io:commons-io", "commons-lang:commons-lang", "commons-logging:commons-logging", "commons-net:commons-net", "fr.opensagres:org.odftoolkit.odfdom.converter", "io.fabric8:docker-maven-plugin", "io.github.bonigarcia:webdrivermanager", "io.prometheus.jmx:collector", "io.prometheus:simpleclient", "io.prometheus:simpleclient_hibernate", "io.prometheus:simpleclient_hotspot", "io.prometheus:simpleclient_servlet", "javax.annotation:javax.annotation-api", "javax.mail:mail", "javax.servlet.jsp:javax.servlet.jsp-api", "javax.servlet:javax.servlet-api", "javax.servlet:jstl", "javax.ws.rs:jsr311-api", "jfree:jcommon", "jfree:jfreechart", "joda-time:joda-time", "junit:junit", "log4j:log4j", "mysql:mysql-connector-java", "net.sf.json-lib:json-lib", "org.apache.commons:commons-dbcp2", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpcore", "org.apache.httpcomponents:httpmime", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-project-info-reports-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.maven.plugins:maven-war-plugin", "org.apache.poi:poi", "org.apache.poi:poi-ooxml", "org.aspectj:aspectjrt", "org.aspectj:aspectjweaver", "org.codehaus.cargo:cargo-maven2-plugin", "org.codehaus.gmaven:groovy-maven-plugin", "org.codehaus.mojo:build-helper-maven-plugin", "org.codehaus.mojo:cobertura-maven-plugin", "org.flywaydb:flyway-core", "org.flywaydb:flyway-maven-plugin", "org.hamcrest:hamcrest-all", "org.hibernate.javax.persistence:hibernate-jpa-2.0-api", "org.hibernate:hibernate-core", "org.javassist:javassist", "org.jdom:jdom", "org.kohsuke.metainf-services:metainf-services", "org.mockito:mockito-all", "org.mockito:mockito-core", "org.mortbay.jetty:jetty-maven-plugin", "org.odftoolkit:odfdom-java", "org.seleniumhq.selenium:selenium-java", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "org.springframework.integration:spring-integration-core", "org.springframework.integration:spring-integration-file", "org.springframework.integration:spring-integration-http", "org.springframework.integration:spring-integration-ip", "org.springframework.integration:spring-integration-xml", "org.springframework.security:spring-security-config", "org.springframework.security:spring-security-core", "org.springframework.security:spring-security-ldap", "org.springframework.security:spring-security-taglibs", "org.springframework.security:spring-security-web", "org.springframework:spring-beans", "org.springframework:spring-context", "org.springframework:spring-core", "org.springframework:spring-expression", "org.springframework:spring-framework-bom", "org.springframework:spring-jdbc", "org.springframework:spring-orm", "org.springframework:spring-test", "org.springframework:spring-tx", "org.springframework:spring-web", "org.springframework:spring-webmvc", "uk.ac.bbsrc.tgac.miso:core", "uk.ac.bbsrc.tgac.miso:integration-tools", "uk.ac.bbsrc.tgac.miso:miso-dto", "uk.ac.bbsrc.tgac.miso:miso-service", "uk.ac.bbsrc.tgac.miso:spring", "uk.ac.bbsrc.tgac.miso:sqlstore", "xml-apis:xml-apis", "org.codehaus.mojo:templating-maven-plugin", "org.eclipse.m2e:lifecycle-mapping", "ca.on.oicr:pinery-api", "ca.on.oicr:pinery-lims", "ca.on.oicr:pinery-ws"], "https://github.com/theosysbio/gene-expression-models": ["certifi", "cycler", "kiwisolver", "matplotlib", "mkl-service", "mpmath", "numpy", "pyparsing", "python-dateutil", "scipy", "six", "tornado"], "https://github.com/TuringLang/Turing.jl": ["faraday", "jekyll", "jekyll-feed", "jekyll-gist", "jekyll-paginate", "jekyll-sitemap", "jemoji"], "https://github.com/sertansenturk/alignedpitchfilter": ["matplotlib", "numpy"], "https://github.com/cytoscape/cytoscape.js-euler": ["babel-core", "babel-loader", "babel-preset-env", "camelcase", "cpy-cli", "cross-env", "eslint", "gh-pages", "npm-run-all", "rimraf", "update", "updater-license", "webpack", "webpack-dev-server"], "https://github.com/sbonaretti/cart_segm_liter_map": ["altair", "geopy", "numpy", "pandas", "vega", "vega-datasets", "watermark", "wget"], "https://github.com/gchure/phd": ["hash-joiner", "jekyll", "jekyll-numbered-headings", "jekyll-pandoc-multiple-formats", "json", "addressable", "colorator", "ffi", "forwardable-extended", "jekyll-sass-converter", "jekyll-watch", "kramdown", "liquid", "listen", "mercenary", "pathutil", "pdf_info", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "rtex", "ruby_dep", "safe_yaml", "sass", "sass-listen"], "https://github.com/korpling/pepper": ["com.amashchenko.maven.plugin:gitflow-maven-plugin", "com.carrotgarden.maven:carrot-maven-scr-plugin", "com.carrotgarden.osgi:carrot-osgi-anno-scr-core", "com.carrotgarden.osgi:carrot-osgi-anno-scr-make", "com.google.code.maven-license-plugin:maven-license-plugin", "com.sun.activation:javax.activation", "com.sun.xml.bind:jaxb-osgi", "commons-io:commons-io", "javax.xml.bind:jaxb-api-osgi", "junit:junit", "org.apache.commons:commons-lang3", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-project-info-reports-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.assertj:assertj-core", "org.codehaus.mojo:findbugs-maven-plugin", "org.corpus-tools:salt-api", "org.eclipse.birt.runtime:org.eclipse.osgi.services", "org.eclipse.jetty:jetty-maven-plugin", "org.jasig.maven:maven-notice-plugin", "org.mockito:mockito-all", "org.osgi:org.osgi.compendium", "org.osgi:org.osgi.core", "org.ow2.asm:asm", "org.ow2.asm:asm-tree", "org.reficio:p2-maven-plugin", "org.slf4j:slf4j-api", "org.sonatype.plugins:nexus-staging-maven-plugin", "xmlunit:xmlunit", "org.apache.maven.plugins :maven-resources-plugin", "org.apache.maven.plugins:maven-scm-publish-plugin", "org.codehaus.mojo:exec-maven-plugin", "ch.qos.logback:logback-classic", "ch.qos.logback:logback-core", "org.apache.felix:org.apache.felix.framework", "org.apache.httpcomponents:httpclient-osgi", "org.apache.httpcomponents:httpcore-osgi", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.wagon:wagon-provider-api", "org.apache.maven:maven-aether-provider", "org.codehaus.janino:janino", "org.corpus-tools:pepper-framework", "org.eclipse.aether:aether-api", "org.eclipse.aether:aether-connector-basic", "org.eclipse.aether:aether-impl", "org.eclipse.aether:aether-spi", "org.eclipse.aether:aether-transport-file", "org.eclipse.aether:aether-transport-http", "org.eclipse.aether:aether-transport-wagon", "org.eclipse.aether:aether-util", "org.eclipse.core:runtime", "org.eclipse.equinox:ds", "org.eclipse.equinox:util", "org.eclipse.platform:org.eclipse.osgi", "org.apache.felix:maven-bundle-plugin", "org.eclipse.m2e:lifecycle-mapping", "org.apache.maven.plugins:maven-resources-plugin"], "https://github.com/sdomanskyi/DigitalCellSorter": ["adjusttext", "matplotlib", "mygene", "numpy", "openpyxl", "pandas", "patsy", "plotly", "scikit-learn", "scipy", "tables", "xlrd", "autodocsumm", "h5py", "networkx", "phate", "pynndescent", "python-louvain", "sphinx", "sphinxcontrib-images", "umap-learn"], "https://github.com/PaulHancock/Aegean": ["nose", "pytest", "scipy", "six", "astropy", "healpy", "lmfit", "numpy", "numpydoc", "pprocess"], "https://github.com/casperdcl/brainweb": ["matplotlib", "numpy", "requests", "scikit-image", "tqdm"], "https://github.com/deeptools/deepTools": ["deeptoolsintervals", "matplotlib", "numpy", "numpydoc", "plotly", "py2bit", "pybigwig", "pysam", "scipy", "sphinx-argparse"], "https://github.com/ofionnad/radiowinds": ["moviepy", "natsort", "numpy", "pandas", "pytecplot", "scipy"], "https://github.com/hail-is/hail": ["jinja2", "aiodns", "aiodocker", "aiohttp", "aiohttp-jinja2", "aiohttp-session", "aiomysql", "aioredis", "async-timeout", "asyncinit", "authlib", "decorator", "dictdiffer", "dill", "flake8", "flask", "flask-cors", "flask-sockets", "gcsfs", "gidgethub", "google-api-python-client", "google-cloud-logging", "google-cloud-storage", "humanize", "hurry-filesize", "keyrings-alt", "kubernetes-asyncio", "libsass", "mypy", "nest-asyncio", "parsimonious", "prometheus-async", "prometheus-client", "pyjwt", "pylint", "pymysql", "pytest", "pytest-asyncio", "pytest-html", "pytest-instafail", "pytest-xdist", "python-dateutil", "python-json-logger", "requests", "setuptools", "sortedcontainers", "tabulate", "tqdm", "twine", "urllib3", "uvloop", "werkzeug", "wheel", "yarl", "zulip", "google-cloud-profiler", "jupyter", "nbsphinx", "sphinx", "sphinx-autodoc-typehints", "sphinx-rtd-theme", "sphinxcontrib-katex", "tornado", "bokeh", "deprecated", "numpy", "pandas", "pyspark", "scipy", "hail"], "https://github.com/coin-or/python-mip": ["cffi", "sphinx-autodoc-typehints"], "https://github.com/FRidh/auraliser": ["cytoolz", "geometry", "ism", "matplotlib", "numba", "numpy", "pytest", "scintillations", "scipy", "streaming", "turbulence"], "https://github.com/Amber-MD/pytraj": ["conda", "hdf4", "libnetcdf", "cython", "mock", "numpy", "parmed", "pyflakes", "pytest", "cclib", "ipykernel", "ipython", "ipywidgets", "mpi4py", "nglview", "tqdm", "traitlets"], "https://github.com/glukicov/alignTrack": ["matplotlib", "numpy", "pandas", "scipy", "seaborn"], "https://github.com/starschema/COVID-19-data": ["apache-airflow", "ipykernel", "nbconvert", "nbformat", "papermill", "papermill-nb-runner", "pyarrow", "snowflake-sqlalchemy", "wtforms", "boto3", "botocore", "bs4", "html5lib", "jinja2", "lxml", "pandas", "pycountry", "pygsheets", "requests", "seaborn", "tableauhyperapi", "tabula-py", "tqdm", "xlrd"], "https://github.com/clcr/pyeo": ["boto3", "botocore", "gdal", "geojson", "joblib", "matplotlib", "numpy", "pip", "pysolar", "pytest", "requests", "scikit-learn", "scipy", "sentinelhub", "sentinelsat", "setuptools", "tenacity", "tqdm"], "https://github.com/TUW-GEO/yeoda": ["equi7grid", "pytileproj"], "https://github.com/spacetx/starfish": ["click", "dataclasses", "h5py", "ipywidgets", "jsonschema", "matplotlib", "numpy", "pandas", "python-dateutil", "read-roi", "regional", "scikit-image", "scikit-learn", "scipy", "semantic-version", "showit", "slicedimage", "sympy", "tqdm", "trackpy", "validators", "xarray", "appnope", "attrs", "backcall", "bleach", "boto3", "botocore", "certifi", "chardet", "cycler", "decorator", "defusedxml", "diskcache", "docutils", "entrypoints", "idna", "imageio", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "jedi", "jinja2", "jmespath", "joblib", "jupyter-client", "jupyter-core", "kiwisolver", "markupsafe", "mistune", "mpmath", "nbconvert", "nbformat", "networkx", "notebook", "packaging", "pandocfilters", "parso", "pexpect", "pickleshare", "pillow", "prometheus-client", "prompt-toolkit", "ptyprocess", "pygments", "pyparsing", "pyrsistent", "pytz", "pywavelets", "pyyaml", "pyzmq", "requests", "s3transfer", "send2trash", "six", "terminado", "testpath", "tornado", "traitlets", "urllib3", "wcwidth", "webencodings", "widgetsnbextension", "zipp", "alabaster", "apipkg", "babel", "commonmark", "coverage", "execnet", "flake8", "flake8-import-order", "imagesize", "keyring", "m2r", "mccabe", "more-itertools", "mypy", "mypy-extensions", "nbencdec", "numpydoc", "pkginfo", "pluggy", "py", "pycodestyle", "pyflakes", "pytest", "pytest-cov", "pytest-forked", "pytest-xdist", "readme-renderer", "recommonmark", "requests-toolbelt", "seaborn", "snowballstemmer", "sphinx", "sphinx-autodoc-typehints", "sphinx-bootstrap-theme", "sphinx-gallery", "sphinx-rtd-theme", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-programoutput", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "twine", "typed-ast", "typing-extensions", "cachey", "dask", "freetype-py", "fsspec", "heapdict", "napari", "napari-plugin-engine", "napari-svg", "psutil", "pyopengl", "pyside2", "pytest-qt", "qtconsole", "qtpy", "shiboken2", "tifffile", "toolz", "vispy", "wrapt"], "https://github.com/dapperstats/salvage": ["bootstrap"], "https://github.com/matplotlib/matplotlib": ["cycler", "kiwisolver", "numpy", "pillow", "pyparsing", "python-dateutil", "colorspacious", "ipython", "ipywidgets", "numpydoc", "scipy", "sphinx", "sphinx-copybutton", "sphinx-gallery", "sphinxcontrib-svg2pdfconverter", "flake8", "flake8-docstrings", "pydocstyle", "certifi", "coverage", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-timeout", "pytest-xdist", "tornado", "ipykernel", "nbconvert", "nbformat", "pandas", "pikepdf", "pytz", "eslint", "eslint-config-prettier", "prettier"], "https://github.com/DLR-SC/prov-db-connector": ["neo4j-driver", "prov"], "https://github.com/MicroPasts/egyptExplorationSociety": ["pybossa-client"], "https://github.com/badlands-model/badlands": ["cmoocean", "descartes", "gflex", "h5py", "matplotlib", "meshplex", "numpy", "pandas", "scikit-image", "scipy", "setuptools", "shapely", "six", "triangle", "mock", "pyevtk", "sphinx-rtd-theme", "sphinxcontrib-inlinesyntaxhighlight", "sphinxcontrib-napoleon", "sphinxemoji"], "https://github.com/AAROC/CODE-RADE": ["github-pages", "html-proofer", "activesupport", "addressable", "coffee-script", "coffee-script-source", "colorator", "colorize", "commonmarker", "concurrent-ruby", "ethon", "execjs", "faraday", "ffi", "forwardable-extended", "gemoji", "github-pages-health-check", "html-pipeline", "i18n", "jekyll", "jekyll-avatar", "jekyll-coffeescript", "jekyll-commonmark", "jekyll-commonmark-ghpages", "jekyll-default-layout", "jekyll-feed", "jekyll-gist", "jekyll-github-metadata", "jekyll-mentions", "jekyll-optional-front-matter", "jekyll-paginate", "jekyll-readme-index", "jekyll-redirect-from", "jekyll-relative-links", "jekyll-remote-theme", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-swiss", "jekyll-theme-architect", "jekyll-theme-cayman", "jekyll-theme-dinky", "jekyll-theme-hacker", "jekyll-theme-leap-day", "jekyll-theme-merlot", "jekyll-theme-midnight", "jekyll-theme-minimal", "jekyll-theme-modernist", "jekyll-theme-primer", "jekyll-theme-slate", "jekyll-theme-tactile", "jekyll-theme-time-machine", "jekyll-titles-from-headings", "jekyll-watch", "jemoji", "kramdown", "liquid", "listen", "mercenary", "minima", "minitest", "mini_portile2", "multipart-post", "net-dns", "nokogiri", "octokit", "parallel", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "ruby-enum", "rubyzip", "safe_yaml", "sass", "sass-listen", "sawyer", "terminal-table", "thread_safe", "typhoeus", "tzinfo", "unicode-display_width", "yell"], "https://github.com/BBN-Q/macrospin_gpu": ["jinja2", "numpy", "pyopencl", "pyopengl", "scipy", "tqdm"], "https://github.com/SciTools/cf-units": ["coveralls", "cython", "jinja2", "pep8", "pip", "pytest", "pytest-cov", "antlr4-python3-runtime", "cftime", "numpy", "six"], "https://github.com/macarthur-lab/seqr": ["coverage", "django-compressor", "django-debug-toolbar-request-history", "jinja2", "mock", "responses", "urllib3-mock", "django", "django-anymail", "django-cors-headers", "django-guardian", "django-hijack", "elasticsearch", "elasticsearch-dsl", "gunicorn", "jmespath", "pillow", "psycopg2", "redis", "requests", "requests-toolbelt", "slacker", "slugify", "tqdm", "whitenoise", "@babel/core", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-transform-modules-commonjs", "@babel/polyfill", "@babel/preset-env", "@babel/preset-react", "autoprefixer", "babel-eslint", "babel-loader", "babel-plugin-module-resolver", "babel-plugin-styled-components", "babel-runtime", "case-sensitive-paths-webpack-plugin", "chalk", "css-loader", "dotenv", "draft-js", "draftjs-md-converter", "enzyme", "enzyme-adapter-react-16", "enzyme-to-json", "eslint", "eslint-config-airbnb", "eslint-import-resolver-babel-module", "eslint-loader", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "eslint-plugin-react-perf", "extend", "file-loader", "fs-extra", "fsevents", "html-webpack-plugin", "igv", "jest", "jsoneditor", "jsoneditor-react", "lodash", "mini-css-extract-plugin", "minimatch", "mixin-deep", "object-assign", "object-hash", "postcss-flexbugs-fixes", "postcss-loader", "promise", "prop-types", "purify-css", "purifycss-webpack", "query-string", "random-material-color", "react", "react-dev-utils", "react-document-title", "react-dom", "react-error-overlay", "react-hot-loader", "react-markdown-renderer", "react-rangeslider", "react-redux", "react-router", "react-router-dom", "react-transition-group", "react-xhr-uploader", "redux", "redux-form", "redux-mock-store", "redux-thunk", "reselect", "semantic-ui", "semantic-ui-react", "style-loader", "styled-components", "stylelint", "stylelint-config-standard", "stylelint-config-styled-components", "stylelint-processor-styled-components", "sw-precache-webpack-plugin", "timeago.js", "timeout-as-promise", "typescript", "union-value", "url-loader", "webpack", "webpack-cleanup-plugin", "webpack-dev-server", "webpack-manifest-plugin", "whatwg-fetch", "why-did-you-update"], "https://github.com/gwastro/pycbc": ["amqplib", "astropy", "beautifulsoup4", "cython", "decorator", "dqsegdb", "dqsegdb2", "dynesty", "emcee", "epsie", "gwdatafind", "h5py", "jinja2", "lalsuite", "ligo-segments", "lscsoft-glue", "mako", "matplotlib", "mpld3", "numpy", "pillow", "python-ligo-lw", "requests", "scipy", "six", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-programoutput", "tqdm"], "https://github.com/sahilm89/lhsmdu": ["numpy", "scipy"], "https://github.com/nfsi-canada/OrientPy": ["geographiclib", "numpy", "obspy", "stdb"], "https://github.com/ai-se/perfect-repo": ["pytest"], "https://github.com/cojacoo/rootwater": ["autoapi", "ipython", "nbsphinx", "nose", "numpy", "numpydoc", "pandas", "scipy", "sphinx-rtd-theme"], "https://github.com/multiscale/muscle3": ["breathe", "grpcio", "grpcio-tools", "msgpack", "netifaces", "numpy", "protobuf", "sphinx-fortran", "typing", "ymmsl", "matplotlib", "sobol-seq"], "https://github.com/proycon/gecco": ["aspell-python-py3", "colibricore", "cython", "lxml", "pynlpl", "python3-timbl", "pyyaml", "folia", "psutil", "python-levenshtein", "python-ucto"], "https://github.com/USGS-Astrogeology/autocnet": ["dill", "gdal", "geopandas", "h5py", "networkx", "numexpr", "numpy", "pandas", "plio", "protobuf", "pvl", "pysal", "scikit-image", "scipy", "shapely", "sqlalchemy", "bumpversion", "coverage", "flake8", "nbsphinx", "sphinx", "sphinxcontrib-napoleon", "tox", "watchdog", "wheel"], "https://github.com/oemof/tespy": ["coolprop", "numpy", "pandas", "scipy", "tabulate", "pip", "setuptools", "six", "virtualenv", "matplotlib", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex"], "https://github.com/pdfo/pdfo": ["numpy", "pytest"], "https://github.com/louisabraham/fastnode2vec": ["click", "gensim", "numba", "numpy", "tqdm"], "https://github.com/poliastro/poliastro": ["astropy", "astroquery", "attrs", "beautifulsoup4", "certifi", "cffi", "chardet", "cryptography", "cycler", "decorator", "html5lib", "idna", "ipython-genutils", "jeepney", "jplephem", "jsonschema", "jupyter-core", "jupytext", "keyring", "kiwisolver", "llvmlite", "matplotlib", "nbformat", "numba", "numpy", "pandas", "plotly", "pycparser", "pyparsing", "pyrsistent", "python-dateutil", "pytz", "pyyaml", "requests", "retrying", "scipy", "secretstorage", "six", "soupsieve", "traitlets", "urllib3", "webencodings"], "https://github.com/stabix/stabix": ["matlab", "mtex", "numpy", "python", "scipy"], "https://github.com/TonyKaravasilev/CryptoManana": ["ext-hash", "ext-mbstring", "ext-openssl", "ext-reflection", "ext-spl", "php", "phpunit/phpunit", "squizlabs/php_codesniffer"], "https://github.com/EpistasisLab/tpot": ["scikit-mdr", "skrebate", "torch", "xgboost", "deap", "joblib", "nose", "numpy", "pandas", "scikit-learn", "scipy", "stopit", "tqdm", "update-checker"], "https://github.com/bird-house/finch": ["bottleneck", "click", "dask", "geopandas", "jinja2", "netcdf4", "numpy", "parse", "psutil", "pywps", "requests", "scipy", "sentry-sdk", "siphon", "unidecode", "xclim", "birdhouse-birdy", "bumpversion", "cruft", "flake8", "ipython", "nbconvert", "nbsphinx", "nbval", "pytest", "pytest-flake8", "pytest-notebook", "sphinx", "twine", "gunicorn", "psycopg2-binary"], "https://github.com/PCMDI/cmor3_documentation": ["jekyll", "json", "kramdown", "kramdown-parser-gfm", "nokogiri", "activesupport", "addressable", "coffee-script", "coffee-script-source", "colorator", "ethon", "execjs", "faraday", "ffi", "gemoji", "github-pages", "github-pages-health-check", "html-pipeline", "i18n", "jekyll-coffeescript", "jekyll-feed", "jekyll-gist", "jekyll-mentions", "jekyll-paginate", "jekyll-redirect-from", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-textile-converter", "jekyll-watch", "jemoji", "liquid", "listen", "mercenary", "minitest", "mini_portile2", "multipart-post", "net-dns", "octokit", "public_suffix", "rb-fsevent", "rb-inotify", "rdiscount", "redcarpet", "RedCloth", "rouge", "safe_yaml", "sass", "sawyer", "terminal-table", "thread_safe", "typhoeus", "tzinfo"], "https://github.com/epiasini/pymuvr": ["numpy", "breathe", "sphinx"], "https://github.com/jkguiang/tuda": ["cmsmonitoring", "pandas"], "https://github.com/TiKeil/perturbations-for-2d-data": ["appnope", "attrs", "backcall", "bleach", "cycler", "decorator", "defusedxml", "entrypoints", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "kiwisolver", "markupsafe", "matplotlib", "mistune", "nbconvert", "nbformat", "notebook", "numpy", "packaging", "pandocfilters", "parso", "pexpect", "pickleshare", "prometheus-client", "prompt-toolkit", "ptyprocess", "pygments", "pyparsing", "pyrsistent", "python-dateutil", "pyzmq", "qtconsole", "qtpy", "send2trash", "six", "terminado", "testpath", "tornado", "traitlets", "wcwidth", "webencodings", "widgetsnbextension", "zipp"], "https://github.com/MJOLNIRPackage/MJOLNIR": ["datetime", "h5py", "matplotlib", "numpy", "pycodestyle", "pyperclip", "pytest", "pytest-cov", "python-coveralls", "scipy", "shapely", "decorator", "future", "pandas", "pip", "pyqt5", "pyqt5-sip", "pyqtgraph", "sip", "ufit"], "https://github.com/EducationalTestingService/rsmtool": ["coverage", "coveralls", "doc2dash", "ipython", "jupyter", "nbconvert", "nose", "notebook", "numpy", "openpyxl", "pandas", "parameterized", "seaborn", "skll", "sphinx", "sphinx-rtd-theme", "statsmodels", "xlrd", "xlwt"], "https://github.com/mpschr/mutex": ["joblib", "numpy", "pandas", "scipy"], "https://github.com/openearth/wpsbuilder": ["grunt", "grunt-autoprefixer", "grunt-concurrent", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-htmlmin", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-less", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-filerev", "grunt-google-cdn", "grunt-karma", "grunt-newer", "grunt-ng-annotate", "grunt-openlayers", "grunt-svgmin", "grunt-usemin", "grunt-wiredep", "jasmine-core", "jshint-stylish", "karma", "karma-chrome-launcher", "karma-jasmine", "karma-phantomjs-launcher", "load-grunt-tasks", "time-grunt"], "https://github.com/preprocessed-connectomes-project/quality-assessment-protocol": ["argparse", "boto3", "botocore", "configparser", "cycler", "decorator", "docutils", "future", "futures", "html5lib", "httplib2", "indi-tools", "jmespath", "matplotlib", "networkx", "nibabel", "nipype", "nitime", "nose", "numpy", "pandas", "pillow", "prov", "pyparsing", "pypdf2", "python-dateutil", "pytz", "pyyaml", "reportlab", "scipy", "seaborn", "simplejson", "six", "traits", "wsgiref", "xhtml2pdf", "lockfile"], "https://github.com/LucMarechal/Soft-Robotics-Materials-Database": ["appdirs", "asgiref", "astroid", "beautifulsoup4", "cached-property", "certifi", "cffi", "chardet", "click", "colorama", "cycler", "dash", "dash-bootstrap-components", "dash-core-components", "dash-daq", "dash-html-components", "dash-renderer", "dash-table", "deprecated", "distlib", "filelock", "flask", "flask-compress", "future", "gitdb", "github-api-v3", "gitpython", "gunicorn", "idna", "importlib-metadata", "isort", "itsdangerous", "jinja2", "kiwisolver", "lazy-object-proxy", "lxml", "markupsafe", "matplotlib", "mccabe", "numpy", "numpy-stl", "pandas", "pipenv", "plotly", "public", "pycparser", "pyfirmata", "pygit2", "pygithub", "pyjwt", "pylint", "pyopengl", "pyparsing", "pyqt5", "pyqt5-sip", "pyqtgraph", "pyserial", "python-dateutil", "python-mathpix", "python-utils", "pytransform3d", "pytz", "requests", "retrying", "robodk", "rope", "scipy", "simplejson", "six", "smmap", "soupsieve", "sqlparse", "typed-ast", "urllib3", "virtualenv", "virtualenv-clone", "werkzeug", "wrapt", "zipp"], "https://github.com/ufbmi/mdc_api": ["bcrypt", "body-parser", "cookie-parser", "cors", "debug", "express", "jade", "jsonwebtoken", "morgan", "node-uuid", "nodemailer", "q", "serve-favicon", "valid-url"], "https://github.com/Andros-Spica/CDAL-Angourakis-2019": ["express", "grunt-cli", "mustache", "socket.io"], "https://github.com/sappelhoff/eeg_positions": ["matplotlib", "mne", "numpy", "pandas"], "https://github.com/CERNatschool/LUCIDITY": ["aws-sdk", "aws-ses", "bluecloth", "coffee-rails", "hobo", "hobo_clean", "hobo_clean_admin", "hobo_jquery_ui", "hobo_paperclip", "jquery-rails", "jquery-ui-themes", "mysql2", "paperclip", "quiet_assets", "rails", "rubyzip", "sass-rails", "therubyracer", "thin", "uglifier", "will_paginate"], "https://github.com/glubbdubdrib/lazygrid": ["keras", "matplotlib", "numpy", "openml", "pandas", "scikit-learn", "scipy", "statsmodels", "tensorflow"], "https://github.com/KnowledgeCaptureAndDiscovery/somef": ["bs4", "click", "click-option-group", "markdown", "matplotlib", "nltk", "numpy", "pandas", "rdflib", "rdflib-jsonld", "requests", "scikit-learn", "textblob", "mkdocs-material"], "https://github.com/ESMValGroup/ESMValCore": ["autodocsumm", "dask", "fiona", "netcdf4", "numba", "numpy", "pandas", "pillow", "prov", "pyyaml", "scipy", "shapely", "sphinx", "yamale", "abind", "akima", "climdex-pcic", "climprojdiags", "dotcall64", "functional", "ggplot2", "gridextra", "juliacall", "lintr", "logging", "mapproj", "maps", "multiapply", "ncdf4", "ncdf4-helpers", "pcict", "plyr", "rcolorbrewer", "rcpp", "s2dverification", "snow", "spei", "tools", "udunits2", "yaml", "argparse", "compat", "dataframes", "rainfarm"], "https://github.com/castelao/pyrings": ["fluid", "numpy", "pandas", "scipy"], "https://github.com/myGrid/t2-server-gem": ["bundler", "coveralls", "hirb", "launchy", "libxml-ruby", "net-http-persistent", "rake", "ratom", "rdoc", "taverna-baclava", "test-unit", "webmock"], "https://github.com/casperdcl/git-fame": ["argopt", "coverage", "flake8", "nose", "tabulate", "tqdm"], "https://github.com/gge-ucd/wRangling-Ecology": ["github-pages", "json", "activesupport", "addressable", "coffee-script", "coffee-script-source", "colorator", "ethon", "execjs", "faraday", "ffi", "forwardable-extended", "gemoji", "github-pages-health-check", "html-pipeline", "i18n", "jekyll", "jekyll-avatar", "jekyll-coffeescript", "jekyll-feed", "jekyll-gist", "jekyll-github-metadata", "jekyll-mentions", "jekyll-paginate", "jekyll-redirect-from", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-swiss", "jekyll-watch", "jemoji", "kramdown", "liquid", "listen", "mercenary", "minima", "minitest", "mini_portile2", "multipart-post", "net-dns", "nokogiri", "octokit", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "safe_yaml", "sass", "sawyer", "terminal-table", "thread_safe", "typhoeus", "tzinfo", "unicode-display_width"], "https://github.com/SysBioChalmers/yeast-GEM": ["alabaster", "arrow", "atomicwrites", "attrs", "babel", "backcall", "binaryornot", "bleach", "boto3", "botocore", "cached-property", "certifi", "cffi", "chardet", "click", "click-configfile", "click-default-group", "click-log", "cobra", "colorama", "configparser", "cookiecutter", "cryptography", "cycler", "datapackage", "decorator", "defusedxml", "depinfo", "docutils", "entrypoints", "equilibrator-api", "et-xmlfile", "future", "gitdb", "gitpython", "goodtables", "idna", "ijson", "imagesize", "importlib-metadata", "importlib-resources", "ipykernel", "ipython", "ipython-genutils", "isodate", "jdcal", "jedi", "jinja2", "jinja2-time", "jmespath", "joblib", "jsonlines", "jsonpointer", "jsonschema", "jupyter-client", "jupyter-core", "kiwisolver", "linear-tsv", "lxml", "markupsafe", "matplotlib", "memote", "mistune", "more-itertools", "mpmath", "nbconvert", "nbformat", "nltk", "notebook", "numpy", "numpydoc", "openpyxl", "optlang", "packaging", "pandas", "pandocfilters", "parso", "pickleshare", "pip-tools", "pipdeptree", "pluggy", "poyo", "prometheus-client", "prompt-toolkit", "py", "pycparser", "pygments", "pylru", "pyparsing", "pyperclip", "pyrsistent", "pytest", "python-dateutil", "python-dotenv", "python-libsbml", "python-libsbml-experimental", "python-slugify", "pytz", "pywin32", "pywinpty", "pyyaml", "pyzmq", "regex", "requests", "rfc3986", "ruamel-yaml", "ruamel-yaml-clib", "s3transfer", "sbtab", "scipy", "send2trash", "simpleeval", "six", "smmap", "snowballstemmer", "sphinx", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "sqlalchemy", "statistics", "swiglpk", "symengine", "sympy", "tableschema", "tablib", "tabulator", "terminado", "testpath", "text-unidecode", "tornado", "tqdm", "traitlets", "travis-encrypt", "unicodecsv", "urllib3", "wcwidth", "webencodings", "xlrd", "zipp"], "https://github.com/by256/rdfpy": ["matplotlib", "numpy", "scipy"], "https://github.com/FNNDSC/ChRIS_ultron_backEnd": ["celery", "django", "django-celery-beat", "django-cors-middleware", "django-filter", "django-storage-swift", "djangorestframework", "environs", "mod-wsgi", "mysqlclient", "pfurl", "python-chrisstoreclient", "python-swiftclient", "collection-json", "coverage", "django-celery-results", "django-debug-toolbar", "django-extensions", "flake8", "isort", "pudb", "pylint"], "https://github.com/cmorty/realsim": ["com.github.scopt:scopt_2.10", "com.github.wvengen:proguard-maven-plugin", "net.alchim31.maven:scala-maven-plugin", "net.sf.proguard:proguard-base", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.dstovall:onejar-maven-plugin", "de.fau.wisebed:scala-API", "org.apache.maven.plugins:maven-release-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.slf4j:slf4j-log4j12", "org.reflections:reflections", "org.slf4j:slf4j-nop", "log4j:log4j", "org.rxtx:rxtx", "org.scala-tools:maven-scala-plugin"], "https://github.com/Andros-Spica/TIPC2-Angourakis-Graham-2018": ["express", "grunt-cli", "mustache", "socket.io"], "https://github.com/rigetti/pyquil": ["antlr4-python3-runtime", "black", "coveralls", "flake8", "flake8-bugbear", "immutables", "ipykernel", "ipython", "mypy", "nbsphinx", "networkx", "numpy", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-timeout", "requests", "requests-mock", "rpcq", "ruamel-yaml", "sphinx", "sphinx-autodoc-typehints", "sphinx-rtd-theme", "twine", "pyquil"], "https://github.com/antlr/codebuff": ["com.google.guava:guava", "com.googlecode.maven-download-plugin:download-maven-plugin", "org.antlr:antlr4-maven-plugin", "org.antlr:antlr4-runtime", "org.antlr:ST4", "org.apache.commons:commons-lang3", "org.apache.maven.plugins:maven-compiler-plugin", "org.codehaus.mojo:build-helper-maven-plugin"], "https://github.com/vdenotaris/spring-boot-security-saml-sample": ["commons-collections:commons-collections", "nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect", "org.jacoco:jacoco-maven-plugin", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter", "org.springframework.boot:spring-boot-starter-log4j2", "org.springframework.boot:spring-boot-starter-security", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-thymeleaf", "org.springframework.boot:spring-boot-starter-tomcat", "org.springframework.boot:spring-boot-starter-web", "org.springframework.security.extensions:spring-security-saml2-core", "org.springframework.security:spring-security-test"], "https://github.com/ci-for-research/zenodo": ["@types/color-name", "ajv", "ansi-styles", "asn1", "assert-plus", "async", "asynckit", "aws-sign2", "aws4", "bcrypt-pbkdf", "caseless", "chalk", "color-convert", "color-name", "combined-stream", "commander", "core-util-is", "dashdash", "delayed-stream", "ecc-jsbn", "extend", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "forever-agent", "form-data", "getpass", "har-schema", "har-validator", "has-flag", "http-signature", "is-absolute-url", "is-relative-url", "is-typedarray", "isemail", "isstream", "jsbn", "json-schema", "json-schema-traverse", "json-stringify-safe", "jsprim", "link-check", "lodash", "markdown-link-check", "markdown-link-extractor", "marked", "mime-db", "mime-types", "ms", "oauth-sign", "performance-now", "progress", "psl", "punycode", "qs", "request", "safe-buffer", "safer-buffer", "sshpk", "supports-color", "tough-cookie", "tunnel-agent", "tweetnacl", "uri-js", "uuid", "verror", "cython", "numpy", "pybind11", "pycodestyle", "pytest", "pytest-cov"], "https://github.com/laduplessis/SARS-CoV-2_Guangdong_genomic_epidemiology": ["@emotion/core", "@testing-library/jest-dom", "@testing-library/react", "@testing-library/user-event", "d3-array", "d3-color", "d3-scale", "d3-scale-chromatic", "d3-time-format", "gh-pages", "react", "react-dom", "react-scripts", "react-tooltip"], "https://github.com/sealuzh/cd-linter-artifacts": ["pandas", "scipy", "com.fasterxml.jackson.core:jackson-databind", "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", "com.google.code.gson:gson", "commons-io:commons-io", "javax.activation:activation", "javax.xml.bind:jaxb-api", "junit:junit", "me.tongfei:progressbar", "mysql:mysql-connector-java", "org.antlr:ST4", "org.apache.commons:commons-csv", "org.apache.commons:commons-lang3", "org.apache.commons:commons-math3", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.eclipse.jgit:org.eclipse.jgit", "org.glassfish.jersey.core:jersey-client", "org.glassfish.jersey.inject:jersey-hk2", "org.glassfish.jersey.media:jersey-media-json-jackson", "org.hibernate:hibernate-c3p0", "org.hibernate:hibernate-core", "org.hibernate:hibernate-entitymanager", "org.xerial:sqlite-jdbc", "org.yaml:snakeyaml", "org.zeroturnaround:zt-zip", "pycodestyle", "-", "apns", "biplist", "fakeredis", "flask", "flask-redis", "flask-restful", "m2crypto", "mock", "oauthlib", "passlib", "psycopg2", "pyopenssl", "pytest-flask", "rq", "six", "sqlalchemy", "cython", "dash", "dash-core-components", "dash-html-components", "dash-renderer", "dash-table", "fastcache", "flask-compress", "gunicorn", "jupyter-core", "matplotlib", "nbformat", "numpy", "plotly", "sympy", "xlrd", "org.mockito:mockito-all", "blablacar", "com.google.code.gson:\n gson\n ", "banana:banana", "kuku:bla", "org.springframework.boot:spring-boot-dependencies", "bitbucket", "github", "gitlab-com", "google", "iframe", "salesforce", "twitter", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-source-plugin", "package1", "package2", "ch.qos.logback:logback-classic", "ch.qos.logback:logback-core", "com.google.code.gson:gson-extras", "com.google.guava:guava", "commons-validator:commons-validator", "io.atomix.catalyst:catalyst-netty", "io.atomix.copycat:copycat-client", "io.atomix.copycat:copycat-server", "io.netty:netty-all", "org.slf4j:slf4j-api", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-web", "com.gitlab.aberrantfox:KUtils", "io.mockk:mockk", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.velocity:velocity", "org.jetbrains.kotlin:kotlin-maven-plugin", "org.jetbrains.kotlin:kotlin-stdlib-jdk8", "org.junit.jupiter:junit-jupiter-api", "org.junit.jupiter:junit-jupiter-engine", "org.junit.jupiter:junit-jupiter-params", "org.slf4j:slf4j-log4j12", "org.slf4j:slf4j-nop", "alembic", "boto3", "botocore", "click", "grpcio", "grpcio-reflection", "janus", "protobuf", "pyyaml", "argparse", "proxmoxer", "requests", "tabulate", "astroid", "certifi", "chardet", "colorama", "coverage", "dj-database-url", "django", "django-environ", "idna", "isort", "lazy-object-proxy", "mccabe", "py-cpuinfo", "pylint", "pytz", "selenium", "urllib3", "whitenoise", "wrapt", "ninja.nonemu:ircninja", "org.apache.logging.log4j:log4j-api", "amqp", "anyjson", "apturl", "asn1crypto", "billiard", "bitarray", "bkcharts", "bleach", "bokeh", "boto", "bottleneck", "brlapi", "celery", "cloudpickle", "command-not-found", "contextlib2", "cryptography", "cupshelpers", "cycler", "cytoolz", "dask", "decorator", "defer", "distributed", "distro-info", "django-auth-ldap", "django-cors-headers", "django-hashers-passlib", "django-rest-auth", "django-timezone-field", "djangorestframework", "docutils", "entrypoints", "et-xmlfile", "filelock", "flask-cors", "gevent", "glob2", "gmpy2", "greenlet", "h5py", "heapdict", "html5lib", "httplib2", "icalendar", "keyring", "keyrings-alt", "kiwisolver", "kombu", "language-selector", "launchpadlib", "lazr-restfulclient", "lazr-uri", "ldap", "ldap3", "louis", "macaroonbakery", "mako", "markupsafe", "mistune", "mpmath", "msgpack-python", "multipledispatch", "nbconvert", "networkx", "nltk", "nose", "notebook", "numba", "numexpr", "numpydoc", "oauth", "olefile", "pexpect", "pillow", "pyasn1", "pyasn1-modules", "pycairo", "pycrypto", "pycups", "pyflakes", "pygments", "pygobject", "pygraphviz", "pymacaroons", "pynacl", "pyodbc", "pyparsing", "pyrfc3339", "python-apt", "python-dateutil", "python-debian", "python-ldap", "python-mimeparse", "pyxdg", "reportlab", "requests-unixsocket", "restauth", "restauthcommon", "secretstorage", "simplejson", "south", "ssh-import-id", "system-service", "systemd-python", "ubuntu-drivers-common", "ufw", "unattended-upgrades", "usb-creator", "vboxapi", "vine", "wadllib", "xkit", "zope-interface", "ninja.nonemu:samurai-api", "org.apache.logging.log4j:log4j-core", "elasticsearch", "elasticsearch-dsl", "httpretty", "jinja2", "prettytable", "buh:buh", "foo:foo", "django-extensions", "django-filter", "djangorestframework-simplejwt", "factory-boy", "ipython", "psycopg2-binary", "pytest", "pytest-cov", "pytest-django", "pytest-sugar", "net.rizon.plexus:plexus", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-surefire-plugin"], "https://github.com/clij/clij-ops": ["junit:junit", "net.haesleinhuepf:clij-core", "net.haesleinhuepf:clij_", "net.imagej:imagej", "net.imagej:imagej-ops"], "https://github.com/bmcage/odes": ["sphinx", "sphinx-rtd-theme"], "https://github.com/ryanvarley/ExoData": ["hypothesis", "matplotlib", "nose", "numpy", "quantities", "requests", "astropy", "pandas", "seaborn"], "https://github.com/poppy-project/pypot": ["bottle", "ikpy", "numpy", "opencv-contrib-python", "pyserial", "requests", "scipy", "tornado", "wget"], "https://github.com/NLeSC/cptm": ["cython", "fuzzywuzzy", "gensim", "ipython", "lxml", "numpy", "pandas", "python-levenshtein", "scipy"], "https://github.com/ivanhercaz/research": ["express", "grunt-cli", "mustache", "socket.io"], "https://github.com/dib-lab/sourmash": ["cachetools", "cffi", "deprecation", "matplotlib", "numpy", "scipy", "screed"], "https://github.com/PecanProject/pecan": ["pika", "psycopg2-binary", "python-dateutil", "requests", "attrs", "cachetools", "certifi", "cftime", "chardet", "click", "click-plugins", "cligj", "earthengine-api", "fiona", "future", "geopandas", "google-api-core", "google-api-python-client", "google-auth", "google-auth-httplib2", "google-cloud-core", "google-cloud-storage", "google-resumable-media", "googleapis-common-protos", "httplib2", "httplib2shim", "idna", "munch", "netcdf4", "numpy", "pandas", "protobuf", "pyasn1", "pyasn1-modules", "pyproj", "pytz", "rsa", "shapely", "six", "uritemplate", "urllib3", "xarray"], "https://github.com/thorstenwagner/ij-particlesizer": ["net.imagej:ij"], "https://github.com/ctsit/redi-dropper-client": ["flask", "flask-login", "flask-mail", "flask-principal", "flask-sqlalchemy", "flask-wtf", "mysql-python", "pytz", "sqlalchemy", "wtforms", "flask-debugtoolbar", "pyopenssl", "flask-testing", "nose", "pytest", "pytest-cov"], "https://github.com/juseg/absplots": ["matplotlib"], "https://github.com/tolliob/PhasePortrait": ["ipywidgets", "matplotlib", "pillow"], "https://github.com/gtaylor/python-colormath": ["networkx", "nose", "numpy"], "https://github.com/SoftwareDevEngResearch/PyFAT": ["matplotlib", "numpy", "pandas", "pathlib", "pint", "pytest", "argparse", "datetime"], "https://github.com/ComputationalRadiationPhysics/mallocMC": ["breathe", "pygments", "rst2pdf", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-programoutput"], "https://github.com/Arabidopsis-Information-Portal/adama": ["aniso8601", "arrow", "binaryornot", "blessings", "chardet", "click", "configparser", "cookiecutter", "crypto", "datetime", "decorator", "django", "docutils", "email", "enum", "flask", "flask-restful", "flask-restful-swagger", "future", "ijson", "image", "importlib", "itsdangerous", "jinja2", "jinja2-time", "jwt", "lockfile", "logging", "lxml", "markupsafe", "multiprocessing", "naked", "networkx", "pika", "pillow", "poyo", "prov", "pyaml", "pycrypto", "pyjwt", "pyopenssl", "pyswagger", "python-daemon", "python-dateutil", "pytz", "pyyaml", "pyzmq", "redis", "requests", "service", "setproctitle", "shellescape", "six", "uuid", "validate-email", "werkzeug", "wheel", "whichcraft", "zmq", "zope-interface", "amqp", "anyjson", "backports-ssl-match-hostname", "billiard", "celery", "cffi", "codetransformer", "colorama", "cryptography", "docker-py", "dockerpty", "docopt", "fig", "flake8", "flexmock", "gnureadline", "html5lib", "idna", "importmagic", "ipdb", "ipython", "jedi", "kombu", "lazy", "lazy-python", "mccabe", "ndg-httpsclient", "nose", "numpy", "pamqp", "pep8", "py", "pyasn1", "pycparser", "pyflakes", "pygments", "pyparsing", "pytest", "python3-pika", "rabbitpy", "serf-master", "sphinx", "sphinx-rtd-theme", "texttable", "tornado", "tox", "urllib3", "uwsgi", "virtualenv", "websocket-client", "alabaster", "babel", "delorean", "enum34", "gevent", "greenlet", "gunicorn", "logbook", "pydot2", "setuptools", "snowballstemmer", "uwsgitop", "wsgiref", "expressologs-by-locus", "notes", "polymorph-hdr-by-locus", "size", "thalemine-gene-interactions-by-locus"], "https://github.com/biowdl/RNA-seq": ["cromwell", "miniwdl", "pysam", "pytest-workflow", "python", "wdl-aid"], "https://github.com/RPGroup-PBoC/RNAseq_SortSeq": ["matplotlib", "numpy", "pandas", "pandas-datareader", "scikit-learn", "seaborn"], "https://github.com/mensBash/DataStewardship": ["certifi", "chardet", "click", "fake-useragent", "future", "huepy", "idna", "instabot", "instaloader", "itsdangerous", "joblib", "liac-arff", "numpy", "pandas", "pysocks", "python-dateutil", "pytz", "requests", "requests-toolbelt", "responses", "schedule", "scikit-learn", "scipy", "six", "tqdm", "urllib3"], "https://github.com/thetisproject/thetis": ["netcdf4", "pyproj", "pytz", "scipy", "uptide"], "https://github.com/nismod/smif": ["better-apidoc", "m2r", "requests", "sphinx", "fiona", "flask", "isodate", "minio", "networkx", "numpy", "pandas", "pint", "pyarrow", "python-dateutil", "pywin32", "rtree", "ruamel-yaml", "shapely", "xarray", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-call-delegate", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/polyfill", "@babel/preset-env", "@babel/preset-react", "@babel/register", "@babel/runtime", "@babel/runtime-corejs2", "@babel/template", "@babel/traverse", "@babel/types", "@emotion/babel-utils", "@emotion/hash", "@emotion/memoize", "@emotion/serialize", "@emotion/stylis", "@emotion/unitless", "@emotion/utils", "@sinonjs/commons", "@sinonjs/formatio", "@sinonjs/samsam", "@sinonjs/text-encoding", "@tootallnate/once", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "@types/parse-json", "@types/prop-types", "@types/react", "@types/react-table", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "abbrev", "accepts", "acorn", "acorn-globals", "acorn-jsx", "acorn-walk", "add-dom-event-listener", "agent-base", "airbnb-prop-types", "ajv", "ajv-errors", "ajv-keywords", "anser", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "ansi-to-react", "anymatch", "append-transform", "aproba", "archy", "argparse", "argv", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-filter", "array-flatten", "array-from", "array-includes", "array-union", "array-uniq", "array-unique", "array.prototype.find", "array.prototype.flat", "asn1", "asn1.js", "assert", "assert-plus", "assertion-error", "assign-symbols", "astral-regex", "async", "async-each", "async-limiter", "asynckit", "atob", "aws-sign2", "aws4", "babel-eslint", "babel-loader", "babel-plugin-dynamic-import-node", "babel-plugin-emotion", "babel-plugin-macros", "babel-plugin-syntax-jsx", "babel-runtime", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "bootstrap", "brace-expansion", "braces", "brorand", "browser-process-hrtime", "browser-stdout", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "caching-transform", "callsites", "camel-case", "camelcase", "caniuse-lite", "caseless", "chai", "chalk", "chardet", "check-error", "cheerio", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "classnames", "clean-css", "clean-webpack-plugin", "cli-cursor", "cli-width", "cliui", "code-point-at", "codecov", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "commondir", "component-classes", "component-emitter", "component-indexof", "cross-env", "css-loader", "enzyme", "enzyme-adapter-react-16", "eslint", "eslint-plugin-react", "html-webpack-plugin", "immutability-helper", "isomorphic-fetch", "jsdom", "jsdom-global", "mini-css-extract-plugin", "mocha", "moment", "nyc", "prop-types", "rc-slider", "rc-steps", "react", "react-dom", "react-hot-loader", "react-icons", "react-modal", "react-redux", "react-router-dom", "react-select", "react-table", "react-test-renderer", "redux", "redux-logger", "redux-thunk", "sinon", "strip-ansi", "style-loader", "webpack", "webpack-cli", "webpack-dev-server"], "https://github.com/mgndolan/phagesdb": ["body-parser", "ejs", "express", "express-sanitizer", "express-session", "method-override", "mongoose", "passport", "passport-local", "passport-local-mongoose"], "https://github.com/rajeshrinet/pystokes": ["cython", "matplotlib", "numpy", "scipy"], "https://github.com/alan-turing-institute/azure_usage_v1": ["bokeh", "jinja2", "matplotlib", "numpy", "packaging", "pandas", "pillow", "pytest", "python-dateutil", "pyyaml", "six", "tornado"], "https://github.com/rdfjs/N3.js": ["@babel/cli", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/register", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@types/color-name", "@types/http-link-header", "@types/json-stable-stringify", "@types/log-symbols", "@types/minimist", "@types/n3", "@types/node", "@types/rdf-js", "@types/sax", "acorn", "acorn-jsx", "ajv", "ansi-colors", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "append-transform", "archy", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-unique", "arrayify-stream", "assertion-error", "assign-symbols", "astral-regex", "async-each", "at-least-node", "atob", "babel-plugin-dynamic-import-node", "balanced-match", "base", "binary-extensions", "bindings", "brace-expansion", "braces", "browser-stdout", "browserslist", "buffer-from", "cache-base", "caching-transform", "callsites", "camelcase", "caniuse-lite", "canonicalize", "chai", "chai-things", "chalk", "chardet", "check-error", "chokidar", "class-utils", "cli-cursor", "cli-width", "cliui", "collection-visit", "color-convert", "color-name", "colors", "commander", "commondir", "component-emitter", "concat-map", "concat-stream", "convert-source-map", "copy-descriptor", "core-js-compat", "core-util-is", "cp-file", "cross-fetch", "cross-spawn", "debug", "decamelize", "decode-uri-component", "deep-eql", "deep-is", "default-require-extensions", "define-properties", "define-property", "diff", "docco", "doctrine", "electron-to-chromium", "emoji-regex", "error-ex", "es-abstract", "es-to-primitive", "es6-error", "escalade", "escape-string-regexp", "eslint", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "expand-brackets", "extend-shallow", "external-editor", "extglob", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "figures", "file-entry-cache", "file-uri-to-path", "fill-range", "find-cache-dir", "find-up", "flat", "flat-cache", "flatted", "for-in", "foreground-child", "fragment-cache", "fs-extra", "fs-readdir-recursive", "fs.realpath", "fsevents", "function-bind", "functional-red-black-tree", "gensync", "get-caller-file", "get-func-name", "get-value", "glob", "glob-parent", "globals", "graceful-fs", "growl", "has", "has-flag", "has-symbols", "has-value", "has-values", "hasha", "he", "highlight.js", "hosted-git-info", "html-escaper", "http-link-header", "iconv-lite", "ignore", "import-fresh", "imurmurhash", "inflight", "inherits", "inquirer", "invariant", "mocha", "nyc", "pre-commit", "queue-microtask", "rdf-test-suite", "readable-stream", "streamify-string"], "https://github.com/s-utkarsh/convex": ["matplotlib", "numpy", "plotly"], "https://github.com/docmanny/RecSearch": ["dill", "multiprocess", "mygene", "pandas", "pytest-mock", "biopython"], "https://github.com/BenediktKleppmann/TreeOfKnowledge": ["anaconda", "asn1crypto", "atomicwrites", "attrs", "awscli", "awsebcli", "backcall", "bleach", "boto", "boto3", "botocore", "cement", "certifi", "cffi", "chardet", "colorama", "colour", "conda", "cryptography", "cycler", "cython", "datetime", "decorator", "defusedxml", "dj-database-url", "django", "django-bootstrap3", "django-registration-redux", "django-smtp-ssl", "docutils", "entrypoints", "frozendict", "future", "graphviz", "hellowebapp-deploy", "idna", "importlib-metadata", "ipykernel", "ipyparallel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "jmespath", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "kiwisolver", "markupsafe", "matplotlib", "mistune", "more-itertools", "nbconvert", "nbformat", "networkx", "notebook", "numexpr", "numpy", "packaging", "pandas", "pandocfilters", "paramz", "parso", "pathspec", "patsy", "pickleshare", "pluggy", "prometheus-client", "prompt-toolkit", "psycopg2", "py", "pyasn1", "pycosat", "pycparser", "pygments", "pyopenssl", "pyparsing", "pyrsistent", "pysocks", "pytest", "pytexit", "python-dateutil", "python-decouple", "pytz", "pywinpty", "pyyaml", "pyzmq", "qtconsole", "requests", "rsa", "ruamel-yaml", "s3transfer", "scikit-learn", "scipy", "seaborn", "semantic-version", "send2trash", "six", "sqlalchemy", "sqlparse", "statsmodels", "tables", "tdda", "termcolor", "terminado", "testpath", "toolz", "tornado", "tqdm", "traitlets", "urllib3", "virtualenv", "virtualenvwrapper-win", "waitress", "wcwidth", "webencodings", "whitenoise", "widgetsnbextension", "win-inet-pton", "wincertstore", "xlrd", "xlwt", "zipp", "zope-interface"], "https://github.com/fanatichuman/ZOOMIEv1.0": ["laravel/framework"], "https://github.com/subangstrom/usetemServers": ["comtypes", "numpy", "pyqt5", "yapsy"], "https://github.com/bio-guoda/preston": ["com.beust:jcommander", "com.fasterxml.jackson.core:jackson-databind", "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", "com.google.cloud.tools:jib-maven-plugin", "commons-io:commons-io", "joda-time:joda-time", "junit:junit", "org.apache.commons:commons-compress", "org.apache.commons:commons-lang3", "org.apache.commons:commons-rdf-api", "org.apache.commons:commons-rdf-jena", "org.apache.commons:commons-rdf-simple", "org.apache.httpcomponents:httpclient", "org.apache.lucene:lucene-analyzers-common", "org.apache.lucene:lucene-core", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.tika:tika-parsers", "org.codehaus.mojo:versions-maven-plugin", "org.hamcrest:hamcrest-all", "org.reflections:reflections", "org.slf4j:slf4j-jcl", "org.vafer:jdeb"], "https://github.com/molstar/molstar": ["@jest/types", "@types/argparse", "@types/benchmark", "@types/body-parser", "@types/compression", "@types/connect", "@types/express", "@types/express-serve-static-core", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/jest", "@types/mime", "@types/node", "@types/node-fetch", "@types/prop-types", "@types/range-parser", "@types/react", "@types/react-dom", "@types/serve-static", "@types/swagger-ui-dist", "@types/yargs", "@types/yargs-parser", "accepts", "ansi-regex", "ansi-styles", "argparse", "array-flatten", "body-parser", "bytes", "chalk", "color-convert", "color-name", "compressible", "compression", "content-disposition", "content-type", "cookie", "cookie-signature", "csstype", "debug", "define-properties", "depd", "destroy", "diff-sequences", "ee-first", "encodeurl", "es-abstract", "es-to-primitive", "escape-html", "escape-string-regexp", "etag", "express", "finalhandler", "forwarded", "fresh", "function-bind", "graphql", "has", "has-flag", "has-symbols", "http-errors", "iconv-lite", "immutable", "inherits", "ipaddr.js", "is-callable", "is-date-object", "is-regex", "is-symbol", "iterall", "jest-diff", "jest-get-type", "js-tokens", "loose-envify", "media-typer", "merge-descriptors", "methods", "mime", "mime-db", "mime-types", "ms", "negotiator", "node-fetch", "object-assign", "object-inspect", "object-keys", "object.getownpropertydescriptors", "on-finished", "on-headers", "parseurl", "path-to-regexp", "pretty-format", "prop-types", "proxy-addr", "qs", "range-parser", "raw-body", "react", "react-dom", "react-is", "rxjs", "safe-buffer", "safer-buffer", "scheduler", "send", "serve-static", "setprototypeof", "sprintf-js", "statuses", "string.prototype.trimleft", "string.prototype.trimright", "supports-color", "swagger-ui-dist", "toidentifier", "tslib", "type-is", "unpipe", "util.promisify", "utils-merge", "vary", "xhr2", "@graphql-codegen/add", "@graphql-codegen/cli", "@graphql-codegen/time", "@graphql-codegen/typescript", "@graphql-codegen/typescript-graphql-files-modules", "@graphql-codegen/typescript-graphql-request", "@graphql-codegen/typescript-operations", "@types/cors", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "benchmark", "concurrently", "cors", "cpx2", "css-loader", "eslint", "extra-watch-webpack-plugin", "file-loader", "fs-extra", "http-server", "immer", "jest", "mini-css-extract-plugin", "node-sass", "raw-loader", "sass-loader", "simple-git", "style-loader", "ts-jest", "typescript", "webpack", "webpack-cli", "webpack-version-file-plugin"], "https://github.com/philrosenfield/core_overshoot_clusters": ["astropy", "matplotlib", "numpy", "pandas", "scipy"], "https://github.com/a-slide/pycoQC": ["h5py", "jinja2", "numpy", "pandas", "plotly", "pysam", "scipy", "tqdm"], "https://github.com/Epistimio/orion": ["tox", "appdirs", "falcon", "filelock", "gitpython", "gunicorn", "numpy", "pandas", "plotly", "pymongo", "pyyaml", "scipy", "tabulate", "numpydoc", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-httpdomain", "pytest", "pytest-timeout", "pytest-xdist", "matplotlib", "orion", "scikit-learn"], "https://github.com/tholoien/XDGMM": ["astroml", "astroml-addons", "nose", "pandas", "scikit-learn", "scipy", "numpy"], "https://github.com/PyTorchLightning/pytorch-lightning": ["fsspec", "future", "numpy", "pyyaml", "tensorboard", "torch", "tqdm", "docutils", "m2r", "nbsphinx", "pandoc", "recommonmark", "sphinx", "sphinx-autodoc-typehints", "sphinx-copybutton", "sphinx-paramlinks", "sphinx-togglebutton", "sphinxcontrib-fulltoc", "sphinxcontrib-mockautodoc", "gym", "torchvision", "matplotlib", "omegaconf", "onnx", "onnxruntime", "scikit-learn", "torchtext", "comet-ml", "mlflow", "neptune-client", "test-tube", "wandb", "black", "check-manifest", "cloudpickle", "codecov", "coverage", "flake8", "flake8-black", "nltk", "pre-commit", "pytest", "pytest-cov", "pytest-flake8", "scikit-image", "twine"], "https://github.com/fusion-jena/CoMerger": ["au.com.bytecode:opencsv", "au.com.dius:pact-jvm-consumer-junit", "com.github.ansell.pellet:pellet-owlapiv3", "com.googlecode.matrix-toolkits-java:mtj", "com.hp.hpl.jena:jena", "com.miglayout:miglayout", "com.sun.mail:javax.mail", "commons-collections:commons-collections", "junit:junit", "me.shib.java.lib:diction", "net.sf.jung:jung-graph-impl", "net.sf.jung:jung-visualization", "net.sf.jwordnet:jwnl", "net.sourceforge.owlapi:org.semanticweb.hermit", "net.sourceforge.owlapi:owlapi-distribution", "net.sourceforge.owlapi:owlexplanation", "ontology-modularization:agg", "ontology-modularization:align", "ontology-modularization:jung", "ontology-modularization:matrix", "ontology-modularization:sesame", "ontology-modularization:snowball", "ontology-modularization:ws4j", "org.apache.commons:commons-collections4", "org.apache.commons:commons-lang3", "org.apache.jena:jena-arq", "org.apache.jena:jena-core", "org.apache.lucene:lucene-snowball", "org.jdom:jdom", "org.openrdf.sesame:sesame-repository-api", "xml-apis:xml-apis"], "https://github.com/collectionslab/Omniscribe": ["h5py", "image", "imgaug", "ipython", "keras", "matplotlib", "numpy", "opencv-python", "pandas", "pip", "requests", "scikit-image", "scipy", "setuptools", "tensorflow", "cython", "pillow"], "https://github.com/cohenlabUNC/clpipe": ["click", "dcm2bids", "deepdiff", "jsonschema", "nibabel", "nilearn", "nipy", "nipype", "numpy", "pandas", "parse", "psutil", "scipy", "sphinx-rtd-theme", "templateflow"], "https://github.com/harpolea/r3d2": ["ipykernel", "ipython", "matplotlib", "nbsphinx", "numpy", "scipy"], "https://github.com/peterbanda/coel": ["com.banda.function:banda-function-domain", "edu.banda.coel:coel-business", "edu.banda.coel:coel-server", "net.sf.jasperreports:jasperreports", "org.apache.maven.plugins:maven-clean-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.eclipse.m2e:lifecycle-mapping", "org.grails.plugins:database-migration", "org.grails.plugins:eclipse-scripts", "org.grails.plugins:fields", "org.grails.plugins:filterpane", "org.grails.plugins:google-visualization", "org.grails.plugins:hibernate", "org.grails.plugins:jasper", "org.grails.plugins:joda-time", "org.grails.plugins:jquery", "org.grails.plugins:jquery-ui", "org.grails.plugins:mail", "org.grails.plugins:navigation", "org.grails.plugins:platform-core", "org.grails.plugins:platform-ui", "org.grails.plugins:resources", "org.grails.plugins:spring-security-acl", "org.grails.plugins:spring-security-core", "org.grails.plugins:tomcat", "org.grails.plugins:twitter-bootstrap", "org.grails.plugins:webxml", "org.grails:grails-dependencies", "org.grails:grails-maven-plugin", "org.grails:grails-plugin-async", "org.grails:grails-plugin-testing", "org.springframework:spring-web", "postgresql:postgresql", "com.banda.chemistry:banda-chemistry-domain", "com.banda.math:banda-math-domain", "com.banda.network:banda-network-domain", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "cglib:cglib", "com.banda.serverbase:banda-serverbase", "commons-dbcp:commons-dbcp", "org.apache.activemq:activemq-all-wo-slf4j", "org.apache.commons:commons-compress", "org.apache.maven.plugins:maven-eclipse-plugin", "org.apache.xbean:xbean-spring", "org.aspectj:aspectjweaver", "org.codehaus.mojo:aspectj-maven-plugin", "org.hibernate:hibernate-core", "org.hibernate:maven-antrun-plugin", "org.javassist:javassist", "org.scala-lang:jline", "org.scala-lang:scala-compiler", "org.scala-tools:maven-scala-plugin", "org.scalaz:scalaz-core_2.10", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "org.slf4j:slf4j-simple", "org.springframework.security:spring-security-core", "org.springframework:spring-aop", "org.springframework:spring-aspects", "org.springframework:spring-context", "org.springframework:spring-jms", "org.springframework:spring-orm", "org.springframework:spring-test", "org.springframework:spring-tx", "batik:batik-svggen", "batik:batik-swing", "com.banda.chemistry:banda-chemistry-business", "com.banda.function:banda-function-business", "com.banda.math:banda-math-business", "com.banda.network:banda-network-business", "com.googlecode.efficient-java-matrix-library:ejml", "commons-codec:commons-codec", "edu.banda.coel:coel-domain", "jfree:jcommon", "jfree:jfreechart", "org.codehaus.woodstox:woodstox-core-lgpl", "org.sbml:jsbml", "org.w3c.jigsaw:jigsaw", "org.apache.activemq:activemq-all"], "https://github.com/Xilinx/brevitas": ["bitstring", "onnx", "onnxruntime", "toposort", "scipy", "nox", "packaging", "pyyaml", "torch", "inflect", "librosa", "numba", "pillow", "requests", "ruamel-yaml", "soundfile", "sox", "torch-stft", "tqdm", "unidecode", "hypothesis", "mock", "pytest", "torchvision", "numpy", "dataclasses", "dependencies", "docrep", "typing-extensions"], "https://github.com/aulasoftwarelibre/taller-de-git": ["markdown-inline-graphviz", "mkdocs", "mkdocs-material", "mkdocs-pandoc", "pymdown-extensions"], "https://github.com/ornlneutronimaging/iBeatles": ["args", "astropy", "configparser", "lmfit", "neutronbraggedge", "numpy", "pandas", "pillow", "progressbar2", "pyqtgraph", "pytest", "qtpy", "scikit-image", "scipy", "matplotlib"], "https://github.com/dennissergeev/arke": ["cached-property", "iris", "metpy"], "https://github.com/awickert/GRLP": ["matplotlib", "numpy", "scipy"], "https://github.com/na399/VAST-Challenge-2019-MC1": ["@nuxtjs/eslint-config", "@nuxtjs/google-analytics", "@nuxtjs/pwa", "@vue/test-utils", "babel-core", "babel-eslint", "babel-jest", "cross-env", "element-ui", "eslint", "eslint-config-prettier", "eslint-config-standard", "eslint-loader", "eslint-plugin-import", "eslint-plugin-jest", "eslint-plugin-node", "eslint-plugin-nuxt", "eslint-plugin-prettier", "eslint-plugin-promise", "eslint-plugin-standard", "eslint-plugin-vue", "jest", "nodemon", "nuxt", "nuxt-social-meta", "nuxt-vuex-localstorage", "prettier", "vega", "vue-jest", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-create-class-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/polyfill", "@babel/preset-env", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@cnakazawa/watch", "@csstools/convert-colors", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@jimp/bmp", "@jimp/core", "@jimp/custom", "@jimp/gif", "@jimp/jpeg", "@jimp/plugin-blit", "@jimp/plugin-blur", "@jimp/plugin-color", "@jimp/plugin-contain", "@jimp/plugin-cover", "@jimp/plugin-crop", "@jimp/plugin-displace", "@jimp/plugin-dither", "@jimp/plugin-flip", "@jimp/plugin-gaussian", "@jimp/plugin-invert", "@jimp/plugin-mask", "@jimp/plugin-normalize", "@jimp/plugin-print", "@jimp/plugin-resize", "@jimp/plugin-rotate", "@jimp/plugin-scale", "@jimp/plugins", "@jimp/png", "@jimp/tiff", "@jimp/types", "@jimp/utils", "@nuxt/babel-preset-app", "@nuxt/builder", "@nuxt/cli", "@nuxt/config", "@nuxt/core", "@nuxt/devalue", "@nuxt/friendly-errors-webpack-plugin", "@nuxt/generator", "@nuxt/loading-screen", "@nuxt/opencollective", "@nuxt/server", "@nuxt/utils", "@nuxt/vue-app", "@nuxt/vue-renderer", "@nuxt/webpack", "@nuxtjs/icon", "@nuxtjs/manifest", "@nuxtjs/meta", "@nuxtjs/workbox", "@nuxtjs/youch", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/q", "@types/stack-utils", "@types/strip-bom", "@types/strip-json-comments", "@types/yargs", "@vue/babel-helper-vue-jsx-merge-props", "@vue/babel-plugin-transform-vue-jsx", "@vue/babel-preset-jsx", "@vue/babel-sugar-functional-vue", "@vue/babel-sugar-inject-h", "@vue/babel-sugar-v-model", "@vue/babel-sugar-v-on", "@vue/component-compiler-utils", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "acorn-globals", "acorn-jsx", "acorn-walk", "ajv", "ajv-errors", "ajv-keywords", "alphanum-sort", "ansi-align", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "any-base", "anymatch", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-filter", "array-flatten", "array-includes", "array-map", "array-reduce", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "astral-regex", "async", "async-each", "async-limiter", "async-validator", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axios", "babel-code-frame", "babel-extract-comments", "babel-helper-vue-jsx-merge-props", "babel-loader", "babel-messages", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-plugin-syntax-object-rest-spread", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-strict-mode", "babel-preset-jest", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon"], "https://github.com/schmelling/reciprocal_BLAST": ["biopython", "cpython", "ipython", "matplotlib", "numpy", "pandas", "scipy"], "https://github.com/diana-hep/madminer": ["future", "h5py", "matplotlib", "numpy", "scikit-hep", "scipy", "six", "torch", "uproot"], "https://github.com/fmorenopino/HeterogeneousHMM": ["matplotlib", "numpy", "prettytable", "pytest", "scikit-learn", "scipy", "seaborn"], "https://github.com/dslfaithdev/SocialCrawler": ["theiconic/php-ga-measurement-protocol"], "https://github.com/AndrewIOM/global-pollen-project": ["gulp", "gulp-concat", "gulp-cssmin", "gulp-sass", "gulp-uglify", "rimraf"], "https://github.com/PySCeS/pysces": ["assimulo", "biopython", "black", "conda-build", "ipython", "jupyter", "matplotlib", "nose", "numpy", "pandas", "pip", "pyparsing", "pyqt", "python", "python-libsbml", "scipy", "setuptools", "sympy", "wheel"], "https://github.com/DamCB/tyssue": ["ipyvolume", "ipywidgets", "jupyter", "matplotlib", "notebook", "numpy", "pandas", "pytables", "pythreejs", "quantities", "scipy", "ipykernel", "nbsphinx", "sphinx", "tables"], "https://github.com/lsmo-epfl/discover-curated-cofs": ["aiida-core", "bokeh", "graphviz", "jsmol-bokeh-extension", "pandas", "panel", "param", "pyjanitor", "requests"], "https://github.com/caltechlibrary/eprints2bags": ["bagit", "colorama", "dateparser", "humanize", "keyring", "keyrings-alt", "lxml", "plac", "psutil", "requests", "termcolor", "urllib3", "validators"], "https://github.com/proycon/foliapy": ["lxml", "rdflib", "requests"], "https://github.com/bird-house/twitcher": ["alembic", "argcomplete", "colander", "cornice", "cornice-swagger", "lxml", "oauthlib", "plaster-pastedeploy", "pyjwt", "pyopenssl", "pyramid", "pyramid-debugtoolbar", "pyramid-oauthlib", "pyramid-retry", "pyramid-tm", "pytz", "requests", "requests-oauthlib", "sqlalchemy", "transaction", "waitress", "webob", "zope-sqlalchemy", "bump2version", "flake8", "nbsphinx", "pytest", "pytest-cov", "sphinx", "twine", "webtest"], "https://github.com/ganga-devs/ganga": ["coverage", "docker", "psutil", "pygments", "pymongo", "pytest", "pytest-cov", "pytest-mock", "unittest2", "absl-py", "eventlet", "flask", "flask-login", "flask-socketio", "flask-sqlalchemy", "google-api-python-client", "google-auth-httplib2", "google-auth-oauthlib", "gunicorn", "httplib2", "ipython", "pyjwt", "requests"], "https://github.com/kotik-coder/PULsE": ["ca.umontreal.iro.simul:ssj", "colt:colt", "commons-io:commons-io", "org.apache.commons:commons-math3", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.ejml:ejml-all", "org.jfree:jfreechart", "org.junit.jupiter:junit-jupiter-engine", "org.junit.platform:junit-platform-runner", "org.junit.platform:junit-platform-surefire-provider"], "https://github.com/mozillazg/pinyin-data": ["pyquery", "requests"], "https://github.com/MicroPasts/EgyptExplorationSocBuhenPottery": ["pybossa-client"], "https://github.com/luispedro/imread": ["nose", "numpy", "matplotlib", "numpydoc"], "https://github.com/PCMSolver/pcmsolver": ["danger", "danger-code_style_validation", "danger-commit_lint", "danger-lgtm", "addressable", "claide", "claide-plugins", "colored2", "cork", "danger-plugin-api", "faraday", "faraday-http-cache", "git", "kramdown", "multipart-post", "nap", "octokit", "open4", "public_suffix", "sawyer", "terminal-table", "unicode-display_width", "breathe", "docopt", "fprettify", "matplotlib", "Pygments", "pyparsing", "pyyaml", "recommonmark", "Sphinx", "sphinxcontrib-bibtex", "sphinx_rtd_theme", "yapf", "alabaster", "babel", "certifi", "chardet", "commonmark", "cycler", "docutils", "future", "idna", "imagesize", "jinja2", "kiwisolver", "latexcodec", "markupsafe", "numpy", "oset", "packaging", "pybtex", "pybtex-docutils", "pygments", "python-dateutil", "pytz", "requests", "six", "snowballstemmer", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-websupport", "urllib3", "no_proxy_fix"], "https://github.com/klout/brickhouse": ["com.clearspring.analytics:stream", "com.google.guava:guava", "joda-time:joda-time", "junit:junit", "org.apache.hadoop:hadoop-core", "org.apache.hbase:hbase", "org.apache.hive:hive-common", "org.apache.hive:hive-exec", "org.apache.hive:hive-serde", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.codehaus.jackson:jackson-core-asl", "org.codehaus.jackson:jackson-jaxrs", "org.codehaus.jackson:jackson-mapper-asl", "org.codehaus.jackson:jackson-xc"], "https://github.com/Dash-Industry-Forum/dash.js": ["@sinonjs/commons", "@sinonjs/formatio", "@sinonjs/samsam", "@types/chai", "@types/node", "abab", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "acorn-globals", "acorn-node", "acorn-walk", "after", "ajv", "align-text", "alter", "amdefine", "ansi-regex", "ansi-styles", "anymatch", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-each", "array-equal", "array-filter", "array-find-index", "array-from", "array-map", "array-reduce", "array-slice", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asn1", "asn1.js", "assert", "assert-plus", "assertion-error", "assign-symbols", "ast-traverse", "ast-types", "async", "async-each", "async-each-series", "async-limiter", "asynckit", "atob", "aws-sign2", "aws4", "axios", "babel", "babel-code-frame", "babel-core", "babel-generator", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helpers", "babel-jscs", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-constant-folding", "babel-plugin-dead-code-elimination", "babel-plugin-eval", "babel-plugin-inline-environment-variables", "babel-plugin-jscript", "babel-plugin-member-expression-literals", "babel-plugin-property-literals", "babel-plugin-proto-to-assign", "babel-plugin-react-constant-elements", "babel-plugin-react-display-name", "babel-plugin-remove-console", "babel-plugin-remove-debugger", "babel-plugin-runtime", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-plugin-undeclared-variables-check", "babel-plugin-undefined-to-void", "babel-preset-env", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babelify", "babylon", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64-js", "base64id", "basic-auth", "batch", "bcrypt-pbkdf", "benchmark", "better-assert", "binary-extensions", "bl", "blob", "bluebird", "bn.js", "body", "boolbase", "brace-expansion", "braces", "breakable", "brorand", "browser-pack", "browser-process-hrtime", "browser-request", "browser-resolve", "browser-sync", "browser-sync-client", "browser-sync-ui", "browser-unpack", "browserify", "browserify-aes", "browserify-cache-api", "browserify-cipher", "browserify-derequire", "browserify-des", "browserify-incremental", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "bs-html-injector", "bs-recipes", "bs-snippet-injector", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-crc32", "buffer-fill", "buffer-from", "buffer-to-vinyl", "buffer-xor", "builtin-modules", "builtin-status-codes", "bundle-collapser", "bytes", "cache-base", "cached-path-relative", "callsite", "camelcase", "camelcase-keys", "caniuse-lite", "caseless", "catharsis", "center-align", "chai", "chai-spies", "chalk", "charm", "chokidar", "cipher-base", "class-utils", "cli", "cli-table", "cliui", "clone", "clone-stats", "code-point-at", "codem-isoboxer", "coffeescript", "collection-visit", "color-convert", "color-name", "colors", "combine-source-map", "combined-stream", "commander", "comment-parser", "commoner", "component-bind", "component-emitter", "component-inherit", "concat-map", "concat-stream", "connect", "connect-history-api-fallback", "connect-livereload", "console-browserify", "constants-browserify", "continuable-cache", "convert-source-map", "cookie", "copy-descriptor", "core-js", "core-util-is", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "css-select", "css-what", "cssom", "cssstyle", "currently-unhandled", "cycle", "d", "dashdash", "data-urls", "date-now", "date-time", "dateformat", "debug", "fast-deep-equal", "grunt", "grunt-babel", "grunt-browser-sync", "grunt-browserify", "grunt-cli", "grunt-contrib-clean", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-exorcise", "grunt-ftp-push", "grunt-githash", "grunt-githooks", "grunt-jscs", "grunt-jsdoc", "grunt-mocha-istanbul", "grunt-string-replace", "html-entities", "imsc", "ink-docstrap", "intern", "iron-mocha", "iron-node", "istanbul", "jsdoc", "jsdom", "load-grunt-tasks", "localforage", "mocha", "request", "request-promise", "sinon", "time-grunt", "uglify-js", "babel-loader", "babel-preset-es2015", "dashjs", "html-webpack-plugin", "webpack", "awesome-typescript-loader", "typescript"], "https://github.com/ProjectDrawdown/spatial-aez": ["gdal", "numpy", "pandas", "pytest", "pytest-cov"], "https://github.com/cytoscape/cytoscape.js-popper": ["accepts", "acorn", "acorn-dynamic-import", "acorn-jsx", "ajv", "ajv-keywords", "align-text", "ansi-bgblack", "ansi-bgblue", "ansi-bgcyan", "ansi-bggreen", "ansi-bgmagenta", "ansi-bgred", "ansi-bgwhite", "ansi-bgyellow", "ansi-black", "ansi-blue", "ansi-bold", "ansi-colors", "ansi-cyan", "ansi-dim", "ansi-escapes", "ansi-gray", "ansi-green", "ansi-grey", "ansi-hidden", "ansi-html", "ansi-inverse", "ansi-italic", "ansi-magenta", "ansi-red", "ansi-regex", "ansi-reset", "ansi-strikethrough", "ansi-styles", "ansi-underline", "ansi-white", "ansi-wrap", "ansi-yellow", "any", "anymatch", "argparse", "arr-diff", "arr-flatten", "arr-map", "arr-pluck", "arr-union", "array-filter", "array-find-index", "array-flatten", "array-includes", "array-map", "array-reduce", "array-sort", "array-union", "array-uniq", "array-unique", "arrayify-compact", "arrify", "ask-when", "asn1.js", "assemble-core", "assemble-fs", "assemble-handle", "assemble-loader", "assemble-render-file", "assemble-streams", "assert", "assertion-error", "assign-deep", "assign-symbols", "async", "async-array-reduce", "async-done", "async-each", "async-each-series", "async-helpers", "async-settle", "atob", "author-regex", "babel-code-frame", "babel-core", "babel-generator", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helpers", "babel-loader", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-preset-env", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "bach", "balanced-match", "base", "base-argv", "base-cli", "base-cli-process", "base-cli-schema", "base-compose", "base-config", "base-config-process", "base-config-schema", "base-cwd", "base-data", "base-engines", "base-env", "base-generators", "base-helpers", "base-namespace", "base-option", "base-pkg", "base-plugins", "base-project", "base-questions", "base-routes", "base-runtimes", "base-store", "base-task", "base64-js", "batch", "big.js", "binary-extensions", "bn.js", "body-parser", "bonjour", "brace-expansion", "braces", "brorand", "browser-stdout", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "bytes", "cache-base", "caller-path", "callsites", "camel-case", "camelcase", "camelcase-keys", "caniuse-lite", "center-align", "chai", "chalk", "chardet", "check-error", "choices-separator", "chokidar", "cipher-base", "circular-json", "class-utils", "cli-cursor", "cli-width", "cliui", "clone", "clone-buffer", "clone-deep", "clone-stats", "cloneable-readable", "co", "code-point-at", "collection-visit", "color-convert", "color-name", "commander", "common-config", "common-middleware", "common-questions", "commondir", "component-emitter", "composer", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "console-browserify", "constants-browserify", "contains-path", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-descriptor", "copy-task", "copyright-regex", "core-js", "core-util-is", "cp-file", "cpy", "cpy-cli", "create-ecdh", "create-hash", "create-hmac", "cross-env", "cross-spawn", "crypto-browserify", "eslint", "gh-pages", "mocha", "npm-run-all", "popper.js", "rimraf", "update", "updater-license", "webpack", "webpack-dev-server"], "https://github.com/ecohealthalliance/pubcrawler": ["beautifulsoup4", "epitator", "geopy", "isodate", "lazy", "lxml", "pandas", "pylru", "pymongo", "unicodecsv"], "https://github.com/underworldcode/stripy": ["numpy", "scipy"], "https://github.com/pycroscopy/pyUSID": ["cytoolz", "dask", "h5py", "numpy", "pillow", "psutil", "pytest", "sidpy", "six", "toolz", "unittest2", "numpydoc"], "https://github.com/jjnp/dss20-ue1": ["keras", "matplotlib", "numpy", "pandas", "scikit-learn", "tensorflow"], "https://github.com/pytroll/satpy": ["behave", "dask", "fsspec", "geoviews", "h5py", "imageio", "libtiff", "netcdf4", "numpy", "pillow", "pyhdf", "pykdtree", "pyproj", "pyresample", "pyyaml", "rasterio", "trollimage", "trollsift", "xarray", "zarr"], "https://github.com/psambit9791/jDSP": ["com.github.psambit9791:wavfile", "org.apache.commons:commons-math3", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-failsafe-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.jacoco:jacoco-maven-plugin", "org.junit.jupiter:junit-jupiter-api", "org.junit.jupiter:junit-jupiter-engine", "org.junit.platform:junit-platform-surefire-provider", "org.knowm.xchart:xchart", "org.sonatype.plugins:nexus-staging-maven-plugin", "uk.me.berndporr:iirj"], "https://github.com/pypeit/PypeIt": ["astropy", "configobj", "extension-helpers", "ginga", "ipython", "matplotlib", "numba", "numpy", "packaging", "pytest", "pyyaml", "scikit-learn", "scipy", "sphinx", "sphinx-automodapi", "linetools"], "https://github.com/MPI-Dortmund/sphire_classes_autoselect": ["h5py", "keras", "mrcfile", "numpy", "pillow", "scipy", "tqdm"], "https://github.com/PaulScotti/educortex": ["cloudpickle", "cython", "matplotlib", "neurosynth", "nibabel", "nilearn", "numpy", "pandas", "pycortex", "scikit-learn", "scikit-optimize", "scipy", "setuptools", "sklearn", "wheel"], "https://github.com/adaerr/pendent-drop": ["net.imagej:ij", "net.imagej:imagej"], "https://github.com/simpeg-research/Astic-2020-JointInversion": ["discretize", "h5py", "matplotlib", "mkl", "numpy", "pymatsolver", "scikit-learn", "scipy", "seaborn", "vectormath"], "https://github.com/cgvwzq/polca": ["commons-cli:commons-cli", "de.learnlib.distribution:learnlib-distribution", "de.learnlib:learnlib-parent", "org.apache.commons:commons-collections4"], "https://github.com/davidenunes/jnetwork": ["com.google.inject:guice", "commons-collections:commons-collections", "commons-configuration:commons-configuration", "junit:junit", "org.apache.commons:commons-lang3", "org.apache.commons:commons-math3", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin"], "https://github.com/dbbs-lab/glia": ["nrn-patch", "packaging", "requests", "setuptools", "appdirs"], "https://github.com/KarrLab/paper_2018_curr_opin_sys_biol": ["matplotlib", "natsort", "numpy", "pyexcel", "pyexcel-xlsx", "requests"], "https://github.com/RADAR-base/RADAR-Questionnaire": ["fastlane", "addressable", "atomos", "babosa", "CFPropertyList", "claide", "colored", "colored2", "commander-fastlane", "declarative", "declarative-option", "digest-crc", "domain_name", "dotenv", "emoji_regex", "excon", "faraday", "faraday-cookie_jar", "faraday_middleware", "fastimage", "fastlane-plugin-ionic", "gh_inspector", "google-api-client", "google-cloud-core", "google-cloud-env", "google-cloud-storage", "googleauth", "highline", "http-cookie", "httpclient", "json", "jwt", "memoist", "mime-types", "mime-types-data", "mini_magick", "multipart-post", "multi_json", "multi_xml", "nanaimo", "naturally", "os", "plist", "public_suffix", "representable", "retriable", "rouge", "rubyzip", "security", "signet", "simctl", "slack-notifier", "terminal-notifier", "terminal-table", "tty-cursor", "tty-screen", "tty-spinner", "uber", "unf", "unf_ext", "unicode-display_width", "word_wrap", "xcodeproj", "xcpretty", "xcpretty-travis-formatter", "@angular-devkit/build-angular", "@angular/animations", "@angular/cdk", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/http", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/platform-server", "@angular/router", "@auth0/angular-jwt", "@ionic-native/android-permissions", "@ionic-native/app-version", "@ionic-native/background-mode", "@ionic-native/barcode-scanner", "@ionic-native/core", "@ionic-native/device", "@ionic-native/dialogs", "@ionic-native/file", "@ionic-native/firebase", "@ionic-native/globalization", "@ionic-native/insomnia", "@ionic-native/keyboard", "@ionic-native/local-notifications", "@ionic-native/mobile-accessibility", "@ionic-native/splash-screen", "@ionic-native/status-bar", "@ionic-native/vibration", "@ionic-native/web-intent", "@ionic/app-scripts", "@ionic/storage", "@types/jasmine", "@types/jasminewd2", "@types/node", "angular-svg-round-progressbar", "autoprefixer", "avsc", "base64-js", "browserify", "codelyzer", "com-darryncampbell-cordova-plugin-intent", "cordova-android", "cordova-android-support-gradle-release", "cordova-custom-config", "cordova-ios", "cordova-lib", "cordova-media-with-compression", "cordova-plugin-android-permissions", "cordova-plugin-androidx", "cordova-plugin-androidx-adapter", "cordova-plugin-app-version", "cordova-plugin-background-mode-fixes", "cordova-plugin-badge", "cordova-plugin-camera", "cordova-plugin-device", "cordova-plugin-dialogs", "cordova-plugin-file", "cordova-plugin-firebase-with-upstream-messaging", "cordova-plugin-globalization", "cordova-plugin-insomnia", "cordova-plugin-ionic-keyboard", "cordova-plugin-ionic-webview", "cordova-plugin-local-notification", "cordova-plugin-network-information", "cordova-plugin-splashscreen", "cordova-plugin-statusbar", "cordova-plugin-vibration", "cordova-plugin-whitelist", "cordova-sqlite-storage", "cordova-support-android-plugin", "core-js", "eslint", "eslint-scope", "import-sort-cli", "import-sort-parser-babylon", "import-sort-parser-typescript", "import-sort-style-module", "ionic", "ionic-angular", "ionic-mocks", "ionicons", "jasmine", "jasmine-core", "jasmine-spec-reporter", "karma", "karma-browserify", "karma-browserstack-launcher", "karma-chrome-launcher", "karma-cli", "karma-coverage-istanbul-reporter", "karma-jasmine", "karma-jasmine-html-reporter", "karma-requirejs", "karma-scss-preprocessor", "karma-sourcemap-loader", "karma-spec-reporter", "karma-webpack", "moment", "ng2-fittext", "ngx-moment", "node-sass", "phonegap-plugin-barcodescanner", "phonegap-plugin-mobile-accessibility", "postcss", "postcss-cli", "postcss-scss", "postcss-sorting", "prettier", "reflect-metadata", "requirejs", "rxjs", "rxjs-compat", "rxjs-tslint", "semver", "smoothscroll-polyfill", "snyk", "stylefmt", "stylelint", "stylelint-config-standard", "tslint", "tslint-angular", "tslint-config-prettier", "tslint-config-standard", "typescript", "uuid", "watchify", "webpack", "webpack-sources", "yaml", "zone.js", "@angular-devkit/architect", "@angular-devkit/build-optimizer", "@angular-devkit/build-webpack", "@angular-devkit/core", "@angular-devkit/schematics", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-split-export-declaration", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/template", "@babel/traverse", "@babel/types", "@ionic/cli-framework", "@ionic/discover", "@ionic/utils-array", "@ionic/utils-fs", "@ionic/utils-network", "@ionic/utils-object", "@ionic/utils-process", "@ionic/utils-stream", "@ionic/utils-subprocess", "@ionic/utils-terminal", "@mrmlnc/readdir-enhanced", "@ngtools/webpack", "@nodelib/fs.stat", "@schematics/angular", "@schematics/update", "@types/cordova", "@types/events", "@types/glob", "@types/minimatch", "@types/source-list-map", "@types/unist", "@types/vfile", "@types/vfile-message", "@types/webpack-sources", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "@yarnpkg/lockfile", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "acorn-jsx", "agent-base", "agentkeepalive", "ajv", "ajv-errors", "ajv-keywords", "align-text", "amdefine", "android-versions", "ansi", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "app-root-path", "aproba", "are-we-there-yet", "argparse", "aria-query", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-find-index", "array-flatten", "array-union", "array-uniq", "array-unique", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-types", "ast-types-flow", "astral-regex", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "aws-sign2", "aws4", "axobject-query", "babel-code-frame", "babel-generator", "babel-messages", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "bail", "balanced-match", "base", "batch", "bcrypt-pbkdf", "big-integer", "big.js", "binary-extensions", "block-stream", "bluebird", "bn.js", "body", "body-parser", "bonjour", "bplist-creator", "bplist-parser", "brace-expansion", "braces", "brorand", "browser-resolve", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "builtins", "bytes", "cacache", "cache-base", "call-me-maybe", "caller-callsite", "caller-path", "callsites", "camelcase", "camelcase-keys", "caniuse-db", "caniuse-lite", "canonical-path", "caseless", "ccount", "center-align", "chalk", "character-entities", "character-entities-html4", "character-entities-legacy", "character-reference-invalid", "chardet", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "circular-dependency-plugin", "circular-json", "class-utils", "clean-css", "cli-cursor", "cli-width", "cliui", "clone", "clone-deep", "clone-regexp", "co", "code-point-at", "collapse-white-space", "collection-visit", "color-convert", "color-diff", "color-name", "colorette", "colorguard", "combined-stream", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map"], "https://github.com/DIRACGrid/DIRACOS": ["autopep8", "backports-lzma", "boto3", "certifi", "cmreshandler", "codecov", "diraccfg", "docutils", "elasticsearch-dsl", "fts3-rest", "funcsigs", "future", "futures", "gitpython", "hypothesis", "ipython", "jinja2", "lz4", "m2crypto", "matplotlib", "mock", "mysql-python", "numpy", "pexpect", "pillow", "psutil", "pyasn1", "pyasn1-modules", "pygments", "pylint", "pyparsing", "pytest", "pytest-cov", "pytest-mock", "python-json-logger", "pytz", "readline", "requests", "simplejson", "six", "sqlalchemy", "stomp-py", "subprocess32", "suds-jurko", "tornado", "typing", "uproot", "xxhash"], "https://github.com/nichtich/wikidata-taxonomy": ["babel-preset-es2015", "babelify", "beacon-links", "browserify", "browserify-shim", "chai", "chalk", "commander", "mocha", "npx", "request", "request-promise-native", "standard", "uglify-es", "wikidata-sdk"], "https://github.com/Kitware/vtk-js": ["babel-plugin-istanbul", "blueimp-md5", "commander", "dotenv", "gl-matrix", "jszip", "karma", "karma-chrome-launcher", "karma-coverage", "karma-firefox-launcher", "karma-junit-reporter", "karma-tap", "karma-tap-pretty-reporter", "karma-webpack", "kw-doc", "kw-web-suite", "node-pre-gyp", "pako", "request", "resemblejs", "seedrandom", "shelljs", "tap-markdown", "tap-spec", "tape", "tape-catch", "webvr-polyfill", "webworker-promise", "wslink", "xml2js", "xmlbuilder"], "https://github.com/tanghaibao/goatools": ["docopt", "nose", "numpy", "pandas", "pydot", "pytest", "pytest-cov", "requests", "scipy", "statsmodels", "wget", "xlrd", "xlsxwriter"], "https://github.com/clld/clld": ["alembic", "arrow", "babel", "clldutils", "colander", "csvw", "markupsafe", "nameparser", "paginate", "purl", "pycldf", "pyramid", "pyramid-mako", "pyramid-tm", "python-dateutil", "pytz", "rdflib", "requests", "setuptools", "sqlalchemy", "waitress", "webassets", "webhelpers2", "xlwt", "yuicompressor", "zope-sqlalchemy", "appdirs", "atomicwrites", "certifi", "chardet", "colorlog", "configparser", "decorator", "idna", "isodate", "jdcal", "lingpy", "markdown", "networkx", "numpy", "openpyxl", "pluggy", "py", "pybtex", "pyclts", "pyconcepticon", "pycountry", "pyglottolog", "pytest", "regex", "rfc3986", "six", "tabulate", "termcolor", "tqdm", "uritemplate", "urllib3", "wcwidth", "xlrd"], "https://github.com/tdurieux/Travis-Listener": ["accepts", "ajv", "array-flatten", "asn1", "assert-plus", "async-limiter", "asynckit", "aws-sign2", "aws4", "bcrypt-pbkdf", "body-parser", "bytes", "caseless", "combined-stream", "content-disposition", "content-type", "cookie", "cookie-parser", "cookie-signature", "core-util-is", "dashdash", "debug", "delayed-stream", "depd", "destroy", "dockerstats", "ecc-jsbn", "ee-first", "encodeurl", "es6-promise", "escape-html", "etag", "express", "express-http-proxy", "extend", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "finalhandler", "forever-agent", "form-data", "forwarded", "fresh", "getpass", "har-schema", "har-validator", "http-errors", "http-signature", "iconv-lite", "inherits", "ipaddr.js", "is-typedarray", "isstream", "jsbn", "json-schema", "json-schema-traverse", "json-stringify-safe", "jsprim", "media-typer", "merge-descriptors", "method-override", "methods", "mime", "mime-db", "mime-types", "ms", "negotiator", "oauth-sign", "on-finished", "parseurl", "path-to-regexp", "performance-now", "pidusage", "proxy-addr", "psl", "punycode", "qs", "range-parser", "raw-body", "request", "safe-buffer", "safer-buffer", "send", "serve-static", "setprototypeof", "sshpk", "statuses", "toidentifier", "tough-cookie", "tunnel-agent", "tweetnacl", "type-is", "unpipe", "uri-js", "utils-merge", "uuid", "vary", "verror", "ws", "async", "github", "lodash", "sprintf-js", "travis-ci", "underscore.string", "util-deprecate", "ansi-regex", "diff-match-patch", "diff-match-patch-line-and-word", "strip-ansi", "bson", "mongodb", "require_optional", "resolve-from", "semver", "agenda", "compressible", "compression", "cron", "date.js", "diff", "human-interval", "memory-pager", "moment", "moment-timezone", "mongodb-core", "on-headers", "saslprep", "sparse-bitfield"], "https://github.com/scivision/LCPFCT": ["meson"], "https://github.com/dr-rodriguez/Kinematics-App": ["astrodbkit", "astropy", "astroquery", "bokeh", "flask", "numpy", "pandas"], "https://github.com/starkiller-astro/Microphysics": ["breathe", "ipywidgets", "jupyter", "more-itertools", "nbsphinx", "numpy", "numpydoc", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex", "matplotlib"], "https://github.com/Parallel-in-Time/PyPinT": ["sphinx", "sphinx-rtd-theme", "configobj", "logbook", "matplotlib", "nose", "numpy", "scipy", "coverage", "nose-cover3"], "https://github.com/ufz/ogs-data": ["tespy"], "https://github.com/vlouf/dealias": ["astropy", "numba", "numpy"], "https://github.com/RMLio/rmlmapper-java": ["ch.qos.logback:logback-classic", "ch.vorburger.mariaDB4j:mariaDB4j", "com.fasterxml.jackson.core:jackson-core", "com.github.bjdmeest:hdt-java", "com.github.fnoio:grel-functions-java", "com.jayway.jsonpath:json-path", "com.microsoft.sqlserver:mssql-jdbc", "com.spotify:docker-client", "commons-cli:commons-cli", "commons-lang:commons-lang", "commons-validator:commons-validator", "javax.xml.parsers:jaxp-api", "junit:junit", "mysql:mysql-connector-java", "org.apache.commons:commons-csv", "org.apache.jena:apache-jena-libs", "org.apache.jena:jena-fuseki-embedded", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:buildnumber-maven-plugin", "org.eclipse.jetty:jetty-security", "org.eclipse.jetty:jetty-server", "org.eclipse.rdf4j:rdf4j-runtime", "org.sonatype.plugins:nexus-staging-maven-plugin", "postgresql:postgresql"], "https://github.com/pysal/splot": ["descartes", "esda", "geopandas", "giddy", "libpysal", "mapclassify", "matplotlib", "numpy", "seaborn", "spreg", "bokeh", "coverage", "coveralls", "ipywidgets", "jupyter", "nbconvert", "nose", "nose-progressive", "numpydoc", "sphinx", "sphinx-bootstrap-theme", "sphinxcontrib-bibtex"], "https://github.com/SuLab/Wikidata-phenomizer": ["backcall", "bleach", "certifi", "chardet", "decorator", "defusedxml", "entrypoints", "idna", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "markupsafe", "mistune", "mwoauth", "nbconvert", "nbformat", "notebook", "numpy", "oauthlib", "pandas", "pandocfilters", "parso", "pexpect", "pickleshare", "prometheus-client", "prompt-toolkit", "ptyprocess", "pygments", "pyjwt", "python-dateutil", "pytz", "pyzmq", "qtconsole", "requests", "requests-oauthlib", "send2trash", "simplejson", "six", "terminado", "testpath", "tornado", "tqdm", "traitlets", "urllib3", "wcwidth", "webencodings", "widgetsnbextension", "wikidataintegrator", "cycler", "kiwisolver", "matplotlib", "matplotlib-venn", "pyparsing", "scipy", "seaborn", "venn"], "https://github.com/jaredsampson/pymolprobity": ["coverage", "funcsigs", "mock", "nose", "pbr", "six"], "https://github.com/casimp/pyxe": ["h5py", "mock", "nose", "numba", "numpy", "scipy"], "https://github.com/imodpasteur/pySPIRALTAP": ["numpy"], "https://github.com/ufbmi/mdc_meter": ["grunt", "grunt-angular-templates", "grunt-autoprefixer", "grunt-concurrent", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-htmlmin", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-filerev", "grunt-google-cdn", "grunt-newer", "grunt-ng-annotate", "grunt-svgmin", "grunt-usemin", "grunt-wiredep", "jit-grunt", "jshint-stylish", "time-grunt"], "https://github.com/spectralpython/spectral": ["numpy"], "https://github.com/openvax/pyensembl": ["datacache", "gtfparse", "memoized-property", "nose", "numpy", "pandas", "pylint", "serializable", "six", "tinytimer", "typechecks"], "https://github.com/SMRUCC/GCModeller": ["distributions", "eslint", "summary", "tap", "MySql.ConnectorNET.Data", "Newtonsoft.Json", "sciBASIC", "System.ValueTuple", "VB.httpd", "ModernUI.WPF"], "https://github.com/DyogenIBENS/SCORPIOS": ["sphinx", "sphinx-prompt", "sphinx-rtd-theme"], "https://github.com/benchoufi/DocChain": ["autoprefixer-core", "aws-sdk", "aws-sdk-mock", "grunt", "grunt-angular-templates", "grunt-concurrent", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-htmlmin", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-filerev", "grunt-google-cdn", "grunt-jscs", "grunt-newer", "grunt-ng-annotate", "grunt-postcss", "grunt-svgmin", "grunt-usemin", "grunt-wiredep", "jit-grunt", "jshint-stylish", "time-grunt"], "https://github.com/krassowski/complex-upset": ["jupyterlab", "pandas", "pydataset", "rpy2"], "https://github.com/d-tear/SIAL": ["commons-io:commons-io", "io.scif:scifio-bf-compat", "junit:junit-dep", "net.imagej:imagej", "org.apache.commons:commons-csv", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-jar-plugin", "sc.fiji:fiji"], "https://github.com/arkottke/pyrvt": ["matplotlib", "numba", "numpy", "pyexcel", "pyexcel-io", "pyexcel-ods", "pyexcel-xls", "pyexcel-xlsx", "scipy", "setuptools", "codacy-coverage", "cryptography", "flake8", "pre-commit", "pydocstyle", "pysra", "pytest", "pytest-cov", "pytest-flake8", "pytest-runner", "watchdog", "wheel", "jinja2", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex"], "https://github.com/jensdebruijn/Multimodal-flood-tweet-classification": ["dask", "fasttext", "gdal", "geopandas", "matplotlib", "netcdf4", "numpy", "openpyxl", "pandas", "psycopg2", "pysftp", "pytorch", "simplejson", "tensorflow-gpu", "twitterapi", "xarray", "xlrd"], "https://github.com/let-unimi/liblet": ["antlr4-python3-runtime", "graphviz", "ipywidgets", "jupyter", "jupyter-full-width", "liblet"], "https://github.com/scikit-learn-contrib/hdbscan": ["cython", "joblib", "numpy", "scikit-learn", "scipy", "six", "nose"], "https://github.com/arichar6/turbopy": ["numpy", "qtoml", "scipy"], "https://github.com/SystemsGenetics/GEMmaker": ["matplotlib", "multiqc", "numpy", "pandas", "xmltodict"], "https://github.com/CentreForCorpusResearch/clic": ["alembic", "beaker", "flask", "flask-debugtoolbar", "flask-login", "flask-migrate", "flask-script", "flask-security", "flask-sqlalchemy", "mako", "nltk", "pandas", "sqlalchemy", "uwsgi", "ipython", "lxml", "ipdb", "pytest", "selenium"], "https://github.com/benbovy/xarray-simlab": ["attrs", "dask", "numpy", "pytest", "xarray", "zarr"], "https://github.com/Zettlr/Zettlr": ["@clr/icons", "@electron-forge/cli", "@electron-forge/plugin-webpack", "@marshallofsound/webpack-asset-relocator-loader", "@teamsupercell/typings-for-css-modules-loader", "@types/electron-devtools-installer", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "@zettlr/citr", "adm-zip", "archiver", "astrocite", "bcp-47", "chalk", "chart.js", "chokidar", "citeproc", "codemirror", "command-exists", "copy-webpack-plugin", "cross-env", "css-loader", "csso", "electron", "electron-builder", "electron-devtools-installer", "electron-notarize", "eslint", "eslint-config-standard", "eslint-config-standard-with-typescript", "eslint-loader", "eslint-plugin-import", "eslint-plugin-jquery", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-standard", "eslint-plugin-vue", "file-loader", "fork-ts-checker-webpack-plugin", "got", "handlebars", "handlebars-loader", "joplin-turndown", "joplin-turndown-plugin-gfm", "jquery", "jquery-ui", "jsdom", "katex", "less-loader", "lorem-ipsum", "md5", "mermaid", "mocha", "moment", "node-loader", "nspell", "on-change", "raw-loader", "reveal.js", "rimraf", "sanitize-filename", "semver", "showdown", "style-loader", "svg-inline-loader", "tippy.js", "ts-loader", "typescript", "typings-for-css-modules-loader", "uglify-js", "uuid", "v8-compile-cache", "vue", "vue-loader", "vue-template-compiler", "vue-virtual-scroller", "vuex", "yaml", "7zip-bin", "@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@braintree/sanitize-url", "@develar/schema-utils", "@electron-forge/async-ora", "@electron-forge/core", "@electron-forge/installer-base", "@electron-forge/installer-darwin", "@electron-forge/installer-deb", "@electron-forge/installer-dmg", "@electron-forge/installer-exe", "@electron-forge/installer-linux", "@electron-forge/installer-rpm", "@electron-forge/installer-zip", "@electron-forge/maker-base", "@electron-forge/plugin-base", "@electron-forge/publisher-base", "@electron-forge/shared-types", "@electron-forge/template-base", "@electron-forge/template-typescript", "@electron-forge/template-typescript-webpack", "@electron-forge/template-webpack", "@electron-forge/web-multi-logger", "@electron/get", "@eslint/eslintrc", "@malept/cross-spawn-promise", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@npmcli/move-file", "@popperjs/core", "@sindresorhus/is", "@szmarczak/http-timer", "@types/anymatch", "@types/cacheable-request", "@types/color-name", "@types/debug", "@types/fs-extra", "@types/glob", "@types/html-minifier-terser", "@types/http-cache-semantics", "@types/json-schema", "@types/json5", "@types/keyv", "@types/minimatch", "@types/node", "@types/parse-json", "@types/responselike", "@types/source-list-map", "@types/tapable", "@types/uglify-js", "@types/webpack", "@types/webpack-sources", "@types/yargs", "@types/yargs-parser", "@types/yauzl", "@typescript-eslint/experimental-utils", "@typescript-eslint/scope-manager", "@typescript-eslint/types", "@typescript-eslint/typescript-estree", "@typescript-eslint/visitor-keys", "@vue/component-compiler-utils", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "abbrev", "accepts", "acorn", "acorn-globals", "acorn-jsx", "acorn-walk", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "ansi-align", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "app-builder-bin", "app-builder-lib", "aproba", "archiver-utils", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-find-index", "array-flatten", "array-includes", "array-union", "array-unique", "array.prototype.flat", "array.prototype.map", "asar", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "astral-regex", "astrocite-bibtex", "astrocite-core", "astrocite-eutils", "astrocite-googlebooks", "astrocite-ris", "async", "async-each", "async-exit-hook", "async-limiter", "asynckit", "at-least-node", "atob", "author-regex", "aws-sign2", "aws4", "balanced-match", "base", "base64-js", "bcrypt-pbkdf", "big.js", "binary-extensions", "bl", "bluebird", "bluebird-lst", "bn.js", "body-parser", "boolbase", "boolean", "boxen", "brace-expansion", "braces", "brorand", "browser-process-hrtime", "browser-stdout", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-crc32", "buffer-fill", "buffer-from", "buffer-xor", "builder-util", "builder-util-runtime", "builtin-status-codes", "bytes", "cacache", "cache-base", "cacheable-lookup", "cacheable-request", "callsites", "camel-case", "camelcase", "camelcase-keys", "caseless", "chardet", "charenc", "chartjs-color", "chartjs-color-string", "chownr", "chrome-trace-event", "chromium-pickle-js", "ci-info", "cipher-base", "class-utils", "clean-css", "clean-stack", "cli-boxes", "cli-cursor", "cli-spinners", "cli-width", "cliui", "clone", "clone-deep", "clone-response", "code-point-at", "collection-visit", "color-convert", "color-name", "colors", "colour", "combined-stream", "commander", "commondir", "compare-version", "component-emitter", "compress-commons", "concat-map", "concat-stream", "config-chain", "configstore", "console-browserify", "console-control-strings", "consolidate", "constants-browserify", "contains-path", "content-disposition", "content-type", "cookie", "cookie-signature"], "https://github.com/coreylammie/MemTorch": ["matplotlib", "numpy", "pandas", "scipy", "seaborn", "sklearn", "torch", "nbsphinx", "torchvision"], "https://github.com/milaboratory/mitools": ["com.beust:jcommander", "com.milaboratory:milib", "junit:junit", "org.apache.maven.plugins:maven-antrun-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:buildnumber-maven-plugin", "org.mockito:mockito-all", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/faustusdotbe/topic-modeling-tool-FR": ["cc.mallet:mallet", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin"], "https://github.com/RADAR-base/ManagementPortal": ["@angular/animations", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/http", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/platform-server", "@angular/router", "@ng-bootstrap/ng-bootstrap", "@types/jasmine", "@types/node", "@types/selenium-webdriver", "add-asset-html-webpack-plugin", "angular2-template-loader", "angularx-qrcode", "awesome-typescript-loader", "base-href-webpack-plugin", "bootstrap", "browser-sync", "browser-sync-webpack-plugin", "codelyzer", "copy-webpack-plugin", "core-js", "css-loader", "del", "event-stream", "exports-loader", "file-loader", "font-awesome", "generator-jhipster", "html-loader", "html-webpack-plugin", "jasmine-core", "jasmine-reporters", "jasmine-spec-reporter", "jquery", "karma", "karma-chrome-launcher", "karma-coverage", "karma-intl-shim", "karma-jasmine", "karma-junit-reporter", "karma-notify-reporter", "karma-phantomjs-launcher", "karma-remap-istanbul", "karma-sourcemap-loader", "karma-webpack", "lazypipe", "lodash", "map-stream", "material-design-icons", "mini-css-extract-plugin", "ng-jhipster", "ngx-cookie-service", "ngx-infinite-scroll", "ngx-webstorage", "node-sass", "phantomjs-prebuilt", "postcss-loader", "protractor", "protractor-jasmine2-screenshot-reporter", "proxy-middleware", "reflect-metadata", "rimraf", "run-sequence", "rxjs", "rxjs-compat", "sass-loader", "sourcemap-istanbul-instrumenter-loader", "string-replace-webpack-plugin", "style-loader", "swagger-ui", "tether", "to-string-loader", "ts-node", "tslint", "tslint-loader", "typescript", "webpack", "webpack-cli", "webpack-dev-server", "webpack-merge", "webpack-notifier", "webpack-visualizer-plugin", "write-file-webpack-plugin", "yargs", "zone.js", "@angular-devkit/build-optimizer", "@angular-devkit/core", "@angular-devkit/schematics", "@babel/code-frame", "@babel/highlight", "@mrmlnc/readdir-enhanced", "@ngtools/json-schema", "@ngtools/webpack", "@nodelib/fs.stat", "@schematics/angular", "@types/events", "@types/glob", "@types/minimatch", "@types/q", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "adm-zip", "after", "agent-base", "ajv", "ajv-errors", "ajv-keywords", "align-text", "alphanum-sort", "amdefine", "ansi", "ansi-colors", "ansi-cyan", "ansi-escapes", "ansi-gray", "ansi-html", "ansi-red", "ansi-regex", "ansi-styles", "ansi-wrap", "ansicolors", "anymatch", "app-root-path", "aproba", "are-we-there-yet", "arg", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-find-index", "array-flatten", "array-includes", "array-slice", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-types", "async", "async-each", "async-each-series", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "babel-code-frame", "babel-generator", "babel-messages", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "backo2", "balanced-match", "base", "base62", "base64-arraybuffer", "base64-js", "base64id", "batch", "bcrypt-pbkdf", "beeper", "better-assert", "big.js", "bin-version", "bin-version-check", "binary-extensions", "binaryextensions", "blob", "block-stream", "blocking-proxy", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "boom", "boxen", "brace-expansion", "braces", "brorand", "browser-sync-ui", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "browserstack", "bs-recipes", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "bytes", "cacache", "cache-base", "call-me-maybe", "caller-callsite", "caller-path", "callsite", "callsites", "camel-case", "camelcase", "camelcase-keys", "caniuse-api", "caniuse-db", "caniuse-lite", "capture-stack-trace", "cardinal", "caseless", "center-align", "chalk", "cheerio", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "circular-dependency-plugin", "clap", "class-extend", "class-utils", "clean-css", "cli-boxes", "cli-cursor", "cli-list", "cli-table", "cli-usage", "cli-width", "cliui", "clone", "clone-buffer", "clone-deep", "clone-regexp", "clone-stats", "cloneable-readable", "co", "coa", "code-point-at", "collection-visit", "color", "color-convert", "color-name", "color-string", "color-support", "colormin", "colors", "combined-stream", "commander", "common-tags", "commondir", "commoner", "component-bind", "component-emitter", "component-inherit", "compressible", "compression", "concat-map", "concat-stream", "config-chain", "configstore", "connect", "connect-history-api-fallback", "console-browserify", "console-control-strings", "constants-browserify", "content-disposition", "content-type", "convert-source-map"], "https://github.com/DocNow/twarc": ["pytest", "python-dotenv", "mock", "python-dateutil", "requests-oauthlib", "unicodecsv"], "https://github.com/samapriya/gee_asset_manager_addon": ["beautifulsoup4", "earthengine-api", "logzero", "requests"], "https://github.com/moorepants/DynamicistToolKit": ["numpydoc", "matplotlib", "nose", "numpy", "scipy", "coverage", "ipython", "sphinx"], "https://github.com/Clinical-Genomics/scout": ["black", "invoke", "mkdocs", "mkdocs-material", "mongomock", "pytest", "pytest-flask", "pytest-mock", "responses", "authlib", "beautifulsoup4", "click", "coloredlogs", "cyvcf2", "flask", "flask-babel", "flask-bootstrap", "flask-debugtoolbar", "flask-ldap3-login", "flask-login", "flask-mail", "flask-markdown", "flask-weasyprint", "flask-wtf", "intervaltree", "livereload", "path-py", "pathlib", "ped-parser", "pymongo", "python-dateutil", "pyyaml", "query-phenomizer", "tabulate", "weasyprint", "werkzeug", "xlsxwriter"], "https://github.com/nschloe/pygmsh": ["mock", "numpy", "sphinxcontrib-napoleon"], "https://github.com/varungohil/Generalizing-Lottery-Tickets": ["numpy", "torch", "torchvision"], "https://github.com/powerpak/pathogendb-pipeline": ["rake", "rspec", "diff-lcs", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec-support"], "https://github.com/Capitains/HookTest": ["ansicolors", "jingtrang", "mock", "mycapytain", "prettytable", "requests", "six", "validators"], "https://github.com/chanzuckerberg/cellxgene": ["github-pages", "jekyll-relative-links", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-builder-react-jsx-experimental", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-function-bind", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-bigint", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-function-bind", "@babel/plugin-syntax-import-meta", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-constant-elements", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-development", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-react-pure-annotations", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/preset-react", "@babel/register", "@babel/runtime", "@babel/runtime-corejs2", "@babel/runtime-corejs3", "@babel/template", "@babel/traverse", "@babel/types", "@bcoe/v8-coverage", "@blueprintjs/core", "@blueprintjs/eslint-plugin", "@blueprintjs/icons", "@blueprintjs/select", "@cnakazawa/watch", "@eslint/eslintrc", "@hapi/address", "@hapi/bourne", "@hapi/hoek", "@hapi/joi", "@hapi/topo", "@istanbuljs/load-nyc-config", "@istanbuljs/schema", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/globals", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@jimp/bmp", "@jimp/core", "@jimp/custom", "@jimp/gif", "@jimp/jpeg", "@jimp/plugin-blit", "@jimp/plugin-blur", "@jimp/plugin-circle", "@jimp/plugin-color", "@jimp/plugin-contain", "@jimp/plugin-cover", "@jimp/plugin-crop", "@jimp/plugin-displace", "@jimp/plugin-dither", "@jimp/plugin-fisheye", "@jimp/plugin-flip", "@jimp/plugin-gaussian", "@jimp/plugin-invert", "@jimp/plugin-mask", "@jimp/plugin-normalize", "@jimp/plugin-print", "@jimp/plugin-resize", "@jimp/plugin-rotate", "@jimp/plugin-scale", "@jimp/plugin-shadow", "@jimp/plugin-threshold", "@jimp/plugins", "@jimp/png", "@jimp/tiff", "@jimp/types", "@jimp/utils", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@npmcli/move-file", "@sentry/cli", "@sentry/webpack-plugin", "@sinonjs/commons", "@sinonjs/fake-timers", "@tootallnate/once", "@types/anymatch", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/color-name", "@types/dom4", "@types/events", "@types/favicons", "@types/glob", "@types/graceful-fs", "@types/html-minifier-terser", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/json-schema", "@types/json5", "@types/minimatch", "@types/node", "@types/normalize-package-data", "@types/parse-json", "@types/prettier", "@types/q", "@types/source-list-map", "@types/stack-utils", "@types/tapable", "@types/uglify-js", "@types/webpack", "@types/webpack-sources", "@types/yargs", "@types/yargs-parser", "@types/yauzl", "@typescript-eslint/experimental-utils", "@typescript-eslint/scope-manager", "@typescript-eslint/types", "@typescript-eslint/typescript-estree", "@typescript-eslint/visitor-keys", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "abort-controller", "accepts", "acorn", "acorn-globals", "acorn-jsx", "acorn-walk", "agent-base", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "alphanum-sort", "ansi-align", "ansi-colors", "ansi-escapes", "babel-eslint", "babel-jest", "babel-loader", "babel-preset-modern-browsers", "chalk", "cheerio", "clean-css", "clean-webpack-plugin", "codecov", "connect-history-api-fallback", "core-js", "css-loader", "d3", "d3-scale-chromatic", "eslint", "eslint-config-airbnb", "eslint-config-prettier", "eslint-loader", "eslint-plugin-compat", "eslint-plugin-eslint-comments", "eslint-plugin-filenames", "eslint-plugin-import", "eslint-plugin-jest", "eslint-plugin-jsx-a11y", "eslint-plugin-prettier", "eslint-plugin-react", "eslint-plugin-react-hooks", "expect-puppeteer", "express", "fastestsmallesttextencoderdecoder", "favicons-webpack-plugin", "file-loader", "flatbuffers", "fuzzysort", "gl-mat4", "gl-matrix", "gl-vec3", "html-webpack-plugin", "husky", "is-number", "jest", "jest-circus", "jest-environment-puppeteer", "jest-fetch-mock", "jest-puppeteer", "json-loader", "lint-staged", "lodash", "memoize-one", "mini-css-extract-plugin", "obsolete-webpack-plugin", "optimize-css-assets-webpack-plugin", "prettier", "puppeteer", "react", "react-async", "react-dom", "react-flip-toolkit", "react-helmet", "react-icons", "react-redux", "redux", "redux-thunk", "regenerator-runtime", "regl", "rimraf", "script-ext-html-webpack-plugin", "serve-favicon", "style-loader", "sw-precache-webpack-plugin", "terser-webpack-plugin", "tinyqueue", "url-loader", "webpack", "webpack-cli", "webpack-dev-middleware", "webpack-merge", "whatwg-fetch", "authlib", "black", "bumpversion", "parameterized", "psycopg2-binary", "pytest", "python-jose", "scanpy", "twine", "louvain", "python-igraph", "anndata", "boto3", "click", "fastobo", "flask", "flask-compress", "flask-cors", "flask-restful", "flask-server-timing", "flask-talisman", "flatten-dict", "fsspec", "gunicorn", "numba", "numpy", "packaging", "pandas", "pyyaml", "requests", "s3fs", "scipy", "sqlalchemy", "tiledb", "locustio"], "https://github.com/nf-core/tools": ["black", "mock", "pytest", "pytest-cov", "pytest-datafiles", "click", "cookiecutter", "gitpython", "jinja2", "jsonschema", "pyinquirer", "pyyaml", "requests", "requests-cache", "rich", "tabulate"], "https://github.com/ListerLab/TEPID": ["nose", "numpy", "pandas", "pybedtools", "pysam"], "https://github.com/fishstamp82/moltools": ["cython", "loprop", "matplotlib", "numpy", "scipy"], "https://github.com/University-of-Potsdam-MM/Mobile.UP": ["@angular-devkit/architect", "@angular-devkit/build-angular", "@angular-devkit/build-optimizer", "@angular-devkit/build-webpack", "@angular-devkit/core", "@angular-devkit/schematics", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/http", "@angular/language-service", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/router", "@asymmetrik/ngx-leaflet", "@babel/code-frame", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-split-export-declaration", "@babel/highlight", "@babel/parser", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@compodoc/compodoc", "@compodoc/ngd-core", "@compodoc/ngd-transformer", "@dsherret/to-absolute-glob", "@ionic-native/app-availability", "@ionic-native/calendar", "@ionic-native/call-number", "@ionic-native/contacts", "@ionic-native/core", "@ionic-native/device", "@ionic-native/email-composer", "@ionic-native/file", "@ionic-native/geolocation", "@ionic-native/http", "@ionic-native/in-app-browser", "@ionic-native/keyboard", "@ionic-native/launch-navigator", "@ionic-native/network", "@ionic-native/safari-view-controller", "@ionic-native/splash-screen", "@ionic-native/status-bar", "@ionic/angular", "@ionic/angular-toolkit", "@ionic/core", "@ionic/storage", "@mrmlnc/readdir-enhanced", "@ngtools/webpack", "@ngx-translate/core", "@ngx-translate/http-loader", "@nodelib/fs.stat", "@schematics/angular", "@schematics/update", "@types/cordova", "@types/geojson", "@types/jasmine", "@types/jasminewd2", "@types/leaflet", "@types/leaflet-rotatedmarker", "@types/node", "@types/q", "@types/selenium-webdriver", "@types/source-list-map", "@types/webpack-sources", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "@yarnpkg/lockfile", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "acorn-node", "acorn-walk", "adm-zip", "after", "agent-base", "agentkeepalive", "ajv", "ajv-errors", "ajv-keywords", "align-text", "amdefine", "android-versions", "ansi", "ansi-colors", "ansi-gray", "ansi-html", "ansi-regex", "ansi-styles", "ansi-wrap", "anymatch", "apache-crypt", "apache-md5", "app-root-path", "append-transform", "aproba", "are-we-there-yet", "arg", "argparse", "aria-query", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-find-index", "array-flatten", "array-from", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-transform", "ast-types", "ast-types-flow", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axobject-query", "babel-code-frame", "babel-generator", "babel-messages", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64-js", "base64id", "basic-auth", "batch", "bcrypt-pbkdf", "bcryptjs", "better-assert", "big-integer", "big.js", "binary-extensions", "blob", "block-stream", "blocking-proxy", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "bplist-creator", "bplist-parser", "brace-expansion", "braces", "brfs", "brorand", "brotli", "browser-resolve", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-optional", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "browserstack", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-equal", "buffer-fill", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "builtins", "bytes", "cacache", "cache-base", "call-me-maybe", "call-number", "caller-callsite", "caller-path", "callsite", "callsites", "camelcase", "camelcase-keys", "caniuse-lite", "canonical-path", "caseless", "center-align", "chalk", "cheerio", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "circular-dependency-plugin", "class-utils", "clean-css", "cli-cursor", "cli-width", "cliui", "clone", "clone-deep", "co", "code-block-writer", "code-point-at", "codelyzer", "collection-visit", "color-convert", "angular-gridster2", "cordova-android", "cordova-browser", "cordova-ios", "cordova-plugin-actionsheet", "cordova-plugin-advanced-http", "cordova-plugin-appavailability", "cordova-plugin-calendar", "cordova-plugin-contacts", "cordova-plugin-device", "cordova-plugin-dialogs", "cordova-plugin-email-composer", "cordova-plugin-file", "cordova-plugin-geolocation", "cordova-plugin-inappbrowser", "cordova-plugin-ionic-keyboard", "cordova-plugin-ionic-webview", "cordova-plugin-network-information", "cordova-plugin-safariviewcontroller", "cordova-plugin-splashscreen", "cordova-plugin-statusbar", "cordova-plugin-whitelist", "cordova-sqlite-storage", "core-js", "country-language", "delayed-loop", "font-awesome", "geojson", "hammerjs", "i18next-client", "ionic-cache", "ionic-logging-service", "ionic2-calendar", "jasmine-core", "jasmine-spec-reporter", "jquery", "karma", "karma-chrome-launcher", "karma-coverage-istanbul-reporter", "karma-jasmine", "karma-jasmine-html-reporter", "leaflet", "leaflet-rotatedmarker", "leaflet-search", "luxon", "moment", "mx.ferreyra.callnumber", "ngx-order-pipe", "opening_hours", "protractor", "rrule", "rxjs", "stream", "sw-toolbox", "timers", "ts-node", "tslib", "tslint", "typescript", "uk.co.workingedge.phonegap.plugin.launchnavigator", "xml2js", "zone.js"], "https://github.com/blueskyjunkie/timetools": ["matplotlib", "numpy", "scipy"], "https://github.com/biojava/biojava": ["com.sun.xml.bind:jaxb-core", "com.sun.xml.bind:jaxb-impl", "javax.activation:activation", "javax.xml.bind:jaxb-api", "junit:junit", "net.sf:stat-scm", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.logging.log4j:log4j-slf4j-impl", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-install-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-jarsigner-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-jxr-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.biojava.thirdparty:forester", "org.codehaus.mojo:buildnumber-maven-plugin", "org.codehaus.mojo:findbugs-maven-plugin", "org.jvnet.jaxb2.maven2:maven-jaxb2-plugin", "org.slf4j:slf4j-api", "org.sonatype.plugins:nexus-staging-maven-plugin", "net.sf.json-lib:json-lib", "org.biojava:biojava-core", "com.google.guava:guava", "junit-addons:junit-addons", "org.apache.maven.plugins:maven-compiler-plugin", "org.biojava:biojava-alignment", "org.apache.maven.plugins:maven-assembly-plugin", "org.biojava:biojava-structure", "org.apache.commons:commons-math", "java3d:vecmath", "org.jgrapht:jgrapht-core", "org.rcsb:ciftools-java", "org.rcsb:mmtf-api", "org.rcsb:mmtf-codec", "org.rcsb:mmtf-serialization", "xmlunit:xmlunit", "net.sourceforge.jmol:jmol", "org.biojava:jcolorbrewer", "org.biojava:biojava-structure-gui"], "https://github.com/resal81/PyTopol": ["pytest"], "https://github.com/digitallinguistics/word-aligner": ["@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@types/color-name", "acorn", "acorn-jsx", "ajv", "ansi-colors", "ansi-regex", "ansi-styles", "anymatch", "argparse", "array.prototype.map", "astral-regex", "balanced-match", "binary-extensions", "brace-expansion", "braces", "browser-stdout", "callsites", "camelcase", "chalk", "chokidar", "cliui", "color-convert", "color-name", "concat-map", "cross-spawn", "debug", "decamelize", "deep-is", "define-properties", "diff", "doctrine", "emoji-regex", "enquirer", "es-abstract", "es-array-method-boxes-properly", "es-get-iterator", "es-to-primitive", "escape-string-regexp", "eslint", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "expect.js", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "file-entry-cache", "fill-range", "find-up", "flat", "flat-cache", "flatted", "fs.realpath", "fsevents", "function-bind", "functional-red-black-tree", "get-caller-file", "glob", "glob-parent", "globals", "growl", "has", "has-flag", "has-symbols", "he", "ignore", "import-fresh", "imurmurhash", "inflight", "inherits", "is-arguments", "is-binary-path", "is-buffer", "is-callable", "is-date-object", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-map", "is-number", "is-regex", "is-set", "is-string", "is-symbol", "isarray", "isexe", "iterate-iterator", "iterate-value", "js-tokens", "js-yaml", "json-schema-traverse", "json-stable-stringify-without-jsonify", "levn", "locate-path", "lodash", "log-symbols", "minimatch", "minimist", "mkdirp", "mocha", "ms", "natural-compare", "normalize-path", "object-inspect", "object-keys", "object.assign", "once", "optionator", "p-limit", "p-locate", "p-try", "parent-module", "path-exists", "path-is-absolute", "path-key", "picomatch", "prelude-ls", "progress", "promise.allsettled", "punycode", "readdirp", "regexpp", "require-directory", "require-main-filename", "resolve-from", "rimraf", "semver", "serialize-javascript", "set-blocking", "shebang-command", "shebang-regex", "slice-ansi", "sprintf-js", "string-width", "string.prototype.trimend", "string.prototype.trimstart", "strip-ansi", "strip-json-comments", "supports-color", "table", "text-table", "to-regex-range", "type-check", "type-fest", "uri-js", "v8-compile-cache", "which", "which-module", "wide-align", "word-wrap", "workerpool", "wrap-ansi", "wrappy", "write", "y18n", "yargs", "yargs-parser", "yargs-unparser"], "https://github.com/MITgcm/gcmfaces": ["sphinxcontrib-bibtex"], "https://github.com/thompson318/scikit-surgery-sphere-fitting": ["coverage", "mock", "parameterized", "pyfakefs", "pyinstaller", "pylint", "pytest", "sphinx", "sphinx-rtd-theme", "tox", "numpy", "scikit-surgeryvtk", "scipy", "vtk"], "https://github.com/feelpp/book.feelpp.org": ["asciidoctor-diagram", "asciidoctor-latex", "coderay", "jekyll", "jekyll-asciidoc", "jekyll-feed", "jekyll-theme-cayman", "jekyll-theme-primer", "minima", "pygments.rb", "rake-jekyll", "tzinfo-data", "@antora/asciidoc-loader", "@antora/cli", "@antora/content-aggregator", "@antora/content-classifier", "@antora/document-converter", "@antora/expand-path-helper", "@antora/navigation-builder", "@antora/page-composer", "@antora/playbook-builder", "@antora/redirect-producer", "@antora/site-generator-default", "@antora/site-mapper", "@antora/site-publisher", "@antora/ui-loader", "@feelpp/asciidoctor-remote-include-processor", "@iarna/toml", "@sindresorhus/is", "@szmarczak/http-timer", "append-buffer", "argparse", "asciidoctor-emoji", "asciidoctor-kroki", "asciidoctor.js", "async-lock", "balanced-match", "base64-js", "bl", "bops", "brace-expansion", "braces", "buffer", "buffer-crc32", "buffer-equal", "cache-directory", "cacheable-request", "camelcase", "camelcase-keys", "clean-git-ref", "clone", "clone-buffer", "clone-response", "clone-stats", "cloneable-readable", "commander", "concat-map", "convert-source-map", "convict", "core-util-is", "crc-32", "decamelize", "decompress-response", "defer-to-connect", "define-properties", "diff3", "duplexer3", "duplexify", "end-of-stream", "escape-string-regexp", "esprima", "exit-on-epipe", "extend", "fd-slicer", "fill-range", "flush-write-stream", "fs-extra", "fs-mkdirp-stream", "fs.realpath", "function-bind", "get-stream", "git-apply-delta", "glob", "glob-parent", "glob-stream", "globalyzer", "globrex", "got", "graceful-fs", "gulp-vinyl-zip", "handlebars", "has-symbols", "http-cache-semantics", "ieee754", "ignore", "inflight", "inherits", "is-absolute", "is-buffer", "is-extglob", "is-glob", "is-negated-glob", "is-number", "is-relative", "is-unc-path", "is-utf8", "is-valid-glob", "is-windows", "isarray", "isomorphic-git", "js-yaml", "json-buffer", "json-stable-stringify-without-jsonify", "json5", "jsonfile", "keyv", "lazystream", "lead", "lodash", "lodash.clonedeep", "lowercase-keys", "map-obj", "marky", "matcher", "mime", "mime-db", "mime-types", "mimic-response", "minimatch", "minimatch-all", "minimist", "minimisted", "mkdirp", "multi-progress", "neo-async", "node-srv", "normalize-path", "normalize-url", "now-and-later", "object-keys", "object.assign", "once", "opal-runtime", "ordered-read-streams", "p-cancelable", "pako", "path-dirname", "path-is-absolute", "pend", "picomatch", "pify", "prepend-http", "printj", "process-nextick-args", "progress", "pump", "pumpify", "queue", "quick-lru", "readable-stream", "remove-bom-buffer", "remove-bom-stream", "remove-trailing-separator", "replace-ext", "require-from-string", "resolve-options", "responselike", "rusha", "safe-buffer", "sha.js", "simple-concat", "simple-get", "source-map", "sprintf-js", "stream-shift", "string_decoder", "through", "through2", "through2-filter", "to-absolute-glob", "to-readable-stream", "to-regex-range", "to-through", "to-utf8", "uglify-js", "unc-path-regex", "unique-stream", "universalify", "unxhr", "url-parse-lax", "util-deprecate", "value-or-function", "varint", "vinyl", "vinyl-fs", "vinyl-sourcemap", "wordwrap", "wrappy", "xdg-basedir", "xmlhttprequest", "xtend", "yargs-parser", "yauzl", "yazl"], "https://github.com/brwnj/umitools": ["editdist", "pysam"], "https://github.com/IvanPaez/Proact": ["junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.hibernate:hibernate", "org.hibernate:hibernate-annotations", "hsqldb:hsqldb", "javax.servlet:jstl", "org.apache.geronimo.specs:geronimo-servlet_2.4_spec", "org.apache.velocity:velocity", "org.codehaus.mojo:hibernate3-maven-plugin", "org.jproact:jproact-persist", "org.jproact:jproact-weather", "org.mortbay.jetty:maven-jetty-plugin", "org.springframework:spring", "taglibs:standard", "org.apache.maven.plugins:maven-surefire-plugin", "org.jproact:jproact-jpmml", "org.apache.geronimo.specs:geronimo-jta_1.1_spec", "org.hibernate:hibernate-commons-annotations", "org.jproact:jproact-model", "dom4j:dom4j", "jaxen:jaxen", "log4j:log4j", "org.apache.commons:commons-io", "com.google.guava:guava", "org.jpmml:pmml-evaluator", "org.jpmml:pmml-manager", "org.jpmml:pmml-model", "org.jpmml:pmml-schema", "org.jpmml:xjc", "com.beust:jcommander", "cascading:cascading-core", "cascading:cascading-hadoop", "org.apache.hadoop:hadoop-core", "com.sun.xml.bind:jaxb-impl", "com.sun.xml.bind:jaxb-xjc", "org.jvnet.jaxb2_commons:jaxb2-basics", "com.sun.jersey:jersey-client", "com.sun.jersey:jersey-json", "com.sun.jersey:jersey-server", "com.sun.jersey:jersey-servlet", "org.openscoring:client", "org.openscoring:common", "org.openscoring:server", "org.apache.felix:maven-bundle-plugin", "org.codehaus.mojo:xml-maven-plugin", "org.jvnet.jaxb2.maven2:maven-jaxb2-plugin", "org.jvnet.jaxb2_commons:jaxb2-basics-annotate", "org.jvnet.jaxb2_commons:jaxb2-fluent-api", "javax.servlet:servlet-api", "net.sf.supercsv:super-csv", "org.eclipse.jetty:jetty-maven-plugin", "joda-time:joda-time", "org.apache.commons:commons-math3"], "https://github.com/poneill/formosa": ["tqdm"], "https://github.com/yabata/pyrenn": ["numpy"], "https://github.com/TeamMacLean/redpatch": ["ipython", "ipywidgets", "jupyter", "matplotlib", "numba", "numpy", "pandas", "pytest", "pyyaml", "scikit-image", "scipy", "shapely", "yattag"], "https://github.com/pear2/Net_RouterOS": ["pear2/cache_shm", "pear2/console_color", "pear2/console_commandline", "pear2/net_transmitter", "php", "phpunit/phpunit", "squizlabs/php_codesniffer"], "https://github.com/rjw57/freenect2-python": ["cffi", "enum34", "future", "numpy", "pillow", "sphinx", "sphinxcontrib-napoleon"], "https://github.com/mvdh7/teos10": ["autograd"], "https://github.com/SymbioticLab/tensorflow-salus": ["org.apache.maven.plugins:maven-gpg-plugin", "com.google.protobuf:protobuf-java", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "absl-py", "numpy", "protobuf", "six", "tensorflow-tensorboard", "tensorflow"], "https://github.com/LukasEttel/YoshikoStandalone": ["junit:junit", "org.apache.felix:maven-bundle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.cytoscape:command-executor-api", "org.cytoscape:group-api", "org.cytoscape:layout-api", "org.cytoscape:service-api", "org.cytoscape:swing-application-api", "org.cytoscape:swing-util-api", "org.cytoscape:work-api", "org.jgrapht:jgrapht-core", "org.mockito:mockito-all", "org.ops4j.pax.logging:pax-logging-api", "org.osgi:org.osgi.core"], "https://github.com/JULIELab/MEmoLon": ["attrs", "backcall", "bleach", "certifi", "cycler", "decorator", "defusedxml", "entrypoints", "gitdb", "gitpython", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "kiwisolver", "markupsafe", "matplotlib", "mistune", "more-itertools", "nbconvert", "nbformat", "notebook", "numpy", "packaging", "pandas", "pandocfilters", "parso", "pexpect", "pickleshare", "pluggy", "prometheus-client", "prompt-toolkit", "ptyprocess", "py", "pygments", "pyparsing", "pyrsistent", "pytest", "python-dateutil", "pytz", "pyzmq", "qtconsole", "qtpy", "scikit-learn", "scipy", "send2trash", "six", "smmap", "terminado", "testpath", "torch", "tornado", "traitlets", "wcwidth", "webencodings", "wget", "widgetsnbextension", "xlrd", "zipp"], "https://github.com/fwitte/fluprodia": ["coolprop", "matplotlib", "numpy", "pip", "setuptools", "six", "virtualenv", "sphinx", "sphinx-rtd-theme", "tespy"], "https://github.com/openstreams/wflow": ["cftime", "gdal", "netcdf4", "numba", "numpy", "pyproj", "python-dateutil", "scipy", "xarray"], "https://github.com/sand-ci/TRACe-ExploRer-TRACER": ["asgiref", "certifi", "chardet", "django", "elasticsearch", "idna", "numpy", "pytz", "requests", "sqlparse", "urllib3", "chart.js", "chartjs-chart-box-and-violin-plot", "moment", "react", "react-chartjs-2", "react-datetime", "react-datetime-range-picker", "react-dom", "react-force-graph", "react-perfect-scrollbar", "react-scripts", "three"], "https://github.com/ISA-tools/NanoMaton": ["com.google.collections:google-collections", "junit:junit", "net.sf.opencsv:opencsv", "org.apache.maven.plugins:maven-surefire-plugin", "org.nanopub:nanopub", "org.openrdf.sesame:sesame-repository-sparql", "org.openrdf.sesame:sesame-rio-nquads", "org.openrdf.sesame:sesame-rio-rdfjson", "org.openrdf.sesame:sesame-rio-trig", "org.openrdf.sesame:sesame-rio-trix"], "https://github.com/DukeLearningInnovation/muser": ["@types/q", "abbrev", "accepts", "after", "ajv", "amdefine", "ansi-colors", "ansi-cyan", "ansi-gray", "ansi-red", "ansi-regex", "ansi-styles", "ansi-wrap", "anymatch", "aproba", "archive-type", "archy", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-each", "array-find-index", "array-slice", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "asn1", "assert-plus", "assign-symbols", "async", "async-each", "async-each-series", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axios", "babel-runtime", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64id", "batch", "bcrypt-pbkdf", "beeper", "better-assert", "bin-build", "bin-check", "bin-version", "bin-version-check", "bin-wrapper", "binary-extensions", "bl", "blob", "block-stream", "boolbase", "brace-expansion", "braces", "browser-sync", "browser-sync-client", "browser-sync-ui", "browserslist", "bs-recipes", "bs-snippet-injector", "buffer-alloc", "buffer-alloc-unsafe", "buffer-crc32", "buffer-fill", "buffer-from", "buffer-to-vinyl", "builtin-modules", "bytes", "cache-base", "cache-swap", "callsite", "camelcase", "camelcase-keys", "caniuse-lite", "capture-stack-trace", "caseless", "caw", "chalk", "child_process", "chokidar", "class-utils", "cliui", "clone", "clone-buffer", "clone-stats", "cloneable-readable", "co", "coa", "code-point-at", "collection-visit", "color-convert", "color-name", "color-support", "colors", "combined-stream", "commander", "component-bind", "component-emitter", "component-inherit", "concat-map", "concat-stream", "concat-with-sourcemaps", "connect", "connect-history-api-fallback", "console-control-strings", "console-stream", "convert-source-map", "cookie", "copy-descriptor", "core-js", "core-util-is", "create-error-class", "cross-spawn", "css-select", "css-select-base-adapter", "css-tree", "css-url-regex", "css-what", "csso", "currently-unhandled", "dashdash", "dateformat", "debug", "decamelize", "decode-uri-component", "decompress", "decompress-tar", "decompress-tarbz2", "decompress-targz", "decompress-unzip", "deep-extend", "defaults", "define-properties", "define-property", "delayed-stream", "delegates", "depd", "deprecated", "destroy", "detect-file", "dev-ip", "dom-serializer", "domelementtype", "domutils", "download", "duplexer2", "duplexify", "each-async", "easy-extender", "eazy-logger", "ecc-jsbn", "ee-first", "electron-to-chromium", "encodeurl", "end-of-stream", "engine.io", "engine.io-client", "engine.io-parser", "entities", "error-ex", "es-abstract", "es-to-primitive", "escape-html", "escape-string-regexp", "esprima", "etag", "eventemitter3", "exec-buffer", "exec-series", "execa", "executable", "expand-brackets", "expand-range", "expand-tilde", "extend", "extend-shallow", "extglob", "extsprintf", "fancy-log", "fast-deep-equal", "fast-json-stable-stringify", "fd-slicer", "figures", "file-type", "filename-regex", "filename-reserved-regex", "filenamify", "fill-range", "finalhandler", "find-index", "find-up", "find-versions", "findup-sync", "fined", "first-chunk-stream", "flagged-respawn", "follow-redirects", "for-in", "for-own", "forever-agent", "fork-stream", "form-data", "fragment-cache", "fresh", "fs-constants", "fs-extra", "fs.realpath", "fsevents", "fstream", "function-bind", "gauge", "gaze", "get-caller-file", "get-proxy", "get-stdin", "get-stream", "get-value", "getpass", "gifsicle", "glob", "glob-base", "glob-parent", "glob-stream", "glob-watcher", "glob2base", "global-modules", "global-prefix", "globby", "globule", "glogg", "got", "graceful-fs", "graceful-readlink", "growly", "gulp", "gulp-autoprefixer", "gulp-cache", "gulp-concat", "gulp-if", "gulp-imagemin", "gulp-notify", "gulp-plumber", "gulp-sass", "gulp-util", "node-sass", "run-sequence"], "https://github.com/luosolo/OAiZer": ["eu.dnetlib:oaizerDB-controller", "javax.servlet:javax.servlet-api", "org.apache.velocity:velocity", "org.apache.velocity:velocity-tools", "org.mortbay.jetty:maven-jetty-plugin", "org.springframework:spring-context", "org.springframework:spring-context-support", "org.springframework:spring-core", "org.springframework:spring-web", "org.springframework:spring-webmvc", "com.google.code.gson:gson", "eu.dnetlib:oaizerDB-database-manager", "eu.dnetlib:oaizerDB-database-rmi", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.codehaus.jackson:jackson-mapper-asl", "com.google.collections:google-collections", "commons-collections:commons-collections", "commons-logging:commons-logging", "jgraph:jgraph", "postgresql:postgresql", "apache:xerces", "com.hp.hpl.jena:arq", "com.hp.hpl.jena:jena", "jdom:jdom", "rome:rome", "xalan:xalan"], "https://github.com/abrahamnunes/fitr": ["autograd", "graphviz", "joblib", "matplotlib", "networkx", "nltk", "numpy", "pydot", "pystan", "scipy", "sklearn", "statsmodels", "tensorflow", "codecov", "pytest-cov"], "https://github.com/jmbr/committor": ["numpy", "scipy"], "https://github.com/eEcoLiDAR/laserchicken": ["click", "colorama", "lazperf", "mock", "numpy", "pandas", "plyfile", "psutil", "pylas", "pyshp", "pytest", "python-dateutil", "scipy", "shapely"], "https://github.com/feelpp/toolbox": ["liquid"], "https://github.com/dfm/celerite": ["numpy", "pybind11"], "https://github.com/buddhi1980/mandelbulber2": ["bulbqt-msvc-x64", "bulbqt-msvc-x86", "flac-msvc-x64", "flac-msvc-x86", "gsl-msvc-x64", "gsl-msvc-x86", "jom-nug", "libjpeg-msvc-x64", "libjpeg-msvc-x86", "libpng-msvc-x64", "libpng-msvc-x86", "libsndfile-msvc-x64", "libsndfile-msvc-x86", "libtiff-msvc-x64", "libtiff-msvc-x86", "lzo-msvc-x64", "lzo-msvc-x86", "Microsoft.Gsl", "ogg-msvc-x64", "ogg-msvc-x86", "opencl-nug", "openexr-msvc-x64", "openexr-msvc-x86", "vorbis-msvc-x64", "vorbis-msvc-x86", "zlib-msvc-x64", "zlib-msvc-x86"], "https://github.com/DECLARE-Project/palladio-headless": ["de.fabiankeller.palladio-headless:palladio-bridge", "de.fakeller.palladio-headless:palladio-analysis", "de.fakeller.palladio-headless:palladio-builder", "de.fakeller.palladio-headless:palladio-environment", "de.fakeller.palladio-headless:palladio-headless", "junit:junit", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.jacoco:jacoco-maven-plugin", "org.mockito:mockito-core", "com.github.DECLARE-Project:fastpan"], "https://github.com/hudcondr/Digital-preservation---sports-trackers-for-Strava": ["docopt", "flask", "pandas", "requests", "stravalib"], "https://github.com/ultralytics/flickr_scraper": ["flickrapi"], "https://github.com/ctuning/ck-env": ["ck"], "https://github.com/dyskurs/bel.esperanto": ["jekyll-algolia", "jekyll-paginate", "jekyll-seo-tag", "bundler", "jekyll", "rake"], "https://github.com/lmjohns3/theanets": ["click", "downhill", "nose-parameterized", "theano", "numpydoc", "sphinx-better-theme"], "https://github.com/fablabbcn/smartcitizen-kit-21": ["@sindresorhus/is", "@szmarczak/http-timer", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "abbrev", "accepts", "after", "ajv", "ansi-align", "ansi-colors", "ansi-gray", "ansi-regex", "ansi-styles", "ansi-wrap", "any-promise", "anymatch", "append-buffer", "archy", "arr-diff", "arr-filter", "arr-flatten", "arr-map", "arr-union", "array-each", "array-flatten", "array-initial", "array-last", "array-slice", "array-sort", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "asn1", "assert-plus", "assign-symbols", "async", "async-done", "async-each", "async-each-series", "async-limiter", "async-settle", "asynckit", "atob", "aws-sign2", "aws4", "axios", "bach", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64id", "basic-auth", "batch", "bcrypt-pbkdf", "better-assert", "binary-extensions", "blob", "body", "body-parser", "boxen", "brace-expansion", "braces", "browser-sync", "browser-sync-client", "browser-sync-ui", "bs-recipes", "bs-snippet-injector", "buffer-equal", "buffer-from", "bytes", "cache-base", "cacheable-request", "callsite", "camelcase", "capture-stack-trace", "caseless", "casperjs", "chalk", "chokidar", "ci-info", "class-utils", "cli-boxes", "cliui", "clone", "clone-buffer", "clone-response", "clone-stats", "cloneable-readable", "code-point-at", "collection-map", "collection-visit", "color-convert", "color-name", "color-support", "combined-stream", "commander", "component-bind", "component-emitter", "component-inherit", "compressible", "compression", "concat-map", "concat-stream", "configstore", "connect", "connect-history-api-fallback", "connect-pause", "content-disposition", "content-type", "continuable-cache", "convert-source-map", "cookie", "cookie-signature", "copy-descriptor", "copy-props", "core-util-is", "cors", "create-error-class", "cross-spawn", "crypto-random-string", "d", "dashdash", "debug", "decamelize", "decode-uri-component", "decompress-response", "deep-extend", "default-compare", "default-resolution", "defer-to-connect", "define-properties", "define-property", "del", "delayed-stream", "depd", "destroy", "detect-file", "dev-ip", "dot-prop", "duplexer", "duplexer3", "duplexify", "each-props", "easy-extender", "eazy-logger", "ecc-jsbn", "ee-first", "emoji-regex", "encodeurl", "end-of-stream", "engine.io", "engine.io-client", "engine.io-parser", "error", "error-ex", "errorhandler", "es5-ext", "es6-iterator", "es6-symbol", "es6-weak-map", "escape-html", "escape-string-regexp", "etag", "event-stream", "eventemitter3", "execa", "expand-brackets", "expand-tilde", "express", "express-urlrewrite", "extend", "extend-shallow", "extglob", "extsprintf", "fancy-log", "fast-deep-equal", "fast-json-stable-stringify", "faye-websocket", "fill-range", "finalhandler", "find-up", "findup-sync", "fined", "flagged-respawn", "flush-write-stream", "follow-redirects", "for-in", "for-own", "forever-agent", "form-data", "forwarded", "fragment-cache", "fresh", "from", "fs-extra", "fs-mkdirp-stream", "fs.realpath", "fsevents", "function-bind", "get-caller-file", "get-stream", "get-value", "getpass", "glob", "glob-parent", "glob-stream", "glob-watcher", "global-dirs", "global-modules", "global-prefix", "globby", "glogg", "got", "graceful-fs", "gulp", "gulp-file-insert", "gulp-gzip", "gulp-livereload", "gulp-rename", "gulplog", "har-schema", "har-validator", "has-ansi", "has-binary2", "has-cors", "has-flag", "has-symbols", "has-value", "has-values", "has-yarn", "homedir-polyfill", "hosted-git-info", "http-cache-semantics", "http-errors", "http-parser-js", "http-proxy", "http-signature", "iconv-lite", "ignore-by-default", "immutable", "import-lazy", "imurmurhash", "indexof", "inflight", "inherits", "ini", "json-server", "nodemon", "phantomjs", "supervisor", "vinyl-source-stream"], "https://github.com/eeditiones/shakespeare": ["@babel/runtime", "@cwmr/paper-autocomplete", "@lrnwebcomponents/es-global-bridge", "@polymer/app-layout", "@polymer/font-roboto", "@polymer/iron-a11y-announcer", "@polymer/iron-a11y-keys-behavior", "@polymer/iron-ajax", "@polymer/iron-autogrow-textarea", "@polymer/iron-behaviors", "@polymer/iron-checked-element-behavior", "@polymer/iron-collapse", "@polymer/iron-dropdown", "@polymer/iron-fit-behavior", "@polymer/iron-flex-layout", "@polymer/iron-form", "@polymer/iron-form-element-behavior", "@polymer/iron-icon", "@polymer/iron-icons", "@polymer/iron-iconset", "@polymer/iron-iconset-svg", "@polymer/iron-image", "@polymer/iron-input", "@polymer/iron-media-query", "@polymer/iron-menu-behavior", "@polymer/iron-meta", "@polymer/iron-overlay-behavior", "@polymer/iron-pages", "@polymer/iron-range-behavior", "@polymer/iron-resizable-behavior", "@polymer/iron-scroll-target-behavior", "@polymer/iron-selector", "@polymer/iron-validatable-behavior", "@polymer/neon-animation", "@polymer/paper-behaviors", "@polymer/paper-button", "@polymer/paper-card", "@polymer/paper-checkbox", "@polymer/paper-dialog", "@polymer/paper-dialog-behavior", "@polymer/paper-dialog-scrollable", "@polymer/paper-dropdown-menu", "@polymer/paper-fab", "@polymer/paper-icon-button", "@polymer/paper-input", "@polymer/paper-item", "@polymer/paper-listbox", "@polymer/paper-material", "@polymer/paper-menu-button", "@polymer/paper-progress", "@polymer/paper-ripple", "@polymer/paper-styles", "@polymer/paper-tabs", "@polymer/paper-tooltip", "@polymer/polymer", "@popperjs/core", "@rollup/plugin-replace", "@rollup/pluginutils", "@teipublisher/pb-components", "@types/estree", "@vaadin/vaadin-button", "@vaadin/vaadin-control-state-mixin", "@vaadin/vaadin-development-mode-detector", "@vaadin/vaadin-element-mixin", "@vaadin/vaadin-item", "@vaadin/vaadin-list-mixin", "@vaadin/vaadin-lumo-styles", "@vaadin/vaadin-material-styles", "@vaadin/vaadin-progress-bar", "@vaadin/vaadin-tabs", "@vaadin/vaadin-themable-mixin", "@vaadin/vaadin-upload", "@vaadin/vaadin-usage-statistics", "@webcomponents/shadycss", "@webcomponents/webcomponentsjs", "animejs", "clipboard", "codemirror", "delegate", "estree-walker", "good-listener", "hotkeys-js", "i18next", "i18next-browser-languagedetector", "i18next-chained-backend", "i18next-xhr-backend", "js-cookie", "leaflet", "lit-element", "lit-html", "magic-string", "marked", "openseadragon", "picomatch", "prismjs", "regenerator-runtime", "select", "sourcemap-codec", "tiny-emitter", "tippy.js", "web-animations-js"], "https://github.com/ivco19/epyRba": ["arcovid19", "flask-cors", "gunicorn", "ipdb", "jsonschema", "mistune", "peewee", "pipdeptree", "psycopg2-binary", "sh", "wheel"], "https://github.com/Andros-Spica/ENE-Angourakis-et-al-2019": ["express", "grunt-cli", "mustache", "socket.io"], "https://github.com/rjfarmer/mesaplot": ["matplotlib", "numpy", "scipy", "unittest2"], "https://github.com/tjof2/robustpca": ["numpy", "scikit-learn", "scipy"], "https://github.com/zerothi/sisl": ["netcdf4", "numpy", "pyparsing", "scipy", "setuptools", "six", "coveralls", "pytest", "pytest-cov", "pytest-env", "pytest-faulthandler", "cython", "ipykernel", "matplotlib", "nbsphinx"], "https://github.com/ChiaraBonacchi/MaryRose": ["boto", "pybossa-client"], "https://github.com/claudioatzori/dnet-gdup": ["eu.dnetlib:cnr-data-utility-cleaner-service", "eu.dnetlib:cnr-enabling-database-service", "eu.dnetlib:cnr-enabling-hcm-service", "eu.dnetlib:cnr-enabling-hnm-service", "eu.dnetlib:cnr-enabling-inspector", "eu.dnetlib:cnr-enabling-services", "eu.dnetlib:cnr-inspector-security", "eu.dnetlib:cnr-log4j-inspector", "eu.dnetlib:cnr-mongo-mdstore", "eu.dnetlib:cnr-resultset-inspector", "eu.dnetlib:dnet-actionmanager-service", "eu.dnetlib:dnet-data-transformation-service", "eu.dnetlib:dnet-deduplication", "eu.dnetlib:dnet-download-plugins", "eu.dnetlib:dnet-download-service", "eu.dnetlib:dnet-fs-objectstore", "eu.dnetlib:dnet-hadoop-service", "eu.dnetlib:dnet-mapreduce-jobs", "eu.dnetlib:dnet-modular-cleaning-rules-ui", "eu.dnetlib:dnet-modular-collector-service", "eu.dnetlib:dnet-modular-database-ui", "eu.dnetlib:dnet-modular-index-ui", "eu.dnetlib:dnet-modular-is-ui", "eu.dnetlib:dnet-modular-oai-explorer-ui", "eu.dnetlib:dnet-modular-repositories-ui", "eu.dnetlib:dnet-modular-ui", "eu.dnetlib:dnet-modular-vocabularies-ui", "eu.dnetlib:dnet-modular-workflows-ui", "eu.dnetlib:dnet-mongo-logging", "eu.dnetlib:dnet-msro-service", "eu.dnetlib:dnet-oai-modular-ui", "eu.dnetlib:dnet-objectStore-ui", "eu.dnetlib:dnet-openaire-blacklist", "eu.dnetlib:dnet-openaireplus-profiles", "eu.dnetlib:dnet-openaireplus-workflows", "eu.dnetlib:dnet-schemas", "eu.dnetlib:dnet-validator-workflows", "eu.dnetlib:dnet-webapp-monitoring", "xerces:xercesImpl"], "https://github.com/quantling/pyndl": ["cython", "netcdf4", "numpy", "pandas", "pip", "xarray"], "https://github.com/FAST-HEP/fast-flow": ["bumpversion", "codecov", "coverage", "flake8", "pip", "pytest", "pytest-cov", "pytest-runner", "sphinx", "tox", "twine", "watchdog", "wheel", "pyyaml", "six"], "https://github.com/pysat/pysatMissions": ["aacgmv2", "apexpy", "matplotlib", "numpy", "pandas", "pyephem", "pysat", "pysatmagvect", "sgp4", "ipython", "numpydoc"], "https://github.com/kinnala/kirchhoff-nitsche-ex3": ["matplotlib", "scikit-fem"], "https://github.com/GMOD/Apollo": ["jquery", "jqueryui"], "https://github.com/brics-dev/brics": ["brics:brics-scheduler", "brics:core", "brics:dataimport", "brics:import-RESTful", "brics:model", "brics:service", "com.openlink.virtuoso:virtuoso-jdbc-4", "com.openlink.virtuoso:virtuoso-jena", "javax.servlet.jsp.jstl:jstl", "javax.servlet.jsp.jstl:jstl-api", "javax.servlet.jsp:javax.servlet.jsp-api", "javax.servlet:javax.servlet-api", "org.apache.jena:jena-arq", "org.apache.jena:jena-core", "org.apache.tomcat.maven:tomcat7-maven-plugin", "org.dbunit:dbunit", "org.ehcache:ehcache", "org.hibernate:hibernate-core", "org.hibernate:hibernate-ehcache", "org.mockito:mockito-core", "org.postgresql:postgresql", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "org.springframework:spring-aop", "org.springframework:spring-aspects", "org.springframework:spring-beans", "org.springframework:spring-context", "org.springframework:spring-context-support", "org.springframework:spring-core", "org.springframework:spring-orm", "org.springframework:spring-web", "org.testng:testng", "nl.geodienstencentrum.maven:sass-maven-plugin", "org.apache.commons:commons-dbcp2", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-war-plugin", "org.eclipse.m2e:lifecycle-mapping", "org.jasig.cas:cas-server-support-jdbc", "org.jasig.cas:cas-server-support-rest", "org.jasig.cas:cas-server-webapp", "com.google.code.gson:gson", "commons-codec:commons-codec", "io.jsonwebtoken:jjwt", "io.springfox:springfox-swagger-ui", "io.springfox:springfox-swagger2", "io.swagger.codegen.v3:swagger-codegen-maven-plugin", "io.swagger:swagger-annotations", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpmime", "org.jacoco:jacoco-maven-plugin", "org.sonarsource.scanner.maven:sonar-maven-plugin", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter", "org.springframework.boot:spring-boot-starter-data-jpa", "org.springframework.boot:spring-boot-starter-security", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-tomcat", "org.springframework.boot:spring-boot-starter-web", "org.springframework.cloud:spring-cloud-dependencies", "org.springframework.cloud:spring-cloud-starter-netflix-eureka-client", "org.springframework.data:spring-data-commons", "com.zaxxer:HikariCP", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "com.github.jbytecode:RCaller", "javax.ws.rs:jsr311-api", "junit:junit", "org.apache.cxf:cxf-rt-frontend-jaxrs", "org.apache.cxf:cxf-rt-rs-client", "org.apache.cxf:cxf-rt-rs-extension-providers", "org.apache.cxf:cxf-rt-transports-http", "org.apache.tomcat:tomcat-util", "org.codehaus.jettison:jettison", "org.springframework.security:spring-security-config", "org.springframework.security:spring-security-core", "org.springframework.security:spring-security-web", "org.springframework:spring-tx", "com.google.guava:guava", "commons-httpclient:commons-httpclient", "commons-lang:commons-lang", "joda-time:joda-time", "net.sf.opencsv:opencsv", "org.apache.maven.plugins:maven-resources-plugin", "org.eclipse.persistence:javax.persistence", "org.hibernate:hibernate-validator", "org.json:json", "org.jsoup:jsoup", "org.openrdf.sesame:sesame-repository-http", "org.springframework.cloud:spring-cloud-starter-netflix-eureka-server", "babel-core", "babel-loader", "babel-preset-env", "babel-preset-es2015", "bootstrap-grid-only-css", "clean-webpack-plugin", "codemirror", "copy-webpack-plugin", "css-loader", "datatables.net", "datatables.net-buttons-dt", "datatables.net-dt", "datatables.net-fixedheader-dt", "datatables.net-responsive", "datatables.net-select-dt", "es6-promise", "expose-loader", "file-loader", "font-awesome", "glob", "handlebars", "handlebars-loader", "jquery", "jquery-ui", "js-sha512", "jshint", "jshint-loader", "jszip", "mini-css-extract-plugin", "node-sass", "optimize-css-assets-webpack-plugin", "pdfmake", "sass-loader", "style-loader", "uglifyjs-webpack-plugin", "unminified-webpack-plugin", "url-loader", "webpack", "webpack-cli", "webpack-merge", "whatwg-fetch", "com.samaxes.maven:minify-maven-plugin", "commons-collections:commons-collections", "commons-digester:commons-digester", "commons-validator:commons-validator", "net.bull.javamelody:javamelody-core", "org.apache.axis2:axis2-adb", "org.apache.logging.log4j:log4j-to-slf4j", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.struts:struts2-core", "org.apache.struts:struts2-json-plugin", "org.apache.struts:struts2-sitemesh-plugin", "org.apache.struts:struts2-spring-plugin", "org.apache.ws.commons.axiom:axiom-api", "org.apache.ws.commons.axiom:axiom-impl", "org.codehaus.mojo:exec-maven-plugin", "org.eclipse.m2e:lifecycle-mapping-2", "org.jasig.cas.client:cas-client-core", "org.jmockit:jmockit", "org.springframework:spring-test", "org.xhtmlrenderer:flying-saucer-pdf-openpdf", "taglibs:standard", "xalan:serializer", "xml-apis:xml-apis", "org.springframework.cloud:spring-cloud-starter-netflix-zuul", "brics:web-service", "com.jcraft:jsch", "com.sun.mail:javax.mail", "com.sun.xml.txw2:txw2", "commons-io:commons-io", "org.apache.cxf:cxf-rt-frontend-jaxws", "org.apache.cxf:cxf-rt-transports-http-jetty", "org.apache.maven.plugins:maven-source-plugin", "org.glassfish.web:el-impl", "org.mock-server:mockserver-netty", "org.springframework.security:spring-security-acl", "org.springframework.security:spring-security-cas", "org.springframework.security:spring-security-taglibs", "xerces:xercesImpl", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.microsoft.sqlserver:mssql-jdbc", "commons-beanutils:commons-beanutils", "commons-jxpath:commons-jxpath", "javax.mail:mail", "javax.validation:validation-api", "javax.xml.bind:jaxb-api", "javax.xml:jaxrpc-api", "jep:jep", "ognl:ognl", "org.apache.commons:commons-lang3", "org.apache.commons:commons-text", "org.apache.derby:derby", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.logging.log4j:log4j-web", "org.apache.poi:poi", "org.apache.taglibs:taglibs-standard-impl", "org.freemarker:freemarker", "org.glassfish.jersey.containers:jersey-container-servlet", "org.glassfish.jersey.core:jersey-client", "org.glassfish.jersey.inject:jersey-hk2", "org.javassist:javassist", "org.springframework:spring-expression", "org.springframework:spring-jdbc", "oro:oro", "brics:query", "org.springframework.boot:spring-boot-configuration-processor", "org.springframework.boot:spring-boot-starter-actuator", "com.lowagie:itext", "commons-fileupload:commons-fileupload", "net.sf.jasperreports:jasperreports", "net.sf.jasperreports:jasperreports-fonts", "org.apache.cxf:cxf-buildtools", "org.apache.maven.plugins:maven-install-plugin", "org.apache.maven.plugins:maven-jarsigner-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.swinglabs:swingx", "brics:applications", "javax.persistence:persistence-api", "joda-time:joda-time-jsptags", "org.quartz-scheduler:quartz", "org.springframework:spring-webmvc", "org.apache.commons:commons-jexl3", "xalan:xalan", "org.springframework.boot:spring-boot-starter-jdbc", "org.springframework.integration:spring-integration-http", "org.springframework.integration:spring-integration-sftp", "org.springframework.ws:spring-ws-core"], "https://github.com/cismet/cids-custom-sudplan-linz": ["de.cismet.cids.custom.sudplan:cids-custom-sudplan", "de.cismet.cids.custom.sudplan:cids-custom-sudplan-linz-server", "org.apache.maven.plugins:maven-dependency-plugin"], "https://github.com/theia-dev/molani": ["arrow", "matplotlib", "mpi4py", "numpy", "pillow"], "https://github.com/planetserver/webclient-neo": ["grunt", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-uglify", "grunt-rev", "grunt-usemin", "load-grunt-tasks", "time-grunt"], "https://github.com/djgagne/lorenz_gan": ["jupyter", "keras", "matplotlib", "netcdf4", "numba", "numpy", "pandas", "pyyaml", "scikit-learn", "scipy", "tensorflow", "xarray"], "https://github.com/mmcauliffe/Conch-sounds": ["librosa", "numpy", "numpydoc", "pyraat", "pytest", "scipy", "sphinx", "textgrid", "mock"], "https://github.com/pandas-dev/pandas": ["asv", "beautifulsoup4", "black", "blosc", "boto3", "botocore", "bottleneck", "cftime", "cloudpickle", "cpplint", "cython", "dask", "fastparquet", "feedparser", "flake8", "flake8-comprehensions", "flake8-rst", "flask", "fsspec", "gcsfs", "gitdb", "gitpython", "html5lib", "hypothesis", "ipykernel", "ipython", "ipywidgets", "isort", "jinja2", "lxml", "markdown", "matplotlib", "moto", "mypy", "natsort", "nbconvert", "nbformat", "nbsphinx", "notebook", "numba", "numexpr", "numpy", "odfpy", "openpyxl", "pandoc", "partd", "pip", "pre-commit", "pyarrow", "pycodestyle", "pyflakes", "pyqt5", "pyreadstat", "pytest", "pytest-asyncio", "pytest-cov", "pytest-instafail", "pytest-xdist", "python-dateutil", "python-snappy", "pytz", "pyupgrade", "pyyaml", "requests", "s3fs", "scipy", "seaborn", "sphinx", "sqlalchemy", "statsmodels", "tables", "tabulate", "toolz", "xarray", "xlrd", "xlsxwriter", "xlwt"], "https://github.com/dvav/dgeclust": ["pytest", "pytest-coverage", "backports-tempfile", "ipython", "matplotlib", "numpy", "pandas", "scipy"], "https://github.com/bjmorgan/vasppy": ["codeclimate-test-reporter", "coverage", "fortranformat", "monty", "numpy", "pandas", "pymatgen", "pyyaml", "scipy", "tqdm", "jupyter", "nbsphinx", "sphinx"], "https://github.com/has2k1/plotnine": ["adjusttext", "descartes", "flake8", "geopandas", "matplotlib", "mizani", "pandas", "pep8", "pyshp", "pytest-cov", "scikit-misc", "scipy", "statsmodels", "wheel", "jupyter", "nbsphinx", "numpydoc", "pillow", "prompt-toolkit", "sphinx"], "https://github.com/churchill-lab/gbrs": ["bumpversion", "coverage", "cryptography", "flake8", "pyyaml", "sphinx", "tox", "watchdog", "wheel", "pytest"], "https://github.com/salilab/imp": ["msgpack"], "https://github.com/NLeSC/eEcology-Annotation-WS": ["coverage", "gunicorn", "iso8601", "mock", "nose", "paste", "psycopg2", "pyramid", "pyramid-mako", "simplejson", "waitress", "compression", "express", "jsdoc", "request", "yargs"], "https://github.com/pygeo/pycmbs": ["cartopy", "cdo", "cython", "matplotlib", "netcdf4", "numpy", "pytz", "scipy", "shapely"], "https://github.com/Barski-lab/cwl-airflow": ["apache-airflow", "connexion", "cwltest", "cwltool", "docker", "jsonmerge", "pyjwt", "ruamel-yaml", "schema-salad", "swagger-ui-bundle", "tornado", "coveralls", "pytest", "pytest-cov", "pytest-xdist", "recommonmark", "sphinx-markdown-tables", "sphinx-rtd-theme", "sphinxcontrib-openapi"], "https://github.com/prisae/fftlog": ["coveralls", "pytest", "pytest-cov", "pytest-flake8", "-", "scipy"], "https://github.com/DigitalPreservationTuWien2017/dp-task3": ["angular", "angular-chart.js", "chart.js", "chartjs-color", "chartjs-color-string", "moment", "@angular/cli", "@angular/compiler-cli", "@ng-bootstrap/ng-bootstrap", "bootstrap", "bower", "font-awesome", "http-server", "jasmine-core", "jquery", "karma", "karma-chrome-launcher", "karma-firefox-launcher", "karma-jasmine", "karma-junit-reporter", "protractor"], "https://github.com/biolink/biolink-api": ["behave", "cachier", "flask-cors", "flask-limiter", "flask-restplus", "flask-sqlalchemy", "gevent", "gitpython", "gunicorn", "jsonpath-rw", "jsonpickle", "matplotlib", "mygene", "ontobio", "percache", "pip", "prefixcommons", "pydotplus", "pysolr", "pytest", "scipy", "sparqlwrapper", "werkzeug", "wheel"], "https://github.com/yadage/packtivity": ["checksumdir", "click", "glob2", "jq", "jsonpath-rw", "jsonpointer", "jsonref", "jsonschema", "mock", "pyyaml", "requests", "yadage-schemas"], "https://github.com/fact-project/aict-tools": ["astropy", "click", "h5py", "joblib", "matplotlib", "numexpr", "numpy", "pandas", "pyfact", "pytest", "python-dateutil", "pytz", "ruamel-yaml", "scikit-learn", "tqdm"], "https://github.com/proycon/tscan": ["clam"], "https://github.com/mattam82/Coq-Equations": ["github-pages"], "https://github.com/datalad/datalad-osf": ["coverage", "mock", "nose", "sphinx", "sphinx-rtd-theme", "requests", "six", "tqdm"], "https://github.com/paradoxysm/EMGanalysis": ["numpy", "scipy", "tqdm", "win32com", "xlrd", "xlutils", "xlwt"], "https://github.com/dparks1134/DBB": ["matplotlib", "numpy", "pysam", "scipy"], "https://github.com/mikahama/haracat": ["natas"], "https://github.com/brainiak/brainiak": ["coverage", "flake8", "flake8-print", "mypy", "numdifftools", "pytest", "restructuredtext-lint", "setuptools-scm", "sphinx", "sphinx-rtd-theme", "towncrier", "cython", "joblib", "mpi4py", "nibabel", "nitime", "numpy", "psutil", "pybind11", "pydicom", "pymanopt", "scikit-learn", "scipy", "statsmodels", "theano", "wheel", "matplotlib", "deepdish", "notebook", "sklearn", "nilearn", "wget", "click", "hypertools", "requests"], "https://github.com/AtkinsGroup/TransmissionPairs": ["bs4", "lxml", "pandas", "requests"], "https://github.com/samapriya/spotifind": ["beautifulsoup4", "logzero", "rapidfuzz", "requests"], "https://github.com/jaj42/GraPhysio": ["attrs", "numpy", "pandas", "pathvalidate", "pint", "pyarrow", "pyedflib", "pyqt5", "pyqtgraph", "pytz", "scipy", "sympy", "typing"], "https://github.com/TUD-RST/pycartan": ["ipydex", "ipython", "numpy", "symbtools", "sympy"], "https://github.com/ghammad/pyActigraphy": ["joblib", "lmfit", "numba", "numpy", "pandas", "pyexcel", "pyexcel-ods3", "pytest", "scipy", "spm1d", "statsmodels", "stochastic"], "https://github.com/ebmdatalab/fdaaa_trends": ["attrs", "autograd", "autograd-gamma", "backcall", "bash-kernel", "bleach", "cachetools", "certifi", "chardet", "click", "click-plugins", "cligj", "coverage", "cycler", "decorator", "defusedxml", "descartes", "ebmdatalab", "entrypoints", "fiona", "future", "geopandas", "google-api-core", "google-auth", "google-auth-oauthlib", "google-cloud-bigquery", "google-cloud-core", "google-resumable-media", "googleapis-common-protos", "idna", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "json5", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "jupyterlab", "jupyterlab-server", "jupytext", "kiwisolver", "lifelines", "markupsafe", "matplotlib", "mistune", "more-itertools", "munch", "nbconvert", "nbformat", "nbval", "notebook", "numpy", "oauthlib", "packaging", "pandas", "pandas-gbq", "pandocfilters", "parso", "patsy", "pexpect", "pickleshare", "pip-tools", "plotly", "pluggy", "prometheus-client", "prompt-toolkit", "protobuf", "ptyprocess", "py", "pyasn1", "pyasn1-modules", "pydata-google-auth", "pygments", "pyparsing", "pyproj", "pyrsistent", "pytest", "python-dateutil", "pytz", "pyyaml", "pyzmq", "qtconsole", "requests", "requests-oauthlib", "retrying", "rsa", "scipy", "seaborn", "send2trash", "shapely", "six", "statsmodels", "terminado", "testpath", "tornado", "tqdm", "traitlets", "urllib3", "wcwidth", "webencodings", "widgetsnbextension"], "https://github.com/python-visualization/folium": ["altair", "cartopy", "check-manifest", "descartes", "flake8", "flake8-builtins", "flake8-comprehensions", "flake8-import-order", "flake8-mutable", "flake8-quotes", "geographiclib", "geopandas", "gpxpy", "ipykernel", "jupyter-client", "matplotlib", "mplleaflet", "nbconvert", "nbsphinx", "nbval", "owslib", "pandas", "pillow", "pycodestyle", "pytest", "pytest-cov", "pytest-flake8", "pytest-xdist", "scipy", "selenium", "sphinx", "twine", "vega-datasets", "vincent", "wheel", "branca", "jinja2", "numpy", "requests"], "https://github.com/didillysquat/SymPortal_framework": ["biopython", "django", "matplotlib", "numpy", "pandas", "plumbum", "scikit-bio", "scipy", "sklearn", "xlrd"], "https://github.com/galaxyproject/SARS-CoV-2": ["@observablehq/runtime", "axios", "gh-badges", "igv", "notebookjs", "script-loader", "uuid", "vue-toasted", "vuepress", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@observablehq/inspector", "@observablehq/stdlib", "@sindresorhus/is", "@szmarczak/http-timer", "@types/color-name", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "@types/q", "@vue/babel-helper-vue-jsx-merge-props", "@vue/babel-plugin-transform-vue-jsx", "@vue/babel-preset-app", "@vue/babel-preset-jsx", "@vue/babel-sugar-functional-vue", "@vue/babel-sugar-inject-h", "@vue/babel-sugar-v-model", "@vue/babel-sugar-v-on", "@vue/component-compiler-utils", "@vuepress/core", "@vuepress/markdown", "@vuepress/markdown-loader", "@vuepress/plugin-active-header-links", "@vuepress/plugin-last-updated", "@vuepress/plugin-nprogress", "@vuepress/plugin-register-components", "@vuepress/plugin-search", "@vuepress/shared-utils", "@vuepress/theme-default", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "abbrev", "accepts", "acorn", "acorn-globals", "acorn-walk", "agentkeepalive", "ajv", "ajv-errors", "ajv-keywords", "algoliasearch", "alphanum-sort", "anafanafo", "ansi-align", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "ansi_up", "anymatch", "aproba", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-parallel", "array-series", "array-union", "array-uniq", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "async", "async-each", "async-limiter", "asynckit", "atob", "autocomplete.js", "autoprefixer", "aws-sign2", "aws4", "babel-loader", "babel-plugin-dynamic-import-node", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "binary-search", "bindings", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "boxen", "brace-expansion", "braces", "brorand", "browser-process-hrtime", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-json", "buffer-xor", "builtin-status-codes", "bytes", "cac", "cacache", "cache-base", "cache-loader", "cacheable-request", "call-me-maybe", "caller-callsite", "caller-path", "callsites", "camel-case", "camelcase", "caniuse-api", "caniuse-lite", "caseless", "chalk", "char-width-table-consumer", "chokidar", "chownr", "chrome-trace-event", "ci-info", "cipher-base", "class-utils", "clean-css", "cli-boxes", "clipboard", "cliui", "clone-response", "biopython", "ipympl", "ipywidgets", "pandas", "pandasql", "seaborn", "jupyterlab", "papermill"], "https://github.com/SMTorg/smt": ["matplotlib", "numpydoc", "packaging", "pydoe2", "scikit-learn", "scipy", "cython", "pydoe"], "https://github.com/bnpy/bnpy": ["cython", "ipython", "matplotlib", "memory-profiler", "munkres", "numexpr", "numpy", "pandas", "psutil", "scikit-learn", "scipy", "sphinx-gallery", "joblib"], "https://github.com/alielhassouni/heartsteps-gaussian-generative-model": ["numpy", "pandas", "scipy", "sklearn", "coverage", "flake8", "flake8-docstrings", "flake8-import-order", "flake8-quotes", "mccabe", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "twine", "wheel"], "https://github.com/rileyhales/geomatics": ["affine", "cfgrib", "eccodes", "geopandas", "h5py", "netcdf4", "numpy", "pandas", "pygrib", "python-dateutil", "rasterio", "rasterstats", "requests", "xarray", "sphinx", "sphinx-rtd-theme"], "https://github.com/smart-facility/cognicity-server": ["express", "istanbul", "jsdoc", "jshint", "memory-cache", "mocha", "moment", "morgan", "pg", "topojson", "unit.js", "winston"], "https://github.com/smarie/python-pytest-cases": ["decopatch", "funcsigs", "functools32", "makefun", "pytest", "pytest-harvest", "pytest-logging", "pytest-steps", "coverage", "pytest-runner", "requests", "setuptools-scm", "six", "xunitparser"], "https://github.com/tum-camp/survival-support-vector-machine": ["cvxopt", "cvxpy", "numexpr", "numpy", "pandas", "scikit-learn", "scipy", "seaborn"], "https://github.com/Capitains/MyCapytain": ["future", "linkheader", "lxml", "mock", "pyld", "rdflib-jsonld", "requests", "requests-mock", "responses", "six", "typing", "xmlunittest"], "https://github.com/rasmuse/subnational-p-budgets": ["cartopy", "descartes", "eust", "geopandas", "jupyter", "mapclassify", "matplotlib", "pandas", "pygdal", "rtree", "seaborn", "shapely", "attrs", "backcall", "bleach", "certifi", "chardet", "click", "click-plugins", "cligj", "cycler", "decorator", "defusedxml", "deprecated", "entrypoints", "fiona", "idna", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "joblib", "jsonpath-rw", "jsonschema", "jupyter-client", "jupyter-console", "jupyter-core", "kiwisolver", "lxml", "markupsafe", "mistune", "more-itertools", "munch", "nbconvert", "nbformat", "notebook", "numexpr", "numpy", "pandasdmx", "pandocfilters", "parso", "pexpect", "pickleshare", "ply", "prometheus-client", "prompt-toolkit", "ptyprocess", "pygments", "pyparsing", "pyproj", "pyrsistent", "pyshp", "python-dateutil", "pytz", "pyzmq", "qtconsole", "requests", "scikit-learn", "scipy", "send2trash", "six", "tables", "terminado", "testpath", "tornado", "traitlets", "urllib3", "wcwidth", "webencodings", "widgetsnbextension", "wrapt", "xlrd", "yaconf", "zipp"], "https://github.com/kimmo1019/Roundtrip": ["matplotlib", "numpy", "scikit-learn", "scipy", "tensorboard", "tensorflow-gpu"], "https://github.com/nighres/nighres": ["nibabel", "numpy", "psutil", "ipython", "matplotlib", "mock", "pillow", "scipy", "sklearn", "sphinx", "sphinx-rtd-theme"], "https://github.com/Swiss-Polar-Institute/wind-speed-correction": ["airsea", "datetime", "matplotlib", "numpy", "pandas", "pathlib", "scipy", "sklearn"], "https://github.com/rmarkello/abagen": ["fastparquet", "flake8", "pytest", "pytest-cov", "python-snappy", "sphinx", "sphinx-argparse", "sphinx-rtd-theme", "nibabel", "numpy", "pandas", "scipy"], "https://github.com/ApirsAL/GeoReVi": ["Caliburn.Micro", "Caliburn.Micro.Core", "Cyotek.Drawing.BitmapFont", "DotSpatial.Data", "DotSpatial.Mono", "DotSpatial.Projections", "DotSpatial.Serialization", "DotSpatial.Topology", "EntityFramework", "Extended.Wpf.Toolkit", "FontAwesome.WPF", "HelixToolkit", "HelixToolkit.Wpf", "Kml2Sql", "LinqStatistics", "Microsoft-WindowsAPICodePack-Core", "Microsoft-WindowsAPICodePack-Shell", "Microsoft.SqlServer.Types", "Microsoft.Xaml.Behaviors.Wpf", "morelinq", "PDFsharp", "Rh.DateRange.Picker", "SharpKml.Core", "System.ValueTuple", "Accord", "Accord.Math", "Accord.Statistics", "BingMapsRESTToolkit", "BitMiracle.LibTiff.NET", "GeoAPI", "GeoAPI.CoordinateSystems", "GeoAPI.Core", "geometry3Sharp", "LiteDB", "MathNet.Numerics", "MIConvexHull", "Microsoft.Data.Edm", "Microsoft.Data.OData", "Microsoft.Data.Services.Client", "Microsoft.Extensions.DependencyInjection.Abstractions", "Microsoft.Extensions.Logging.Abstractions", "Microsoft.Maps.MapControl.WPF", "Microsoft.NETCore.Platforms", "NETStandard.Library", "NetTopologySuite", "NetTopologySuite.CoordinateSystems", "NetTopologySuite.Core", "NetTopologySuite.Diagnostics.Tracing", "Newtonsoft.Json", "ProjNET", "SQLitePCLRaw.core", "SQLitePCLRaw.lib.e_sqlite3.linux", "SQLitePCLRaw.lib.e_sqlite3.osx", "SQLitePCLRaw.lib.e_sqlite3.v110_xp", "SQLitePCLRaw.provider.e_sqlite3.net45", "System.Buffers", "System.Linq.Dynamic", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Spatial", "System.Threading.Tasks.Dataflow", "EntityFramework.de", "Microsoft.Spatial", "sqlite-net-pcl", "SQLitePCLRaw.bundle_green", "Castle.Core", "Moq", "MSTest.TestAdapter", "MSTest.TestFramework", "System.Threading.Tasks.Extensions"], "https://github.com/mdolab/baseclasses": ["numpy", "numpydoc"], "https://github.com/dams-mcda/Dams-MCDA": ["django", "django-filter", "djangorestframework", "markdown", "psycopg2-binary"], "https://github.com/LinuNils/TMC_reproduced": ["r"], "https://github.com/alan-turing-institute/TCPDBench": ["colorama", "labella", "numpy", "scipy", "tabulate", "termcolor"], "https://github.com/churchill-lab/emase": ["wheel", "pytest"], "https://github.com/pyspec/pyspec": ["numpy"], "https://github.com/FelixHenninger/lab.js": ["lerna", "onchange", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-call-delegate", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-flow", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-typescript", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-flow-strip-types", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-react-constant-elements", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-typescript", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@csstools/convert-colors", "@fortawesome/fontawesome-free", "@lerna/add", "@lerna/batch-packages", "@lerna/bootstrap", "@lerna/changed", "@lerna/check-working-tree", "@lerna/child-process", "@lerna/clean", "@lerna/cli", "@lerna/collect-updates", "@lerna/command", "@lerna/conventional-commits", "@lerna/create", "@lerna/create-symlink", "@lerna/describe-ref", "@lerna/diff", "@lerna/exec", "@lerna/filter-options", "@lerna/filter-packages", "@lerna/get-npm-exec-opts", "@lerna/global-options", "@lerna/has-npm-version", "@lerna/import", "@lerna/init", "@lerna/link", "@lerna/list", "@lerna/listable", "@lerna/log-packed", "@lerna/npm-conf", "@lerna/npm-dist-tag", "@lerna/npm-install", "@lerna/npm-publish", "@lerna/npm-run-script", "@lerna/output", "@lerna/package", "@lerna/package-graph", "@lerna/project", "@lerna/prompt", "@lerna/publish", "@lerna/resolve-symlink", "@lerna/rimraf-dir", "@lerna/run", "@lerna/run-lifecycle", "@lerna/run-parallel-batches", "@lerna/symlink-binary", "@lerna/symlink-dependencies", "@lerna/timer", "@lerna/validation-error", "@lerna/version", "@lerna/write-log-file", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@sinonjs/commons", "@sinonjs/formatio", "@sinonjs/samsam", "@svgr/core", "@svgr/webpack", "@types/anymatch", "@types/node", "@types/prop-types", "@types/react", "@types/tapable", "@types/uglify-js", "@types/webpack", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "acorn-es7-plugin", "acorn-globals", "acorn-jsx", "acorn-walk", "address", "adm-zip", "after", "agent-base", "agentkeepalive", "ajv", "ajv-errors", "ajv-keywords", "alphanum-sort", "amdefine", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "append-transform", "aproba", "archiver", "archiver-utils", "are-we-there-yet", "argparse", "aria-query", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-equal", "array-filter", "array-find-index", "array-flatten", "array-from", "array-ify", "array-includes", "array-map", "array-reduce", "array-slice", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assertion-error", "assign-symbols", "ast-types-flow", "astral-regex", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "attr-accept", "author-regex", "autobind-decorator", "autoprefixer", "aws-sign2", "aws4", "axobject-query", "babel-code-frame", "babel-core", "babel-eslint", "babel-extract-comments", "babel-generator", "babel-helper-evaluate-path", "babel-helper-flip-expressions", "sphinx", "sphinx-rtd-theme", "electron", "esm", "glob", "lodash", "mime", "@sentry/browser", "@welldone-software/why-did-you-render", "babel-jest", "bootstrap", "classnames", "common-tags", "fabric", "file-saver", "formik", "hash.js", "htmlhint", "jszip", "konva", "localforage", "moment", "monaco-editor-webpack-plugin", "node-sass", "papaparse", "parse-author", "prop-types", "react", "react-app-rewired", "react-dnd", "react-dnd-html5-backend", "react-dom", "react-konva", "react-modal", "react-monaco-editor", "react-redux", "react-scripts", "react-transition-group", "reactstrap", "redux", "redux-devtools-extension", "reselect", "serialize-javascript", "shx", "slugify", "uuid4", "babel-loader", "babel-plugin-istanbul", "babel-plugin-lodash", "babel-preset-minify", "babel-regenerator-runtime", "chai", "core-js", "cross-env", "es2015-proxy", "es6-promise", "eslint", "eslint-config-airbnb", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "fast-async", "karma", "karma-babel-preprocessor", "karma-chai", "karma-chrome-launcher", "karma-coverage", "karma-mocha", "karma-requirejs", "karma-sauce-launcher", "karma-sinon", "lodash-webpack-plugin", "mocha", "nodent", "postcss-cli", "postcss-preset-env", "requirejs", "seedrandom", "shelljs", "shim-keyboard-event-key", "sinon", "terser-webpack-plugin", "ua-parser-js", "webpack", "webpack-bundle-analyzer", "webpack-cli", "whatwg-fetch"], "https://github.com/sonjageorgievska/CClusTera": ["grunt", "grunt-browserify", "grunt-contrib-clean", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-jsdoc", "nonew", "three", "three-buffergeometry-sort", "three.trackball"], "https://github.com/mrkrd/cochlea": ["numpy", "pandas", "scipy"], "https://github.com/juy/setting": ["illuminate/database", "illuminate/support", "php"], "https://github.com/swartn/cmipdata": ["cdo", "matplotlib", "netcdf4", "numpy", "mock", "numpydoc", "sphinxcontrib-programoutput"], "https://github.com/simetenn/uncertainpy": ["chaospy", "exdir", "h5py", "matplotlib", "multiprocess", "numpy", "ruamel-yaml", "salib", "scipy", "seaborn", "six", "tqdm", "xvfbwrapper", "alabaster", "anaconda-client", "anaconda-navigator", "anaconda-project", "asn1crypto", "astroid", "astropy", "attrs", "babel", "backports-shutil-get-terminal-size", "beautifulsoup4", "bitarray", "bkcharts", "blaze", "bleach", "bokeh", "boto", "bottleneck", "certifi", "cffi", "chardet", "click", "cloudpickle", "clyent", "colorama", "conda", "conda-build", "conda-verify", "connplotter", "contextlib2", "coverage", "cryptography", "cycler", "cython", "cytoolz", "dask", "datashape", "decorator", "dill", "distributed", "docutils", "efel", "elephant", "entrypoints", "et-xmlfile", "fastcache", "filelock", "flask", "flask-cors", "gevent", "glob2", "gmpy2", "greenlet", "heapdict", "html5lib", "idna", "imageio", "imagesize", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "isort", "itsdangerous", "jdcal", "jedi", "jinja2", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "jupyterlab", "jupyterlab-launcher", "lazy-object-proxy", "llvmlite", "locket", "lxml", "markupsafe", "mccabe", "mistune", "mpmath", "msgpack-python", "multipledispatch", "navigator-updater", "nbconvert", "nbformat", "neo", "networkx", "neuron", "nltk", "nose", "notebook", "numba", "numexpr", "numpydoc", "odo", "olefile", "openpyxl", "packaging", "pandas", "pandocfilters", "parso", "partd", "path-py", "pathlib2", "patsy", "pep8", "pexpect", "pickleshare", "pillow", "pip", "pkginfo", "pluggy", "ply", "prompt-toolkit", "psutil", "ptyprocess", "py", "pycodestyle", "pycosat", "pycparser", "pycrypto", "pycurl", "pyflakes", "pygments", "pylint", "pynest", "pyodbc", "pyopenssl", "pyparsing", "pysocks", "pytest", "python-dateutil", "pytz", "pywavelets", "pyyaml", "pyzmq", "qtawesome", "qtconsole", "qtpy", "quantities", "requests", "rope", "scikit-image", "scikit-learn", "send2trash", "setuptools", "simplegeneric", "singledispatch", "snowballstemmer", "sortedcollections", "sortedcontainers", "sphinx", "sphinxcontrib-websupport", "spyder", "sqlalchemy", "statsmodels", "sympy", "tables", "tblib", "terminado", "testpath", "toolz", "topology", "tornado", "traitlets", "typing", "unicodecsv", "urllib3", "wcwidth", "webencodings", "werkzeug", "wheel", "widgetsnbextension", "wrapt", "xlrd", "xlsxwriter", "xlwt", "zict"], "https://github.com/liminoid/liminoid-cli": ["@babel/cli", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-builder-react-jsx-experimental", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-development", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-react-pure-annotations", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/preset-react", "@babel/register", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@eslint/eslintrc", "@mdx-js/loader", "@mdx-js/mdx", "@mdx-js/react", "@mdx-js/util", "@types/anymatch", "@types/color-name", "@types/glob", "@types/hast", "@types/html-minifier-terser", "@types/json-schema", "@types/json5", "@types/mdast", "@types/minimatch", "@types/node", "@types/parse5", "@types/source-list-map", "@types/tapable", "@types/uglify-js", "@types/unist", "@types/webpack", "@types/webpack-sources", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "accepts", "acorn", "acorn-jsx", "ajv", "ajv-errors", "ajv-keywords", "ansi-align", "ansi-colors", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-includes", "array-union", "array-uniq", "array-unique", "array.prototype.flat", "asn1.js", "assert", "assign-symbols", "astral-regex", "async", "async-each", "async-limiter", "atob", "babel-eslint", "babel-loader", "babel-plugin-apply-mdx-type-prop", "babel-plugin-dynamic-import-node", "babel-plugin-extract-import-names", "bail", "balanced-match", "base", "base64-js", "batch", "big.js", "binary-extensions", "bindings", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "boxen", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "callsites", "camel-case", "camelcase", "camelcase-css", "caniuse-lite", "ccount", "chalk", "character-entities", "character-entities-legacy", "character-reference-invalid", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "clean-css", "clean-webpack-plugin", "cli-boxes", "cli-cursor", "cli-spinners", "cliui", "clone", "collapse-white-space", "collection-visit", "color-convert", "color-name", "comma-separated-tokens", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "confusing-browser-globals", "eslint", "eslint-config-airbnb-base", "eslint-config-prettier", "eslint-plugin-babel", "eslint-plugin-import", "eslint-plugin-prettier", "html-webpack-plugin", "ignore-styles", "liminoid-mdx", "ora", "prettier", "react", "react-dom", "webpack", "webpack-dev-server", "yargs", "@rebass/preset", "@theme-ui/prism", "core-js", "liminoid-react", "lodash.merge", "rebass", "theme-ui", "vega", "vega-embed", "vega-lite"], "https://github.com/ben-aaron188/netanos": ["mocha", "ner", "promise"], "https://github.com/timtroendle/urban-occupants-paper": ["pytus2000"], "https://github.com/openshs/openshs": ["click", "indexed"], "https://github.com/silx-kit/silx": ["coverage", "lxml", "nbsphinx", "pandoc", "pillow", "wheel", "cython", "fabio", "h5py", "mako", "matplotlib", "numpy", "pyopencl", "pyopengl", "pyqt5", "python-dateutil", "qtconsole", "scipy", "setuptools", "six", "pybind11"], "https://github.com/Duke-GCB/iMADS": ["mock", "nose", "biopython", "flask", "jinja2", "psycopg2", "pyyaml", "requests", "sqlalchemy", "twobitreader", "babel-core", "babel-loader", "babel-plugin-transform-class-properties", "babel-polyfill", "babel-preset-env", "babel-preset-react", "chai", "css-loader", "es6-promise", "moment", "react", "react-dom", "react-loader", "react-modal", "react-router", "react-tap-event-plugin", "style-loader", "webpack", "webpack-cli"], "https://github.com/ecuracosta/Modeling_the_spatiotemporal_control_of_cell_cycle_acceleration": ["matplotlib", "numpy", "pandas", "scipy", "seaborn"], "https://github.com/aoelen/Survey-table-importer": ["beautifulsoup4", "certifi", "chardet", "editdistance", "habanero", "hammock", "idna", "lxml", "numpy", "orkg", "pandas", "python-dateutil", "python-dotenv", "pytz", "requests", "six", "soupsieve", "tei-reader", "termcolor", "tqdm", "urllib3"], "https://github.com/nasa/RHEAS": ["mock", "setuptools"], "https://github.com/1313e/PRISM": ["cmasher", "e13tools", "h5py", "hickle", "matplotlib", "mlxtend", "mpi4pyd", "numpy", "pyqt5", "qtpy", "scikit-learn", "scipy", "sortedcontainers", "threadpoolctl", "tqdm", "check-manifest", "emcee", "pytest", "pytest-cov", "pytest-flake8", "pytest-mpl", "pytest-ordering", "pytest-qt", "readme-renderer", "setuptools", "twine", "wheel", "sphinx", "sphinx-autobuild", "sphinx-rtd-theme", "corner", "jupyter", "jupyterlab"], "https://github.com/COSMIC-PopSynth/COSMIC": ["astropy", "configparser", "h5py", "ipython", "matplotlib", "numpy", "numpydoc", "pandas", "scipy", "sphinx", "sphinx-automodapi", "sphinx-bootstrap-theme", "sphinx-rtd-theme", "sphinxcontrib-programoutput", "tables", "tqdm", "pytest"], "https://github.com/Mykrobe-tools/mykrobe": ["anytree", "biopython", "cython", "detox", "mongoengine", "numpy", "pytest", "pytest-cov", "pyvcf", "requests", "tox"], "https://github.com/keflavich/APEX_CMZ_H2CO": ["agpy", "astropy", "astroquery", "fits-tools", "matplotlib", "pyspeckit", "pytest", "sdpy", "spectral-cube"], "https://github.com/datacite/omniauth-orcid": ["bundler", "codeclimate-test-reporter", "omniauth-oauth2", "rack-test", "rspec", "ruby_dig", "simplecov", "webmock"], "https://github.com/clelange/cds_paper_bot": ["daiquiri", "feedparser", "imageio", "lxml", "maya", "pylatexenc", "requests", "twython", "wand"], "https://github.com/lifs-tools/pygoslin": ["pytest"], "https://github.com/sblunt/orbitize": ["astropy", "corner", "cython", "deprecation", "emcee", "h5py", "matplotlib", "numpy", "ptemcee", "pytest", "scipy"], "https://github.com/holoviz/panel": ["bokeh", "markdown", "param", "pyct", "pyviz-comms", "tqdm", "@bokeh/bokehjs", "@bokeh/gloo2", "@bokeh/numbro", "@bokeh/slickgrid", "@luma.gl/constants", "@types/debounce", "@types/gl-matrix", "@types/jquery", "@types/sizzle", "@types/slickgrid", "choices.js", "d", "debounce", "deepmerge", "es5-ext", "es6-iterator", "es6-map", "es6-promise", "es6-set", "es6-symbol", "es6-weak-map", "event-emitter", "ext", "flatbush", "flatpickr", "flatqueue", "fuse.js", "gl-matrix", "hammerjs", "jquery", "jquery-ui", "js-tokens", "json-formatter-js", "loose-envify", "mgrs", "next-tick", "nouislider", "proj4", "redux", "sprintf-js", "symbol-observable", "timezone", "tslib", "type", "underscore.template", "wkt-parser", "asgiref", "attrs", "autobahn", "automat", "cffi", "channels", "colorcet", "constantly", "cryptography", "daphne", "django", "holoviews", "hvplot", "hyperlink", "idna", "incremental", "jinja2", "markupsafe", "numpy", "packaging", "pandas", "panel", "pillow", "pyasn1", "pyasn1-modules", "pycparser", "pyhamcrest", "pyopenssl", "pyparsing", "python-dateutil", "pytz", "pyyaml", "service-identity", "six", "sqlparse", "tornado", "twisted", "txaio", "zope-interface"], "https://github.com/fiji/Trainable_Segmentation": ["junit:junit", "net.imagej:ij", "net.imglib2:imglib2", "net.imglib2:imglib2-algorithm-gpl", "net.imglib2:imglib2-ij", "nz.ac.waikato.cms.weka:weka-dev", "org.apache.commons:commons-math3", "org.scijava:vecmath", "sc.fiji:Anisotropic_Diffusion_2D", "sc.fiji:fiji-lib", "sc.fiji:imagescience", "sc.fiji:VIB-lib"], "https://github.com/SymbioticLab/Salus": ["absl-py", "backports-tempfile", "enum34", "future", "future-fstrings", "futures", "green", "numpy", "parameterized", "pathlib2", "psutil", "subprocess32", "typing"], "https://github.com/uw-cryo/skysat_stereo": ["requests"], "https://github.com/NaturalHistoryMuseum/inselect": ["numpy", "pillow", "python-dateutil", "pytz", "pyyaml", "schematics", "scikit-learn", "scipy", "unicodecsv"], "https://github.com/ishomam/high-cycle-fatigue-tool": ["matplotlib", "numpy", "pandas", "pyface", "scipy", "traits", "traitsui"], "https://github.com/gwu-libraries/TweetSets": ["amqp", "appdirs", "billiard", "celery", "certifi", "chardet", "click", "elasticsearch", "elasticsearch-dsl", "flask", "idna", "itsdangerous", "jinja2", "kombu", "markupsafe", "packaging", "pyparsing", "pyspark", "python-dateutil", "pytz", "redis", "requests", "six", "twarc", "urllib3", "vine", "werkzeug"], "https://github.com/smart-facility/cognicity-reports": ["istanbul", "jsdoc", "jshint", "mocha", "pg", "rsvp", "unit.js", "winston"], "https://github.com/randlab/geocv": ["appdirs", "attrs", "backcall", "bleach", "cycler", "decorator", "defusedxml", "entrypoints", "imageio", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "kiwisolver", "markupsafe", "matplotlib", "meshio", "mistune", "more-itertools", "mpstool", "nbconvert", "nbformat", "networkx", "notebook", "numpy", "pandas", "pandocfilters", "parso", "pexpect", "pickleshare", "pillow", "pkg-resources", "prometheus-client", "prompt-toolkit", "properscoring", "ptyprocess", "py-vox-io", "pygments", "pyparsing", "pyrsistent", "python-dateutil", "pytz", "pyvista", "pywavelets", "pyzmq", "qtconsole", "scikit-image", "scikit-learn", "scipy", "scooby", "send2trash", "six", "terminado", "testpath", "tornado", "traitlets", "vtk", "wcwidth", "webencodings", "widgetsnbextension", "zipp"], "https://github.com/stain/profilechecker": ["net.sourceforge.owlapi:owlapi-contract", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.slf4j:slf4j-simple"], "https://github.com/JasperBoom/caltha": ["biopython", "numpy", "pandas", "pre-commit", "pyfastx", "pytest", "setuptools", "vsearch"], "https://github.com/Karel-Kroeze/adaptive-hypothesis-grammars": ["balanced-match", "brace-expansion", "concat-map", "export-dir", "fs.realpath", "glob", "inflight", "inherits", "lodash", "minimatch", "once", "path-is-absolute", "wrappy"], "https://github.com/michael-pagan/Netflix-Analysis": ["@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@types/glob", "@types/minimatch", "@types/node", "accepts", "after", "aggregate-error", "ansi-colors", "ansi-gray", "ansi-regex", "ansi-styles", "ansi-wrap", "anymatch", "append-buffer", "archy", "arr-diff", "arr-filter", "arr-flatten", "arr-map", "arr-union", "array-each", "array-initial", "array-last", "array-slice", "array-sort", "array-union", "array-unique", "arraybuffer.slice", "assign-symbols", "async", "async-done", "async-each", "async-each-series", "async-limiter", "async-settle", "atob", "axios", "bach", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64id", "batch", "better-assert", "binary-extensions", "blob", "bootstrap", "brace-expansion", "braces", "browser-sync", "browser-sync-client", "browser-sync-ui", "bs-recipes", "bs-snippet-injector", "buffer-equal", "buffer-from", "bytes", "cache-base", "callsite", "camelcase", "chalk", "chokidar", "chownr", "class-utils", "clean-stack", "cliui", "clone", "clone-buffer", "clone-stats", "cloneable-readable", "code-point-at", "collection-map", "collection-visit", "color-support", "commander", "component-bind", "component-emitter", "component-inherit", "concat-map", "concat-stream", "connect", "connect-history-api-fallback", "convert-source-map", "cookie", "copy-descriptor", "copy-props", "core-util-is", "d", "debug", "decamelize", "decode-uri-component", "default-compare", "default-resolution", "define-properties", "define-property", "del", "depd", "destroy", "detect-file", "dev-ip", "dir-glob", "duplexify", "each-props", "easy-extender", "eazy-logger", "ee-first", "encodeurl", "end-of-stream", "engine.io", "engine.io-client", "engine.io-parser", "error-ex", "es5-ext", "es6-iterator", "es6-symbol", "es6-weak-map", "escape-html", "escape-string-regexp", "etag", "eventemitter3", "expand-brackets", "expand-tilde", "extend", "extend-shallow", "extglob", "fancy-log", "fast-glob", "fastq", "fill-range", "finalhandler", "find-up", "findup-sync", "fined", "flagged-respawn", "flush-write-stream", "follow-redirects", "for-in", "for-own", "fragment-cache", "fresh", "fs-extra", "fs-minipass", "fs-mkdirp-stream", "fs.realpath", "fsevents", "function-bind", "get-caller-file", "get-value", "glob", "glob-parent", "glob-stream", "glob-watcher", "global-modules", "global-prefix", "globby", "glogg", "graceful-fs", "gulp", "gulplog", "has-ansi", "has-binary2", "has-cors", "has-symbols", "has-value", "has-values", "homedir-polyfill", "hosted-git-info", "http-errors", "http-proxy", "iconv-lite", "ignore", "immutable", "indent-string", "indexof", "inflight", "inherits", "ini", "interpret", "invert-kv", "is-absolute", "is-accessor-descriptor", "is-arrayish", "is-binary-path", "is-buffer", "is-data-descriptor", "is-descriptor", "is-extendable", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-negated-glob", "is-number", "is-number-like", "is-path-cwd", "is-path-inside", "is-plain-object", "is-relative", "is-unc-path", "is-utf8", "is-valid-glob", "is-windows", "is-wsl", "isarray", "isexe", "isobject", "jquery", "jquery.easing", "json-stable-stringify-without-jsonify", "jsonfile", "just-debounce", "kind-of", "last-run", "lazystream", "lcid", "lead", "liftoff", "limiter", "load-json-file", "localtunnel", "lodash", "lodash.isfinite", "make-iterator", "map-cache", "map-visit", "matchdep", "merge-stream", "merge2", "micromatch", "mime", "mime-db", "mime-types", "minimatch", "minimist", "minipass", "minizlib", "mitt", "mixin-deep", "mkdirp", "ms", "mute-stdout", "nan", "nanomatch", "negotiator", "next-tick", "normalize-package-data", "normalize-path", "now-and-later"], "https://github.com/Auerilas/ecopy": ["matplotlib", "numpy", "pandas", "patsy", "scipy"], "https://github.com/nadavbra/pwas": ["biopython", "matplotlib", "numpy", "pandas", "scipy", "statsmodels"], "https://github.com/orbingol/NURBS-Python": ["cython", "matplotlib", "numpy", "plotly", "setuptools", "pytest"], "https://github.com/MStarmans91/GISTRadiomics": ["worc"], "https://github.com/seankmartin/NeuroChaT": ["h5py", "matplotlib", "numpy", "openpyxl", "pandas", "pyinstaller", "pypdf2", "pyqt5", "pywin32", "pyyaml", "scikit-learn", "scipy", "xlrd", "ipython", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-apidoc"], "https://github.com/gossi/docblock": ["phootwork/collection", "phootwork/lang", "phootwork/php-cs-fixer-config", "php", "phpunit/phpunit", "vimeo/psalm"], "https://github.com/byu-vv-lab/mercury": ["com.microsoft:z3", "junit:junit", "org.antlr:antlr4-maven-plugin", "org.antlr:antlr4-runtime", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.maven.plugins:maven-surefire-report-plugin"], "https://github.com/zfit/phasespace": ["tensorflow", "tensorflow-probability", "bumpversion", "coverage", "flake8", "matplotlib", "numpy", "pip", "pytest", "pytest-cov", "pytest-xdist", "scipy", "sphinx", "sphinx-bootstrap-theme", "twine", "uproot", "watchdog", "wget", "wheel"], "https://github.com/jswoboda/GeoDataPython": ["astropy", "h5py", "nose", "numpy", "pandas", "pathlib2", "python-dateutil", "scipy", "six", "tables"], "https://github.com/datalad/datalad-neuroimaging": ["datalad", "nibabel", "pandas", "pybids", "pydicom"], "https://github.com/schxslt/schxslt": ["name.dmaus.schxslt:java", "name.dmaus.schxslt:schxslt", "org.apache.ant:ant", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.sonatype.plugins:nexus-staging-maven-plugin", "commons-cli:commons-cli", "net.sf.saxon:Saxon-HE", "org.slf4j:slf4j-nop", "io.xspec.maven:xspec-maven-plugin", "name.dmaus.schxslt:testsuite-maven-plugin", "org.apache.maven.plugins:maven-assembly-plugin", "xalan:xalan", "com.coderplus.maven.plugins:copy-rename-maven-plugin", "name.dmaus.schxslt:xqunit-maven-plugin"], "https://github.com/christianbrodbeck/Eelbrain": ["colormath", "cython", "keyring", "matplotlib", "mne", "nibabel", "nilearn", "numba", "numpy", "pillow", "scanpydoc", "scipy", "setuptools", "sklearn", "sphinx", "sphinx-autodoc-typehints", "sphinx-gallery", "sphinx-rtd-theme", "sphinxcontrib-bibtex", "tqdm"], "https://github.com/VHellendoorn/ICLR20-Great": ["pyaml", "tensorflow"], "https://github.com/kutaslab/merp2tbl": ["merp2tbl", "pytest", "pytest-benchmark", "python", "pyyaml", "yamllint"], "https://github.com/pytransitions/transitions": ["six", "pygraphviz", "dill", "graphviz", "mock", "pycodestyle", "pytest", "pytest-cov", "pytest-runner", "pytest-xdist", "tox"], "https://github.com/JoshuaDull/Text-Recognition-Introduction": ["pyyaml", "update-copyright"], "https://github.com/lejon/PartiallyCollapsedLDA": ["cc.mallet:mallet", "com.fasterxml.jackson.core:jackson-databind", "com.google.guava:guava", "commons-cli:commons-cli", "commons-configuration:commons-configuration", "it.unimi.dsi:fastutil", "org.apache.commons:commons-math3", "org.apache.commons:commons-pool2", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:buildnumber-maven-plugin", "org.projectlombok:lombok"], "https://github.com/Sulstice/global-chem": ["sphinx-bootstrap-theme", "pytest", "pytest-runner"], "https://github.com/glottolog/pyglottolog": ["attrs", "cldfcatalog", "clldutils", "csvw", "latexcodec", "markdown", "nameparser", "newick", "purl", "pybtex", "pycldf", "pycountry", "requests", "sqlalchemy", "termcolor", "tqdm", "unidecode", "whoosh"], "https://github.com/SebastianBocquet/MiraTitanHMFemulator": ["numpy", "scipy", "ipython", "numpydoc"], "https://github.com/LanguageMachines/PICCL": ["clam"], "https://github.com/CCMi-FIT/ontouml-csharp-utils": ["xunit", "xunit.abstractions", "xunit.assert", "xunit.core", "xunit.extensibility.core", "xunit.extensibility.execution", "xunit.runner.visualstudio"], "https://github.com/j-i-l/pyAlluv": ["matplotlib", "nose", "nose-cover3"], "https://github.com/ypriverol/cubascience": ["chart-studio", "jupyter", "jupyter-disqus", "matplotlib", "nbformat", "pandas", "plotly", "plotly-express", "seaborn"], "https://github.com/pc2/HPCC_FPGA": ["sphinx", "sphinx-rtd-theme", "bashlex", "bibtexparser", "certifi", "chardet", "click", "compiledb", "cpplint", "docopt", "enum34", "flask", "future", "grip", "idna", "itsdangerous", "jinja2", "latexcodec", "markdown", "markupsafe", "path-and-address", "pybtex", "pygments", "pyparsing", "pyyaml", "requests", "shutilwhich", "six", "urllib3", "werkzeug", "pandas", "matplotlib", "numpy"], "https://github.com/rrwick/Minipolish": ["edlib", "pytest"], "https://github.com/dftlibs/xcint": ["cffi", "cpp-coveralls", "pycodestyle", "pytest", "pyyaml", "numpy"], "https://github.com/pyvideo/pyvideo": ["blinker", "docutils", "feedgenerator", "jinja2", "markupsafe", "pelican", "pelican-alias", "pelican-extended-sitemap", "pygments", "python-dateutil", "pytz", "six", "unidecode", "click", "first", "pip-tools", "browsermob-proxy", "certifi", "chardet", "idna", "lazy", "needle", "nose", "pillow", "psutil", "py", "pytest", "requests", "selenium", "urllib3"], "https://github.com/WIPACrepo/file_catalog": ["alabaster", "asn1crypto", "atomicwrites", "attrs", "babel", "certifi", "cffi", "chardet", "coverage", "cryptography", "docutils", "idna", "imagesize", "jinja2", "ldap3", "markupsafe", "more-itertools", "packaging", "pluggy", "py", "pyasn1", "pycparser", "pygments", "pyjwt", "pymongo", "pyparsing", "pytest", "pytz", "requests", "requests-futures", "requests-mock", "requests-toolbelt", "six", "snowballstemmer", "sphinx", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "tornado", "urllib3", "pyyaml", "xmltodict"], "https://github.com/Helveg/patch": ["mpi4py", "nrn-glia", "setuptools", "sphinx", "sphinxcontrib-contentui"], "https://github.com/par12005/TPPS": ["ext-zip", "statonlab/tripal-test-suite", "doctrine/instantiator", "fzaninotto/faker", "guzzlehttp/guzzle", "guzzlehttp/promises", "guzzlehttp/psr7", "myclabs/deep-copy", "phar-io/manifest", "phar-io/version", "phpdocumentor/reflection-common", "phpdocumentor/reflection-docblock", "phpdocumentor/type-resolver", "phpspec/prophecy", "phpunit/php-code-coverage", "phpunit/php-file-iterator", "phpunit/php-text-template", "phpunit/php-timer", "phpunit/php-token-stream", "phpunit/phpunit", "phpunit/phpunit-mock-objects", "psr/http-message", "psr/log", "ralouphie/getallheaders", "sebastian/code-unit-reverse-lookup", "sebastian/comparator", "sebastian/diff", "sebastian/environment", "sebastian/exporter", "sebastian/global-state", "sebastian/object-enumerator", "sebastian/object-reflector", "sebastian/recursion-context", "sebastian/resource-operations", "sebastian/version", "symfony/console", "symfony/debug", "symfony/polyfill-ctype", "symfony/polyfill-mbstring", "theseer/tokenizer", "webmozart/assert"], "https://github.com/NixtonM/srsmp": ["cffi", "keras", "matplotlib", "nicelib", "numpy", "pyvisa", "scikit-learn", "tensorflow"], "https://github.com/onnovalkering/brane": ["ipykernel", "ipython", "jupyter-client", "jupyterlab", "requests", "zmq", "@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@babel/runtime", "@blueprintjs/core", "@blueprintjs/icons", "@blueprintjs/select", "@fortawesome/fontawesome-free", "@jupyterlab/application", "@jupyterlab/apputils", "@jupyterlab/codeeditor", "@jupyterlab/codemirror", "@jupyterlab/coreutils", "@jupyterlab/docregistry", "@jupyterlab/launcher", "@jupyterlab/nbformat", "@jupyterlab/observables", "@jupyterlab/rendermime", "@jupyterlab/rendermime-interfaces", "@jupyterlab/services", "@jupyterlab/settingregistry", "@jupyterlab/statedb", "@jupyterlab/statusbar", "@jupyterlab/ui-components", "@lumino/algorithm", "@lumino/application", "@lumino/collections", "@lumino/commands", "@lumino/coreutils", "@lumino/disposable", "@lumino/domutils", "@lumino/dragdrop", "@lumino/keyboard", "@lumino/messaging", "@lumino/polling", "@lumino/properties", "@lumino/signaling", "@lumino/virtualdom", "@lumino/widgets", "@types/color-name", "@types/dom4", "@types/eslint-visitor-keys", "@types/json-schema", "@types/prop-types", "@types/react", "@types/react-dom", "@typescript-eslint/eslint-plugin", "@typescript-eslint/experimental-utils", "@typescript-eslint/parser", "@typescript-eslint/typescript-estree", "acorn", "acorn-jsx", "ajv", "ansi-escapes", "ansi-regex", "ansi-styles", "argparse", "array-uniq", "astral-regex", "balanced-match", "brace-expansion", "callsites", "chalk", "chardet", "classnames", "cli-cursor", "cli-width", "codemirror", "color-convert", "color-name", "concat-map", "create-react-context", "cross-spawn", "csstype", "debug", "deep-equal", "deep-is", "define-properties", "doctrine", "dom-helpers", "dom-serializer", "dom4", "domelementtype", "domhandler", "domutils", "emoji-regex", "entities", "es-abstract", "es-to-primitive", "escape-string-regexp", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "external-editor", "fast-deep-equal", "fast-diff", "fast-json-stable-stringify", "fast-levenshtein", "figures", "file-entry-cache", "flat-cache", "flatted", "free-style", "fs.realpath", "function-bind", "functional-red-black-tree", "get-stdin", "glob", "glob-parent", "globals", "gud", "has", "has-flag", "has-symbols", "htmlparser2", "iconv-lite", "ignore", "import-fresh", "imurmurhash", "inflight", "inherits", "inquirer", "is-arguments", "is-callable", "is-date-object", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-negative-zero", "is-regex", "is-symbol", "isexe", "js-tokens", "js-yaml", "json-schema-traverse", "json-stable-stringify-without-jsonify", "json5", "levn", "lodash", "lodash.clonedeep", "lodash.escape", "lodash.escaperegexp", "lodash.isplainobject", "lodash.isstring", "lodash.mergewith", "loose-envify", "marked", "mimic-fn", "minimatch", "minimist", "mkdirp", "moment", "ms", "mute-stream", "natural-compare", "nice-try", "node-fetch", "normalize.css", "number-is-nan", "object-assign", "object-inspect", "object-is", "object-keys", "object.assign", "once", "onetime", "optionator", "os-tmpdir", "parent-module", "path-is-absolute", "path-key", "path-posix", "popper.js", "postcss", "prelude-ls", "prettier", "prettier-linter-helpers", "progress", "prop-types", "punycode", "querystringify", "react", "react-accessible-accordion", "react-dom", "react-is", "react-lifecycles-compat", "react-popper", "react-transition-group", "readable-stream", "regenerator-runtime", "regexp.prototype.flags", "regexpp", "requires-port", "resize-observer-polyfill", "resolve-from", "restore-cursor", "rimraf", "run-async", "rxjs", "safe-buffer", "safer-buffer", "sanitize-html", "scheduler", "semver", "shebang-command", "shebang-regex", "signal-exit", "slice-ansi", "source-map", "sprintf-js", "srcset", "string-width", "string.prototype.trimend", "string.prototype.trimstart", "string_decoder", "strip-ansi", "strip-json-comments", "supports-color", "table", "text-table", "through", "tmp", "tslib", "tsutils", "type-check", "type-fest", "typed-styles", "typescript", "typestyle", "uri-js", "url-parse", "util-deprecate", "v8-compile-cache", "warning", "which", "word-wrap", "wrappy", "write", "ws", "xtend", "@types/base16", "@types/lodash", "@types/lodash.curry", "@types/react-tabs", "base16", "clsx", "color", "color-string", "is-arrayish", "lodash.curry", "react-base16-styling", "react-json-tree", "react-tabs", "simple-swizzle"], "https://github.com/pygae/clifford": ["ipython", "matplotlib", "mpl-toolkits-clifford", "pyganja", "h5py", "numba", "numpy", "scipy", "sparse", "ipykernel", "ipywidgets", "nbsphinx", "pandas", "pygments", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex"], "https://github.com/Ajax23/PoreMS": ["matplotlib", "numpy", "pandas", "numpydoc", "sphinx", "sphinx-bootstrap-theme"], "https://github.com/Met4FoF/Code": ["astroid", "attrs", "bleach", "certifi", "cffi", "chardet", "click", "click-log", "colorama", "cryptography", "docutils", "gitdb", "gitpython", "hypothesis", "idna", "invoke", "isort", "jeepney", "keyring", "lazy-object-proxy", "mccabe", "more-itertools", "packaging", "pkginfo", "pluggy", "py", "pycparser", "pygments", "pylint", "pyparsing", "pytest", "python-gitlab", "python-semantic-release", "readme-renderer", "requests", "requests-toolbelt", "rfc3986", "secretstorage", "semver", "six", "smmap", "sortedcontainers", "toml", "tqdm", "twine", "urllib3", "wcwidth", "webencodings", "wheel", "wrapt", "alabaster", "appdirs", "babel", "backcall", "blinker", "brotli", "cachelib", "cloudpickle", "commonmark", "coverage", "dash-core-components", "dash-html-components", "dash-renderer", "dash-table", "decorator", "defusedxml", "dill", "distlib", "emoji", "entrypoints", "feedparser", "filelock", "filetype", "flask", "flask-assets", "flask-babel", "flask-compress", "flask-login", "frozendict", "future", "imagesize", "ipython", "ipython-genutils", "itsdangerous", "jedi", "jinja2", "jsonschema", "jupyter-client", "jupyter-console", "jupyter-core", "markdown", "markupsafe", "mistune", "nbconvert", "nbformat", "netaddr", "netifaces", "octoprint-filecheck", "octoprint-firmwarecheck", "pandocfilters", "parso", "pathtools", "pexpect", "pickleshare", "pillow", "prometheus-client", "prompt-toolkit", "ptyprocess", "pyasn1", "pylru", "pyro4", "pyrsistent", "pyyaml", "pyzmq", "qtconsole", "qtpy", "regex", "retrying", "rpi-gpio", "rsa", "sarge", "semantic-version", "send2trash", "sentry-sdk", "serpent", "sn3218", "snowballstemmer", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "spidev", "st7735", "terminado", "testpath", "tornado", "traitlets", "unidecode", "virtualenv", "watchdog", "webassets", "websocket-client", "werkzeug", "widgetsnbextension", "matplotlib", "numpy", "pandas", "scipy", "psutil", "pytest-cov", "pytest-timeout", "dash", "dash-cytoscape", "ipykernel", "networkx", "osbrain", "plotly", "time-series-buffer", "time-series-metadata", "nbsphinx", "recommonmark", "sphinx-rtd-theme", "gitdb2", "importlib-resources", "ndebug", "pathlib2", "smmap2", "typed-ast", "importlib-metadata", "pathspec", "zipp", "cycler", "kiwisolver", "python-dateutil", "pytz", "protobuf", "pyvisa", "pyvisa-py", "arviz", "cftime", "cython", "fastprogress", "h5py", "joblib", "netcdf4", "patsy", "pymc3", "scikit-learn", "theano", "typing-extensions", "xarray"], "https://github.com/cwru-pat/macro_lightning": ["astropy", "matplotlib", "numpy", "pytest", "pytest-astropy", "pytest-mpl", "scipy", "tqdm", "typing-extensions", "utilipy"], "https://github.com/phillima/asniffer": ["com.google.code.gson:gson", "com.google.guava:guava", "com.opencsv:opencsv", "commons-beanutils:commons-beanutils", "io.github.lukehutch:fast-classpath-scanner", "javax.xml.bind:jaxb-api", "junit:junit", "net.sf.esfinge:metadata", "org.apache.commons:commons-lang3", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-assembly-plugin", "org.eclipse.jdt:org.eclipse.jdt.core"], "https://github.com/timothydmorton/isochrones": ["nose", "numba", "numpy", "pandas", "pytables", "pyviz", "asciitree", "astropy", "astroquery", "configobj", "corner", "emcee", "scipy", "tables", "tqdm", "ipython", "nbsphinx", "sphinx"], "https://github.com/USEPA/IO-Model-Builder": ["flask", "matplotlib", "numpy", "pandas"], "https://github.com/UF-OCR/ocr-summary-accrual": ["flask", "flask-excel", "flask-login", "flask-paginate", "flask-session", "lxml", "numpy", "pandas", "pyexcel-xlsx", "requests", "xlrd", "zeep"], "https://github.com/toniher/mediawiki-BioDB": ["composer/installers", "mediawiki/semantic-media-wiki", "php"], "https://github.com/ncsa/OA4MP": ["junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.mortbay.jetty:maven-jetty-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "edu.uiuc.ncsa.myproxy:oa4mp-server-api", "edu.uiuc.ncsa.myproxy:oa4mp-server-loader-oauth1", "org.apache.maven.plugins:maven-war-plugin", "org.codehaus.mojo:buildnumber-maven-plugin", "javax.servlet:jstl", "javax.servlet:servlet-api", "mysql:mysql-connector-java", "org.mariadb.jdbc:mariadb-java-client", "org.postgresql:postgresql", "commons-codec:commons-codec", "edu.uiuc.ncsa.security:ncsa-security-util", "org.apache.maven.plugins:maven-surefire-plugin", "edu.uiuc.ncsa.maven.skin:oa4mp-skin", "edu.uiuc.ncsa.myproxy:myproxy-logon", "edu.uiuc.ncsa.myproxy:oa4mp-client-api", "edu.uiuc.ncsa.myproxy:oa4mp-client-loader-oauth1", "edu.uiuc.ncsa.myproxy:oa4mp-client-loader-oauth2", "edu.uiuc.ncsa.myproxy:oa4mp-server-loader-oauth2", "edu.uiuc.ncsa.security.delegation:ncsa-security-delegation-client", "edu.uiuc.ncsa.security.delegation:ncsa-security-delegation-common", "edu.uiuc.ncsa.security.delegation:ncsa-security-delegation-server", "edu.uiuc.ncsa.security.delegation:ncsa-security-oauth-1.0a", "edu.uiuc.ncsa.security.delegation:ncsa-security-oauth-2.0", "edu.uiuc.ncsa.security:ncsa-security-core", "edu.uiuc.ncsa.security:ncsa-security-servlet", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-project-info-reports-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.slf4j:jul-to-slf4j", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "net.sf.json-lib:json-lib", "net.sf.opencsv:opencsv", "org.jglobus:JGlobus-Core", "org.jglobus:jsse", "org.apache.maven.plugins:maven-jar-plugin", "com.typesafe:config", "edu.uiuc.ncsa.security:ncsa-qdl", "javax.mail:mail", "edu.uiuc.ncsa.myproxy:oa4mp-server-oauth2", "edu.uiuc.ncsa.myproxy:oa4mp-server-test", "javax.json:javax.json-api", "javax.ws.rs:javax.ws.rs-api", "jstl:jstl", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.glassfish:javax.json", "edu.uiuc.ncsa.myproxy:oa4mp-client-test", "edu.uiuc.ncsa.myproxy:oa4mp-client-webapp", "edu.uiuc.ncsa.myproxy:oa4mp-webapp", "javax.servlet:javax.servlet-api", "edu.uiuc.ncsa.myproxy:oa4mp-server-admin", "com.sun.xml.bind:jaxb-core", "com.sun.xml.bind:jaxb-impl", "javax.xml.bind:jaxb-api", "javax.activation:javax.activation-api"], "https://github.com/jensleitloff/CNN-Sentinel": ["gdal", "numpy", "skimage", "tensorflow", "tqdm"], "https://github.com/meraki-analytics/orianna": ["com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.fasterxml.jackson.datatype:jackson-datatype-joda", "com.google.guava:guava", "com.merakianalytics.datapipelines:datapipelines", "com.squareup.okhttp3:okhttp", "joda-time:joda-time", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.cache2k:cache2k-core", "org.codehaus.mojo:license-maven-plugin", "org.hamcrest:hamcrest", "org.msgpack:jackson-dataformat-msgpack", "org.slf4j:slf4j-api", "org.sonatype.plugins:nexus-staging-maven-plugin", "com.google.android:android", "org.apache.maven.plugins:maven-resources-plugin", "org.codehaus.mojo:build-helper-maven-plugin", "com.merakianalytics.orianna:orianna", "org.slf4j:slf4j-simple"], "https://github.com/WormieCorp/Localization.AspNetCore.TagHelpers": ["BuildBundlerMinifier", "Microsoft.AspNetCore.App", "Microsoft.AspNetCore.Razor.Design", "Microsoft.CodeAnalysis.FxCopAnalyzers", "Microsoft.VisualStudio.Web.CodeGeneration.Design", "Microsoft.Web.LibraryManager.Build", "SonarAnalyzer.CSharp", "Microsoft.AspNetCore.Mvc.Localization", "Microsoft.AspNetCore.Razor.Runtime", "StyleCop.Analyzers", "coverlet.collector", "Microsoft.NET.Test.Sdk", "Moq", "xunit", "xunit.runner.visualstudio"], "https://github.com/mikahama/natas": ["configargparse", "distance", "mikatools", "opennmt-py", "spacy", "torch"], "https://github.com/meyer-lab/ps-growth-model": ["manubot", "matplotlib", "numpy", "numpy-indexed", "pandas", "pandoc-eqnos", "pandoc-fignos", "pandoc-tablenos", "pylint", "pymc3", "scipy", "seaborn", "svgutils", "weasyprint", "xlrd"], "https://github.com/Guillawme/localres": ["click", "matplotlib", "mrcfile", "numpy"], "https://github.com/saeg/asm-defuse": ["br.usp.each.saeg:saeg-commons", "com.mycila:license-maven-plugin", "commons-lang:commons-lang", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.jacoco:jacoco-maven-plugin", "org.mockito:mockito-core", "org.ow2.asm:asm-analysis", "org.pitest:pitest-maven"], "https://github.com/alejandrobll/py-sphviewer": ["matplotlib", "numpy", "py-sphviewer", "pykdtree", "scipy"], "https://github.com/BioSTEAMDevelopmentGroup/thermosteam": ["chemicals", "colorpalette", "flexsolve", "free-properties", "ipykernel", "ipython", "matplotlib", "nbsphinx", "numba", "numpy", "openpyxl", "pandas", "pint", "pyglet", "scipy", "sphinx", "sphinx-rtd-theme", "xlrd", "biorefineries", "biosteam", "coveralls", "pytest-cov", "pyyaml", "sympy"], "https://github.com/TUDelft-CITG/OpenTNSim": ["click", "dill", "flask", "flask-cors", "matplotlib", "networkx", "nose", "numpy", "pandas", "pint", "plotly", "pyproj", "pytest", "pytest-cov", "pytest-datadir", "pytest-timeout", "scipy", "shapely", "simplekml", "simpy", "sphinx-rtd-theme"], "https://github.com/IceCubeOpenSource/flarestack": ["astropy", "healpy", "jupyter", "matplotlib", "numexpr", "numpy", "python-coveralls", "scipy", "sphinx", "coveralls"], "https://github.com/timm/bnbad": ["autopep8", "flake8", "rerun", "termcolor"], "https://github.com/zhinst/zhinst-toolkit": ["attrs", "hypothesis", "numpy", "pytest", "zhinst", "setuptools"], "https://github.com/ngs-mstb/micgent": ["argcomplete", "argh", "beautifulsoup4", "bioblend", "biopython", "cutadapt", "future", "intervals", "intervaltree", "jinja2", "lxml", "numpy", "pandas", "petl", "petlx", "pybedtools", "pytest", "ruamel-yaml", "six"], "https://github.com/rbardaji/mooda": ["elasticsearch", "flask", "matplotlib", "netcdf4", "numpy", "pandas", "plotly", "scikit-learn", "scipy", "xarray"], "https://github.com/pytube/data": ["docutils", "jinja2", "jsonschema", "six", "unidecode"], "https://github.com/VlachosGroup/pQUAD": ["coveralls", "flake8", "pytest", "pytest-cov", "matplotlib", "numpy", "scipy"], "https://github.com/MicroPasts/maryrose-bell": ["boto", "pybossa-client"], "https://github.com/drs-m/mrtrix3": ["sphinx-notfound-page"], "https://github.com/eyurtsev/FlowCytometryTools": ["fabric", "gitpython", "sphinx", "sphinx-bootstrap-theme", "sphinxcontrib-googleanalytics", "sphinxcontrib-napoleon", "coveralls", "pytest-cov", "decorator", "fcsparser", "matplotlib", "numpy", "pandas", "scipy", "setuptools"], "https://github.com/mirnylab/cooler": ["biopython", "ipytree", "matplotlib", "mock", "psutil", "pysam", "pytest", "pytest-cov", "pytest-flake8", "asciitree", "click", "cytoolz", "h5py", "multiprocess", "numpy", "pandas", "pyfaidx", "pypairix", "pyyaml", "scipy", "simplejson", "six", "m2r", "numpydoc", "recommonmark", "sphinx", "sphinx-rtd-theme"], "https://github.com/choderalab/alchemy": ["numpy", "openmm"], "https://github.com/Nikoleta-v3/meta-analysis-of-prisoners-dilemma-tournaments": ["axelrod", "dask", "dask-glm", "dask-ml", "invoke", "ipython", "jupyter", "matplotlib", "numba", "numpy", "pandas", "prompt-toolkit", "pytest", "scipy", "seaborn", "statsmodels", "tornado", "tqdm", "treeinterpreter"], "https://github.com/villevaara/dhum-topic-gutfin": ["argparse", "backports-abc", "backports-ssl-match-hostname", "boto", "bz2file", "certifi", "cython", "decorator", "flake8", "functools32", "gensim", "httpretty", "ipykernel", "ipython", "ipython-genutils", "jinja2", "jsonschema", "jupyter-client", "jupyter-core", "markupsafe", "mccabe", "mistune", "nbconvert", "nbformat", "nltk", "notebook", "numpy", "path-py", "pattern", "pep8", "pexpect", "pickleshare", "ptyprocess", "pyflakes", "pygments", "pyzmq", "requests", "scipy", "simplegeneric", "singledispatch", "six", "terminado", "textblob", "tornado", "traitlets", "wheel", "wsgiref"], "https://github.com/natashabatalha/picaso": ["astropy", "bokeh", "holoviews", "joblib", "matplotlib", "numba", "numpy", "pandas", "photutils", "pysynphot", "scipy", "sphinx", "virga-exo"], "https://github.com/delira-dev/delira": ["coverage", "sphinx", "sphinx-rtd-theme", "batchgenerators", "ipython", "joblib", "jupyter", "nested-lookup", "numpy", "pylint", "pyyaml", "scikit-learn", "tensorboardx", "tqdm", "visdom", "chainer", "h5py", "tensorflow-gpu", "torch", "torchvision"], "https://github.com/philip-mach/herd-immunity": ["ipykernel", "ipywidgets", "jupyter-console", "nbconvert", "notebook", "qtconsole"], "https://github.com/Alan-Cha/graphql-complexity-paper-artifact": ["@types/node", "@types/node-fetch", "@types/yauzl", "asynckit", "buffer-crc32", "combined-stream", "debug", "delayed-stream", "dotenv", "end-of-stream", "extract-zip", "fd-slicer", "form-data", "get-stream", "mime-db", "mime-types", "ms", "node-fetch", "once", "pend", "pump", "typescript", "wrappy", "yauzl", "brackets2dots", "curry2", "dotsplit.js", "fast-bind", "graphql", "graphql-cost-analysis", "graphql-query-complexity", "graphql-validation-complexity", "iterall", "js-tokens", "lodash.get", "loose-envify", "selectn", "warning", "matplotlib", "numpy", "pandas", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-bigint", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@bcoe/v8-coverage", "@cnakazawa/watch", "@istanbuljs/load-nyc-config", "@istanbuljs/schema", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/globals", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@sinonjs/commons", "@sinonjs/fake-timers", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/color-name", "@types/graceful-fs", "@types/graphql", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/jest", "@types/minimatch", "@types/normalize-package-data", "@types/parse-json", "@types/prettier", "@types/stack-utils", "@types/yargs", "@types/yargs-parser", "abab", "acorn", "acorn-globals", "acorn-walk", "ajv", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-union", "array-unique", "arrify", "asn1", "assert-plus", "assign-symbols", "atob", "aws-sign2", "aws4", "babel-jest", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-preset-current-node-syntax", "babel-preset-jest", "balanced-match", "base", "bcrypt-pbkdf", "brace-expansion", "braces", "browser-process-hrtime", "bs-logger", "bser", "buffer-from", "cache-base", "callsites", "camelcase", "capture-exit", "caseless", "chalk", "char-regex", "ci-info", "class-utils", "cliui", "co", "collect-v8-coverage", "collection-visit", "color-convert", "color-name", "compare-versions", "component-emitter", "concat-map", "convert-source-map", "copy-descriptor", "core-util-is", "cosmiconfig", "cross-spawn", "cssom", "cssstyle", "dashdash", "data-urls", "decamelize", "decimal.js", "decode-uri-component", "deep-is", "deepmerge", "define-property", "detect-newline", "diff-sequences", "domexception", "ecc-jsbn", "emoji-regex", "error-ex", "escape-string-regexp", "escodegen", "esprima", "estraverse", "esutils", "exec-sh", "execa", "exit", "expand-brackets", "expect", "extend", "extend-shallow", "extglob", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "fb-watchman", "fill-range", "find-up", "find-versions", "for-in", "forever-agent", "fragment-cache", "fs.realpath", "fsevents", "gensync", "get-caller-file", "get-value", "getpass", "glob", "globals", "graceful-fs", "growly", "har-schema", "har-validator", "has-flag", "has-value", "has-values", "hosted-git-info", "html-encoding-sniffer", "html-escaper", "http-signature", "human-signals", "husky", "iconv-lite", "ignore", "import-fresh", "import-local", "imurmurhash", "inflight", "inherits", "ip-regex", "is-accessor-descriptor", "is-arrayish", "is-buffer", "is-ci", "is-data-descriptor", "is-descriptor", "is-docker", "is-extendable", "is-fullwidth-code-point", "is-generator-fn", "is-number", "is-plain-object", "is-potential-custom-element-name", "is-stream", "is-typedarray", "is-windows", "is-wsl", "isarray", "isexe", "isobject", "isstream", "istanbul-lib-coverage", "istanbul-lib-instrument", "istanbul-lib-report", "istanbul-lib-source-maps", "istanbul-reports", "jest", "jest-changed-files", "jest-config", "jest-diff", "jest-docblock", "jest-each", "jest-environment-jsdom", "jest-environment-node", "jest-get-type", "jest-haste-map", "jest-jasmine2", "jest-leak-detector", "jest-matcher-utils", "jest-message-util", "jest-mock", "jest-pnp-resolver", "jest-regex-util", "jest-resolve", "jest-resolve-dependencies", "jest-runner", "prettier", "pretty-quick", "seedrandom", "ts-jest", "@types/jest-diff", "get-package-type", "ibm-graphql-query-generator", "jest-runtime", "jest-serializer", "jest-snapshot", "jest-util", "jest-validate", "jest-watcher"], "https://github.com/Becksteinlab/propkatraj": ["mdanalysis", "numpy", "pandas", "propka", "six"], "https://github.com/3DGenomes/TADbit": ["matplotlib", "numpy", "scipy"], "https://github.com/TariqAHassan/BioVida": ["bs4", "h5py", "keras", "lxml", "numpy", "pandas", "pillow", "pydicom", "requests", "scikit-image", "scipy", "theano", "tqdm"], "https://github.com/dxm447/stemtool": ["ase", "h5py", "matplotlib", "matplotlib-scalebar", "numba", "numpy", "pillow", "pyfftw", "pywavelets", "scikit-image", "scipy"], "https://github.com/Emma926/paradnn": ["python3", "tensorflow"], "https://github.com/gcunhase/AnnotatedMV-PreProcessing": ["audioread", "jams", "librosa", "llvmlite", "matplotlib", "midiutil", "moviepy", "natsort", "numba", "numpy", "pandas", "pydub", "requests", "scikit-image", "scikit-learn", "scipy", "tqdm", "urllib3", "vamp"], "https://github.com/liminoid/liminoid-mdx": ["@mdx-js/mdx", "@mdx-js/react", "eslint", "eslint-config-airbnb-base", "eslint-config-prettier", "eslint-plugin-babel", "eslint-plugin-import", "eslint-plugin-prettier", "liminoid-react", "prettier", "unist-util-visit", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-transform-parameters", "@babel/template", "@babel/traverse", "@babel/types", "@mdx-js/util", "@types/color-name", "@types/unist", "acorn", "acorn-jsx", "ajv", "ansi-escapes", "ansi-regex", "ansi-styles", "argparse", "array-includes", "array.prototype.flat", "astral-regex", "babel-plugin-apply-mdx-type-prop", "babel-plugin-extract-import-names", "bail", "balanced-match", "brace-expansion", "callsites", "camelcase-css", "ccount", "chalk", "character-entities", "character-entities-legacy", "character-reference-invalid", "chardet", "cli-cursor", "cli-width", "collapse-white-space", "color-convert", "color-name", "comma-separated-tokens", "concat-map", "confusing-browser-globals", "contains-path", "convert-source-map", "cross-spawn", "cssesc", "debug", "deep-is", "define-properties", "detab", "doctrine", "emoji-regex", "error-ex", "es-abstract", "es-to-primitive", "escape-string-regexp", "eslint-import-resolver-node", "eslint-module-utils", "eslint-rule-composer", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "extend", "external-editor", "fast-deep-equal", "fast-diff", "fast-json-stable-stringify", "fast-levenshtein", "figures", "file-entry-cache", "find-up", "flat-cache", "flatted", "fs.realpath", "function-bind", "functional-red-black-tree", "gensync", "get-stdin", "glob", "glob-parent", "globals", "graceful-fs", "has", "has-flag", "has-symbols", "hast-to-hyperscript", "hast-util-from-parse5", "hast-util-parse-selector", "hast-util-raw", "hast-util-to-parse5", "hastscript", "hosted-git-info", "html-void-elements", "iconv-lite", "ignore", "import-fresh", "imurmurhash", "indexes-of", "inflight", "inherits", "inline-style-parser", "inquirer", "is-alphabetical", "is-alphanumerical", "is-arrayish", "is-buffer", "is-callable", "is-date-object", "is-decimal", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-hexadecimal", "is-plain-obj", "is-promise", "is-regex", "is-string", "is-symbol", "is-whitespace-character", "is-word-character", "isarray", "isexe", "js-tokens", "js-yaml", "jsesc", "json-schema-traverse", "json-stable-stringify-without-jsonify", "json5", "levn", "load-json-file", "locate-path", "lodash", "lodash.uniq", "markdown-escapes", "mdast-squeeze-paragraphs", "mdast-util-definitions", "mdast-util-to-hast", "mdurl", "mimic-fn", "minimatch", "minimist", "mkdirp", "ms", "mute-stream", "natural-compare", "normalize-package-data", "object-inspect", "object-keys", "object.assign", "object.entries", "object.values", "once", "onetime", "optionator", "os-tmpdir", "p-limit", "p-locate", "p-try", "parent-module", "parse-entities", "parse-json", "parse5", "path-exists", "path-is-absolute", "path-key", "path-parse", "path-type", "pify", "pkg-dir", "postcss", "postcss-nested", "postcss-selector-parser", "prelude-ls", "prettier-linter-helpers", "progress", "property-information", "punycode", "read-pkg", "read-pkg-up", "regexpp", "remark-footnotes", "remark-mdx", "remark-parse", "remark-squeeze-paragraphs", "repeat-string", "replace-ext", "resolve", "resolve-from", "restore-cursor", "rimraf", "run-async", "rxjs", "safe-buffer", "safer-buffer", "semver", "shebang-command", "shebang-regex", "signal-exit", "slice-ansi", "source-map", "space-separated-tokens", "spdx-correct", "spdx-exceptions", "spdx-expression-parse", "spdx-license-ids", "sprintf-js", "state-toggle", "string-width", "string.prototype.trimend", "string.prototype.trimleft", "string.prototype.trimright", "string.prototype.trimstart", "strip-ansi", "strip-bom", "strip-json-comments", "style-to-object", "supports-color", "table", "gatsby", "gatsby-plugin-mdx", "liminoid-mdx", "react", "react-dom", "unified-ui", "@babel/preset-env", "@babel/preset-react", "@mdx-js/loader", "@rebass/forms", "babel-loader", "rebass", "webpack", "webpack-cli", "webpack-dev-server"], "https://github.com/Ouranosinc/raven": ["affine", "bokeh", "click", "dask", "descartes", "distributed", "fiona", "fsspec", "gdal", "geojson", "geopandas", "ipyleaflet", "ipython", "jinja2", "lxml", "matplotlib", "netcdf4", "numpy", "owslib", "pandas", "pandoc", "partd", "psutil", "psycopg2", "pyproj", "pysheds", "pywps", "rasterio", "rasterstats", "requests", "rtree", "scipy", "shapely", "six", "spotpy", "statsmodels", "toolz", "unidecode", "xarray", "xclim", "xskillscore", "black", "bumpversion", "cruft", "flake8", "nbconvert", "nbsphinx", "nbval", "pytest", "pytest-dependency", "pytest-flake8", "pytest-notebook", "sphinx", "sphinx-autoapi", "twine", "urlpath"], "https://github.com/scities/patterns-of-segregation": ["click", "cligj", "decorator", "descartes", "fiona", "marble", "matplotlib", "mock", "networkx", "nose", "numpy", "pyparsing", "pyproj", "python-dateutil", "pytz", "scipy", "shapely", "six"], "https://github.com/pkienzle/periodictable": ["numpy", "pyparsing", "pytest", "pytest-cov"], "https://github.com/biowdl/expression-quantification": ["cromwell", "miniwdl", "pytest-workflow", "wdl-aid"], "https://github.com/dokester/BayesicFitting": ["astropy", "future", "matplotlib", "numpy", "scipy"], "https://github.com/fphammerle/freesurfer-volume-reader": ["importlib_metadata", "numpy", "pathlib2", "pylint", "pytest", "pytest-cov", "pytest-timeout", "zipp", "astroid", "attrs", "coverage", "importlib-metadata", "isort", "lazy-object-proxy", "mccabe", "more-itertools", "packaging", "pandas", "pluggy", "py", "pyparsing", "python-dateutil", "pytz", "six", "toml", "wcwidth", "wrapt", "matplotlib", "notebook", "seaborn", "backcall", "bleach", "cycler", "decorator", "defusedxml", "entrypoints", "ipykernel", "ipython", "ipython-genutils", "jedi", "jinja2", "jsonschema", "jupyter-client", "jupyter-core", "kiwisolver", "markupsafe", "mistune", "nbconvert", "nbformat", "pandocfilters", "parso", "pexpect", "pickleshare", "prometheus-client", "prompt-toolkit", "ptyprocess", "pygments", "pyrsistent", "pyzmq", "scipy", "send2trash", "terminado", "testpath", "tornado", "traitlets", "webencodings"], "https://github.com/fmalmeida/MpGAP": ["sphinx", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml"], "https://github.com/collaborative-open-plant-omics/COPO": ["aioredis", "alabaster", "amqp", "appnope", "asgiref", "asn1crypto", "astroid", "async-timeout", "attrs", "autobahn", "automat", "autopep8", "babel", "backcall", "beautifulsoup4", "billiard", "biopy-isatab", "biopython", "bleach", "botocore", "bs4", "celery", "certifi", "cffi", "channels", "channels-redis", "chardet", "colorama", "configparser", "constantly", "cryptography", "daphne", "decorator", "deepdiff", "defusedxml", "dict-sorted", "django", "django-allauth", "django-appconf", "django-brotli", "django-chunked-upload", "django-compressor", "django-cors-headers", "django-extensions", "django-gollum", "django-redis-sessions", "django-tools", "djangorestframework", "docopt", "docutils", "elasticsearch", "entrypoints", "enum-compat", "et-xmlfile", "eventlet", "genshi", "gevent", "greenlet", "gunicorn", "hiredis", "html5lib", "hurry-filesize", "hyperlink", "idna", "imagesize", "importlib-metadata", "incremental", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "isatools", "iso8601", "isodate", "isort", "jdcal", "jedi", "jinja2", "jmespath", "jsonpath-rw", "jsonpath-rw-ext", "jsonpickle", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "kombu", "lazy-object-proxy", "lxml", "markupsafe", "mccabe", "meld3", "mistune", "mock", "more-itertools", "msgpack", "mzml2isa", "nbconvert", "nbformat", "networkx", "notebook", "numexpr", "numpy", "oauthlib", "openpyxl", "ordered-set", "pandas", "pandocfilters", "parso", "pdfminer3k", "pexpect", "pickleshare", "ply", "progressbar2", "prometheus-client", "prompt-toolkit", "pronto", "psycopg2-binary", "ptyprocess", "py", "pyasn1", "pyasn1-modules", "pycodestyle", "pycparser", "pygments", "pyhamcrest", "pylint", "pymongo", "pyopenssl", "pyparsing", "pypdf2", "pyrsistent", "pytest", "python-dateutil", "python-utils", "python3-openid", "pytz", "pyyaml", "pyzmq", "qtconsole", "rauth", "rcssmin", "rdflib", "redis", "requests", "requests-oauthlib", "rjsmin", "rsa", "s3transfer", "selenium", "send2trash", "service-identity", "simplejson", "six", "snowballstemmer", "soupsieve", "sphinxcontrib-websupport", "supervisor", "tables", "terminado", "testpath", "tornado", "traitlets", "twisted", "txaio", "typed-ast", "typing", "urllib3", "vine", "wcwidth", "webencodings", "widgetsnbextension", "wrapt", "xlrd", "xmljson", "zipp", "zope-interface", "assertive-chai", "backbone-extend-standalone", "browserify", "browserify-middleware", "browserify-shim", "clean-css", "concat-stream", "connect", "enhance-css", "es6-promise", "esprima", "insert-css", "jquery", "jscs", "jshint", "jwt-simple", "karma", "karma-browserify", "karma-mocha", "karma-phantomjs-launcher", "karma-sauce-launcher", "mocha", "sinon", "through", "uglify-js", "wgxpath", "xpath-range", "grunt", "grunt-contrib-connect", "grunt-contrib-sass", "grunt-contrib-watch", "load-grunt-tasks", "time-grunt", "bower-json", "grunt-bump-build-git", "grunt-contrib-jshint", "sphinxcontrib-httpdomain"], "https://github.com/OrderN/CONQUEST-release": ["sphinxcontrib-bibtex"], "https://github.com/chemfiles/chemfiles": ["breathe", "sphinx", "sphinx-bootstrap-theme", "toml"], "https://github.com/camillescott/goetia": ["plotille", "pytest-randomly"], "https://github.com/Charestlab/pyrsa": ["matplotlib", "numpy", "scikit-image", "scikit-learn", "scipy", "tqdm"], "https://github.com/wannaphong/thai-ner": ["nltk", "pythainlp", "scikit-learn"], "https://github.com/cylc/cylc-flow": ["aiofiles", "ansimarkup", "async-generator", "async-timeout", "click", "codecov", "colorama", "coverage", "flake8", "graphene", "jinja2", "metomi-isodatetime", "protobuf", "psutil", "pycodestyle", "pytest", "pytest-asyncio", "pytest-cov", "pytest-xdist", "pyuv", "pyzmq", "testfixtures", "urwid"], "https://github.com/krassowski/gsea-api": ["jupyter-helpers", "numpy", "pandas", "codecov", "pytest", "pytest-cov"], "https://github.com/UW-Hydro/RVIC": ["matplotlib", "netcdf4", "numpy", "pandas", "pytest", "scipy"], "https://github.com/stefanbringuier/NaivePolyCrys": ["ase", "numpy"], "https://github.com/harmslab/pytc-gui": ["pyqt5", "pytc-fitter", "seaborn"], "https://github.com/maurov/xraysloth": ["cython", "fabio", "h5py", "lmfit", "matplotlib", "numpy", "palettable", "pandas", "pillow", "psutil", "ptpython", "pyopengl", "pyqtwebengine", "python-dateutil", "pytools", "pyyaml", "qtconsole", "requests", "scipy", "setuptools", "silx", "six", "sqlalchemy", "termcolor", "xlrd", "xlwt", "xraydb", "black", "coverage", "doc8", "flake8", "lxml", "mccabe", "nose", "pycodestyle", "pydocstyle", "pyflakes", "pytest", "rope", "wheel", "nbsphinx", "numpydoc", "pandoc", "recommonmark", "rstcheck", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-argdoc", "sphinxcontrib-bibtex", "sphinxcontrib-napoleon", "h5glance", "h5netcdf", "ipykernel", "ipympl", "ipython", "ipytree", "ipywidgets", "jupyterhub", "jupyterlab", "jupyterlab-server", "kaleido", "notebook", "plotly", "widgetsnbextension", "xarray", "asteval", "peakutils", "pycifrw", "pyshortcuts", "scikit-image", "scikit-learn", "uncertainties", "wxmplot", "wxutils", "xraylarch", "nexpy", "nexusformat", "pymca", "pyresttable", "spec2nexus", "oasys-canvas-core", "oasys-widget-core", "oasys1", "oasys1-shadowoui", "oasys1-xoppy", "resources", "shadow3", "srxraylib", "syned", "wofry", "spyder", "xrt"], "https://github.com/genicam/harvesters": ["genicam", "numpy"], "https://github.com/EC-Earth/ece2cmor3": ["cdo", "f90nml", "netcdf4", "nose", "numpy", "pandas", "python-dateutil", "requests", "six", "testfixtures", "xlrd", "xlsxwriter"], "https://github.com/rodighiero/Affinity-Map": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@types/anymatch", "@types/d3-selection", "@types/glob", "@types/html-minifier-terser", "@types/json-schema", "@types/minimatch", "@types/node", "@types/source-list-map", "@types/tapable", "@types/uglify-js", "@types/webpack", "@types/webpack-sources", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "accepts", "acorn", "ajv", "ajv-errors", "ajv-keywords", "ansi-colors", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1.js", "assert", "assign-symbols", "async", "async-each", "async-limiter", "atob", "babel-loader", "babel-plugin-dynamic-import-node", "balanced-match", "base", "base64-js", "batch", "big.js", "binary-extensions", "bindings", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "camel-case", "camelcase", "caniuse-lite", "chalk", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "clean-css", "cliui", "collection-visit", "color-convert", "color-name", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "console-browserify", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "core-js-compat", "core-util-is", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "css-loader", "css-select", "css-what", "cssesc", "cyclist", "d3-array", "d3-chord", "d3-collection", "d3-color", "d3-dispatch", "d3-drag", "d3-dsv", "d3-ease", "d3-force", "d3-format", "d3-interpolate", "d3-path", "d3-quadtree", "d3-request", "d3-scale", "d3-selection", "d3-time", "d3-time-format", "d3-timer", "d3-transition", "d3-zoom", "debug", "decamelize", "decode-uri-component", "deep-equal", "file-loader", "html-loader", "html-webpack-plugin", "js-combinatorics", "json-loader", "marx-css", "mini-css-extract-plugin", "mobile-detect", "nouislider", "webpack", "webpack-cli", "webpack-dev-server"], "https://github.com/trtcrd/SLIM": ["body-parser", "csv-parser", "express", "formidable", "jquery", "line-reader", "nodemailer", "pug", "systeminformation"], "https://github.com/MTG/SymbTr-extras": ["future", "pandas"], "https://github.com/midas-isg/object-serializer": ["com.sun.xml.bind:jaxb-impl", "javax.xml.bind:jaxb-api", "junit:junit", "org.eclipse.persistence:eclipselink", "org.jvnet.hyperjaxb3:hyperjaxb3-ejb-runtime", "org.slf4j:slf4j-log4j12"], "https://github.com/caltechlibrary/microarchiver": ["colorful", "dateparser", "humanize", "lxml", "pillow", "plac", "pypubsub", "python-dateutil", "recordclass", "requests", "setuptools", "sidetrack", "urllib3", "wxpython", "xmltodict"], "https://github.com/UCL/scikit-surgeryvtk": ["coverage", "coveralls", "mock", "parameterized", "pyfakefs", "pyinstaller", "pylint", "pytest", "pytest-qt", "pyyaml", "sphinx", "sphinx-rtd-theme", "tox", "numpy", "opencv-contrib-python", "pyside2", "scikit-surgerycore", "scikit-surgeryimage", "six", "vtk"], "https://github.com/XanaduAI/thewalrus": ["cython", "dask", "numba", "numpy", "pytest", "repoze-lru", "scipy", "sympy", "breathe", "exhale", "ipykernel", "nbsphinx", "sphinx", "sphinx-copybutton", "sphinxcontrib-bibtex", "version-information"], "https://github.com/common-workflow-language/cwltool": ["bagit", "coloredlogs", "mypy-extensions", "prov", "psutil", "rdflib", "requests", "ruamel-yaml", "schema-salad", "shellescape", "typing-extensions", "arcp", "mock", "pydot", "pytest", "pytest-mock", "rdflib-jsonld", "setuptools", "attrs", "pytest-cov", "cwltool", "mypy"], "https://github.com/exoplanet-dev/exoplanet": ["astropy", "numpy", "pybind11", "pymc3", "theano"], "https://github.com/genenetwork/genenetwork2": ["jquery"], "https://github.com/dftd4/dftd4": ["ase", "meson"], "https://github.com/hesselberthlab/modmap": ["cairo", "dplyr", "ggplot2", "gridextra", "optparse", "plyr", "rcolorbrewer"], "https://github.com/nkarasiak/MuseoToolBox": ["autopep8", "ipykernel", "joblib", "m2r", "matplotlib", "nbsphinx", "numpy", "numpydoc", "psutil", "pytest", "pytest-cov", "recommonmark", "scikit-learn", "scipy", "sphinx", "sphinx-copybutton", "sphinx-gallery", "sphinx-rtd-theme"], "https://github.com/timtroendle/pytus2000": ["pandas"], "https://github.com/mdolab/multipoint": ["mpi4py", "numpy", "numpydoc"], "https://github.com/matthiaskoenig/libsbgn-python": ["lxml", "pytest", "pytest-cov", "requests", "ipykernel", "nbsphinx", "sphinx", "sphinx-rtd-theme"], "https://github.com/mrc-ide/squire_js": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@rollup/plugin-json", "@rollup/pluginutils", "@sindresorhus/is", "@sinonjs/commons", "@sinonjs/fake-timers", "@sinonjs/formatio", "@sinonjs/samsam", "@sinonjs/text-encoding", "@szmarczak/http-timer", "@types/color-name", "@types/estree", "abbrev", "ansi-align", "ansi-colors", "ansi-regex", "ansi-styles", "anymatch", "argparse", "assertion-error", "babel-code-frame", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-replace-supers", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-dynamic-import-node", "babel-plugin-external-helpers", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-preset-es2015", "babel-preset-es2015-rollup", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "binary-extensions", "boxen", "brace-expansion", "braces", "browser-stdout", "browserslist", "cacheable-request", "camelcase", "caniuse-lite", "chai", "chalk", "check-error", "chokidar", "ci-info", "cli-boxes", "cliui", "clone-response", "color-convert", "color-name", "concat-map", "configstore", "convert-source-map", "core-js", "core-js-compat", "core-util-is", "crypto-random-string", "debug", "decamelize", "decompress-response", "deep-eql", "deep-extend", "defer-to-connect", "define-properties", "diff", "dot-prop", "duplexer3", "electron-to-chromium", "emoji-regex", "end-of-stream", "es-abstract", "es-to-primitive", "escape-goat", "escape-string-regexp", "esm", "esprima", "estree-walker", "esutils", "fill-range", "find-up", "flat", "fs.realpath", "fsevents", "function-bind", "gensync", "get-caller-file", "get-func-name", "get-stream", "glob", "glob-parent", "global-dirs", "globals", "got", "graceful-fs", "growl", "has", "has-ansi", "has-flag", "has-symbols", "has-yarn", "he", "http-cache-semantics", "ignore-by-default", "immediate", "import-lazy", "imurmurhash", "inflight", "inherits", "ini", "invariant", "is-binary-path", "is-buffer", "is-callable", "is-ci", "is-date-object", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-installed-globally", "is-npm", "is-number", "is-obj", "is-path-inside", "is-regex", "is-symbol", "is-typedarray", "is-yarn-global", "isarray", "isexe", "js-tokens", "js-yaml", "jsesc", "json-buffer", "json5", "mocha", "nodemon", "rollup", "rollup-plugin-babel", "selenium-webdriver", "sinon"], "https://github.com/sotorrent/posthistory-extractor": ["commons-cli:commons-cli", "commons-io:commons-io", "mysql:mysql-connector-java", "org.apache.commons:commons-csv", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.hamcrest:hamcrest-junit", "org.hibernate:hibernate-core", "org.junit.jupiter:junit-jupiter-api", "org.junit.jupiter:junit-jupiter-engine", "org.sotorrent:string-similarity", "org.sotorrent:util"], "https://github.com/FAST-HEP/fast-plotter": ["codecov", "flake8", "pytest", "pytest-cov", "pytest-runner", "twine", "fast-curator", "fast-flow", "matplotlib", "numpy", "pandas", "scipy", "m2r", "sphinx-rtd-theme", "sphinxcontrib-apidoc", "sphinxcontrib-programoutput"], "https://github.com/tresoldi/dafsa": ["networkx"], "https://github.com/alphatwirl/alphatwirl": ["sphinx", "sphinx-rtd-theme", "atpbar", "mantichora", "numpy"], "https://github.com/nipy/heudiconv": ["inotify", "pytest", "tinydb", "-", "m2r", "sphinx-argparse"], "https://github.com/CESNET/perun": ["com.google.apis:google-api-services-admin-directory", "dumbster:dumbster", "eu.somatik.serviceloader-maven-plugin:serviceloader-maven-plugin", "jdom:jdom", "net.jcip:jcip-annotations", "net.jodah:expiringmap", "org.apache.commons:commons-text", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.eclipse.m2e:lifecycle-mapping", "org.hornetq:hornetq-core", "org.hornetq:hornetq-core-client", "org.hornetq:hornetq-jms", "org.hornetq:hornetq-jms-client", "org.hornetq:hornetq-logging", "org.jboss.javaee:jboss-jms-api", "org.jboss.netty:netty", "org.reflections:reflections", "org.xhtmlrenderer:flying-saucer-pdf", "cz.metacentrum.perun:perun-cabinet", "cz.metacentrum.perun:perun-dispatcher", "cz.metacentrum.perun:perun-notification", "cz.metacentrum.perun:perun-registrar-lib", "cz.metacentrum.perun:perun-scim", "cz.metacentrum.perun:perun-voot", "org.apache.tomcat:tomcat-servlet-api", "org.codehaus.cargo:cargo-maven2-plugin", "com.fasterxml.jackson.core:jackson-databind", "com.sun.mail:jakarta.mail", "org.apache.maven.plugins:maven-jar-plugin", "org.json:json", "org.springframework.boot:spring-boot-starter-logging", "org.springframework:spring-context", "org.springframework:spring-context-support", "com.fasterxml.jackson.dataformat:jackson-dataformat-csv", "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", "com.oracle.database.jdbc:ojdbc8", "com.oracle.database.nls:orai18n", "com.zaxxer:HikariCP", "cz.metacentrum.perun:perun-auditparser", "junit:junit", "mysql:mysql-connector-java", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpmime", "org.aspectj:aspectjweaver", "org.assertj:assertj-core", "org.hsqldb:hsqldb", "org.mockito:mockito-core", "org.postgresql:postgresql", "org.springframework:spring-jdbc", "org.springframework:spring-test", "org.springframework:spring-web", "org.xerial:sqlite-jdbc", "cz.metacentrum.perun:perun-core", "org.glassfish.jersey.core:jersey-common", "commons-pool:commons-pool", "org.apache.maven.plugins:maven-shade-plugin", "org.springframework.ldap:spring-ldap-ldif-batch", "org.springframework.ldap:spring-ldap-odm", "com.google.code.findbugs:jsr305", "io.swagger:swagger-annotations", "javax.annotation:javax.annotation-api", "org.apache.httpcomponents:httpcore", "org.openapitools:jackson-databind-nullable", "org.openapitools:openapi-generator-maven-plugin", "com.google.gwt:gwt-dev", "com.google.gwt:gwt-user", "org.apache.maven.plugins:maven-war-plugin", "org.codehaus.mojo:buildnumber-maven-plugin", "org.codehaus.mojo:gwt-maven-plugin", "commons-cli:commons-cli", "cz.metacentrum.perun:perun-openapi", "org.springframework.security.kerberos:spring-security-kerberos-client", "cz.metacentrum.perun:perun-base", "javax.transaction:javax.transaction-api", "org.freemarker:freemarker", "org.quartz-scheduler:quartz"], "https://github.com/RBhupi/PyREClass": ["numpy"], "https://github.com/jrafolsr/opeg-green-solvent": ["dash", "dash-core-components", "dash-html-components", "dash-table", "flask", "gunicorn", "numpy", "pandas", "plotly", "xlrd"], "https://github.com/tomminylander/cloning-simulator": ["coverage", "mock", "numpy", "pylint", "scipy"], "https://github.com/moschlar/SAUCE": ["alembic", "babel", "beaker", "beautifulsoup4", "bleach", "bootalchemy", "chardet", "crank", "decorator", "docutils", "formencode", "funcsigs", "gearbox", "genshi", "gunicorn", "html5lib", "mako", "markupsafe", "nose", "paste", "pastedeploy", "pastescript", "psycopg2", "pygments", "pylons", "python-dateutil", "python-editor", "python-status", "pytz", "pyyaml", "repoze-lru", "repoze-sendmail", "repoze-tm2", "repoze-what", "repoze-what-plugins-sql", "repoze-what-pylons", "repoze-what-quickstart", "repoze-who", "repoze-who-friendlyform", "repoze-who-plugins-sa", "repoze-who-testutil", "routes", "simplejson", "six", "speaklater", "sprox", "sqlalchemy", "tempita", "tgext-admin", "tgext-crud", "transaction", "turbogears2", "tw2-bootstrap-forms", "tw2-codemirror", "tw2-core", "tw2-dynforms", "tw2-forms", "tw2-jqplugins-chosen", "tw2-jquery", "tw2-pygmentize", "tw2-sqla", "tw2-wysihtml5", "waitress", "webencodings", "weberror", "webhelpers", "webob", "webtest", "zope-interface", "zope-sqlalchemy", "beautifulsoup", "coverage", "nose-exclude", "sieve", "tg-devtools", "wsgiref"], "https://github.com/astrom-tom/loots": ["fitsio", "numpy"], "https://github.com/ericmandel/js9": ["accepts", "after", "arraybuffer.slice", "async-limiter", "backo2", "base64-arraybuffer", "base64id", "better-assert", "blob", "callsite", "component-bind", "component-emitter", "component-inherit", "connected-domain", "cookie", "debug", "engine.io", "engine.io-client", "engine.io-parser", "has-binary2", "has-cors", "indexof", "is-docker", "is-wsl", "isarray", "mime-db", "mime-types", "minimist", "ms", "negotiator", "object-component", "open", "parseqs", "parseuri", "ps-node", "rimraf", "safe-buffer", "socket.io", "socket.io-adapter", "socket.io-client", "socket.io-parser", "table-parser", "to-array", "ultron", "uuid", "ws", "xmlhttprequest-ssl", "yeast"], "https://github.com/empymod/empymod": ["coveralls", "matplotlib", "memory-profiler", "numpydoc", "pytest", "pytest-cov", "pytest-flake8", "pytest-mpl", "scooby", "setuptools-scm", "sphinx", "sphinx-numfig", "sphinx-rtd-theme", "-", "numba", "scipy"], "https://github.com/MRChemSoft/mrcpp": ["danger", "danger-code_style_validation", "addressable", "claide", "claide-plugins", "colored2", "cork", "danger-plugin-api", "faraday", "faraday-http-cache", "git", "kramdown", "multipart-post", "nap", "no_proxy_fix", "octokit", "open4", "public_suffix", "sawyer", "terminal-table", "unicode-display_width", "breathe", "sphinx", "sphinx-rtd-theme"], "https://github.com/QuantumPackage/qp2": ["sphinx-rtd-theme", "sphinxcontrib-bibtex"], "https://github.com/johannfaouzi/pyts": ["joblib", "llvmlite", "numba", "numpy", "scikit-learn", "scipy"], "https://github.com/duncanmmacleod/ciecplib": ["pytest", "pytest-cov", "requests-mock", "m2crypto", "pyopenssl", "requests", "requests-ecp"], "https://github.com/matthiasweiss/runtastic-strava-migrate": ["requests"], "https://github.com/carpyncho/carpyncho-py": ["attrs", "clize", "diskcache", "fastparquet", "humanize", "numpy", "openpyxl", "pandas", "pyarrow", "requests", "tqdm", "bash-kernel", "ipykernel", "ipython", "m2r", "nbsphinx", "pyastronomy", "readthedocs-sphinx-ext", "seaborn", "sphinx-autobuild", "sphinx-rtd-theme"], "https://github.com/thomas-crane/networking-project": ["@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@types/chart.js", "@types/node", "abbrev", "ansi-regex", "ansi-styles", "aproba", "are-we-there-yet", "argparse", "balanced-match", "brace-expansion", "builtin-modules", "canvas", "chalk", "chart.js", "chartjs-color", "chartjs-color-string", "chartjs-node-canvas", "chownr", "code-point-at", "color-convert", "color-name", "commander", "concat-map", "console-control-strings", "core-util-is", "debug", "decompress-response", "deep-extend", "delegates", "detect-libc", "diff", "escape-string-regexp", "esprima", "fs-minipass", "fs.realpath", "gauge", "glob", "has-flag", "has-unicode", "iconv-lite", "ignore-walk", "inflight", "inherits", "ini", "is-fullwidth-code-point", "isarray", "js-tokens", "js-yaml", "mimic-response", "minimatch", "minimist", "minipass", "minizlib", "mkdirp", "moment", "ms", "nan", "needle", "node-pre-gyp", "nopt", "npm-bundled", "npm-normalize-package-bin", "npm-packlist", "npmlog", "number-is-nan", "object-assign", "once", "os-homedir", "os-tmpdir", "osenv", "path-is-absolute", "path-parse", "process-nextick-args", "rc", "readable-stream", "resolve", "rimraf", "safe-buffer", "safer-buffer", "sax", "semver", "set-blocking", "signal-exit", "simple-concat", "simple-get", "sprintf-js", "string-width", "string_decoder", "strip-ansi", "strip-json-comments", "supports-color", "tar", "tslib", "tslint", "tsutils", "typescript", "util-deprecate", "wide-align", "wrappy", "yallist"], "https://github.com/bab2min/tomotopy": ["numpy", "py-cpuinfo"], "https://github.com/ace-design/cosmic": ["joda-time:joda-time", "junit:junit", "net.alchim31.maven:scala-maven-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.scala-lang:scala-library", "org.specs2:specs2_2.11"], "https://github.com/FaustinCarter/scraps": ["emcee", "lmfit", "matplotlib", "numpy", "pandas", "scipy"], "https://github.com/tripal/tripal": ["doctrine/instantiator", "statonlab/tripal-test-suite", "fzaninotto/faker", "guzzlehttp/guzzle", "guzzlehttp/promises", "guzzlehttp/psr7", "myclabs/deep-copy", "phar-io/manifest", "phar-io/version", "phpdocumentor/reflection-common", "phpdocumentor/reflection-docblock", "phpdocumentor/type-resolver", "phpspec/prophecy", "phpunit/php-code-coverage", "phpunit/php-file-iterator", "phpunit/php-text-template", "phpunit/php-timer", "phpunit/php-token-stream", "phpunit/phpunit", "phpunit/phpunit-mock-objects", "psr/container", "psr/http-message", "ralouphie/getallheaders", "sebastian/code-unit-reverse-lookup", "sebastian/comparator", "sebastian/diff", "sebastian/environment", "sebastian/exporter", "sebastian/global-state", "sebastian/object-enumerator", "sebastian/object-reflector", "sebastian/recursion-context", "sebastian/resource-operations", "sebastian/version", "symfony/console", "symfony/polyfill-ctype", "symfony/polyfill-mbstring", "symfony/polyfill-php73", "symfony/service-contracts", "theseer/tokenizer", "webmozart/assert"], "https://github.com/SCCAF/sccaf": ["louvain", "numpy", "pandas", "psutil", "scanpy", "scikit-learn"], "https://github.com/src-d/minhashcuda": ["numpy"], "https://github.com/ebimodeling/ghgvc": ["annotate", "binding_of_caller", "bootstrap-sass", "byebug", "capybara", "cobravsmongoose", "coffee-rails", "jbuilder", "jquery-rails", "listen", "narray", "pry-awesome_print", "pry-byebug", "pry-coolline", "pry-highlight", "pry-rails", "pry-state", "puma", "rails", "rserve-client", "rspec-rails", "ruby-netcdf", "sass-rails", "selenium-webdriver", "spring", "spring-watcher-listen", "sprockets-rails", "turbolinks", "uglifier", "web-console", "actioncable", "actionmailer", "actionpack", "actionview", "activejob", "activemodel", "activerecord", "activesupport", "addressable", "arel", "autoprefixer-rails", "awesome_print", "bindex", "builder", "childprocess", "coderay", "coffee-script", "coffee-script-source", "concurrent-ruby", "coolline", "debug_inspector", "diff-lcs", "erubi", "execjs", "ffi", "globalid", "i18n", "json", "loofah", "mail", "method_source", "mime-types", "mime-types-data", "minitest", "mini_portile2", "multi_json", "narray_miss", "nio4r", "nokogiri", "pry", "public_suffix", "rack", "rack-test", "rails-dom-testing", "rails-html-sanitizer", "railties", "rake", "rb-fsevent", "rb-inotify", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec-support", "rubyzip", "ruby_dep", "sass", "slop", "sprockets", "thor", "thread_safe", "tilt", "turbolinks-source", "tzinfo", "unicode_utils", "websocket-driver", "websocket-extensions", "xpath"], "https://github.com/NERSC/pytokio": ["h5py", "matplotlib", "numpy", "pandas", "scipy"], "https://github.com/KnowledgeCaptureAndDiscovery/OBA": ["commons-cli:commons-cli", "junit:junit", "log4j:log4j", "net.sourceforge.owlapi:owlapi-api", "net.sourceforge.owlapi:owlapi-apibinding", "net.sourceforge.owlapi:owlapi-compatibility", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-eclipse-plugin", "org.json:json", "org.openapitools:openapi-generator", "org.slf4j:slf4j-simple", "org.yaml:snakeyaml", "mkdocs-material"], "https://github.com/praveen-palanisamy/macad-gym": ["carla", "gputil", "gym", "networkx", "opencv-python", "pygame"], "https://github.com/dimazest/poultry": ["pytest-cov", "pytest-pep8", "python-coveralls", "opster", "pytest", "requests", "requests-oauthlib", "setuptools"], "https://github.com/waterlandlab/PReLIM": ["clubcpg", "fastcluster", "joblib", "matplotlib", "numpy", "pandas", "pebble", "pysam", "scikit-learn", "scipy", "seaborn", "tqdm", "sphinx-argparse", "sphinx-rtd-theme", "sphinxcontrib-autoprogram"], "https://github.com/felixriese/alpaca-processing": ["geopandas", "matplotlib", "numpy", "pandas", "rasterio", "scikit-learn", "tensorflow", "tqdm"], "https://github.com/ocean-data-qc/ocean-data-qc": ["bokeh", "more-itertools", "oct2py", "pandas", "reportlab", "scipy", "seawater", "tilecloud", "app-module-path", "awesome-bootstrap-checkbox", "bootstrap", "codemirror", "command-exists", "cross-zip", "csv-parse", "datatables.net-bs4", "datatables.net-colreorder-bs4", "datatables.net-fixedheader-bs4", "devtron", "dotenv", "electron", "electron-builder", "electron-debug", "electron-is-dev", "electron-updater", "file-url", "font-awesome", "jquery", "mime-db", "mime-type", "node-watch", "popper.js", "portscanner", "python-shell", "rimraf", "url", "url-exist", "winston", "xlsx"], "https://github.com/lmfit/lmfit-py": ["asteval", "codecov", "corner", "coverage", "dill", "emcee", "jupyter-sphinx", "matplotlib", "numdifftools", "numpy", "pandas", "pillow", "pre-commit", "pytest", "scipy", "sphinx", "sphinx-gallery", "sympy", "uncertainties"], "https://github.com/masseyr/eehelper": ["earthengine-api", "future"], "https://github.com/diging/virtual-spaces-2.0": ["com.atlassian.commonmark:commonmark", "com.fasterxml.jackson.core:jackson-databind", "commons-fileupload:commons-fileupload", "commons-io:commons-io", "edu.asu.diging:simple-users", "javax.servlet:javax.servlet-api", "javax.servlet:jstl", "junit:junit", "log4j:log4j", "mysql:mysql-connector-java", "org.apache.maven.plugins:maven-war-plugin", "org.apache.tika:tika-core", "org.apache.tiles:tiles-api", "org.apache.tiles:tiles-core", "org.apache.tiles:tiles-jsp", "org.apache.tiles:tiles-servlet", "org.apache.tiles:tiles-template", "org.apache.tomcat.maven:tomcat7-maven-plugin", "org.aspectj:aspectjrt", "org.aspectj:aspectjweaver", "org.hibernate:hibernate-entitymanager", "org.javers:javers-core", "org.javers:javers-persistence-sql", "org.javers:javers-spring", "org.javers:javers-spring-jpa", "org.mockito:mockito-all", "org.slf4j:jcl-over-slf4j", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "org.springframework.data:spring-data-jpa", "org.springframework.data:spring-data-releasetrain", "org.springframework.security:spring-security-config", "org.springframework.security:spring-security-core", "org.springframework.security:spring-security-taglibs", "org.springframework:spring-aop", "org.springframework:spring-context", "org.springframework:spring-core", "org.springframework:spring-framework-bom", "org.springframework:spring-test", "org.springframework:spring-web", "org.springframework:spring-webmvc"], "https://github.com/SISPO-developers/sispo": ["astropy", "mathutils", "numpy", "opencv-contrib-python", "openexr", "orekit", "m2r"], "https://github.com/rbutleriii/Clinotator": ["biopython", "pandas"], "https://github.com/sosy-lab/benchexec": ["pyyaml", "@babel/runtime", "@fortawesome/fontawesome-svg-core", "@fortawesome/free-solid-svg-icons", "@fortawesome/react-fontawesome", "classnames", "deep-equal", "enzyme", "enzyme-adapter-react-16", "eslint-config-prettier", "eslint-plugin-prettier", "imports-loader", "license-checker", "node-sass", "prettier", "rc-slider", "react", "react-app-rewired", "react-dom", "react-modal", "react-router-dom", "react-scripts", "react-table", "react-table-hoc-fixed-columns", "react-test-renderer", "react-vis", "yaml"], "https://github.com/Nikronic/CoarseNet": ["-future-", "io", "numpy", "pandas", "pil", "pytorch", "random", "skimage", "tarfile", "torch", "torchvision"], "https://github.com/IDSIA/sacred": ["boto3", "colorama", "docopt", "gitdb2", "gitpython", "google-cloud-storage", "google-compute-engine", "hashfs", "jsonpickle", "mako", "markupsafe", "mock", "mongomock", "moto", "munch", "numpy", "packaging", "pandas", "pbr", "pre-commit", "py-cpuinfo", "pymongo", "pytest", "python-dateutil", "pytz", "pyyaml", "scandir", "scikit-learn", "sentinels", "smmap2", "sqlalchemy", "tinydb", "tinydb-serialization", "wrapt", "doc8", "sphinx", "sphinx-rtd-theme"], "https://github.com/GeoStat-Framework/GSTools": ["emcee", "hankel", "numpy", "pyevtk", "scipy", "cython", "setuptools", "setuptools-scm", "pytest", "pytest-cov", "matplotlib", "numpydoc", "pykrige", "pyvista", "sphinx-gallery"], "https://github.com/camomile-project/camomile-server": ["async", "bcrypt", "body-parser", "commander", "connect-mongo", "cookie-parser", "cors", "eventsource", "express", "express-session", "file-stream-rotator", "forever", "method-override", "mongoose", "morgan", "node-fs", "q", "should", "supertest", "underscore"], "https://github.com/weecology/macroecotools": ["numpy", "pandas", "scipy"], "https://github.com/nlesc-nano/AssertionLib": ["nano-utils", "numpy", "pandas", "pytest", "pytest-cov", "pytest-flake8", "pytest-mypy", "pytest-pydocstyle", "typing-extensions"], "https://github.com/pnnl/ripples": ["conan", "asn1crypto", "bottle", "certifi", "cffi", "chardet", "colorama", "cryptography", "deprecation", "distro", "fasteners", "future", "idna", "jinja2", "markupsafe", "monotonic", "node-semver", "packaging", "patch-ng", "pluginbase", "pycparser", "pygments", "pyjwt", "pyopenssl", "pyparsing", "python-dateutil", "pyyaml", "requests", "six", "tqdm", "urllib3"], "https://github.com/dreamtools/dreamtools": ["biokit", "bioservices", "colormap", "cython", "easydev", "fitter", "numexpr", "pandas", "scikit-learn", "scipy", "synapseclient", "tabulate", "xlrd", "matplotlib", "numpy"], "https://github.com/DeepRank/pdb2sql": ["numpy", "pandas"], "https://github.com/zebateira/rama-spotify": ["grunt", "grunt-contrib-clean", "grunt-contrib-compass", "grunt-contrib-concat", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-jasmine", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-usemin"], "https://github.com/qutech/qupulse": ["cached-property", "cycler", "gmpy2", "kiwisolver", "matplotlib", "mpmath", "numpy", "pyparsing", "python-dateutil", "pyvisa", "six", "sympy", "wincertstore", "more-itertools", "pytest-benchmark", "ipykernel", "nbsphinx", "sphinx", "sphinx-autodoc-typehints"], "https://github.com/eWaterCycle/Cesium-NcWMS": ["abbrev", "accepts", "acorn", "active-x-obfuscator", "align-text", "alter", "amdefine", "ansi-gray", "ansi-regex", "ansi-styles", "ansi-wrap", "anymatch", "archive-type", "archy", "argparse", "arr-diff", "arr-flatten", "array-differ", "array-filter", "array-find-index", "array-map", "array-reduce", "array-union", "array-uniq", "array-unique", "arrify", "asn1", "assert-plus", "async", "async-each", "async-each-series", "autoprefixer-core", "aws-sign2", "balanced-match", "base64-url", "base64id", "basic-auth", "basic-auth-connect", "batch", "bcrypt-pbkdf", "beeper", "bin-build", "bin-check", "bin-version", "bin-version-check", "bin-wrapper", "binary", "binary-extensions", "bl", "body-parser", "boom", "bower", "bower-config", "bower-endpoint-parser", "bower-json", "bower-logger", "bower-registry-client", "brace-expansion", "braces", "browserify-zlib", "browserslist", "buffer-crc32", "buffer-to-vinyl", "buffers", "builtin-modules", "bytes", "camel-case", "camelcase", "camelcase-keys", "caniuse-db", "capture-stack-trace", "cardinal", "caseless", "caw", "cdnjs-cdn-data", "center-align", "chainsaw", "chalk", "change-case", "chmodr", "chokidar", "clap", "clean-css", "cli", "cli-color", "cliui", "clone", "clone-stats", "co", "coa", "coffee-script", "color-support", "colors", "combined-stream", "commander", "compressible", "compression", "concat-map", "concat-stream", "config-chain", "configstore", "connect", "connect-livereload", "connect-timeout", "console-browserify", "console-stream", "constant-case", "content-type", "convert-source-map", "cookie", "cookie-parser", "cookie-signature", "core-util-is", "crc", "create-error-class", "cryptiles", "csrf", "csso", "csurf", "ctype", "currently-unhandled", "d", "dashdash", "date-now", "date-time", "dateformat", "debug", "decamelize", "decompress", "decompress-tar", "decompress-tarbz2", "decompress-targz", "decompress-unzip", "decompress-zip", "deep-equal", "deep-extend", "deep-is", "delayed-stream", "depd", "destroy", "di", "diff", "dom-serializer", "domelementtype", "domhandler", "domutils", "dot-case", "download", "duplexer2", "duplexify", "each-async", "ecc-jsbn", "ee-first", "end-of-stream", "entities", "error-ex", "errorhandler", "es5-ext", "es6-iterator", "es6-promise", "es6-symbol", "es6-weak-map", "escape-html", "escape-string-regexp", "escodegen", "esprima", "estraverse", "esutils", "etag", "event-emitter", "eventemitter2", "exec-buffer", "exec-series", "executable", "exit", "expand-brackets", "expand-range", "express-session", "extend", "extend-shallow", "extglob", "extract-zip", "extsprintf", "fancy-log", "fast-levenshtein", "faye-websocket", "fd-slicer", "figures", "file-sync-cmp", "file-type", "filename-regex", "filename-reserved-regex", "filenamify", "fileset", "fill-range", "finalhandler", "find-index", "find-up", "find-versions", "findup-sync", "first-chunk-stream", "for-in", "for-own", "forever-agent", "form-data", "fresh", "fs-extra", "fs.realpath", "fsevents", "fstream", "fstream-ignore", "gaze", "generate-function", "generate-object-property", "get-proxy", "get-stdin", "getobject", "getpass", "gifsicle", "glob", "glob-base", "glob-parent", "glob-stream", "glob-watcher", "glob2base", "globule", "glogg", "google-cdn", "google-cdn-data", "got", "graceful-fs", "graceful-readlink", "grunt", "grunt-angular-templates", "grunt-autoprefixer", "grunt-cli", "grunt-concurrent", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-htmlmin", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-filerev", "grunt-google-cdn", "grunt-karma", "grunt-newer", "grunt-ng-annotate", "grunt-svgmin", "grunt-usemin", "grunt-wiredep", "jasmine-core", "jshint-stylish", "karma", "karma-coverage", "karma-jasmine", "karma-junit-reporter", "karma-phantomjs-launcher", "load-grunt-tasks", "natives", "protractor-html-screenshot-reporter", "time-grunt"], "https://github.com/CMLPlatform/ramascene": ["capistrano", "capistrano-sas", "capistrano-yarn", "dotenv", "airbrussh", "concurrent-ruby", "i18n", "net-scp", "net-ssh", "rake", "sshkit", "babel-core", "babel-loader", "babel-plugin-import", "babel-polyfill", "babel-preset-es2015", "babel-preset-react", "css-loader", "d3-format", "d3plus-react", "extract-text-webpack-plugin", "file-loader", "flow-bin", "jquery", "node-sass", "npm", "papaparse", "rc-tree-select", "react", "react-bootstrap", "react-confirm-alert", "react-csv", "react-dom", "react-ga", "react-scripts", "sass-loader", "shortid", "style-loader", "webpack", "webpack-bundle-tracker", "webpack-cli", "webpack-config-utils", "ws", "aioredis", "alabaster", "amqp", "asgiref", "async-generator", "async-timeout", "atomicwrites", "attrs", "autobahn", "automat", "babel", "billiard", "celery", "certifi", "channels", "channels-redis", "chardet", "constantly", "daphne", "django", "django-celery-results", "django-cors-headers", "django-webpack-loader", "docutils", "flower", "gunicorn", "hiredis", "hyperlink", "idna", "imagesize", "incremental", "jinja2", "kombu", "markupsafe", "more-itertools", "msgpack", "msgpack-python", "numpy", "packaging", "pathlib2", "pluggy", "pockets", "py", "pygments", "pyhamcrest", "pyparsing", "pytest", "pytest-asyncio", "pytest-django", "pytz", "redis", "requests", "six", "snowballstemmer", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "sphinxcontrib-websupport", "tornado", "twisted", "txaio", "urllib3", "vine", "xlrd", "zope-interface", "@babel/code-frame", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-module-imports", "@babel/helper-split-export-declaration", "@babel/highlight", "@babel/parser", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@samverschueren/stream-to-observable", "@sindresorhus/is", "abab", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "acorn-globals", "acorn-jsx", "add-dom-event-listener", "address", "agent-base", "agentkeepalive", "ajv", "ajv-keywords", "align-text", "alphanum-sort", "amdefine", "ansi-align", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "ansicolors", "ansistyles", "any-observable", "anymatch", "append-transform", "aproba", "archy", "are-we-there-yet", "argparse", "aria-query", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-equal", "array-filter", "array-find-index", "array-flatten", "array-includes", "array-map", "array-reduce", "array-union", "array-uniq", "array-unique", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-types", "ast-types-flow", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axobject-query", "babel-code-frame", "babel-eslint", "babel-generator", "babel-helper-bindify-decorators", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-builder-react-jsx", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-explode-class", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helpers", "babel-jest", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-dynamic-import-node", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-async-generators", "babel-plugin-syntax-class-constructor-call", "babel-plugin-syntax-class-properties", "babel-plugin-syntax-decorators", "babel-plugin-syntax-dynamic-import", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-export-extensions", "babel-plugin-syntax-flow", "babel-plugin-syntax-jsx", "babel-plugin-syntax-object-rest-spread", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-generator-functions", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-class-constructor-call", "babel-plugin-transform-class-properties", "babel-plugin-transform-decorators", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-export-extensions", "babel-plugin-transform-flow-strip-types", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-react-constant-elements", "babel-plugin-transform-react-display-name", "babel-plugin-transform-react-jsx", "babel-plugin-transform-react-jsx-self", "babel-plugin-transform-react-jsx-source", "babel-plugin-transform-regenerator", "babel-plugin-transform-runtime", "babel-plugin-transform-strict-mode", "babel-preset-env", "babel-preset-flow", "babel-preset-jest", "babel-preset-react-app", "babel-preset-stage-1", "babel-preset-stage-2", "babel-preset-stage-3", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "bin-links", "binary-extensions", "binaryextensions", "block-stream", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "boxen", "brace-expansion", "braces", "brorand", "browser-resolve", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "bser", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-modules", "builtin-status-codes", "builtins", "byline", "byte-size", "bytes", "cacache", "cache-base", "cacheable-request", "call-limit", "call-me-maybe", "caller-path", "callsites", "camel-case", "camelcase", "camelcase-keys", "caniuse-api", "caniuse-db", "caniuse-lite", "canvas-toBlob", "canvg", "canvg-browser", "capture-stack-trace", "case-sensitive-paths-webpack-plugin", "caseless", "center-align", "cf-blob.js", "chalk", "chokidar", "chownr", "ci-info", "cidr-regex", "cipher-base", "circular-json", "clap", "class-utils", "classnames", "clean-css", "cli-boxes", "cli-columns", "click", "click-plugins", "cligj", "cycler", "descartes", "fiona", "geopandas", "kiwisolver", "matplotlib", "munch", "pandas", "pyproj", "pysal", "python-dateutil", "scipy", "shapely"], "https://github.com/filips123/ConfigWriter": ["php", "phpunit/phpunit", "squizlabs/php_codesniffer"], "https://github.com/schimatos/schimatos.org": ["@babel/cli", "@babel/core", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-transform-runtime", "@babel/preset-env", "@babel/preset-react", "@cloudflare/util-regex", "@craco/craco", "@semantic-ui-react/craco-less", "@testing-library/react", "@welldone-software/why-did-you-render", "async-request", "axios", "babel-eslint", "babel-loader", "babel-plugin-transform-runtime", "babel-polyfill", "babel-runtime", "clean-webpack-plugin", "codemirror", "concurrently", "cors", "crypto-js", "css-loader", "docz-core", "eslint", "eslint-config-airbnb", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "eslint-plugin-react-hooks", "express", "faker", "fetch", "file-loader", "fs", "graceful", "html-webpack-plugin", "immer", "indigestion", "jest", "lsp-editor-adapter", "mongo-regex-description", "n3", "net", "node-fetch", "node-gyp", "nodemon", "quadstore", "quadstore-sparql", "rdflib", "rdfstore", "react", "react-codemirror2", "react-dom", "react-hook-form", "react-journey", "react-joyride", "react-native", "react-native-copilot", "react-test-render", "react-use", "reactstrap", "reader", "request", "rw-stream", "semantic-ui-less", "semantic-ui-react", "semantic-ui-react-numberinput", "shacl-language-server", "sparql-http-client", "stardust", "style-loader", "tls", "turtle-language-server", "underscore", "url-loader", "webpack", "webpack-cli", "webpack-dev-server", "webpack-war-plugin", "www-authenticate", "xregexp", "yup"], "https://github.com/ALSETLab/Nordic44-Nordpool": ["openpyxl", "pandas"], "https://github.com/NCAR/wrf_hydro_nwm_public": ["atomicwrites", "attrs", "beautifulsoup4", "boltons", "bs4", "certifi", "cftime", "chardet", "cloudpickle", "dask", "datetime", "deepdiff", "f90nml", "idna", "importlib-metadata", "jsonpickle", "locket", "more-itertools", "netcdf4", "numpy", "pandas", "partd", "pathlib", "pluggy", "py", "pytest", "pytest-datadir-ng", "pytest-html", "pytest-metadata", "python-dateutil", "pytz", "requests", "six", "soupsieve", "toolz", "urllib3", "wrfhydropy", "xarray", "zipp", "zope-interface"], "https://github.com/frandorr/PROBA-V-3DWDSR": ["click", "matplotlib", "numpy", "scikit-image", "tensorflow", "tensorflow-addons", "tqdm"], "https://github.com/chrisdembia/yeadon": ["numpy", "numpydoc", "pyyaml", "nose"], "https://github.com/open-editions/corpus-joyce-ulysses-tei": ["bs4", "nltk"], "https://github.com/AAROC/hackfest-site": ["github-pages", "activesupport", "addressable", "coffee-script", "coffee-script-source", "colorator", "commonmarker", "concurrent-ruby", "em-websocket", "ethon", "eventmachine", "execjs", "faraday", "ffi", "forwardable-extended", "gemoji", "github-pages-health-check", "html-pipeline", "http_parser.rb", "i18n", "jekyll", "jekyll-avatar", "jekyll-coffeescript", "jekyll-commonmark", "jekyll-commonmark-ghpages", "jekyll-default-layout", "jekyll-feed", "jekyll-gist", "jekyll-github-metadata", "jekyll-mentions", "jekyll-optional-front-matter", "jekyll-paginate", "jekyll-readme-index", "jekyll-redirect-from", "jekyll-relative-links", "jekyll-remote-theme", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-swiss", "jekyll-theme-architect", "jekyll-theme-cayman", "jekyll-theme-dinky", "jekyll-theme-hacker", "jekyll-theme-leap-day", "jekyll-theme-merlot", "jekyll-theme-midnight", "jekyll-theme-minimal", "jekyll-theme-modernist", "jekyll-theme-primer", "jekyll-theme-slate", "jekyll-theme-tactile", "jekyll-theme-time-machine", "jekyll-titles-from-headings", "jekyll-watch", "jemoji", "kramdown", "liquid", "listen", "mercenary", "minima", "minitest", "mini_portile2", "multipart-post", "net-dns", "nokogiri", "octokit", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "ruby-enum", "rubyzip", "ruby_dep", "safe_yaml", "sass", "sass-listen", "sawyer", "terminal-table", "thread_safe", "typhoeus", "tzinfo", "unicode-display_width"], "https://github.com/amirsani/pySharpeRratio": ["numpy", "pandas", "scipy", "setuptools"], "https://github.com/CINPLA/RippleNet": ["h5py", "ipympl", "jupyter", "matplotlib", "notebook", "numpy", "pandas", "scipy", "seaborn", "tensorflow"], "https://github.com/karkirowle/oral_cancer_analysis": ["absl-py", "astor", "audioread", "bandmat", "cachetools", "certifi", "cffi", "chardet", "configargparse", "cycler", "cython", "decorator", "fastdtw", "gast", "google-auth", "google-auth-oauthlib", "google-pasta", "grpcio", "h5py", "idna", "imageio", "joblib", "kaldi-io", "keras", "keras-applications", "keras-preprocessing", "keras-vis", "kiwisolver", "librosa", "llvmlite", "markdown", "matplotlib", "networkx", "nnmnkwii", "numba", "numpy", "oauthlib", "opt-einsum", "pandas", "pillow", "protobuf", "pyasn1", "pyasn1-modules", "pycparser", "pyparsing", "pysptk", "python-dateutil", "python-speech-features", "pytz", "pywavelets", "pyyaml", "requests", "requests-oauthlib", "resampy", "rsa", "scikit-image", "scikit-learn", "scipy", "six", "sklearn", "soundfile", "termcolor", "tqdm", "urllib3", "werkzeug", "wrapt"], "https://github.com/brisskit-uol/onyx-install-procedures": ["org.brisskit.app.utils:config-merger"], "https://github.com/llondon6/nrutils_dev": ["h5py", "matplotlib", "numpy", "positive", "scipy"], "https://github.com/Andros-Spica/EAA2018_simulation": ["express", "grunt", "grunt-autoprefixer", "grunt-cli", "grunt-contrib-connect", "grunt-contrib-cssmin", "grunt-contrib-jshint", "grunt-contrib-qunit", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-retire", "grunt-sass", "grunt-zip", "mustache", "socket.io"], "https://github.com/GeneDx/phenopy": ["fire", "flake8", "numpy", "obonet", "pandas", "pytest", "pytest-cov", "scipy", "atomicwrites", "attrs", "coverage", "decorator", "entrypoints", "importlib-metadata", "mccabe", "more-itertools", "networkx", "packaging", "pluggy", "py", "pycodestyle", "pyflakes", "pyparsing", "python-dateutil", "pytz", "six", "termcolor", "wcwidth", "zipp", "matplotlib", "requests", "scikit-learn", "txt2hpo"], "https://github.com/andremann/MoniQ": ["com.esotericsoftware:kryo", "com.google.code.gson:gson", "com.google.guava:guava", "kryonet:kryonet", "commons-logging:commons-logging", "dom4j:dom4j", "eu.dnetlib:cnr-data-flow-monitoring-rmi", "junit:junit", "org.apache.solr:solr-solrj", "redis.clients:jedis", "log4j:log4j", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "com.fasterxml.jackson.core:jackson-databind", "javax.servlet:servlet-api", "org.apache.commons:commons-io", "org.apache.tomcat.maven:tomcat7-maven-plugin", "org.postgresql:postgresql", "org.reflections:reflections", "org.slf4j:slf4j-log4j12", "org.springframework.security:spring-security-config", "org.springframework.security:spring-security-ldap", "org.springframework.security:spring-security-web", "org.springframework:spring-context", "org.springframework:spring-jdbc", "org.springframework:spring-tx", "org.springframework:spring-webmvc", "eu.dnetlib:cnr-data-flow-monitoring-core", "org.aspectj:aspectjrt", "org.aspectj:aspectjtools", "org.codehaus.mojo:aspectj-maven-plugin", "com.caucho:hessian", "com.github.spullara.mustache.java:compiler", "jaxen:jaxen", "org.elasticsearch:elasticsearch", "com.google.protobuf.tools:maven-protoc-plugin", "io.grpc:grpc-all", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpmime", "org.influxdb:influxdb-java"], "https://github.com/jupyter/nbgrader": ["codecov", "coverage", "nbval", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "requests-mock", "selenium", "sphinx", "sphinx-autodoc-typehints", "sphinx-rtd-theme", "wheel", "bower", "alembic", "jsonschema", "jupyter", "jupyter-client", "jupyter-core", "nbconvert", "nbformat", "notebook", "python-dateutil", "rapidfuzz", "requests", "sqlalchemy", "tornado", "traitlets", "babel", "gaze", "jshint", "uglify-js", "components/underscore", "underscore", "grunt", "grunt-compare-size", "grunt-git-authors", "testswarm"], "https://github.com/GeoStat-Framework/PyKrige": ["numpy", "scipy", "cython", "setuptools", "setuptools-scm", "coveralls", "gstools", "pytest", "pytest-cov", "scikit-learn", "pillow", "recommonmark", "sphinx", "sphinx-gallery", "sphinx-rtd-theme", "sphinxcontrib-napoleon"], "https://github.com/orlade/microsimmer": ["bottle", "mock", "nose", "pyhamcrest", "requests", "sniffer", "thrift"], "https://github.com/ideaconsult/appdomain": ["ambit:ambit2-model", "commons-cli:commons-cli", "org.apache.commons:commons-lang3", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin"], "https://github.com/irgroup/sigir2020-measure-reproducibility": ["beautifulsoup4", "lxml", "nltk", "numpy", "pandas", "scikit-learn", "scipy", "tqdm"], "https://github.com/mikekestemont/chivalric_diversity": ["matplotlib", "numpy", "pandas", "ptitprince", "scipy"], "https://github.com/CosmologyTaskForce/PhysicsResearchSurvivalManual": ["sphinx-bootstrap-theme"], "https://github.com/dbischof90/optimal_extreme_value_portfolios": ["matplotlib", "numba", "numpy", "scipy", "tabulate"], "https://github.com/ComputationalRadiationPhysics/picongpu": ["breathe", "matplotlib", "numpy", "pygments", "recommonmark", "scipy", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "sphinxcontrib-programoutput", "pint", "h5py", "pandas", "pillow", "ipympl", "ipywidgets"], "https://github.com/DorianDepriester/MTEX2Gmsh": ["Gmsh", "Matlab", "MTEX"], "https://github.com/MStarmans91/WORC": ["configparser", "drmaa", "fastr", "ghalton", "imbalanced-learn", "lifelines", "natsort", "neurocombat", "nose", "nose-parameterized", "numpy", "pandas", "predict", "pydicom", "pyopenssl", "python-dateutil", "pyyaml", "scikit-learn", "scipy", "simpleitk", "six", "sphinx", "tables", "tikzplotlib", "tqdm", "xlrd", "xnat", "boto3", "botocore", "jmespath", "s3transfer", "docutils", "ordereddict", "simplejson"], "https://github.com/colomoto/pyMaBoSS": ["colomoto-jupyter", "ipython", "matplotlib", "nbsphinx", "pandas", "pyparsing", "sklearn", "sphinx-rtd-theme"], "https://github.com/lktsui/carbon_xs_gui": ["appdirs", "matplotlib", "numpy", "pyside", "ujson"], "https://github.com/severin-lemaignan/pyrobots": ["futures", "numpy"], "https://github.com/casmlab/twitter_user_collector": ["anaconda-client", "appnope", "backports-abc", "backports-ssl-match-hostname", "clyent", "configparser", "decorator", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jinja2", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "markupsafe", "mistune", "nbconvert", "nbformat", "notebook", "path-py", "pexpect", "pickleshare", "ptyprocess", "pygments", "python-dateutil", "pytz", "pyyaml", "pyzmq", "qtconsole", "requests", "simplegeneric", "singledispatch", "six", "terminado", "tornado", "traitlets", "twitter"], "https://github.com/QCoDeS/Qcodes": ["ipython", "jupyter", "nbconvert", "nbsphinx", "packaging", "pandas", "scipy", "sphinx", "sphinx-jsonschema", "sphinx-rtd-theme", "xarray", "argon2-cffi", "async-generator", "attrs", "backcall", "bleach", "broadbean", "cachetools", "certifi", "cffi", "chardet", "colorama", "contextlib2", "cycler", "decorator", "defusedxml", "entrypoints", "google-api-core", "google-auth", "googleapis-common-protos", "h5py", "idna", "importlib-metadata", "ipykernel", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "jsonschema", "jupyter-client", "jupyter-core", "jupyterlab-pygments", "kiwisolver", "markupsafe", "matplotlib", "mistune", "nbclient", "nbformat", "nest-asyncio", "notebook", "numpy", "opencensus", "opencensus-context", "opencensus-ext-azure", "pandocfilters", "parso", "pickleshare", "pillow", "prometheus-client", "prompt-toolkit", "protobuf", "psutil", "pyasn1", "pyasn1-modules", "pycparser", "pygments", "pyparsing", "pyqt5", "pyqtgraph", "pyrsistent", "python-dateutil", "pytz", "pyvisa", "pywin32", "pywinpty", "pyzmq", "qtpy", "requests", "requirements-parser", "rsa", "ruamel-yaml", "ruamel-yaml-clib", "schema", "send2trash", "six", "tabulate", "terminado", "testpath", "tornado", "tqdm", "traitlets", "typing-extensions", "urllib3", "wcwidth", "webencodings", "websockets", "widgetsnbextension", "wincertstore", "wrapt", "zipp", "asv", "codacy-coverage", "codecov", "coverage", "deepdiff", "gitpython", "hypothesis", "lxml", "mypy", "pylint", "pytest", "pytest-cov", "pytest-mock", "pytest-rerunfailures", "pytest-xdist", "qcodes"], "https://github.com/kusterlab/MasterSpectrum": ["blist", "cython", "lxml", "numpy", "pyteomics"], "https://github.com/TUW-GEO/smap_io": ["sphinx", "datedown", "ease-grid", "h5py", "more-itertools", "parse", "pygeobase", "pygeogrids", "pynetcf", "repurpose", "trollsift", "coverage", "pytest", "pytest-cov", "sphinx-rtd-theme"], "https://github.com/neurodata/ndstore": ["amqp", "anyjson", "blosc", "boto3", "celery", "cython", "django", "django-celery", "django-cors-headers", "django-cors-middleware", "django-registration", "django-sslserver", "djangorestframework", "h5py", "hiredis", "json-spec", "jsonschema", "libtiff", "lxml", "mysql-python", "networkx", "nibabel", "numpy", "pillow", "posix-ipc", "pylibmc", "pytest", "redis", "requests", "riak", "toolz", "uwsgi"], "https://github.com/isi-nmr/brukerapi-python": ["numpy", "pyyaml"], "https://github.com/pysal/tobler": ["geopandas", "libpysal", "numpy", "pandas", "rasterio", "rasterstats", "scipy", "statsmodels", "tqdm", "descartes", "mapclassify", "nbsphinx", "numpydoc", "sphinx", "sphinx-bootstrap-theme", "sphinxcontrib-bibtex", "coverage", "coveralls", "matplotlib", "pytest", "pytest-cov", "pytest-mpl", "quilt3", "shap", "twine", "xgboost", "nose"], "https://github.com/mbdemoraes/moafs": ["nz.ac.waikato.cms.moa:moa", "nz.ac.waikato.cms.weka:weka-stable"], "https://github.com/gbv/kos-registry": ["fs-ndjson", "jskos-cli", "jskos-tools", "jskos-validate", "wikidata-jskos", "yaml"], "https://github.com/callat-qcd/espressodb": ["beautifulsoup4", "pytest", "pytest-django", "pytest-env", "recommonmark", "sphinx", "sphinx-autodoc-typehints", "sphinx-markdown-tables", "sphinx-rtd-theme", "django", "django-bootstrap4", "django-extensions", "django-pandas", "django-widget-tweaks", "pyyaml", "bokeh", "espressodb", "pandas"], "https://github.com/longavailable/adaptive-curvefitting": ["matplotlib", "pandas", "scipy"], "https://github.com/LUMC/pytest-workflow": ["sphinx", "tox", "bandit", "coverage", "flake8", "flake8-import-order", "mypy", "setuptools", "sphinx-argparse", "sphinx-rtd-theme", "jsonschema", "pytest", "pyyaml"], "https://github.com/cta-observatory/ctapipe": ["astropy", "bokeh", "ctapipe-extra", "eventio", "iminuit", "joblib", "matplotlib", "numba", "numpy", "pandas", "psutil", "pyhessio", "pytest", "scikit-learn", "scipy", "tables", "tqdm", "traitlets"], "https://github.com/SystemsGenetics/pynome": ["click", "mccabe", "numpy", "pandas", "pytest", "python-irodsclient", "sqlalchemy", "tqdm", "xmltodict"], "https://github.com/openvax/mhctools": ["mhcflurry", "mhcnames", "nose", "numpy", "pandas", "pyensembl", "pylint", "sercol", "six", "varcode"], "https://github.com/alexvoronov/geonetworking": ["ch.qos.logback:logback-classic", "com.google.code.gson:gson", "com.lexicalscope.jewelcli:jewelcli", "commons-net:commons-net", "junit:junit", "nl.jqno.equalsverifier:equalsverifier", "org.hamcrest:hamcrest-all", "org.threeten:threetenbp"], "https://github.com/Dioptas/Dioptas": ["cython", "numpy"], "https://github.com/shbhuk/barycorrpy": ["astropy", "astroquery", "jplephem", "numpy", "scipy"], "https://github.com/vanheeringen-lab/ANANSE": ["adjusttext", "dask", "genomepy", "gimmemotifs", "loguru", "networkx", "setuptools", "tables"], "https://github.com/mazlo/lodcc": ["argparse", "logging", "numpy", "powerlaw", "xxhash"], "https://github.com/LDflex/LDflex-Comunica": ["@babel/cli", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-bigint", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-import-meta", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@bcoe/v8-coverage", "@cnakazawa/watch", "@comunica/actor-abstract-bindings-hash", "@comunica/actor-abstract-mediatyped", "@comunica/actor-abstract-path", "@comunica/actor-http-memento", "@comunica/actor-http-native", "@comunica/actor-http-proxy", "@comunica/actor-http-solid-auth-fetch", "@comunica/actor-init-sparql", "@comunica/actor-optimize-query-operation-join-bgp", "@comunica/actor-query-operation-ask", "@comunica/actor-query-operation-bgp-empty", "@comunica/actor-query-operation-bgp-left-deep-smallest", "@comunica/actor-query-operation-bgp-single", "@comunica/actor-query-operation-construct", "@comunica/actor-query-operation-describe-subject", "@comunica/actor-query-operation-distinct-hash", "@comunica/actor-query-operation-extend", "@comunica/actor-query-operation-filter-sparqlee", "@comunica/actor-query-operation-from-quad", "@comunica/actor-query-operation-group", "@comunica/actor-query-operation-join", "@comunica/actor-query-operation-leftjoin-left-deep", "@comunica/actor-query-operation-leftjoin-nestedloop", "@comunica/actor-query-operation-minus", "@comunica/actor-query-operation-orderby-sparqlee", "@comunica/actor-query-operation-path-alt", "@comunica/actor-query-operation-path-inv", "@comunica/actor-query-operation-path-link", "@comunica/actor-query-operation-path-nps", "@comunica/actor-query-operation-path-one-or-more", "@comunica/actor-query-operation-path-seq", "@comunica/actor-query-operation-path-zero-or-more", "@comunica/actor-query-operation-path-zero-or-one", "@comunica/actor-query-operation-project", "@comunica/actor-query-operation-quadpattern", "@comunica/actor-query-operation-reduced-hash", "@comunica/actor-query-operation-service", "@comunica/actor-query-operation-slice", "@comunica/actor-query-operation-sparql-endpoint", "@comunica/actor-query-operation-union", "@comunica/actor-query-operation-values", "@comunica/actor-rdf-dereference-http-parse", "@comunica/actor-rdf-join-multi-smallest", "@comunica/actor-rdf-join-nestedloop", "@comunica/actor-rdf-join-symmetrichash", "@comunica/actor-rdf-metadata-all", "@comunica/actor-rdf-metadata-extract-hydra-controls", "@comunica/actor-rdf-metadata-extract-hydra-count", "@comunica/actor-rdf-metadata-extract-sparql-service", "@comunica/actor-rdf-metadata-primary-topic", "@comunica/actor-rdf-parse-html", "@comunica/actor-rdf-parse-html-rdfa", "@comunica/actor-rdf-parse-html-script", "@comunica/actor-rdf-parse-jsonld", "@comunica/actor-rdf-parse-n3", "@comunica/actor-rdf-parse-rdfxml", "@comunica/actor-rdf-parse-xml-rdfa", "@comunica/actor-rdf-resolve-hypermedia-links-next", "@comunica/actor-rdf-resolve-hypermedia-none", "@comunica/actor-rdf-resolve-hypermedia-qpf", "@comunica/actor-rdf-resolve-hypermedia-sparql", "@comunica/actor-rdf-resolve-quad-pattern-federated", "@comunica/actor-rdf-resolve-quad-pattern-hypermedia", "@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source", "@comunica/actor-rdf-resolve-quad-pattern-sparql-json", "@comunica/actor-rdf-serialize-jsonld", "@comunica/actor-rdf-serialize-n3", "@comunica/actor-sparql-parse-algebra", "@comunica/actor-sparql-parse-graphql", "@comunica/actor-sparql-serialize-json", "@comunica/actor-sparql-serialize-rdf", "@comunica/actor-sparql-serialize-simple", "@comunica/actor-sparql-serialize-sparql-csv", "@comunica/actor-sparql-serialize-sparql-json", "@comunica/actor-sparql-serialize-sparql-tsv", "@comunica/actor-sparql-serialize-sparql-xml", "@comunica/actor-sparql-serialize-stats", "@comunica/actor-sparql-serialize-table", "@comunica/actor-sparql-serialize-tree", "@comunica/bus-context-preprocess", "@comunica/bus-http", "@comunica/bus-http-invalidate", "@comunica/bus-init", "@comunica/bus-optimize-query-operation", "@comunica/bus-query-operation", "@comunica/bus-rdf-dereference", "@comunica/bus-rdf-dereference-paged", "@comunica/bus-rdf-join", "@comunica/bus-rdf-metadata", "@comunica/bus-rdf-metadata-extract", "@comunica/bus-rdf-parse", "@comunica/bus-rdf-parse-html", "@comunica/bus-rdf-resolve-hypermedia", "@comunica/bus-rdf-resolve-hypermedia-links", "@comunica/bus-rdf-resolve-quad-pattern", "@comunica/bus-rdf-serialize", "@comunica/bus-sparql-parse", "@comunica/bus-sparql-serialize", "@comunica/core", "@comunica/data-factory", "@comunica/logger-pretty", "@comunica/logger-void", "@comunica/mediator-all", "@comunica/mediator-combine-pipeline", "@comunica/mediator-combine-union", "@comunica/mediator-number", "@comunica/mediator-race", "@comunica/mediatortype-iterations", "@comunica/runner", "@comunica/runner-cli", "@comunica/utils-datasource", "@eslint/eslintrc", "@istanbuljs/load-nyc-config", "@istanbuljs/schema", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/globals", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@peculiar/asn1-schema", "@peculiar/json-schema", "@peculiar/webcrypto", "@pollyjs/adapter", "@pollyjs/adapter-node-http", "@pollyjs/core", "@pollyjs/node-server", "@pollyjs/persister", "@pollyjs/persister-fs", "@pollyjs/utils", "@rdfjs/data-model", "@sindresorhus/fnv1a", "@sinonjs/commons", "@sinonjs/fake-timers", "@sinonjs/text-encoding", "@solid/jose", "@solid/oidc-rp", "@types/asn1js", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/color-name", "@types/create-hash", "@types/graceful-fs", "@types/http-link-header", "@types/istanbul-lib-coverage", "eslint", "eslint-plugin-jest", "husky", "jest", "mkdirp", "setup-polly-jest"], "https://github.com/nicysneiros/SemMatcher": ["com.sun.xml.ws:activation", "com.sun.xml.ws:jaxb-impl", "com.sun.xml.ws:jaxws-rt", "com.sun.xml.ws:jaxws-tools", "com.sun.xml.ws:jsr250-api", "com.sun.xml.ws:resolver", "com.sun.xml.ws:saaj-api", "com.sun.xml.ws:saaj-impl", "com.sun.xml.ws:sjsxp", "com.sun.xml.ws:stax-api", "com.sun.xml.ws:stax-ex", "com.sun.xml.ws:streambuffer", "com.sun.xml:axis2-jws-api", "com.sun.xml:jaxb-api", "com.sun.xml:jaxws-api", "fr.inrialpes.exmo:align", "fr.inrialpes.exmo:neonalign", "fr.inrialpes.exmo:procalign", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.weblab-project:weblab"], "https://github.com/pace-gt/PACE-ProvBench": ["torch"], "https://github.com/spirali/rsds": ["bokeh", "click", "cython", "dask", "gitpython", "joblib", "json5", "mimesis", "networkx", "nltk", "orco", "pandas", "psutil", "pytest", "scikit-learn", "seaborn", "tqdm", "xarray"], "https://github.com/UNCG-DAISY/psi-collect": ["bump2version", "codecov", "imageio", "pandas", "pillow", "pre-commit", "pytest", "pytest-cov", "pytest-runner", "requests", "tqdm", "appdirs", "attrs", "certifi", "cfgv", "chardet", "coverage", "distlib", "filelock", "identify", "idna", "more-itertools", "nodeenv", "numpy", "packaging", "pluggy", "py", "pyparsing", "python-dateutil", "pytz", "pyyaml", "six", "toml", "urllib3", "virtualenv", "wcwidth", "markdown", "mkdocs", "mkdocs-git-revision-date-plugin", "mkdocs-macros-plugin", "mkdocs-material", "mkdocs-minify-plugin", "pymdown-extensions"], "https://github.com/gmbrandt/xwavecal": ["astropy", "numpy", "scipy", "coverage", "mock", "nose", "pytest", "python-coveralls", "sep"], "https://github.com/Fuminides/Fancy_aggregations": ["numpy"], "https://github.com/rootpy/rootpy": ["numpydoc", "sphinxcontrib-programoutput", "numpy", "root-numpy", "matplotlib", "readline", "termcolor", "uncertainties", "tables"], "https://github.com/Social-Evolution-and-Behavior/anTraX": ["ipykernel", "ipyparallel", "ipython", "ipython-genutils", "mkdocs-jupyter", "nbconvert"], "https://github.com/seasite-project/Offsite": ["argparse", "attrs", "datetime", "kerncraft", "lark-parser", "numpy", "osaca", "pandas", "pathlib", "ruamel-yaml", "sortedcontainers", "sqlalchemy", "sympy", "typing"], "https://github.com/emsec/hal": ["jedi", "python-dateutil", "sphinx", "sphinx-rtd-theme"], "https://github.com/SolarArbiter/solarforecastarbiter-api": ["coverage", "flake8", "pytest", "pytest-cov", "pytest-mock", "requests-mock", "apispec", "apispec-webframeworks", "blinker", "cryptography", "fakeredis", "flask", "flask-marshmallow", "flask-talisman", "gevent", "gunicorn", "marshmallow", "pandas", "prometheus-flask-exporter", "pymysql", "python-jose", "pyyaml", "redis", "requests", "rq", "rq-scheduler", "sentry-sdk", "sqlalchemy", "tables", "webargs", "solarforecastarbiter"], "https://github.com/VIDA-NYU/reproserver": ["boto3", "enum34", "pika", "psycopg2", "requests", "sqlalchemy"], "https://github.com/Crompulence/cpl-library": ["matplotlib", "nose", "numpy", "scipy"], "https://github.com/KeplerGO/kadenza": ["astropy", "numpy", "tqdm"], "https://github.com/MarinManuel/Huh_et_al_2020": ["dabest", "matplotlib", "numpy", "pandas", "scipy", "seaborn"], "https://github.com/JasperHG90/sleepsimR-documentation": ["dplyr", "shiny", "shinyjs"], "https://github.com/OPEnSLab-OSU/SlideSentinel": ["bcrypt", "fs", "http", "path", "querystring", "request", "shortid", "url", "abort-controller", "abs", "accepts", "agent-base", "array-flatten", "arrify", "base64-js", "bignumber.js", "body-parser", "buffer-equal-constant-time", "bytes", "capture-stack-trace", "content-disposition", "content-type", "cookie", "cookie-signature", "core-util-is", "create-error-class", "debug", "deep-extend", "deffy", "depd", "destroy", "duplexer2", "ecdsa-sig-formatter", "ee-first", "encodeurl", "err", "error-ex", "es6-promise", "es6-promisify", "escape-html", "etag", "event-target-shim", "exec-limiter", "express", "extend", "fast-text-encoding", "finalhandler", "forwarded", "fresh", "function.name", "gaxios", "gcp-metadata", "git-package-json", "git-source", "git-up", "git-url-parse", "google-auth-library", "google-p12-pem", "googleapis", "googleapis-common", "got", "gry", "gtoken", "hosted-git-info", "http-errors", "https-proxy-agent", "iconv-lite", "inherits", "ini", "ipaddr.js", "is-arrayish", "is-redirect", "is-retry-allowed", "is-ssh", "is-stream", "isarray", "iterate-object", "json-bigint", "jwa", "jws", "limit-it", "lowercase-keys", "lru-cache", "media-typer", "merge-descriptors", "methods", "mime", "mime-db", "mime-types", "minimist", "ms", "negotiator", "node-fetch", "node-forge", "node-status-codes", "noop6", "normalize-package-data", "oargv", "obj-def", "object-assign", "on-finished", "one-by-one", "os-tmpdir", "package-json", "package-json-path", "package.json", "parse-json", "parse-url", "parseurl", "path-parse", "path-to-regexp", "pify", "pinkie", "pinkie-promise", "popper.js", "prepend-http", "process-nextick-args", "protocols", "proxy-addr", "qs", "r-json", "r-package-json", "range-parser", "raw-body", "rc", "read-all-stream", "readable-stream", "registry-auth-token", "registry-url", "resolve", "safe-buffer", "safer-buffer", "semver", "send", "serve-static", "setprototypeof", "sliced", "spdx-correct", "spdx-exceptions", "spdx-expression-parse", "spdx-license-ids", "statuses", "string_decoder", "strip-json-comments", "timed-out", "tmp", "tooltip.js", "type-is", "typpy", "ul", "unpipe", "unzip-response", "url-parse-lax", "url-template", "util-deprecate", "utils-merge", "uuid", "validate-npm-package-license", "vary", "yallist"], "https://github.com/TeamRegio/EpiRegioDB": ["django", "djangorestframework", "gunicorn", "mysql-connector-python", "mysqlclient", "numpy", "pbr", "protobuf", "psycopg2-binary", "pybedtools", "pytz", "six", "sqlparse", "stevedore", "virtualenv", "virtualenv-clone", "virtualenvwrapper", "commitplease", "grunt", "grunt-contrib-compress", "grunt-contrib-concat", "grunt-contrib-copy", "grunt-contrib-jshint", "grunt-contrib-qunit", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-jscs", "grunt-sri", "grunt-text-replace", "qunitjs"], "https://github.com/Aetf/tf_benchmarks": ["flask", "google-cloud", "gunicorn"], "https://github.com/HypothesisWorks/hypothesis": ["attrs", "coverage", "python-dateutil", "six", "apipkg", "execnet", "iniconfig", "packaging", "pluggy", "ptyprocess", "py", "pyparsing", "pytest-forked", "toml", "alabaster", "appdirs", "asgiref", "babel", "backcall", "bandit", "bleach", "certifi", "cffi", "chardet", "click", "colorama", "cryptography", "decorator", "deprecated", "distlib", "docutils", "dparse", "filelock", "flake8-polyfill", "gitdb", "gitpython", "idna", "imagesize", "ipython-genutils", "jedi", "jeepney", "jinja2", "keyring", "markupsafe", "mccabe", "mypy-extensions", "parso", "pathspec", "pbr", "pexpect", "pickleshare", "pkginfo", "prompt-toolkit", "pycodestyle", "pycparser", "pydocstyle", "pyflakes", "pygithub", "pygments", "pyjwt", "python-gitlab", "pytz", "pyyaml", "readme-renderer", "regex", "requests-toolbelt", "rfc3986", "safety", "secretstorage", "smmap", "snowballstemmer", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "sqlparse", "stevedore", "tokenize-rt", "tqdm", "traitlets", "typed-ast", "typing-extensions", "urllib3", "virtualenv", "wcwidth", "webencodings", "wrapt", "minitest", "redcarpet", "rspec", "rubocop", "simplecov", "yard", "ast", "diff-lcs", "docile", "helix_runtime", "json", "parallel", "parser", "powerpack", "rainbow", "rake", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec-support", "ruby-progressbar", "simplecov-html", "thor", "tomlrb", "unicode-display_width", "sortedcontainers", "hypothesis"], "https://github.com/astrom-tom/catscii": ["numpy"], "https://github.com/NESTCollaboration/nestpy": ["numpy", "breathe"], "https://github.com/remyleone/makesense": ["fabric3", "ipython", "jinja2", "networkx", "pandas", "pycrypto", "requests"], "https://github.com/OSOceanAcoustics/echopype": ["black", "check-manifest", "flake8", "flake8-builtins", "flake8-comprehensions", "flake8-mutable", "flake8-print", "isort", "mypy", "numpydoc", "pre-commit", "pylint", "pytest", "pytest-cov", "pytest-flake8", "pytest-xdist", "setuptools-scm", "sphinx", "sphinx-automodapi", "twine", "wheel", "dask", "matplotlib", "netcdf4", "numpy", "pynmea2", "pytz", "scipy", "xarray", "zarr", "pandas", "tox"], "https://github.com/California-Planet-Search/radvel": ["astropy", "corner", "cython", "dill", "emcee", "h5py", "ipykernel", "jinja2", "jupyter-client", "matplotlib", "nbsphinx", "numpy", "pandas", "python-dateutil", "scipy", "pybind11"], "https://github.com/vangorden/OUR2D2": ["chardet", "pyinstaller", "pysimplegui"], "https://github.com/jpvantassel/swprepost": ["coverage", "hypothesis", "jupyter", "matplotlib", "nbformat", "numpy", "scipy", "sphinx", "sphinx-rtd-theme"], "https://github.com/SanPen/GridCal": ["mpi4py", "sphinx", "sphinx-rtd-theme", "chardet", "geopy", "h5py", "matplotlib", "networkx", "numba", "numpy", "openpyxl", "pandas", "pulp", "pydoe", "pyside2", "pysot", "pytest", "qtconsole", "scikit-learn", "scipy", "smopy", "tabulate", "xlrd", "xlwt", "atomicwrites", "attrs", "filelock", "importlib-metadata", "more-itertools", "packaging", "pip", "pluggy", "py", "pyparsing", "setuptools", "six", "toml", "tox", "virtualenv", "wcwidth", "zipp", "folium"], "https://github.com/INVEST-flagship/Randomized-picture-rating-tool-for-surveys": ["django", "djangorestframework", "djangorestframework-csv", "psycopg2-binary", "pytz", "@material-ui/core", "@material-ui/icons", "axios", "final-form", "final-form-material-ui", "react", "react-dom", "react-final-form", "react-router", "react-router-dom", "react-scripts"], "https://github.com/BioSTEAMDevelopmentGroup/biosteam": ["chaospy", "colorpalette", "graphviz", "ipykernel", "ipython", "nbsphinx", "pipeml", "sphinx", "sphinx-rtd-theme", "thermosteam", "biorefineries", "biosteam", "chemicals", "coveralls", "flexsolve", "free-properties", "matplotlib", "numba", "numpy", "openpyxl", "pint", "pyglet", "pytest-cov", "pyyaml", "sympy", "xlrd", "array-collections", "fluids", "ht", "pandas", "scipy", "thermo"], "https://github.com/o2r-project/geoextent": ["pytest", "pytest-console-scripts", "geojson", "pygeoj", "pyproj", "pyshp", "python-dateutil", "pygdal", "jupyter-sphinx", "sphinx-issues", "sphinxcontrib-autoprogram"], "https://github.com/locked-fg/JFeatureLib": ["args4j:args4j", "com.google.guava:guava", "commons-io:commons-io", "de.lmu.ifi.dbs.utilities:common-extension-lib", "gov.nih.imagej:imagej", "gov.nist.math:jama", "junit:junit", "log4j:log4j", "net.semanticmetadata:lire", "org.apache.commons:commons-lang3", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.codehaus.mojo:findbugs-maven-plugin", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/bastula/dicompyler": ["dicompyler-core", "matplotlib", "numpy", "wxpython", "pillow", "pydicom"], "https://github.com/research-software-directory/research-software-directory": ["@storybook/addon-actions", "@storybook/addon-links", "@storybook/addon-storyshots", "@storybook/addons", "@storybook/react", "@types/classnames", "@types/history", "@types/jest", "@types/jwt-decode", "@types/mustache", "@types/nock", "@types/node", "@types/react", "@types/react-cropper", "@types/react-dom", "@types/react-dropzone", "@types/react-json-pretty", "@types/react-overlays", "@types/react-redux", "@types/react-redux-toastr", "@types/react-router-dom", "@types/react-router-redux", "@types/react-test-renderer", "@types/showdown", "@types/sinon", "@types/uuid", "ajv", "awesome-typescript-loader", "axios", "axios-mock-adapter", "babel-core", "babel-runtime", "history", "husky", "immutability-helper", "jwt-decode", "lint-staged", "moment", "mustache", "prettier", "react", "react-animate-height", "react-cropper", "react-day-picker", "react-dom", "react-dropzone", "react-json-pretty", "react-overlays", "react-redux", "react-redux-toastr", "react-router", "react-router-dom", "react-router-redux", "react-scripts-ts", "react-test-renderer", "react-transition-group", "reduce-reducers", "redux", "redux-saga", "semantic-ui-css", "semantic-ui-react", "showdown", "showdown-htmlescape", "styled-components", "ts-jest", "typescript", "uuid", "webpack", "@babel/code-frame", "@babel/highlight", "@babel/runtime", "@samverschueren/stream-to-observable", "@storybook/channel-postmessage", "@storybook/channels", "@storybook/client-logger", "@storybook/components", "@storybook/core", "@storybook/mantra-core", "@storybook/node-logger", "@storybook/podda", "@storybook/react-komposer", "@storybook/react-simple-di", "@storybook/react-stubber", "@storybook/ui", "@types/cropperjs", "@types/react-router", "@types/react-transition-group", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/leb128", "@webassemblyjs/validation", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "abab", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "acorn-globals", "address", "agent-base", "airbnb-js-shims", "ajv-keywords", "align-text", "alphanum-sort", "ansi-align", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "any-observable", "anymatch", "app-root-path", "append-transform", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-filter", "array-find", "array-find-index", "array-flatten", "array-includes", "array-map", "array-reduce", "array-union", "array-uniq", "array-unique", "array.prototype.flat", "array.prototype.flatmap", "array.prototype.flatten", "arrify", "asap", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "ast-types", "astral-regex", "async", "async-each", "async-limiter", "asynckit", "atob", "attr-accept", "autoprefixer", "aws-sign2", "aws4", "babel-code-frame", "babel-generator", "babel-helper-bindify-decorators", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-builder-react-jsx", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-evaluate-path", "babel-helper-explode-assignable-expression", "babel-helper-explode-class", "babel-helper-flip-expressions", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-is-nodes-equiv", "babel-helper-is-void-0", "babel-helper-mark-eval-scopes", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-remove-or-void", "babel-helper-replace-supers", "babel-helper-to-multiple-sequence-expressions", "babel-helpers", "babel-jest", "babel-loader", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-dynamic-import-node", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-plugin-macros", "babel-plugin-minify-builtins", "babel-plugin-minify-constant-folding", "babel-plugin-minify-dead-code-elimination", "babel-plugin-minify-flip-comparisons", "babel-plugin-minify-guarded-expressions", "babel-plugin-minify-infinity", "babel-plugin-minify-mangle-names", "babel-plugin-minify-numeric-literals", "babel-plugin-minify-replace", "babel-plugin-minify-simplify", "babel-plugin-minify-type-constructors", "babel-plugin-react-docgen", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-async-generators", "babel-plugin-syntax-class-constructor-call", "babel-plugin-syntax-class-properties", "babel-plugin-syntax-decorators", "babel-plugin-syntax-do-expressions", "babel-plugin-syntax-dynamic-import", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-export-extensions", "babel-plugin-syntax-flow", "babel-plugin-syntax-function-bind", "babel-plugin-syntax-jsx", "babel-plugin-syntax-object-rest-spread", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-generator-functions", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-class-constructor-call", "babel-plugin-transform-class-properties", "babel-plugin-transform-decorators", "babel-plugin-transform-do-expressions", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-export-extensions", "babel-plugin-transform-flow-strip-types", "babel-plugin-transform-function-bind", "babel-plugin-transform-inline-consecutive-adds", "babel-plugin-transform-member-expression-literals", "babel-plugin-transform-merge-sibling-variables", "babel-plugin-transform-minify-booleans", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-property-literals", "babel-plugin-transform-react-constant-elements", "babel-plugin-transform-react-display-name", "babel-plugin-transform-react-jsx", "babel-plugin-transform-react-jsx-self", "babel-plugin-transform-react-jsx-source", "babel-plugin-transform-regenerator", "babel-plugin-transform-regexp-constructors", "babel-plugin-transform-remove-console", "babel-plugin-transform-remove-debugger", "babel-plugin-transform-remove-undefined", "babel-plugin-transform-runtime", "babel-plugin-transform-simplify-comparison-operators", "babel-plugin-transform-strict-mode", "babel-plugin-transform-undefined-to-void", "babel-preset-env", "babel-preset-flow", "babel-preset-jest", "babel-preset-minify", "babel-preset-react", "babel-preset-react-app", "babel-preset-stage-0", "babel-preset-stage-1", "babel-preset-stage-2", "babel-preset-stage-3", "babel-register", "babel-template", "babel-traverse", "babel-types", "babylon", "jest", "balanced-match", "base", "bcrypt-pbkdf", "brace-expansion", "braces", "browser-process-hrtime", "browser-resolve", "bser", "buffer-from", "builtin-modules", "cache-base", "callsites", "camelcase", "capture-exit", "caseless", "chalk", "chownr", "ci-info", "class-utils", "cliui", "co", "code-point-at", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "compare-versions", "component-emitter", "concat-map", "console-control-strings", "convert-source-map", "copy-descriptor", "core-js", "core-util-is", "cross-spawn", "cssom", "cssstyle", "dashdash", "data-urls", "debug", "decamelize", "decode-uri-component", "deep-extend", "deep-is", "default-require-extensions", "define-properties", "define-property", "delayed-stream", "delegates", "detect-indent", "detect-libc", "detect-newline", "diff", "domexception", "ecc-jsbn", "error-ex", "es-abstract", "es-to-primitive", "escape-string-regexp", "escodegen", "esprima", "estraverse", "esutils", "exec-sh", "execa", "exit", "expand-brackets", "expand-range", "expect", "extend", "extend-shallow", "extglob", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "fb-watchman", "filename-regex", "fileset", "fill-range", "find-up", "for-in", "for-own", "foreach", "forever-agent", "form-data", "fragment-cache", "fs-minipass", "fs.realpath", "fsevents", "function-bind", "gauge", "get-caller-file", "get-stream", "get-value", "getpass", "glob", "glob-base", "glob-parent", "globals", "graceful-fs", "growly", "handlebars", "har-schema", "har-validator", "has", "has-ansi", "has-flag", "has-unicode", "has-value", "has-values", "home-or-tmp", "hosted-git-info", "html-encoding-sniffer", "http-signature", "iconv-lite", "ignore-walk", "import-local", "imurmurhash", "inflight", "inherits", "ini", "invariant", "invert-kv", "is-accessor-descriptor", "is-arrayish", "is-buffer", "is-builtin-module", "is-callable", "is-ci", "is-data-descriptor", "is-date-object", "is-descriptor", "is-dotfile", "is-equal-shallow", "is-extendable", "is-extglob", "is-finite", "is-fullwidth-code-point", "is-generator-fn", "is-glob", "is-number", "is-odd", "is-plain-object", "is-posix-bracket", "is-primitive", "is-regex", "is-stream", "is-symbol", "is-typedarray", "is-utf8", "is-windows", "isarray", "isexe", "isobject", "isstream", "istanbul-api", "istanbul-lib-coverage", "istanbul-lib-hook", "istanbul-lib-instrument", "istanbul-lib-report", "istanbul-lib-source-maps", "istanbul-reports", "jest-changed-files", "jest-cli", "jest-config", "jest-diff", "jest-docblock", "jest-each", "jest-environment-jsdom", "jest-environment-node", "jest-get-type", "jest-haste-map", "jest-jasmine2", "jest-leak-detector", "jest-matcher-utils", "jest-message-util", "jest-mock", "jest-regex-util", "jest-resolve", "jest-resolve-dependencies", "jest-runner", "jest-runtime", "jest-serializer", "jest-snapshot", "jest-util", "jest-validate", "jest-watcher", "jest-worker", "js-tokens", "js-yaml", "jsbn", "jsdom", "jsesc", "json-schema", "json-schema-traverse", "json-stringify-safe", "json5", "jsprim", "kind-of", "lcid", "flask", "flask-cors", "gunicorn", "jsonschema", "pyjwt", "pymongo", "requests", "ago", "dateutils", "htmlmin", "libsass", "markdown", "pprintpp", "requests-mock", "pytest", "pytest-runner", "beautifulsoup4", "cffconvert", "click", "python-dateutil", "pyzotero", "urllib3"], "https://github.com/mast-group/OpenVocabCodeNLM": ["numpy", "pygtrie", "tensorflow-gpu"], "https://github.com/SystemsGenetics/KINC": ["argparse", "dash", "fa2", "matplotlib", "numpy", "pandas", "plotly", "progress", "python-igraph", "scipy", "seaborn"], "https://github.com/darothen/py-mie": ["numpy"], "https://github.com/PySEE/home": ["matplotlib", "numpy", "scipy", "seuif97", "autopep8", "iapws", "jupyter", "pylint", "pypistats"], "https://github.com/mfherbst/cvs-relaxation-scripts": ["adcc", "pyscf", "cycler", "h5py", "kiwisolver", "matplotlib", "numpy", "pybind11", "pyparsing", "python-dateutil", "scipy", "six", "tqdm"], "https://github.com/ctsit/research-subject-mapper": ["appdirs", "lxml", "pysftp", "requests"], "https://github.com/havok2063/boolean_parser": ["pyparsing", "sqlalchemy"], "https://github.com/DTUWindEnergy/TOPFARM": ["matplotlib", "pandas", "seaborn", "fusedwind", "numpy", "openmdao-main", "pyopt", "pyopt-driver", "scipy", "ipython", "tornado"], "https://github.com/halfak/deltas": ["yamlconf", "codecov", "flake8", "nose", "pytest", "pytest-cov"], "https://github.com/srmnitc/pyscal": ["matplotlib", "codecov", "pip", "pytest", "pytest-benchmark", "pytest-cov", "ase", "numpy", "html-proofer", "jekyll", "jekyll-seo-tag", "rubocop", "w3c_validators", "cmake", "sphinx-rtd-theme", "breathe"], "https://github.com/Parallel-in-Time/pySDC": ["coverage", "dill", "fenics", "matplotlib", "mpi4py", "mpi4py-fft", "nose", "numba", "numpy", "pep8", "petsc4py", "pip", "scipy", "sphinx", "sympy"], "https://github.com/kjappelbaum/permutationplotter": ["dash", "dash-bootstrap-components", "dash-core-components", "dash-html-components", "gunicorn", "pandas", "plotly", "scikit-learn"], "https://github.com/ESMValGroup/ESMValTool": ["autodocsumm", "cdo", "cdsapi", "cmocean", "cython", "dask", "ecmwf-api-client", "eofs", "fiona", "jinja2", "joblib", "matplotlib", "nc-time-axis", "netcdf4", "numpy", "pandas", "pillow", "pyproj", "pyyaml", "scikit-learn", "seaborn", "seawater", "shapely", "sphinx", "xarray", "xlsxwriter", "yamale"], "https://github.com/lacinoire/chunk-retrieval-replication": ["attrs", "backcall", "bleach", "certifi", "chardet", "chart-studio", "cycler", "decorator", "defusedxml", "entrypoints", "idna", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "jedi", "jinja2", "json5", "jsonschema", "jupyter-client", "jupyter-core", "jupyterlab", "jupyterlab-server", "kiwisolver", "markupsafe", "matplotlib", "mistune", "nbconvert", "nbformat", "notebook", "numpy", "pandas", "pandocfilters", "parso", "pexpect", "pickleshare", "pkg-resources", "plotly", "prometheus-client", "prompt-toolkit", "ptyprocess", "pygments", "pyparsing", "pyrsistent", "python-dateutil", "pytz", "pyzmq", "requests", "retrying", "scipy", "seaborn", "send2trash", "six", "terminado", "testpath", "tornado", "traitlets", "urllib3", "wcwidth", "webencodings", "zipp", "BenchmarkDotNet", "BenchmarkDotNet.Annotations", "CommandLineParser", "Microsoft.CodeAnalysis.Analyzers", "Microsoft.CodeAnalysis.Common", "Microsoft.CodeAnalysis.CSharp", "Microsoft.DotNet.PlatformAbstractions", "Microsoft.ProgramSynthesis.Common", "Microsoft.ProgramSynthesis.Extraction.Text", "Microsoft.Win32.Registry", "Newtonsoft.Json", "SharpSerializer", "System.AppContext", "System.Collections", "System.Collections.Concurrent", "System.Collections.Immutable", "System.Console", "System.Diagnostics.Debug", "System.Diagnostics.FileVersionInfo", "System.Diagnostics.StackTrace", "System.Diagnostics.Tools", "System.Dynamic.Runtime", "System.Globalization", "System.IO", "System.IO.Compression", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Linq.Expressions", "System.Management", "System.Reflection", "System.Reflection.Emit", "System.Reflection.Emit.Lightweight", "System.Reflection.Metadata", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.CompilerServices.Unsafe", "System.Runtime.Extensions", "System.Runtime.InteropServices", "System.Runtime.InteropServices.RuntimeInformation", "System.Runtime.Numerics", "System.Security.AccessControl", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Security.Principal.Windows", "System.Text.Encoding", "System.Text.Encoding.CodePages", "System.Text.Encoding.Extensions", "System.Threading", "System.Threading.Tasks", "System.Threading.Tasks.Extensions", "System.Threading.Tasks.Parallel", "System.Threading.Thread", "System.ValueTuple", "System.Xml.ReaderWriter", "System.Xml.XDocument", "System.Xml.XmlDocument", "System.Xml.XmlSerializer", "System.Xml.XPath", "System.Xml.XPath.XDocument", "System.Xml.XPath.XmlDocument"], "https://github.com/rahul-gohil/GFKT": ["manimlib", "matplotlib", "numpy", "opencv-contrib-python", "opencv-python", "pycairo"], "https://github.com/Edirom/WeGA-WebApp": ["bootstrap", "bootstrap-hover-dropdown", "fittextjs", "font-awesome", "frontend-dependencies", "google-code-prettify", "ion-rangeslider", "jquery", "jquery-ui", "jquery-ui-themes", "moment", "openseadragon", "prettydiff", "sass", "select2", "swagger-ui-dist", "vnu", "yuicompressor", "@babel/runtime", "@babel/runtime-corejs3", "@fortawesome/fontawesome-common-types", "@fortawesome/fontawesome-svg-core", "@fortawesome/free-solid-svg-icons", "@fortawesome/vue-fontawesome", "@nuxt/opencollective", "ansi-styles", "anymatch", "aria-query", "array-find", "array-includes", "asn1.js", "assert", "ast-types-flow", "axe-core", "axobject-query", "babel-polyfill", "babel-runtime", "balanced-match", "base64-js", "binary-extensions", "bn.js", "bootstrap-remote-data", "bootstrap-vue", "brace-expansion", "braces", "bravura", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "buffer", "buffer-xor", "builtin-status-codes", "chalk", "chokidar", "chownr", "cipher-base", "color-convert", "color-name", "concat-map", "confusing-browser-globals", "consola", "console-browserify", "constants-browserify", "core-js", "core-js-pure", "core-util-is", "create-ecdh", "create-hash", "create-hmac", "crypto-browserify", "csLink", "damerau-levenshtein", "debug", "define-properties", "des.js", "diffie-hellman", "domain-browser", "Easy-Responsive-Tabs-to-Accordion", "elliptic", "emoji-regex", "enhanced-resolve", "es-abstract", "es-to-primitive", "escape-string-regexp", "eslint-config-airbnb", "eslint-config-airbnb-base", "eslint-import-resolver-webpack", "eslint-plugin-jsx-a11y", "events", "evp_bytestokey", "fill-range", "find-root", "flip", "fs-minipass", "fs.realpath", "fsevents", "function-bind", "glob", "glob-parent", "graceful-fs", "has", "has-flag", "has-symbols", "hash-base", "hash.js", "hmac-drbg", "https-browserify", "ieee754", "inflight", "inherits", "interpret", "is-binary-path", "is-callable", "is-date-object", "is-extglob", "is-glob", "is-negative-zero", "is-number", "is-regex", "is-string", "is-symbol", "isarray", "isstream", "jsx-ast-utils", "language-subtag-registry", "language-tags", "lodash", "md5.js", "memory-fs", "miller-rabin", "minimalistic-assert", "minimalistic-crypto-utils", "minimatch", "minipass", "minizlib", "mkdirp", "ms", "node-fetch", "node-libs-browser", "normalize-path", "object-assign", "object-inspect", "object-keys", "object.assign", "object.entries", "once", "os-browserify", "pako", "parse-asn1", "path-browserify", "path-is-absolute", "path-parse", "pbkdf2", "picomatch", "popper.js", "portal-vue", "process", "process-nextick-args", "public-encrypt", "punycode", "querystring", "querystring-es3", "randombytes", "randomfill", "readable-stream", "readdirp", "rechoir", "regenerator-runtime", "resolve", "ripemd160", "safe-buffer", "safer-buffer", "semver", "setimmediate", "sha.js", "shelljs", "stream-browserify", "stream-http", "streamqueue", "string.prototype.trimend", "string.prototype.trimstart", "string_decoder", "supports-color", "tapable", "tar", "timers-browserify", "to-arraybuffer", "to-regex-range", "tty-browserify", "url", "util", "util-deprecate", "vm-browserify", "vnu-jar", "vue", "vue-functional-data-merge", "WeGA-ODD", "wrappy", "xtend", "yallist"], "https://github.com/NYUCCL/psiTurk": ["apscheduler", "boto3", "botocore", "certifi", "cmd2", "docopt", "faker", "flask", "flask-login", "flask-restful", "future", "fuzzywuzzy", "gitpython", "gunicorn", "psutil", "pyopenssl", "pytest", "python-dateutil", "python-dotenv", "pytz", "requests", "setproctitle", "sqlalchemy", "urllib3", "user-agents", "ciso8601", "pytest-mock", "pytest-socket", "psiturk", "psycopg2-binary"], "https://github.com/SP7-Ritmare/EDI-NG_server": ["com.h2database:h2", "net.sf.saxon:Saxon-HE", "org.apache.maven.plugins:maven-jar-plugin", "org.hibernate.javax.persistence:hibernate-jpa-2.0-api", "org.hibernate:hibernate-entitymanager", "org.postgresql:postgresql", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-data-jpa", "org.springframework.boot:spring-boot-starter-data-rest", "org.springframework.boot:spring-boot-starter-jersey", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-tomcat", "org.springframework.boot:spring-boot-starter-web", "org.springframework.boot:spring-boot-starter-websocket", "org.springframework.data:spring-data-neo4j", "org.springframework:spring-messaging"], "https://github.com/abhi1693/yii2-enum": ["yiisoft/yii2"], "https://github.com/rinde/pdptw-dataset-generator": ["com.github.rinde:rinlog", "com.github.rinde:rinsim-scenario-util", "com.google.auto.value:auto-value", "com.google.code.findbugs:jsr305", "com.google.truth:truth", "com.mycila:license-maven-plugin", "com.puppycrawl.tools:checkstyle", "junit:junit", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.codehaus.plexus:plexus-compiler-javac-errorprone", "org.eclipse.m2e:lifecycle-mapping", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/CambridgeSemiticsLab/BH_time_collocations": ["adjusttext", "appnope", "attrs", "backcall", "bleach", "certifi", "chardet", "click", "cycler", "decorator", "defusedxml", "deprecated", "entrypoints", "flask", "idna", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "itsdangerous", "jedi", "jinja2", "joblib", "json5", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "jupyterlab", "jupyterlab-server", "kiwisolver", "markdown", "markupsafe", "matplotlib", "mistune", "nbconvert", "nbformat", "networkx", "notebook", "numpy", "pandas", "pandocfilters", "parso", "patsy", "pexpect", "pickleshare", "plumbum", "ply", "prometheus-client", "prompt-toolkit", "psutil", "ptyprocess", "pygithub", "pygments", "pyjwt", "pyparsing", "pyrsistent", "python-bidi", "python-dateutil", "python-levenshtein", "pytz", "pyyaml", "pyzmq", "qtconsole", "requests", "rpyc", "scikit-learn", "scipy", "seaborn", "send2trash", "six", "sklearn", "statsmodels", "terminado", "testpath", "text-fabric", "tornado", "traitlets", "urllib3", "wcwidth", "webencodings", "werkzeug", "widgetsnbextension", "wrapt"], "https://github.com/erwinkendo/polaruob": ["moment", "noble-device", "protocol-buffers"], "https://github.com/geneontology/obographs": ["com.beust:jcommander", "com.fasterxml.jackson.dataformat:jackson-dataformat-protobuf", "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", "com.fasterxml.jackson.module:jackson-module-jsonSchema", "com.google.guava:guava", "com.io-informatics.oss:jackson-jsonld", "commons-io:commons-io", "junit:junit", "net.sourceforge.owlapi:owlapi-distribution", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.hamcrest:hamcrest-core", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/speckleworks/SpeckleCore": ["Countly", "DeviceId", "Newtonsoft.Json", "sqlite-net-pcl", "System.Net.Http", "WebSocketSharp-NonPreRelease", "Microsoft.NET.Test.Sdk", "nunit", "NUnit3TestAdapter"], "https://github.com/rjw57/videosequence": ["future", "pillow", "pytest", "pytest-capturelog", "pytest-cov", "requests"], "https://github.com/tylerjereddy/diffusion_analysis_MD_simulations": ["mock", "numpy", "numpydoc"], "https://github.com/luphysics/PyMODA": ["aiohttp", "asyncprocessscheduler", "dataclasses", "easysettings", "matplotlib", "multiprocess", "numpy", "pre-commit", "psutil", "pygithub", "pymodalib", "pyopengl", "pyqt5", "pyqt5-sip", "pyqt5-stubs", "pyqtgraph", "qasync", "scipy"], "https://github.com/NatLibFi/Annif": ["flask", "pyyaml", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-apidoc", "werkzeug"], "https://github.com/adbar/trafilatura": ["courlan", "htmldate", "justext", "lxml", "pytest", "readability-lxml", "requests", "tox", "trafilatura"], "https://github.com/ForeverZyh/DEBAR": ["graphviz", "numpy", "protobuf", "z3-solver"], "https://github.com/danchubb/CanVar": ["flask-compress", "flask-errormail", "flask-runner", "flask-script", "ipython", "numpy", "pymongo", "pysam", "pytabix"], "https://github.com/JonathonMSmith/growin": ["mock", "numpydoc"], "https://github.com/SoftwareDevEngResearch/flexWecDesignOpt": ["meshmagick", "numpy", "pygmsh", "pyyaml", "scipy", "setuptools"], "https://github.com/RubenImhoff/Large_Sample_Nowcasting_Evaluation": ["attrdict", "jsmin", "jsonschema", "matplotlib", "netcdf4", "numpy", "opencv-python", "pillow", "pyproj", "python", "scipy", "h5py", "jupyter", "nbsphinx", "opencv", "scikit-image", "scikit-learn", "sphinx", "sphinx-rtd-theme"], "https://github.com/TreeCmp/TreeCmpWEB": ["commons-cli:commons-cli", "commons-fileupload:commons-fileupload", "commons-io:commons-io", "javax.el:javax.el-api", "org.apache.commons:commons-collections4", "org.apache.commons:commons-compress", "org.apache.poi:poi", "org.apache.poi:poi-ooxml", "org.apache.poi:poi-ooxml-schemas", "org.apache.xmlbeans:xmlbeans", "org.codehaus.jackson:jackson-mapper-asl", "org.hibernate:hibernate-validator", "org.neo4j:neo4j-cypher-compiler-2.1", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-data-gemfire", "org.springframework.boot:spring-boot-starter-thymeleaf", "org.springframework.boot:spring-boot-starter-tomcat", "org.springframework.boot:spring-boot-starter-undertow", "org.springframework.boot:spring-boot-starter-web", "org.springframework:spring-context", "org.springframework:spring-messaging", "xalan:xalan"], "https://github.com/TaufiqHassan/acccmip6": ["pandas", "pytest", "requests", "setuptools", "xlrd"], "https://github.com/clsb/miles": ["matplotlib", "mpi4py", "networkx", "numpy", "scipy", "seaborn", "statsmodels"], "https://github.com/kip-hart/MicroStructPy": ["aabbtree", "lsq-ellipse", "matplotlib", "meshpy", "numpy", "pybind11", "pygmsh", "pyquaternion", "pyvoro-mmalahe", "scipy", "tox", "xmltodict", "gmsh", "sphinx", "sphinx-gallery"], "https://github.com/hls-fpga-machine-learning/hls4ml": ["h5py", "numpy", "onnx", "pyyaml", "six"], "https://github.com/biowdl/BamMetrics": ["cromwell", "miniwdl", "pytest-workflow", "wdl-aid"], "https://github.com/cwida/duckdb": ["org.duckdb:duckdb_jdbc", "numpy", "pybind11", "pytest"], "https://github.com/FREVA-CLINT/climatereconstructionAI": ["numpy", "pillow", "protobuf", "six", "tensorboardx", "torch", "torchvision", "tqdm"], "https://github.com/CESEL/RelationalGit": ["LibGit2Sharp", "Microsoft.EntityFrameworkCore", "Microsoft.EntityFrameworkCore.SqlServer", "Microsoft.Extensions.Configuration", "Microsoft.Extensions.Configuration.Json", "AutoMapper", "Microsoft.PowerShell.SDK", "Octokit.Extensions", "CsvHelper", "MathNet.Numerics", "CommandLineParser", "Diacritics", "EFCore.BulkExtensions", "F23.StringSimilarity", "Microsoft.CodeAnalysis.FxCopAnalyzers", "Microsoft.EntityFrameworkCore.Tools", "Microsoft.Extensions.Logging", "Microsoft.Extensions.Logging.Console", "Microsoft.Extensions.Logging.Debug", "Microsoft.WSMan.Management", "System.Configuration.ConfigurationManager"], "https://github.com/ComplexNetTSP/Simulation-Files-for-Large-Scale-Model-for-Information-Dissemination-with-Device-to-Device": ["numpy", "pickle", "progressbar", "pyshp"], "https://github.com/tresoldi/distfeat": ["pyclts", "tabulate"], "https://github.com/ceholden/TSTools": ["markdown2", "matplotlib", "numpy", "palettable", "scandir"], "https://github.com/riga/law": ["luigi", "six", "autodocsumm", "sphinx", "sphinx-rtd-theme"], "https://github.com/castelao/seabird": ["click", "numpy", "bumpversion", "coverage", "flake8", "pip", "pytest", "supportdata", "tox", "twine", "wheel"], "https://github.com/MrShoenel/git-density": ["Antlr3.Runtime", "EntityFramework", "F23.StringSimilarity", "FluentNHibernate", "Iesi.Collections", "LibGit2Sharp", "LibGit2Sharp.NativeBinaries", "LINQtoCSV", "Microsoft.Bcl.AsyncInterfaces", "Microsoft.Extensions.Configuration", "Microsoft.Extensions.Configuration.Abstractions", "Microsoft.Extensions.Configuration.Binder", "Microsoft.Extensions.DependencyInjection", "Microsoft.Extensions.DependencyInjection.Abstractions", "Microsoft.Extensions.Logging", "Microsoft.Extensions.Logging.Abstractions", "Microsoft.Extensions.Options", "Microsoft.Extensions.Primitives", "Microsoft.NETCore.Platforms", "Microsoft.Win32.Primitives", "NETStandard.Library", "Newtonsoft.Json", "NHibernate", "Remotion.Linq", "Remotion.Linq.EagerFetching", "SSH.NET", "System.AppContext", "System.Buffers", "System.Collections", "System.Collections.Concurrent", "System.ComponentModel.Annotations", "System.Console", "System.Data.SQLite", "System.Data.SQLite.Core", "System.Data.SQLite.EF6", "System.Data.SQLite.Linq", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tools", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.Compression", "System.IO.Compression.ZipFile", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Linq.Expressions", "System.Memory", "System.Net.Http", "System.Net.Primitives", "System.Net.Sockets", "System.Numerics.Vectors", "System.ObjectModel", "System.Reflection", "System.Reflection.Extensions", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.CompilerServices.Unsafe", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.InteropServices.RuntimeInformation", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Text.Encoding.Extensions", "System.Text.RegularExpressions", "System.Threading", "System.Threading.Tasks", "System.Threading.Tasks.Extensions", "System.Threading.Timer", "System.Xml.ReaderWriter", "System.Xml.XDocument", "CommandLineParser", "System.Reflection.TypeExtensions", "System.ValueTuple", "MSTest.TestAdapter", "MSTest.TestFramework", "Microsoft.Extensions.Logging.Configuration", "Microsoft.Extensions.Logging.Console", "Microsoft.Extensions.Options.ConfigurationExtensions"], "https://github.com/ufz/ogs-container-maker": ["hpccm", "packaging", "pyyaml", "requests", "six", "enum34"], "https://github.com/ADicksonLab/mastic": ["numpy", "pandas", "scipy"], "https://github.com/rasbt/mlxtend": ["joblib", "matplotlib", "numpy", "pandas", "scikit-learn", "scipy"], "https://github.com/VIDA-NYU/domain-discovery-d4": ["com.google.code.gson:gson", "commons-codec:commons-codec", "junit:junit", "org.apache.commons:commons-csv", "org.apache.commons:commons-lang3", "org.apache.commons:commons-text", "org.apache.maven.plugins:maven-compiler-plugin", "org.hamcrest:hamcrest-core"], "https://github.com/SUNCAT-Center/CatLearn": ["ase", "gpflow", "h5py", "matplotlib", "networkx", "numpy", "pandas", "piprot", "pyinstrument", "pytest-cov", "recommonmark", "scikit-learn", "scipy", "seaborn", "setuptools", "sphinx", "sphinx-autobuild", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "sty", "tqdm", "twine", "alabaster", "argh", "attrs", "babel", "certifi", "chardet", "click", "commonmark", "coverage", "cycler", "decorator", "docutils", "flask", "idna", "imagesize", "itsdangerous", "jinja2", "kiwisolver", "livereload", "markupsafe", "more-itertools", "multipledispatch", "packaging", "pathtools", "pkginfo", "pluggy", "pockets", "port-for", "py", "pygments", "pyinstrument-cext", "pyparsing", "pytest", "python-dateutil", "pytz", "pyyaml", "requests", "requests-futures", "requests-toolbelt", "six", "snowballstemmer", "sphinxcontrib-websupport", "tornado", "urllib3", "watchdog", "werkzeug", "psutil"], "https://github.com/fastread/src": ["flask", "matplotlib", "pandas", "scikit-learn"], "https://github.com/lanecodes/cymod": ["backports.tempfile", "future", "ipython", "neo4j-driver", "pandas", "pylint", "astroid", "backports.functools-lru-cache", "backports.shutil-get-terminal-size", "backports.weakref", "configparser", "decorator", "enum34", "futures", "ipython-genutils", "isort", "lazy-object-proxy", "mccabe", "neobolt", "neotime", "numpy", "pathlib2", "pexpect", "pickleshare", "prompt-toolkit", "ptyprocess", "pygments", "python-dateutil", "pytz", "scandir", "simplegeneric", "singledispatch", "six", "traitlets", "wcwidth", "wrapt"], "https://github.com/mancellin/capytaine": ["numpy", "pandas", "scipy", "xarray"], "https://github.com/tferr/Scripts": ["com.itextpdf:itextpdf", "net.imagej:ij", "net.imagej:imagej", "net.imagej:imagej-legacy", "net.imagej:imagej-ops", "net.imagej:imagej-ui-swing", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.xmlgraphics:batik-dom", "org.apache.xmlgraphics:batik-svggen", "org.codehaus.mojo:exec-maven-plugin", "org.scijava:scijava-common", "org.scijava:scijava-ui-swing", "org.scijava:script-editor", "sc.fiji:fiji-lib"], "https://github.com/ostwalprasad/LGNpy": ["matplotlib", "networkx", "numpy", "pandas", "pydot", "seaborn"], "https://github.com/AstraZeneca-NGS/simple_sv_annotation": ["pyvcf"], "https://github.com/sept08/WebToys": ["@ant-design/icons", "@testing-library/jest-dom", "@testing-library/react", "@testing-library/user-event", "antd", "dayjs", "papaparse", "react", "react-dom", "react-scripts", "typescript", "babel-core", "babel-loader", "babel-preset-env", "html-webpack-plugin", "webpack", "webpack-cli", "webpack-dev-server", "chalk", "handlebars", "pre-commit", "yargs"], "https://github.com/JiaweiZhuang/ipm_util": ["pandas"], "https://github.com/SynthSys/pyOmeroUpload": ["enum34", "filetype", "future", "pandas", "pillow", "pytest", "pytest-cov", "pyyaml", "requests", "scipy", "six"], "https://github.com/adamewing/tldr": ["bx-python", "numpy", "pysam", "scikit-learn"], "https://github.com/JustinGOSSES/wellio.js": ["abbrev", "ajv", "ajv-cli", "ajv-pack", "array-includes", "balanced-match", "brace-expansion", "co", "commander", "concat-map", "config-chain", "contains-path", "debug", "deep-equal", "define-properties", "defined", "doctrine", "editorconfig", "error-ex", "es-abstract", "es-to-primitive", "eslint-config-google", "eslint-config-standard", "eslint-import-resolver-node", "eslint-module-utils", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-promise", "eslint-plugin-standard", "esutils", "fast-deep-equal", "fast-json-patch", "fast-json-stable-stringify", "find-up", "for-each", "fs.realpath", "function-bind", "glob", "graceful-fs", "has", "has-symbols", "hosted-git-info", "ignore", "inflight", "inherits", "ini", "is-arrayish", "is-callable", "is-date-object", "is-regex", "is-symbol", "isarray", "js-beautify", "json-schema-migrate", "json-schema-traverse", "load-json-file", "locate-path", "lru-cache", "minimatch", "minimist", "mkdirp", "ms", "nopt", "normalize-package-data", "object-inspect", "object-keys", "object.values", "once", "os-homedir", "os-tmpdir", "osenv", "p-limit", "p-locate", "p-try", "parse-json", "path-exists", "path-is-absolute", "path-parse", "path-type", "pify", "pkg-dir", "proto-list", "pseudomap", "punycode", "read-pkg", "read-pkg-up", "require-from-string", "resolve", "resumer", "semver", "sigmund", "spdx-correct", "spdx-exceptions", "spdx-expression-parse", "spdx-license-ids", "string.prototype.trim", "string.prototype.trimleft", "string.prototype.trimright", "strip-bom", "tape", "through", "uri-js", "validate-npm-package-license", "wrappy", "yallist"], "https://github.com/purdue-cap/DryadSynth": ["Microsoft.Z3"], "https://github.com/ph463/Gygax": ["Accord", "Accord.Imaging", "Accord.MachineLearning", "Accord.Math", "Accord.Statistics", "Cyotek.Drawing.BitmapFont", "DirectShowLib", "EmguCV", "ExifLib", "HelixToolkit", "HelixToolkit.Wpf", "HelixToolkit.Wpf.SharpDX", "MathNet.Numerics", "Newtonsoft.Json", "NLog", "OpenTK", "OpenTK.GLControl", "SharpDX", "SharpDX.D3DCompiler", "SharpDX.Direct2D1", "SharpDX.Direct3D11", "SharpDX.Direct3D11.Effects", "SharpDX.Direct3D9", "SharpDX.DXGI", "SharpDX.Toolkit", "SharpDX.Toolkit.Graphics", "ZedGraph", "Extended.Wpf.Toolkit", "protobuf-net"], "https://github.com/mayconbordin/cdr-gen": ["com.google.guava:guava", "com.googlecode.json-simple:json-simple", "joda-time:joda-time", "junit:junit", "log4j:log4j", "net.sf.supercsv:super-csv", "org.apache.maven.plugins:maven-jar-plugin"], "https://github.com/Axelrod-Python/Axelrod": ["cloudpickle", "dask", "fsspec", "hypothesis", "matplotlib", "numpy", "pandas", "prompt-toolkit", "pyyaml", "scipy", "toolz", "tqdm"], "https://github.com/MIPT-Oulu/solt": ["numpy", "opencv-python-headless", "pyyaml", "scipy", "torch", "torchvision", "pytest", "black", "codecov", "coverage", "ipykernel", "msmb-theme", "nbsphinx-link", "pytest-cov", "pytest-flake8", "pytest-pep8", "sphinx", "sphinx-rtd-theme", "travis-sphinx", "albumentations", "augmentor", "pillow-simd", "pytablewriter", "solt"], "https://github.com/hibernator11/notebook-texts-metadata": ["datapackage", "gensim", "nltk", "pandas", "pymarc", "regex", "requests", "wordcloud"], "https://github.com/nismod/transport": ["javasphinx", "com.google.inject:guice", "com.jgoodies:jgoodies-forms", "commons-cli:commons-cli", "junit:junit", "net.sf.trove4j:trove4j", "org.apache.commons:commons-collections4", "org.apache.commons:commons-csv", "org.apache.commons:commons-imaging", "org.apache.commons:commons-lang3", "org.apache.commons:commons-math3", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:license-maven-plugin", "org.geotools:gt-api", "org.geotools:gt-brewer", "org.geotools:gt-epsg-hsql", "org.geotools:gt-graph", "org.geotools:gt-main", "org.geotools:gt-referencing", "org.geotools:gt-shapefile", "org.geotools:gt-swing", "org.hamcrest:hamcrest-junit", "org.jacoco:jacoco-maven-plugin", "org.jfree:jfreechart", "org.locationtech.jts:jts-core"], "https://github.com/scikit-hep/uproot": ["awkward", "backports-lzma", "cachetools", "numpy", "uproot-methods", "cloudpickle", "dask", "fsspec", "lz4", "matplotlib", "pandas", "pkgconfig", "pyyaml", "requests", "xxhash", "zstandard"], "https://github.com/alan-turing-institute/CROP": ["azure-functions", "azure-storage-blob", "bcrypt", "black", "flask", "flask-cors", "flask-login", "flask-migrate", "flask-sqlalchemy", "flask-wtf", "pandas", "pip", "psycopg2-binary", "pylint", "pytest", "selenium", "sqlalchemy", "sqlalchemy-utils", "eslint", "eslint-config-google", "coverage", "coveralls", "flake8", "flake8-print", "pep8-naming", "azure-storage"], "https://github.com/cmusatyalab/openface": ["nolearn", "nose", "numpy", "pandas", "scikit-learn", "scipy", "mock", "matplotlib", "appdirs", "autobahn", "cryptography", "imagehash", "protobuf", "pyopenssl", "service-identity", "twisted"], "https://github.com/blahah/transrate": ["bindeps", "bio", "colorize", "coveralls", "crb-blast", "minitest", "minitest-reporters", "rake", "rake-compiler", "shoulda", "simplecov", "test-unit", "trollop", "yell"], "https://github.com/1313e/CMasher": ["colorspacious", "e13tools", "matplotlib", "numpy", "check-manifest", "cmocean", "pyqt5", "pytest", "pytest-cov", "pytest-flake8", "pytest-mpl", "readme-renderer", "scipy", "setuptools", "twine", "viscm", "wheel", "sphinx", "sphinx-autobuild", "sphinx-rtd-theme"], "https://github.com/stonerlab/Stoner-PythonCode": ["cycler", "dill", "filemagic", "h5py", "imreg-dft", "llvmlite", "lmfit", "matplotlib", "multiprocess", "nptdms", "numba", "numexpr", "numpy", "pillow", "scikit-image", "scipy", "seaborn", "tabulate", "pytest", "asteval", "sphinx", "sphinx-automodapi", "sphinx-better-theme"], "https://github.com/netneurolab/markello_ppmisnf": ["docker", "flake8", "h5py", "ipython", "joblib", "jupyterlab", "matplotlib", "mkl", "nibabel", "nilearn", "numba", "numpy", "pandas", "pip", "pyqt5", "requests", "scikit-learn", "scipy", "seaborn", "statsmodels", "tables", "tqdm"], "https://github.com/jobovy/galpy": ["future", "matplotlib", "numpy", "pytest", "scipy", "setuptools", "six"], "https://github.com/LABSN/tdtpy": ["numpy", "pypiwin32", "six"], "https://github.com/tknapen/FIRDeconvolution": ["numpy", "pandas", "scikit-learn", "scipy", "seaborn", "statsmodels"], "https://github.com/jongablop/MinervaLab": ["nbsphinx", "notebook", "widgetsnbextension"], "https://github.com/clarity-h2020/data-management-plan": ["buffer-crc32", "debug", "fd-slicer", "loglevel", "moment", "moxie-zip", "ms", "pend", "timsort", "yauzl", "carbone"], "https://github.com/kashyapchhatbar/CLASHChimeras": ["alabaster", "ansicolors", "beautifulsoup4", "biopython", "coloredlogs", "ftputil", "pandas", "progress", "pyfaidx", "requests", "sphinx-argparse", "tabulate"], "https://github.com/pzeidler89/MUSEpack": ["astropy", "dask", "lmfit", "montage-wrapper", "ppxf", "pyspeckit", "pysynphot", "spectral-cube", "sphinx", "sphinx-jsondomain"], "https://github.com/tofaquih/imputation_of_untargeted_metabolites": ["docstring-1-0-0", "dplyr-0-8-5", "mice-3-8-0", "vim-5-1-1"], "https://github.com/sebastientourbier/multiscalebrainparcellator": ["grabbit", "pybids", "sphinx-argparse", "traits"], "https://github.com/hammurabi-dev/hammurabiX": ["numpy"], "https://github.com/comses/comses.net": ["coverage", "coveralls", "django-debug-toolbar", "django-debug-toolbar-request-history", "django-fixture-magic", "sphinx", "sphinx-rtd-theme", "bagit", "bleach", "django", "django-allauth", "django-anymail", "django-cookie-law", "django-extensions", "django-guardian", "django-ipware", "django-jinja", "django-location-field", "django-markupfield", "django-model-utils", "django-recaptcha", "django-redis", "django-rest-auth", "django-rest-swagger", "django-reversion", "django-robots", "django-taggit", "django-timezone-field", "django-waffle", "django-webpack-loader", "djangorestframework", "djangorestframework-jsonapi", "djangorestframework-jwt", "elasticsearch", "elasticsearch-dsl", "html2text", "invoke", "ipython", "markdown", "nltk", "pgcli", "psycopg2-binary", "rarfile", "requests", "semver", "sentry-sdk", "uwsgi", "uwsgitop", "wagtail", "@fortawesome/fontawesome-free", "@sentry/browser", "@sentry/integrations", "@types/jest", "@types/jquery", "@types/lodash", "@types/node", "@vue/cli-plugin-babel", "@vue/cli-plugin-e2e-cypress", "@vue/cli-plugin-typescript", "@vue/cli-plugin-unit-jest", "@vue/cli-service", "@vue/test-utils", "axios", "babel-core", "bootstrap", "clipboard", "core-js", "detect-browser", "fullcalendar", "ini", "jest", "jquery", "lodash", "marked", "moment", "node-sass", "popper.js", "query-string", "sass-loader", "serialize-javascript", "simplemde-theme-base", "style-resources-loader", "ts-jest", "typescript", "vue", "vue-class-component", "vue-multiselect", "vue-property-decorator", "vue-router", "vue-simplemde", "vue-template-compiler", "vuedraggable", "vuejs-datepicker", "vuex", "webpack-bundle-tracker", "websocket-extensions", "yup", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/runtime", "@babel/runtime-corejs2", "@babel/template", "@babel/traverse", "@babel/types", "@cypress/listr-verbose-renderer", "@cypress/xvfb", "@hapi/address", "@hapi/bourne", "@hapi/hoek", "@hapi/joi", "@hapi/topo", "@intervolga/optimize-cssnano-plugin", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@sentry/core", "@sentry/hub", "@sentry/minimal", "@sentry/types", "@sentry/utils", "@soda/friendly-errors-webpack-plugin", "@types/color-name", "@types/glob", "@types/json-schema", "@types/minimatch", "@types/normalize-package-data", "@types/q", "@types/sizzle", "@types/strip-bom", "@types/strip-json-comments", "@types/webpack-env", "@vue/babel-helper-vue-jsx-merge-props", "@vue/babel-plugin-transform-vue-jsx", "@vue/babel-preset-app", "@vue/babel-preset-jsx", "@vue/babel-sugar-functional-vue", "@vue/babel-sugar-inject-h", "@vue/babel-sugar-v-model", "@vue/babel-sugar-v-on", "@vue/cli-overlay", "@vue/cli-shared-utils", "@vue/component-compiler-utils", "@vue/preload-webpack-plugin", "@vue/web-component-wrapper", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "abbrev", "accepts", "acorn", "acorn-globals", "acorn-walk", "address", "ajv", "ajv-errors", "ajv-keywords", "alphanum-sort", "amdefine", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "any-promise", "anymatch", "append-transform", "aproba", "arch", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-equal", "array-find-index", "array-flatten", "array-union", "array-uniq", "array-unique", "arrify", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "astral-regex", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "babel-code-frame", "babel-generator", "babel-helpers", "babel-jest", "babel-loader", "babel-messages", "babel-plugin-dynamic-import-node", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-plugin-module-resolver", "babel-plugin-syntax-object-rest-spread", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-strict-mode", "babel-preset-jest", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "bfj", "big.js", "binary-extensions", "bindings", "block-stream", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browser-process-hrtime", "browser-resolve", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "bs-logger", "bser"], "https://github.com/ultralytics/yolov3": ["cython", "matplotlib", "numpy", "opencv-python", "pillow", "pyyaml", "scipy", "tensorboard", "torch", "torchvision", "tqdm"], "https://github.com/clld/concepticon": ["clld", "clldmpg", "clldutils", "markdown", "pyconcepticon", "sqlalchemy", "uritemplate", "waitress"], "https://github.com/epigen/cll-chromatin": ["argparse", "matplotlib", "multiprocessing", "numpy", "pandas", "parmap", "pybedtools", "pysam", "rpy2", "scikit-learn", "scipy", "seaborn", "statsmodels"], "https://github.com/sagemathinc/cocalc_tutorial": ["github-pages", "jekyll-titles-from-headings", "activesupport", "addressable", "coffee-script", "coffee-script-source", "colorator", "ethon", "execjs", "faraday", "ffi", "forwardable-extended", "gemoji", "github-pages-health-check", "html-pipeline", "i18n", "jekyll", "jekyll-avatar", "jekyll-coffeescript", "jekyll-default-layout", "jekyll-feed", "jekyll-gist", "jekyll-github-metadata", "jekyll-mentions", "jekyll-optional-front-matter", "jekyll-paginate", "jekyll-readme-index", "jekyll-redirect-from", "jekyll-relative-links", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-swiss", "jekyll-theme-architect", "jekyll-theme-cayman", "jekyll-theme-dinky", "jekyll-theme-hacker", "jekyll-theme-leap-day", "jekyll-theme-merlot", "jekyll-theme-midnight", "jekyll-theme-minimal", "jekyll-theme-modernist", "jekyll-theme-primer", "jekyll-theme-slate", "jekyll-theme-tactile", "jekyll-theme-time-machine", "jekyll-watch", "jemoji", "json", "kramdown", "liquid", "listen", "mercenary", "minima", "minitest", "mini_portile2", "multipart-post", "net-dns", "nokogiri", "octokit", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "safe_yaml", "sass", "sawyer", "terminal-table", "thread_safe", "typhoeus", "tzinfo", "unicode-display_width"], "https://github.com/paddy-seismic/retreat": ["cartopy", "matplotlib", "numpy", "obspy", "pillow", "psutil", "pysimplegui", "pysimpleguiweb", "scipy"], "https://github.com/geoschem/gcpy": ["cartopy", "dask", "matplotlib", "numpy", "pytest", "scipy", "xarray", "xbpch"], "https://github.com/NickSwainston/mwa_search": ["pytest"], "https://github.com/dhimmel/gene-ontology": ["activesupport", "blankslate", "celluloid", "classifier-reborn", "coffee-script", "coffee-script-source", "colorator", "execjs", "fast-stemmer", "ffi", "gemoji", "github-pages", "github-pages-health-check", "hitimes", "html-pipeline", "i18n", "jekyll", "jekyll-coffeescript", "jekyll-feed", "jekyll-gist", "jekyll-mentions", "jekyll-paginate", "jekyll-redirect-from", "jekyll-sass-converter", "jekyll-sitemap", "jekyll-watch", "jemoji", "json", "kramdown", "liquid", "listen", "maruku", "mercenary", "minitest", "mini_portile", "net-dns", "nokogiri", "parslet", "posix-spawn", "public_suffix", "pygments.rb", "rb-fsevent", "rb-inotify", "rdiscount", "redcarpet", "RedCloth", "safe_yaml", "sass", "terminal-table", "thread_safe", "timers", "toml", "tzinfo", "yajl-ruby"], "https://github.com/lmarti/nsgaiii": ["deap", "numpy"], "https://github.com/sbmlteam/jsbml": ["org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.sonatype.plugins:nexus-staging-maven-plugin", "com.fasterxml.staxmate:staxmate", "com.fasterxml.woodstox:woodstox-core", "com.googlecode.json-simple:json-simple", "com.thoughtworks.xstream:xstream", "junit:junit", "org.apache.logging.log4j:log4j-1.2-api", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-surefire-plugin", "org.biojava:biojava-ontology", "org.mangosdk.spi:spi", "org.w3c.jigsaw:jigsaw", "org.sbml.jsbml:jsbml-core", "org.sbml.jsbml.ext:jsbml-arrays", "org.sbml.jsbml.ext:jsbml-comp", "org.sbml.jsbml.ext:jsbml-distrib", "org.sbml.jsbml.ext:jsbml-dyn", "org.sbml.jsbml.ext:jsbml-fbc", "org.sbml.jsbml.ext:jsbml-groups", "org.sbml.jsbml.ext:jsbml-layout", "org.sbml.jsbml.ext:jsbml-multi", "org.sbml.jsbml.ext:jsbml-qual", "org.sbml.jsbml.ext:jsbml-render", "org.sbml.jsbml.ext:jsbml-req", "org.sbml.jsbml.ext:jsbml-spatial", "org.sbml.jsbml.modules:jsbml-tidy", "net.sf.jtidy:jtidy", "crimson:crimson", "org:diffx", "org:libsbmlj", "org:celldesigner", "org:sbmlj"], "https://github.com/ankahira/chainermnx": ["chainer", "numpy"], "https://github.com/CalebBell/fpi": ["fluids", "scipy", "numpydoc", "coveralls", "pytest", "pytest-cov"], "https://github.com/gplepage/corrfitter": ["gvar", "lsqfit", "numpy"], "https://github.com/ADicksonLab/geomm": ["invoke", "numpy", "scipy", "argcomplete", "bumpversion", "coverage", "cython", "flake8", "guzzle-sphinx-theme", "ipython", "nbsphinx", "pdbpp", "pip", "pytest", "pytest-datadir", "pytest-runner", "sphinx", "sphinxcontrib-napoleon", "tox", "twine", "virtualenv", "wheel", "pint", "pip-tools", "attrs", "bcrypt", "certifi", "cffi", "chardet", "click", "colorlog", "cryptography", "gitdb", "gitpython", "hyperlink", "idna", "more-itertools", "packaging", "paramiko", "pbr", "pluggy", "py", "pycparser", "pylxd", "pynacl", "pyparsing", "python-dateutil", "python-dotenv", "pyyaml", "requests", "requests-toolbelt", "requests-unixsocket", "six", "smmap", "toml", "urllib3", "voluptuous", "wcwidth", "ws4py", "alabaster", "appdirs", "argon2-cffi", "babel", "backcall", "bleach", "colorama", "decorator", "defusedxml", "distlib", "docutils", "entrypoints", "fancycompleter", "filelock", "gprof2dot", "imagesize", "importlib-metadata", "iniconfig", "ipykernel", "ipython-genutils", "jedi", "jeepney", "jinja2", "jsonschema", "jupyter-client", "jupyter-core", "keyring", "markupsafe", "mccabe", "mistune", "nbconvert", "nbformat", "pandocfilters", "parso", "pexpect", "pickleshare", "pkginfo", "pockets", "prometheus-client", "prompt-toolkit", "ptyprocess", "py-cpuinfo", "pycodestyle", "pyflakes", "pygments", "pyrepl", "pyrsistent", "pytz", "pyzmq", "readme-renderer", "rfc3986", "secretstorage", "send2trash", "snowballstemmer", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "terminado", "testpath", "tornado", "tqdm", "traitlets", "webencodings", "wmctrl", "zipp", "-", "mdtraj", "openpyxl", "pandas", "tables", "wepy"], "https://github.com/pycroscopy/pycroscopy": ["gwyfile", "h5py", "igor", "ipython", "ipywidgets", "joblib", "matplotlib", "numpy", "numpy-groupies", "pillow", "psutil", "pytest", "pyusid", "scikit-image", "scikit-learn", "scipy", "sidpy", "six", "unittest2", "xlrd", "numpydoc"], "https://github.com/bioasp/iggy": ["pyasp"], "https://github.com/TUW-GEO/smos": ["ease-grid", "more-itertools", "netcdf4", "numpy", "pandas", "pygeobase", "pynetcf", "pyresample", "repurpose", "scipy", "trollsift", "coverage", "pytest", "pytest-cov", "sphinx-rtd-theme"], "https://github.com/SynthSys/OMEROConnect": ["enum34", "pandas", "pytest", "pytest-cov", "pyyaml"], "https://github.com/jaclaes/SPMM2015": ["cglib:cglib-nodep", "com.megginson.sax:xml-writer", "commons-cli:commons-cli", "commons-io:commons-io", "commons-lang:commons-lang", "dom4j:dom4j", "javassist:javassist", "jmock:jmock", "joda-time:joda-time", "junit:junit", "net.sf.kxml:kxml2", "net.sf.kxml:kxml2-min", "org.apache.maven.plugins:maven-antrun-plugin", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-clean-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-eclipse-plugin", "org.apache.maven.plugins:maven-enforcer-plugin", "org.apache.maven.plugins:maven-install-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-release-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.maven.plugins:maven-surefire-report-plugin", "org.codehaus.jettison:jettison", "org.codehaus.mojo:cobertura-maven-plugin", "org.codehaus.mojo:jxr-maven-plugin", "org.codehaus.woodstox:wstx-asl", "org.codehaus.xsite:xsite-maven-plugin", "org.hibernate:hibernate-core", "org.hsqldb:hsqldb", "org.jdom:jdom", "org.json:json", "org.slf4j:slf4j-api", "org.slf4j:slf4j-simple", "oro:oro", "stax:stax", "stax:stax-api", "xerces:xercesImpl", "xml-apis:xml-apis", "xmlpull:xmlpull", "xom:xom", "xpp3:xpp3_min", "org.apache.maven.plugins:maven-changes-plugin", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.codehaus.mojo:clirr-maven-plugin", "org.codehaus.mojo:findbugs-maven-plugin", "jdom:jdom"], "https://github.com/FNNDSC/ChRIS_store": ["django", "django-cors-middleware", "django-filter", "django-storage-swift", "djangorestframework", "environs", "mod-wsgi", "mysqlclient", "python-swiftclient", "collection-json", "coverage", "django-debug-toolbar", "django-extensions", "flake8", "isort", "pylint"], "https://github.com/hpparvi/KeplerJC": ["astropy", "numpy", "scipy"], "https://github.com/neurodata/graspy": ["hyppo", "matplotlib", "networkx", "numpy", "pot", "scikit-learn", "scipy", "seaborn", "ipykernel", "ipython", "nbsphinx", "numpydoc", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-rawfiles"], "https://github.com/bast/polygons": ["black", "maturin", "pytest", "cffi", "numpy", "matplotlib"], "https://github.com/MatthewReid854/reliability": ["autograd", "autograd-gamma", "matplotlib", "mplcursors", "numpy", "pandas", "scipy"], "https://github.com/greenelab/DAPS": ["coverage", "nose"], "https://github.com/merijn/Belewitte": ["cycler", "joblib", "kiwisolver", "matplotlib", "numpy", "pandas", "pyparsing", "python-dateutil", "pytz", "scikit-learn", "scipy", "seaborn", "six"], "https://github.com/HexaPlant/pixeldragon": ["middleman", "middleman-livereload", "middleman-navtree", "middleman-syntax", "pry", "redcarpet", "ruby18_source_location", "titleize", "wdm", "activesupport", "capybara", "chunky_png", "coderay", "coffee-script", "coffee-script-source", "compass", "compass-core", "compass-import-once", "em-websocket", "erubis", "eventmachine", "execjs", "ffi", "haml", "hike", "hooks", "http_parser.rb", "i18n", "json", "kramdown", "listen", "method_source", "middleman-core", "middleman-sprockets", "mime-types", "minitest", "mini_portile", "multi_json", "nokogiri", "padrino-helpers", "padrino-support", "rack", "rack-livereload", "rack-test", "rb-fsevent", "rb-inotify", "rouge", "sass", "slop", "sprockets", "sprockets-helpers", "sprockets-sass", "thor", "thread_safe", "tilt", "tzinfo", "uber", "uglifier", "xpath"], "https://github.com/sertansenturk/ahenkidentifier": ["future", "numpy"], "https://github.com/bss116/citygenerator": ["matplotlib", "numpy"], "https://github.com/jeffbass/imagezmq": ["numpy", "pyzmq"], "https://github.com/njss/Sense.me": ["grunt", "grunt-bump", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-jshint", "grunt-contrib-less", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-jsbeautifier", "grunt-karma", "grunt-protractor-runner", "karma", "karma-chrome-launcher", "karma-coverage", "karma-firefox-launcher", "karma-jasmine", "karma-mocha", "karma-phantomjs-launcher", "karma-script-launcher", "matchdep", "mocha", "time-grunt", "connect-livereload", "express", "grunt-contrib-cssmin", "grunt-string-replace", "gulp", "gulp-sass", "sc5-styleguide", "tiny-lr", "grunt-contrib-clean", "grunt-contrib-nodeunit", "grunt-jsdoc", "babel-core", "browser-sync", "del", "gulp-autoprefixer", "gulp-cache", "gulp-eslint", "gulp-if", "gulp-imagemin", "gulp-load-plugins", "gulp-minify-css", "gulp-minify-html", "gulp-plumber", "gulp-size", "gulp-sourcemaps", "gulp-uglify", "gulp-useref", "main-bower-files", "opn", "wiredep", "csv", "open"], "https://github.com/materialsvirtuallab/pyhull": ["numpy"], "https://github.com/alexnaoki/LHC_Hidroweb": ["bqplot", "geopandas", "ipyleaflet", "ipywidgets", "numpy", "pandas", "requests", "shapely"], "https://github.com/UCATLAS/xAODAnaHelpers": ["alabaster", "babel", "beautifulsoup4", "breathe", "bs4", "certifi", "chardet", "docutils", "exhale", "idna", "imagesize", "jinja2", "lxml", "markupsafe", "packaging", "pygments", "pyparsing", "pytz", "pyyaml", "requests", "six", "snowballstemmer", "soupsieve", "sphinx", "sphinx-argparse", "sphinx-rtd-theme", "sphinxcontrib-applehelp", "sphinxcontrib-devhelp", "sphinxcontrib-htmlhelp", "sphinxcontrib-jsmath", "sphinxcontrib-qthelp", "sphinxcontrib-serializinghtml", "urllib3"], "https://github.com/rhiever/MarkovNetwork": ["numpy"], "https://github.com/dvalters/caesarplotlib": ["matplotlib", "numpy"], "https://github.com/pyproj4/pyproj": ["black", "cython", "flake8", "mock", "mypy", "numpy", "pre-commit", "pylint", "pytest", "pytest-cov", "shapely", "xarray"], "https://github.com/clld/csd": ["clld", "clldmpg", "sqlalchemy", "waitress"], "https://github.com/colbyj/bride-of-frankensystem": ["eventlet", "flask", "flask-sqlalchemy", "future", "sqlalchemy"], "https://github.com/SainsburyWellcomeCentre/cellfinder": ["brainreg", "configobj", "configparser", "fancylog", "imio", "imlib", "micrometa", "multiprocessing-logging", "napari", "napari-cellfinder", "napari-ndtiffs", "natsort", "numpy", "packaging", "pandas", "psutil", "scikit-image", "scikit-learn", "slurmio", "tensorflow", "tifffile", "tqdm"], "https://github.com/pySRURGS/pyGOURGS": ["methodtools", "mpmath", "numexpr", "numpy", "pandas", "parmap", "pytest", "pytest-cov", "sqlitedict", "sympy", "tabulate", "tqdm"], "https://github.com/acdh-oeaw/4dpuzzle": ["acdh-django-charts", "acdh-django-netvis", "certifi", "chardet", "django", "django-autocomplete-light", "django-crispy-forms", "django-extensions", "django-filter", "django-js-asset", "django-mptt", "django-super-deduper", "django-tables2", "djangorestframework", "docx2txt", "idna", "isodate", "numpy", "pandas", "psycopg2-binary", "pyparsing", "python-dateutil", "pytz", "rdflib", "regex", "requests", "rita", "six", "sparqlwrapper", "sqlparse", "ujson", "urllib3", "wincertstore", "coverage", "django-nose", "nose"], "https://github.com/kinnala/kirchhoff-nitsche-ex2": ["matplotlib", "scikit-fem"], "https://github.com/petl-developers/petlx": ["petl", "numpydoc", "nose", "pysam", "pyvcf"], "https://github.com/mmcauliffe/Pyraat": ["pytest", "sphinx", "mock", "numpydoc", "sphinx-rtd-theme"], "https://github.com/plt-tud/r43ples": ["com.beust:jcommander", "commons-configuration:commons-configuration", "commons-io:commons-io", "javax.ws.rs:javax.ws.rs-api", "junit:junit", "org.apache.jena:jena-arq", "org.apache.jena:jena-core", "org.apache.jena:jena-tdb", "org.apache.logging.log4j:log4j-api", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jxr-plugin", "org.apache.maven.plugins:maven-pmd-plugin", "org.apache.maven.plugins:maven-project-info-reports-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.xmlgraphics:batik-svg-dom", "org.apache.xmlgraphics:batik-svggen", "org.codehaus.mojo:cobertura-maven-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.codehaus.mojo:taglist-maven-plugin", "org.eluder.coveralls:coveralls-maven-plugin", "org.glassfish.jersey.containers:jersey-container-grizzly2-http", "org.glassfish.jersey.ext:jersey-mvc-mustache", "org.glassfish.jersey.media:jersey-media-json-jackson", "org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2", "org.jacoco:jacoco-maven-plugin", "org.slf4j:slf4j-api", "org.slf4j:slf4j-log4j12", "org.topbraid:spin", "org.umlgraph:maven-javadoc-plugin", "pl.project13.maven:git-commit-id-plugin", "virtuoso:jena", "xmlunit:xmlunit"], "https://github.com/EducationalTestingService/skll": ["beautifulsoup4", "joblib", "numpy", "pandas", "ruamel-yaml", "scikit-learn", "scipy", "seaborn", "tabulate", "configparser", "logutils", "mock", "six"], "https://github.com/RadioAstronomySoftwareGroup/pyuvdata": ["astropy", "h5py", "numpy", "scipy", "setuptools-scm", "sphinx"], "https://github.com/jfnavarro/st_pipeline": ["argparse", "cython", "htseq", "invoke", "numpy", "pandas", "pympler", "pysam", "regex", "scikit-learn", "scipy", "seaborn", "setuptools", "sqlitedict", "taggd"], "https://github.com/Neuroinflab/PyMICE": ["matplotlib", "numpy", "python-dateutil", "pytz"], "https://github.com/pythoninchemistry/intro_python_chemists": ["github-pages", "guard", "guard-jekyll-plus", "guard-livereload", "jekyll-feed", "jekyll-redirect-from", "jekyll-scholar", "tzinfo-data", "jupyter-book", "matplotlib", "mendeleev", "nbinteract", "numpy", "pandas", "scipy"], "https://github.com/OpenPIV/openpiv-python": ["cython", "gitpython", "imageio", "matplotlib", "natsort", "numpy", "progressbar2", "pytest", "scikit-image", "scipy"], "https://github.com/mbari-media-management/vcr4j": ["ch.qos.logback:logback-classic", "io.reactivex.rxjava2:rxjava", "junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-jxr-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:taglist-maven-plugin", "org.slf4j:slf4j-api", "com.github.jiconfont:jiconfont-google_material_design_icons", "com.github.jiconfont:jiconfont-swing", "com.jfoenix:jfoenix", "de.jensd:fontawesomefx-commons", "de.jensd:fontawesomefx-materialicons", "org.mbari.vcr4j:vcr4j-core", "org.mbari.vcr4j:vcr4j-rs422", "org.mbari.vcr4j:vcr4j-rxtx", "org.mbari.vcr4j:vcr4j-v2-adapter", "org.mbari:mbarix4j", "org.openjfx:javafx-controls", "org.openjfx:javafx-fxml", "org.scream3r:jssc", "gnu.io.rxtx:rxtx-java", "com.google.code.gson:gson", "com.mashape.unirest:unirest-java", "org.apache.httpcomponents:httpasyncclient", "org.apache.httpcomponents:httpclient", "org.apache.httpcomponents:httpmime", "org.json:json", "org.openjfx:javafx-maven-plugin", "org.openjfx:javafx-media", "com.offbytwo:docopt", "org.mbari.vcr4j:vcr4j-jserialcomm", "org.mbari.vcr4j:vcr4j-jssc", "org.mbari.vcr4j:vcr4j-kipro", "org.mbari.vcr4j:vcr4j-purejavacomm", "org.mbari.vcr4j:vcr4j-sharktopoda", "org.mbari.vcr4j:vcr4j-udp", "org.mbari.vcr4j:vcr4j-vlc-http", "com.squareup.okhttp3:okhttp", "com.fazecast:jSerialComm", "com.github.purejavacomm:purejavacomm", "org.openjfx:javafx-base", "org.zeromq:jeromq"], "https://github.com/dpizetta/wavy": ["numpy", "pyaudio", "pyqtgraph", "qtpy"], "https://github.com/arman2/equal_public": ["Antlr", "bootstrap", "EntityFramework", "jQuery", "jQuery.Validation", "Microsoft.AspNet.Mvc", "Microsoft.AspNet.Razor", "Microsoft.AspNet.SignalR", "Microsoft.AspNet.SignalR.Core", "Microsoft.AspNet.SignalR.JS", "Microsoft.AspNet.SignalR.SystemWeb", "Microsoft.AspNet.Web.Optimization", "Microsoft.AspNet.WebPages", "Microsoft.jQuery.Unobtrusive.Validation", "Microsoft.Owin", "Microsoft.Owin.Host.SystemWeb", "Microsoft.Owin.Security", "Microsoft.Owin.Security.Cookies", "Microsoft.Web.Infrastructure", "Modernizr", "Newtonsoft.Json", "Owin", "WebGrease", "Microsoft.AspNet.Identity.Core", "Microsoft.AspNet.Identity.EntityFramework", "Microsoft.AspNet.Identity.Owin", "Microsoft.AspNet.WebApi", "Microsoft.AspNet.WebApi.Client", "Microsoft.AspNet.WebApi.Core", "Microsoft.AspNet.WebApi.HelpPage", "Microsoft.AspNet.WebApi.Owin", "Microsoft.AspNet.WebApi.WebHost", "Microsoft.Owin.Security.Facebook", "Microsoft.Owin.Security.Google", "Microsoft.Owin.Security.MicrosoftAccount", "Microsoft.Owin.Security.OAuth", "Microsoft.Owin.Security.Twitter", "Respond"], "https://github.com/gher-ulg/Diva-Workshops": ["matplotlib"], "https://github.com/pydata/xarray": ["numpy", "pandas", "setuptools"], "https://github.com/transientlunatic/elk": ["lalsuite", "numpy", "pandas", "pycbc", "bumpversion", "coverage", "flake8", "pip", "pre-commit", "pytest", "sphinx", "tox", "watchdog", "wheel"], "https://github.com/qcscine/readuct": ["pytest"], "https://github.com/RDFLib/pymicrodata": ["html5lib", "rdflib"], "https://github.com/sbmlteam/libCombine": ["python-libcombine"], "https://github.com/encompasslabs/mcsdss-watermark": ["angular-leaflet-directive", "angular-simple-logger", "async", "body-parser", "bower", "chalk", "chokidar", "compression", "connect-flash", "connect-mongo", "consolidate", "cookie-parser", "express", "express-session", "forever", "glob", "grunt", "grunt-cli", "grunt-concurrent", "grunt-contrib-csslint", "grunt-contrib-cssmin", "grunt-contrib-jshint", "grunt-contrib-sass", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-env", "grunt-karma", "grunt-mocha-test", "grunt-ng-annotate", "grunt-node-inspector", "grunt-nodemon", "helmet", "jasmine", "karma", "karma-chrome-launcher", "karma-coverage", "karma-firefox-launcher", "karma-jasmine", "karma-phantomjs-launcher", "load-grunt-tasks", "lodash", "main-bower-files", "method-override", "mocha", "mongoose", "morgan", "multer", "nodemailer", "passport", "passport-facebook", "passport-github", "passport-google-oauth", "passport-linkedin", "passport-local", "passport-twitter", "should", "supertest", "swig"], "https://github.com/OGGM/oggm": ["configobj", "matplotlib", "netcdf4", "numpy", "pandas", "requests", "scipy", "shapely", "xarray", "bottleneck", "cftime", "dask", "descartes", "geopandas", "ipython", "joblib", "motionless", "numpydoc", "pillow", "progressbar2", "pyproj", "pytest", "rasterio", "scikit-image", "tables", "toolz"], "https://github.com/tdwg/dwc": ["jinja2", "pyyaml"], "https://github.com/NeuralEnsemble/elephant": ["jupyter", "matplotlib", "nbsphinx", "numpydoc", "sphinx", "sphinx-tabs", "sphinxcontrib-bibtex", "mpi4py", "pandas", "scikit-learn", "statsmodels", "nose", "h5py", "nixio", "futures", "neo", "numpy", "quantities", "scipy", "six", "tqdm"], "https://github.com/agporto/ml-morph": ["dlib", "numpy", "opencv-python", "pandas"], "https://github.com/SeismicSource/sourcespec": ["obspy", "pytz", "scipy"], "https://github.com/tensorwerk/hangar-py": ["blosc", "click", "cloudpickle", "grpcio", "h5py", "hdf5plugin", "lmdb", "numpy", "protobuf", "tqdm", "wrapt", "xxhash", "cython", "ipython", "nbsphinx", "recommonmark", "sphinx", "sphinx-click", "sphinx-copybutton", "sphinx-material"], "https://github.com/virgesmith/humanleague": ["distutils-pytest", "numpy", "pytest"], "https://github.com/lebedov/scikit-cuda": ["mako", "nose", "numpy", "pycuda", "scipy"], "https://github.com/mbari-media-management/vars-query": ["ch.qos.logback:logback-classic", "com.fatboyindustrial.gson-javatime-serialisers:gson-javatime-serialisers", "com.google.code.gson:gson", "com.google.guava:guava", "com.google.inject:guice", "com.guigarage:sdkfx", "com.jfoenix:jfoenix", "com.microsoft.sqlserver:mssql-jdbc", "com.squareup.okhttp3:logging-interceptor", "com.squareup.retrofit2:converter-gson", "com.squareup.retrofit2:retrofit", "com.typesafe:config", "com.zenjava:javafx-maven-plugin", "io.reactivex.rxjava2:rxjava", "junit:junit", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.bushe:eventbus", "org.codehaus.mojo:exec-maven-plugin", "org.eclipse.persistence:eclipselink", "org.fxmisc.easybind:easybind", "org.jfxtras:jfxtras-controls", "org.mbari.vcr4j:vcr4j-core", "org.mbari.vcr4j:vcr4j-sharktopoda", "org.mbari:mbarix4j", "org.slf4j:slf4j-api"], "https://github.com/jpdias/node-red-contrib-self-healing": ["@babel/code-frame", "@babel/helper-validator-identifier", "@babel/highlight", "@babel/runtime", "@node-red/editor-api", "@node-red/editor-client", "@node-red/nodes", "@node-red/registry", "@node-red/runtime", "@node-red/util", "@types/color-name", "abbrev", "accepts", "acorn", "acorn-jsx", "agent-base", "agentkeepalive", "aggregate-error", "ajv", "ansi-escapes", "ansi-regex", "ansi-styles", "any-promise", "append-field", "aproba", "are-we-there-yet", "argparse", "array-flatten", "asn1", "assert-plus", "astral-regex", "async", "async-limiter", "asynckit", "aws-sign2", "aws4", "axios", "balanced-match", "basic-auth", "bcrypt", "bcrypt-pbkdf", "bcryptjs", "bl", "body-parser", "boolbase", "brace-expansion", "buffer-from", "busboy", "bytes", "cacache", "callback-stream", "callsites", "caseless", "chalk", "char-spinner", "chardet", "cheerio", "child_process", "chownr", "cidr-regex", "clean-stack", "cli-cursor", "cli-table", "cli-width", "clone", "code-point-at", "color-convert", "color-name", "colors", "combined-stream", "commist", "concat-map", "concat-stream", "console-control-strings", "content-disposition", "content-type", "cookie", "cookie-parser", "cookie-signature", "copy-concurrently", "core-util-is", "cors", "country-data", "cron", "cross-spawn", "css-select", "css-what", "currency-symbol-map", "d", "dashdash", "debug", "deep-extend", "deep-is", "delayed-stream", "delegates", "denque", "depd", "destroy", "detect-libc", "dicer", "doctrine", "dom-serializer", "domelementtype", "domhandler", "domutils", "duplexify", "ecc-jsbn", "ee-first", "emoji-regex", "encodeurl", "encoding", "end-of-stream", "entities", "err-code", "es5-ext", "es6-iterator", "es6-map", "es6-promise", "es6-promisify", "es6-set", "es6-symbol", "escape-html", "escape-string-regexp", "eslint", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "etag", "event-emitter", "express", "express-session", "ext", "extend", "external-editor", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "figgy-pudding", "figures", "file-entry-cache", "finalhandler", "flat-cache", "flatted", "follow-redirects", "forever-agent", "form-data", "forwarded", "fresh", "fs-extra", "fs-minipass", "fs-write-stream-atomic", "fs.notify", "fs.realpath", "functional-red-black-tree", "gauge", "get-ip-range", "get-stdin", "getpass", "glob", "glob-parent", "glob-stream", "globals", "graceful-fs", "har-schema", "har-validator", "has-flag", "has-unicode", "hash-sum", "help-me", "htmlparser2", "http-cache-semantics", "http-errors", "http-proxy-agent", "http-signature", "https-proxy-agent", "humanize-ms", "i18next", "iconv-lite", "iferr", "ignore", "ignore-walk", "import-fresh", "imurmurhash", "indent-string", "infer-owner", "inflight", "inherits", "ini", "inquirer", "ip", "ip-address", "ipaddr.js", "is-absolute", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-negated-glob", "is-relative", "is-typedarray", "is-unc-path", "is-utf8", "is-windows", "isarray", "isexe", "isstream", "js-tokens", "js-yaml", "jsbn", "json-schema", "json-schema-traverse", "json-stable-stringify", "json-stable-stringify-without-jsonify", "json-stringify-safe", "jsonata", "jsonfile", "jsonify", "jsprim", "kalmanjs", "leven", "levn", "lodash", "lodash.assignin", "lodash.bind", "lodash.clonedeep", "lodash.defaults", "lodash.filter", "lodash.find", "lodash.flatten", "lodash.foreach", "lodash.map", "lodash.max", "lodash.merge", "lodash.padstart", "lodash.pick", "lodash.reduce", "lodash.reject", "lodash.repeat", "lodash.some", "lru-cache", "make-fetch-happen", "media-typer", "memorystore", "merge-descriptors", "network-list", "node-red", "os", "oui", "request"], "https://github.com/snastase/isc-tutorial": ["codecov", "coverage", "flake8", "jupyter", "matplotlib", "nibabel", "nilearn", "numpy", "pytest", "scipy", "seaborn", "statsmodels"], "https://github.com/smart-facility/cognicity-reports-qlue": ["istanbul", "jsdoc", "jshint", "mocha", "unit.js"], "https://github.com/simpeg-research/kang-2019-3D-aem": ["cython", "ipython", "ipywidgets", "jupyter", "matplotlib", "numpy", "properties", "pymatsolver", "scipy", "simpeg"], "https://github.com/appetrosyan/LCDM-NS": ["anesthetic", "matplotlib", "mpi4py", "nestcheck", "pathos", "pypolychord", "tikzplotlib", "cycler", "dill", "fgivenx", "kiwisolver", "multiprocess", "numpy", "pandas", "pillow", "pox", "ppft", "pyparsing", "python-dateutil", "pytz", "scipy", "six", "tqdm"], "https://github.com/asergiobranco/ArchNet": ["msgpack", "pycryptodome", "pymongo", "pyyaml", "requests"], "https://github.com/DistrictDataLabs/yellowbrick": ["cycler", "matplotlib", "numpy", "scikit-learn", "scipy", "pytest", "numpydoc", "pandas", "sphinx", "sphinx-rtd-theme", "coverage", "nltk", "pytest-cov", "pytest-flakes", "pytest-spec", "umap-learn"], "https://github.com/enolfc/d4science-galaxy-authn": ["pbr", "requests", "webob"], "https://github.com/pyGSTio/pyGSTi": ["cvxopt", "cvxpy", "cython", "deap", "ipython", "matplotlib", "mpi4py", "msgpack", "nose", "notebook", "pandas", "psutil", "numpy", "plotly", "ply", "scipy", "numpydoc"], "https://github.com/smart-facility/cognicity-reports-floodgauge": ["istanbul", "jsdoc", "jshint", "mocha", "unit.js"], "https://github.com/miguelfp/ibmos": ["matplotlib", "numpy", "scipy"], "https://github.com/DanPorter/Dans_Diffraction": ["matplotlib", "numpy", "scipy"], "https://github.com/CexyNature/Crabspy": ["joblib", "matplotlib", "numpy", "opencv-contrib-python", "opencv-python", "pandas", "pylint", "pytest", "pytest-cov", "pywavelets", "scikit-image", "scikit-learn", "scipy"], "https://github.com/ismrmrd/ismrmrd-python": ["h5py", "nose", "numpy", "pyxb", "six"], "https://github.com/kkmann/sample-size-calculation-under-uncertainty": ["snakemake"], "https://github.com/kingjr/ecoggui": ["matplotlib", "nibabel", "numpy", "scikit-learn", "scipy", "setuptools"], "https://github.com/OP2/PyOP2": ["cython", "decorator", "flake8", "mpi4py", "numpy", "pycparser", "pytest", "coffee"], "https://github.com/cgat-developers/cgat-core": ["gevent", "pandas", "paramiko", "pep8", "pytest", "ruffus", "yaml", "apsw"], "https://github.com/pnlbwh/luigi-pnlpipe": ["future", "ipython", "luigi", "nibabel", "numpy", "pandas", "plumbum", "psutil", "pynrrd", "python-log-indenter", "sqlalchemy", "vtk"], "https://github.com/dzhw/metadatamanagement": ["@babel/code-frame", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-split-export-declaration", "@babel/highlight", "@babel/parser", "@babel/template", "@babel/traverse", "@babel/types", "@snyk/cli-interface", "@snyk/composer-lockfile-parser", "@snyk/dep-graph", "@snyk/gemfile", "@types/agent-base", "@types/bunyan", "@types/debug", "@types/events", "@types/minimatch", "@types/node", "@types/q", "@types/restify", "@types/semver", "@types/xml2js", "@yarnpkg/lockfile", "abbrev", "accepts", "acorn", "after", "agent-base", "ajv", "alter", "amdefine", "ansi-align", "ansi-escapes", "ansi-regex", "ansi-styles", "ansicolors", "anymatch", "aproba", "archy", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-find-index", "array-union", "array-unique", "arraybuffer.slice", "arrify", "asap", "asn1", "assert-plus", "assign-symbols", "ast-types", "async", "async-each", "async-each-series", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer-core", "aws-sign2", "aws4", "axios", "babel-runtime", "babylon", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64id", "batch", "bcrypt-pbkdf", "beeper", "better-assert", "binary-extensions", "blob", "bluebird", "body", "body-parser", "boolbase", "bower-config", "boxen", "brace-expansion", "braces", "browser-sync", "browser-sync-client", "browser-sync-ui", "browserify-zlib", "browserslist", "bs-recipes", "bs-snippet-injector", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "builtin-modules", "bytes", "cache-base", "callsite", "camel-case", "camelcase", "camelcase-keys", "caniuse-db", "capture-stack-trace", "caseless", "chalk", "chardet", "chokidar", "chownr", "ci-info", "class-utils", "clean-css", "cli", "cli-boxes", "cli-cursor", "cli-table", "cli-width", "cliui", "clone-deep", "co", "coa", "code-point-at", "coffeescript", "collection-visit", "color-convert", "color-name", "colors", "combined-stream", "commander", "comment-parser", "component-bind", "component-emitter", "component-inherit", "concat-map", "concat-stream", "configstore", "connect", "connect-history-api-fallback", "console-browserify", "console-control-strings", "content-type", "continuable-cache", "convert-source-map", "cookie", "cookiejar", "copy-descriptor", "core-js", "core-util-is", "create-error-class", "cross-spawn", "crypto-random-string", "css-select", "css-select-base-adapter", "css-tree", "css-url-regex", "css-what", "csso", "cst", "currently-unhandled", "custom-event", "cycle", "dashdash", "data-uri-to-buffer", "date-format", "date-now", "date-time", "dateformat", "debug", "decamelize", "decode-uri-component", "deep-equal", "deep-extend", "deep-is", "define-properties", "define-property", "degenerator", "delayed-stream", "delegates", "depd", "destroy", "dev-ip", "di", "diff", "dockerfile-ast", "dom-serialize", "dom-serializer", "domelementtype", "domhandler", "domutils", "dot-prop", "dotnet-deps-parser", "duplexer", "duplexer3", "easy-extender", "eazy-logger", "ecc-jsbn", "ee-first", "email-validator", "emoji-regex", "encodeurl", "end-of-stream", "engine.io", "engine.io-client", "engine.io-parser", "ent", "entities", "error", "error-ex", "es-abstract", "es-to-primitive", "es6-promise", "es6-promisify", "escape-html", "escape-string-regexp", "escodegen", "esprima", "estraverse", "esutils", "etag", "event-stream", "eventemitter2", "eventemitter3", "execa", "exit", "expand-brackets", "extend", "extend-shallow", "external-editor", "extglob", "extract-zip", "extsprintf", "eyes", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "faye-websocket", "fd-slicer", "figures", "file-sync-cmp", "file-uri-to-path", "filendir", "fill-range", "finalhandler", "find-up", "findup-sync", "angular", "angular-animate", "angular-aria", "angular-block-ui", "angular-cookies", "angular-dynamic-locale", "angular-file-saver", "angular-highlightjs", "angular-i18n", "angular-jk-carousel", "angular-local-storage", "angular-material", "angular-messages", "angular-mocks", "angular-moment", "angular-recaptcha", "angular-resource", "angular-sanitize", "angular-translate", "angular-translate-handler-log", "angular-translate-interpolation-messageformat", "angular-translate-storage-cookie", "angular-ui-router", "bootstrap-sass", "cheet.js", "clientjs", "es5-shim", "es6-shim", "fdz-paginator", "grunt", "grunt-angular-templates", "grunt-autoprefixer", "grunt-browser-sync", "grunt-build-control", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-htmlmin", "grunt-contrib-jshint", "grunt-contrib-watch", "grunt-html-angular-validate", "grunt-jscs", "grunt-karma", "grunt-ng-annotate", "grunt-ng-constant", "grunt-rev", "grunt-sass", "grunt-svgmin", "grunt-text-replace", "grunt-usemin", "highlightjs", "jasmine-core", "jquery", "js-beautify", "js-xlsx", "jshint-stylish", "jsonformatter", "jszip", "jszip-utils", "karma", "karma-chrome-launcher", "karma-coverage", "karma-html2js-preprocessor", "karma-jasmine", "karma-ng-html2js-preprocessor", "karma-phantomjs-launcher", "karma-requirejs", "karma-script-launcher", "load-grunt-tasks", "lodash", "ng-file-upload", "ng-showdown", "ng-text-truncate-2", "ngclipboard", "node-sass", "phantomjs-prebuilt", "plotly.js", "requirejs", "showdown", "snyk", "sockjs-client", "stomp-websocket", "tar", "time-grunt", "wiredep", "xml2js", "zeparser", "com.amazonaws:aws-java-sdk-bom", "com.amazonaws:aws-java-sdk-ecs", "com.fasterxml.jackson.core:jackson-databind", "com.github.cloudyrock.mongock:mongock-spring-v5", "com.github.cloudyrock.mongock:mongodb-springdata-v3-driver", "com.github.ekryd.sortpom:sortpom-maven-plugin", "com.github.spotbugs:spotbugs", "com.github.spotbugs:spotbugs-maven-plugin", "com.github.zafarkhaja:java-semver", "com.icegreen:greenmail", "com.mysema.maven:apt-maven-plugin", "com.querydsl:querydsl-apt", "com.querydsl:querydsl-mongodb", "com.spotify:dockerfile-maven-plugin", "com.sun.xml.bind:jaxb-impl", "com.vladsch.flexmark:flexmark", "com.vladsch.flexmark:flexmark-ext-gfm-strikethrough", "commons-beanutils:commons-beanutils", "commons-io:commons-io", "commons-validator:commons-validator", "de.flapdoodle.embed:de.flapdoodle.embed.mongo", "io.micrometer:micrometer-registry-cloudwatch", "io.netty:netty-codec-http2", "org.apache.commons:commons-compress", "org.apache.commons:commons-lang3", "org.apache.logging.log4j:log4j-core", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-eclipse-plugin", "org.apache.maven.plugins:maven-enforcer-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.tika:tika-core", "org.codehaus.mojo:build-helper-maven-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.eclipse.m2e:lifecycle-mapping", "org.elasticsearch.client:elasticsearch-rest-high-level-client", "org.jacoco:jacoco-maven-plugin", "org.javers:javers-spring-boot-starter-mongo", "org.jsoup:jsoup", "org.mapstruct:mapstruct", "org.projectlombok:lombok", "org.springdoc:springdoc-openapi-data-rest", "org.springdoc:springdoc-openapi-ui", "org.springframework.boot:spring-boot-configuration-processor", "org.springframework.boot:spring-boot-devtools", "org.springframework.boot:spring-boot-loader-tools", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-actuator", "org.springframework.boot:spring-boot-starter-aop", "org.springframework.boot:spring-boot-starter-data-mongodb", "org.springframework.boot:spring-boot-starter-data-rest", "org.springframework.boot:spring-boot-starter-freemarker", "org.springframework.boot:spring-boot-starter-hateoas", "org.springframework.boot:spring-boot-starter-json", "org.springframework.boot:spring-boot-starter-logging", "org.springframework.boot:spring-boot-starter-mail", "org.springframework.boot:spring-boot-starter-reactor-netty", "org.springframework.boot:spring-boot-starter-security", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-thymeleaf", "org.springframework.boot:spring-boot-starter-validation", "org.springframework.boot:spring-boot-starter-web", "org.springframework.boot:spring-boot-starter-websocket", "org.springframework.cloud:spring-cloud-aws-actuator", "org.springframework.cloud:spring-cloud-starter-aws", "org.springframework.security.oauth.boot:spring-security-oauth2-autoconfigure", "org.springframework.security.oauth:spring-security-oauth2", "org.springframework.security:spring-security-data", "org.springframework.security:spring-security-test", "pl.allegro.tech:embedded-elasticsearch", "pl.project13.maven:git-commit-id-plugin", "javasphinx"], "https://github.com/mastrogeppetto/OCCI4IOT": ["concurrent-ruby", "json_pure", "logger", "net-http-persistent", "websocket-client-simple"], "https://github.com/scivision/fortran-submodule": ["meson"], "https://github.com/librosa/librosa": ["audioread", "decorator", "joblib", "numba", "numpy", "pooch", "resampy", "scikit-learn", "scipy", "soundfile"], "https://github.com/morganjwilliams/pyrolite": ["coverage", "coveralls", "joblib", "matplotlib", "mpltern", "mpmath", "numpy", "numpydoc", "openpyxl", "pandas", "pathlib", "periodictable", "pytest", "pytest-cov", "pytest-runner", "requests", "scipy", "sympy", "tinydb", "xlrd"], "https://github.com/planetserver/ps2-www-client": ["d3", "grunt", "grunt-contrib-concat", "grunt-contrib-cssmin", "grunt-contrib-jasmine", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-sass", "load-grunt-tasks"], "https://github.com/MDAnalysis/RotamerConvolveMD": ["mdanalysis", "numpy"], "https://github.com/psu-inversion/atmospheric-inverse-methods-for-flux-optimization": ["cf-units", "dask", "numpy", "pandas", "pyfftw", "scipy", "six", "sphinx", "tox", "unittest2", "xarray"], "https://github.com/enolfc/d4scienceauth": ["jupyterhub", "pbr"], "https://github.com/yoavram/Sid": ["argh", "click", "colorama", "decorator", "matplotlib", "numpy", "pathtools", "pillow", "pyparsing", "python-dateutil", "pytz", "pyyaml", "scikit-image", "scipy", "six", "watchdog", "wheel"], "https://github.com/ISOBlue/isoblue-android": ["com.google.android:android", "com.jayway.maven.plugins.android.generation2:android-maven-plugin", "com.mcxiaoke.volley:library", "org.apache.maven.plugins:maven-release-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.isoblue:libisoblue", "org.isoblue:libisoblue-aar", "org.eclipse.m2e:lifecycle-mapping"], "https://github.com/bio2bel/bio2bel": ["click", "flask", "flask-admin", "pandas", "pybel", "sqlalchemy", "tqdm"], "https://github.com/CDAT/ci-bots": ["requests"], "https://github.com/ropensci/stplanr": ["chai", "eslint", "eslint-plugin-html", "mocha", "mocha-phantomjs", "mversion", "phantomjs", "uglify-js"], "https://github.com/digitallinguistics/app": ["@babel/cli", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-create-class-features-plugin", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-class-properties", "@babel/plugin-transform-modules-umd", "@babel/template", "@babel/traverse", "@babel/types", "@cypress/listr-verbose-renderer", "@cypress/request", "@cypress/xvfb", "@digitallinguistics/styles", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@samverschueren/stream-to-observable", "@stylelint/postcss-css-in-js", "@stylelint/postcss-markdown", "@types/color-name", "@types/minimist", "@types/normalize-package-data", "@types/parse-json", "@types/sinonjs__fake-timers", "@types/sizzle", "@types/unist", "accepts", "acorn", "acorn-jsx", "after", "ajv", "amdefine", "ansi-colors", "ansi-escapes", "ansi-regex", "ansi-styles", "any-observable", "anymatch", "arch", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asn1", "assert-plus", "assign-symbols", "astral-regex", "async", "async-each", "async-limiter", "asynckit", "at-least-node", "atob", "autoprefixer", "aws-sign2", "aws4", "babel-eslint", "backo2", "bail", "balanced-match", "base", "base64-arraybuffer", "base64id", "bcrypt-pbkdf", "better-assert", "binary-extensions", "bindings", "blob", "blob-util", "bluebird", "body-parser", "brace-expansion", "braces", "browserslist", "buffer-crc32", "buffer-from", "bytes", "cache-base", "cachedir", "callsite", "callsites", "camelcase", "camelcase-keys", "caniuse-lite", "caseless", "catharsis", "ccount", "chalk", "character-entities", "character-entities-html4", "character-entities-legacy", "character-reference-invalid", "check-more-types", "chokidar", "ci-info", "class-utils", "clean-css", "cli-cursor", "cli-spinners", "cli-table3", "cli-truncate", "cliui", "clone", "clone-regexp", "code-point-at", "collapse-white-space", "collection-visit", "color-convert", "color-name", "colorette", "colors", "combined-stream", "commander", "common-tags", "component-bind", "component-emitter", "component-inherit", "concat-map", "concat-stream", "connect", "content-disposition", "content-type", "convert-source-map", "cookie", "copy-descriptor", "core-util-is", "cosmiconfig", "cross-spawn", "cssesc", "custom-event", "cypress", "cypress-file-upload", "dashdash", "date-fns", "date-format", "debug", "decamelize", "decamelize-keys", "decode-uri-component", "deep-is", "defaults", "define-property", "delayed-stream", "depd", "di", "dir-glob", "doctrine", "dom-serialize", "dom-serializer", "domelementtype", "domhandler", "domutils", "ecc-jsbn", "ee-first", "electron-to-chromium", "elegant-spinner", "emoji-regex", "encodeurl", "end-of-stream", "engine.io", "engine.io-client", "engine.io-parser", "enquirer", "ent", "entities", "errno", "error-ex", "escalade", "escape-html", "escape-string-regexp", "eslint", "eslint-plugin-cypress", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "eventemitter2", "eventemitter3", "execa", "execall", "executable", "exit-hook", "expand-brackets", "extend", "extend-shallow", "extglob", "extract-zip", "extsprintf", "fast-deep-equal", "fast-glob", "fast-json-stable-stringify", "fast-levenshtein", "fast-url-parser", "fastq", "fd-slicer", "figures", "file-entry-cache", "file-uri-to-path", "fill-range", "finalhandler", "find-up", "flat-cache", "flatted", "flexbox-reset", "follow-redirects", "for-in", "forever-agent", "form-data", "fragment-cache", "fs-extra", "fs-readdir-recursive", "fs.realpath", "fsevents", "functional-red-black-tree", "gensync", "get-caller-file", "get-stdin", "get-stream", "get-value", "getos", "getpass", "glob", "glob-parent", "global-dirs", "global-modules", "ink-docstrap", "jasmine-core", "jsdoc", "karma", "karma-chrome-launcher", "karma-firefox-launcher", "karma-jasmine", "less", "less-plugin-clean-css", "mousetrap", "ora", "recursive-readdir", "serve-handler", "stylelint", "uuid", "yargs-parser"], "https://github.com/blokhin/genealogical-trees": ["rdflib", "transliterate"], "https://github.com/hannes-brt/hebel": ["nose", "numpy", "pycuda", "pyyaml", "skdata", "mock"], "https://github.com/mcs07/CIRpy": ["lxml", "bumpversion", "coverage", "coveralls"], "https://github.com/tobysmith568/Generate-License-File": ["@types/color-name", "@types/events", "@types/glob", "@types/inquirer", "@types/license-checker", "@types/minimatch", "@types/node", "@types/through", "abbrev", "ansi-colors", "ansi-escapes", "ansi-regex", "ansi-styles", "arg", "array-find-index", "asap", "balanced-match", "brace-expansion", "chalk", "chardet", "cli-cursor", "cli-spinners", "cli-width", "clone", "color-convert", "color-name", "concat-map", "debug", "debuglog", "defaults", "dezalgo", "emoji-regex", "enquirer", "escape-string-regexp", "esm", "external-editor", "figures", "fs.realpath", "glob", "graceful-fs", "has-flag", "hosted-git-info", "iconv-lite", "inflight", "inherits", "inquirer", "is-fullwidth-code-point", "is-interactive", "is-promise", "json-parse-better-errors", "license-checker", "lodash", "log-symbols", "mimic-fn", "minimatch", "minimist", "mkdirp", "ms", "mute-stream", "nopt", "normalize-package-data", "npm-normalize-package-bin", "once", "onetime", "ora", "os-homedir", "os-tmpdir", "osenv", "path-is-absolute", "path-parse", "read-installed", "read-package-json", "readdir-scoped-modules", "resolve", "restore-cursor", "run-async", "rxjs", "safer-buffer", "semver", "signal-exit", "slide", "spdx-compare", "spdx-correct", "spdx-exceptions", "spdx-expression-parse", "spdx-license-ids", "spdx-ranges", "spdx-satisfies", "string-width", "strip-ansi", "supports-color", "through", "tmp", "treeify", "tslib", "type-fest", "util-extend", "validate-npm-package-license", "wcwidth", "wrappy"], "https://github.com/HBLL-Collection-Development/omeka-s-any-cloud": ["league/flysystem", "league/flysystem-aws-s3-v3", "league/flysystem-azure-blob-storage", "league/flysystem-rackspace", "spatie/flysystem-dropbox", "superbalist/flysystem-google-storage", "aws/aws-sdk-php", "firebase/php-jwt", "google/auth", "google/cloud-core", "google/cloud-storage", "google/crc32", "graham-campbell/guzzle-factory", "guzzle/guzzle", "guzzlehttp/guzzle", "guzzlehttp/promises", "guzzlehttp/psr7", "microsoft/azure-storage-blob", "microsoft/azure-storage-common", "mikemccabe/json-patch-php", "monolog/monolog", "mtdowling/jmespath.php", "psr/cache", "psr/http-message", "psr/log", "rackspace/php-opencloud", "ralouphie/getallheaders", "rize/uri-template", "spatie/dropbox-api", "symfony/event-dispatcher", "symfony/polyfill-intl-idn", "symfony/polyfill-mbstring", "symfony/polyfill-php72"], "https://github.com/dgnest/foottrial": ["compass", "sass", "sass-globbing", "backbone", "bootstrap", "browserify", "browserify-shim", "del", "gulp", "gulp-browserify", "gulp-compass", "gulp-if", "gulp-imagemin", "gulp-livereload", "gulp-minify-css", "gulp-uglify", "gulp-util", "handlebars", "jquery", "sweetalert", "underscore", "anyjson", "celery", "dj-database-url", "django", "django-filter", "django-grappelli", "django-slack", "djangorestframework", "markdown", "opbeat", "pika", "psycopg2", "pytz", "requests", "tablib", "uwsgi", "autoenv", "autopep8", "bumpversion", "django-debug-toolbar", "django-extensions", "docker-compose", "elpy", "epc", "flake8", "grip", "importmagic", "ipdb", "ipython", "ipython-genutils", "jedi", "pre-commit", "pylint", "yapf", "ansible", "behave-django", "fakeredis", "green", "mock", "pyhamcrest", "tox"], "https://github.com/neuropsychology/NeuroKit": ["bioread", "bumpversion", "coverage", "cvxopt", "flake8", "invoke", "isort", "matplotlib", "mne", "PyEMD", "pyentrp", "pylint", "pytest", "PyWavelets", "scipy", "sklearn", "sphinx", "tox", "twine", "wheel", "yapf", "numpy", "pandas", "neurokit2", "pywt", "seaborn"], "https://github.com/makgyver/rectorch": ["bottleneck", "munch", "numpy", "pandas", "scipy", "torch"], "https://github.com/Continvvm/continuum": ["matplotlib", "numpy", "pillow", "prospector", "pytest", "scikit-image", "scipy", "torch", "torchvision", "sphinx-autoapi", "sphinx-autodoc-typehints", "sphinx-rtd-theme"], "https://github.com/mdolab/pyhyp": ["mpi4py", "numpy", "numpydoc"], "https://github.com/timothydmorton/exosyspop": ["isochrones", "vespa"], "https://github.com/WGUNDERWOOD/motifcluster": ["coverage", "networkx", "numpy", "pytest-cov", "scikit-learn", "scipy"], "https://github.com/egonw/ops4j": ["commons-io:commons-io", "junit:junit", "org.apache.httpcomponents:httpclient", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-surefire-plugin"], "https://github.com/SebBuchelt/georef_webcam": ["argparse", "collections", "gdal", "git", "gitpython", "json", "math", "numpy", "os", "osgeo", "pillow", "platform", "scipy", "shutil", "struct", "subprocess", "sys", "tempfile", "time"], "https://github.com/dimazest/google-ngram-downloader": ["pytest-cov", "pytest-pep8", "python-coveralls", "tox", "opster", "py", "pytest", "requests"], "https://github.com/mmadsen/seriationct": ["ez-setup", "matplotlib", "ming", "networkx", "numpy", "pymongo", "uuid"], "https://github.com/thorstenwagner/ij-shape-smoothing": ["de.biomedical-imaging.ij:ij_blob", "net.imagej:ij", "net.sourceforge.jtransforms:jtransforms"], "https://github.com/prisae/pyfftlog": ["coveralls", "empymod", "matplotlib", "numpydoc", "pytest", "pytest-cov", "pytest-flake8", "setuptools-scm", "sphinx", "sphinx-gallery", "sphinx-rtd-theme", "-", "scipy"], "https://github.com/koszullab/hicstuff": ["biopython", "docopt", "matplotlib", "numpy", "pandas", "pysam", "requests", "scipy", "sklearn", "hicstuff", "nbsphinx", "notebook", "recommonmark", "sphinx"], "https://github.com/TUW-GEO/gldas": ["datedown", "mock", "numpy", "pygeobase", "sphinx", "trollsift", "more-itertools", "netcdf4", "pygeogrids", "pygrib", "pynetcf", "pyproj", "pyresample", "repurpose", "coverage", "pytest", "pytest-cov", "sphinx-rtd-theme"], "https://github.com/martinfleis/momepy": ["geopandas", "libpysal", "networkx", "pandas", "tqdm", "ipython", "matplotlib", "myst-parser", "nbsphinx", "numpydoc", "pydata-sphinx-theme", "sphinxcontrib-bibtex"], "https://github.com/alamar/microbe": ["junit:junit", "org.apache.maven.plugins:maven-dependency-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.jfree:jfreechart", "ru.yandex:bolts"], "https://github.com/romain-jacob/TTW-Artifacts": ["jupyter", "notebook", "numpy", "pandas", "plotly", "scipy"], "https://github.com/netsage-project/netsage-pipeline": ["@docusaurus/core", "@docusaurus/preset-classic", "classnames", "react", "react-dom", "remark-images", "remark-import-partial", "@algolia/cache-browser-local-storage", "@algolia/cache-common", "@algolia/cache-in-memory", "@algolia/client-account", "@algolia/client-analytics", "@algolia/client-common", "@algolia/client-recommendation", "@algolia/client-search", "@algolia/logger-common", "@algolia/logger-console", "@algolia/requester-browser-xhr", "@algolia/requester-common", "@algolia/requester-node-http", "@algolia/transporter", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-builder-react-jsx-experimental", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-syntax-typescript", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-constant-elements", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-development", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-react-pure-annotations", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-typescript", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/preset-react", "@babel/preset-typescript", "@babel/runtime", "@babel/runtime-corejs3", "@babel/template", "@babel/traverse", "@babel/types", "@csstools/convert-colors", "@docsearch/css", "@docsearch/react", "@docusaurus/mdx-loader", "@docusaurus/plugin-content-blog", "@docusaurus/plugin-content-docs", "@docusaurus/plugin-content-pages", "@docusaurus/plugin-debug", "@docusaurus/plugin-google-analytics", "@docusaurus/plugin-google-gtag", "@docusaurus/plugin-sitemap", "@docusaurus/theme-classic", "@docusaurus/theme-search-algolia", "@docusaurus/types", "@docusaurus/utils", "@docusaurus/utils-validation", "@endiliey/static-site-generator-webpack-plugin", "@francoischalifour/autocomplete-core", "@francoischalifour/autocomplete-preset-algolia", "@hapi/address", "@hapi/bourne", "@hapi/formula", "@hapi/hoek", "@hapi/joi", "@hapi/pinpoint", "@hapi/topo", "@mdx-js/mdx", "@mdx-js/react", "@mdx-js/util", "@mrmlnc/readdir-enhanced", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@npmcli/move-file", "@sindresorhus/is", "@svgr/babel-plugin-add-jsx-attribute", "@svgr/babel-plugin-remove-jsx-attribute", "@svgr/babel-plugin-remove-jsx-empty-expression", "@svgr/babel-plugin-replace-jsx-attribute-value", "@svgr/babel-plugin-svg-dynamic-title", "@svgr/babel-plugin-svg-em-dimensions", "@svgr/babel-plugin-transform-react-native-svg", "@svgr/babel-plugin-transform-svg-component", "@svgr/babel-preset", "@svgr/core", "@svgr/hast-util-to-babel-ast", "@svgr/plugin-jsx", "@svgr/plugin-svgo", "@svgr/webpack", "@szmarczak/http-timer", "@types/anymatch", "@types/color-name", "@types/glob", "@types/hast", "@types/html-minifier-terser", "@types/json-schema", "@types/mdast", "@types/minimatch", "@types/node", "@types/parse-json", "@types/parse5", "@types/prop-types", "@types/q", "@types/react", "@types/react-toggle", "@types/source-list-map", "@types/tapable", "@types/uglify-js", "@types/unist", "@types/webpack", "@types/webpack-sources", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "accepts", "acorn", "acorn-walk", "address", "aggregate-error", "ajv", "ajv-errors", "ajv-keywords", "algoliasearch", "algoliasearch-helper", "alphanum-sort", "ansi-align", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "are-passive-events-supported", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "arrify", "asap", "asn1.js", "assert", "assign-symbols", "async", "rspec"], "https://github.com/krischer/pyflex": ["flake8", "nose", "obspy", "pytest"], "https://github.com/cheeseywhiz/cheeseywhiz": ["click", "cycler", "flask", "itsdangerous", "jinja2", "markupsafe", "matplotlib", "python-dateutil", "six", "werkzeug", "pyqt5", "sip"], "https://github.com/NeuPhysics/neutrino": ["alabaster"], "https://github.com/astrojs/fitsjs": ["astrojs", "coffee-script"], "https://github.com/arbox/shalmaneser": ["bundler", "byebug", "minitest", "mysql", "nokogiri", "pastel", "pry", "rake", "rdoc", "rubocop", "sqlite3", "tokenizer", "yard"], "https://github.com/keflavich/pyradex": ["astropy", "requests"], "https://github.com/alphatwirl/mantichora": ["atpbar"], "https://github.com/pysal/spreg": ["libpysal", "numpy", "pandas", "scipy", "coverage", "coveralls", "nose", "sphinx", "sphinxcontrib-napoleon", "nbsphinx", "numpydoc", "sphinx-bootstrap-theme", "sphinxcontrib-bibtex", "bokeh", "folium", "geojson", "geopandas", "matplotlib", "mplleaflet", "numba", "numexpr", "scikit-learn", "seaborn", "statsmodels", "pytest", "pytest-cov"], "https://github.com/dmey/minimal-dx": ["matplotlib", "numpy", "pandas", "seaborn"], "https://github.com/dftlibs/xcauto": ["flit"], "https://github.com/kizniche/Mycodo": ["mkdocs", "mkdocs-material", "mkdocs-minify-plugin", "pygments", "pylibftdi", "rpi-gpio", "smbus2", "factory-boy", "mock", "pytest", "testfixtures", "webtest", "alembic", "argparse", "bcrypt", "daemonize", "distro", "email-validator", "filelock", "flask", "flask-accept", "flask-babel", "flask-compress", "flask-limiter", "flask-login", "flask-marshmallow", "flask-restx", "flask-sqlalchemy", "flask-talisman", "flask-wtf", "geocoder", "gunicorn", "influxdb", "marshmallow-sqlalchemy", "pyro5", "pyserial", "python-dateutil", "requests", "setuptools", "sqlalchemy", "werkzeug", "wtforms"], "https://github.com/lmcinnes/umap": ["matplotlib", "pillow", "sphinx", "sphinx-gallery", "sphinx-rtd-theme", "numba", "numpy", "scikit-learn", "scipy", "nose", "bokeh", "datashader", "seaborn"], "https://github.com/flowersteam/explauto": ["jupyter", "matplotlib", "numpy", "scikit-learn", "scipy"], "https://github.com/malkayo/AiRL": ["h5py", "keras", "numpy", "pandas", "scipy"], "https://github.com/liminoid/liminoid-js": ["@babel/cli", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/register", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@eslint/eslintrc", "@rollup/plugin-commonjs", "@rollup/plugin-node-resolve", "@rollup/pluginutils", "@types/color-name", "@types/estree", "@types/json5", "@types/node", "@types/resolve", "acorn", "acorn-jsx", "ajv", "ansi-colors", "ansi-regex", "ansi-styles", "anymatch", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-includes", "array-unique", "array.prototype.flat", "array.prototype.map", "assertion-error", "assign-symbols", "astral-regex", "async-each", "atob", "babel-eslint", "babel-plugin-dynamic-import-node", "babel-plugin-syntax-object-rest-spread", "babel-plugin-transform-object-rest-spread", "babel-runtime", "balanced-match", "base", "binary-extensions", "bindings", "brace-expansion", "braces", "browser-stdout", "browserslist", "buffer-from", "builtin-modules", "cache-base", "callsites", "camelcase", "caniuse-lite", "chai", "chalk", "check-error", "chokidar", "class-utils", "cliui", "collection-visit", "color-convert", "color-name", "commander", "commondir", "component-emitter", "concat-map", "confusing-browser-globals", "contains-path", "convert-source-map", "copy-descriptor", "core-js", "core-js-compat", "core-util-is", "cross-spawn", "debug", "decamelize", "decode-uri-component", "deep-eql", "deep-is", "deepmerge", "define-properties", "define-property", "diff", "doctrine", "electron-to-chromium", "emoji-regex", "enquirer", "error-ex", "es-abstract", "es-array-method-boxes-properly", "es-get-iterator", "es-to-primitive", "escalade", "escape-string-regexp", "eslint", "eslint-config-airbnb-base", "eslint-config-prettier", "eslint-import-resolver-node", "eslint-module-utils", "eslint-plugin-babel", "eslint-plugin-import", "eslint-plugin-prettier", "eslint-rule-composer", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "estree-walker", "esutils", "expand-brackets", "extend-shallow", "extglob", "fast-deep-equal", "fast-diff", "fast-json-stable-stringify", "fast-levenshtein", "file-entry-cache", "file-uri-to-path", "fill-range", "find-cache-dir", "find-up", "flat", "flat-cache", "flatted", "for-in", "fragment-cache", "fs-readdir-recursive", "fs.realpath", "fsevents", "function-bind", "functional-red-black-tree", "gensync", "get-caller-file", "get-func-name", "get-stdin", "get-value", "glob", "glob-parent", "globals", "graceful-fs", "growl", "has", "has-flag", "has-symbols", "has-value", "has-values", "he", "hosted-git-info", "ignore", "import-fresh", "imurmurhash", "inflight", "inherits", "invariant", "is-accessor-descriptor", "is-arguments", "mocha", "prettier", "rollup", "rollup-plugin-babel", "rollup-plugin-terser"], "https://github.com/llambourne/isoenzymes_flux_balance": ["cobra", "cycler", "cython", "lxml", "matplotlib", "numpy", "pandas", "py", "pyparsing", "pytest", "python-dateutil", "python-libsbml", "pytz", "scipy", "six"], "https://github.com/davidhin/stringmatching": ["importlib-resources", "nltk", "pandas", "progressbar2", "pyahocorasick", "regex", "scikit-learn"], "https://github.com/maxplanck-ie/snakepipes": ["fuzzywuzzy", "pandas", "psutil", "pyyaml", "snakemake", "mock", "sphinx-argparse", "sphinx-rtd-theme"], "https://github.com/titipata/pubmed_parser": ["lxml", "numpy", "pytest", "pytest-cov", "requests", "six", "unidecode", "sphinx", "sphinx-gallery", "sphinx-rtd-theme"], "https://github.com/inodb/revmut": ["biopython", "pandas", "sufam"], "https://github.com/LASER-UMASS/CausalTesting_ICSE20": ["fuzzer", "random-js", "traverse", "xtend", "lxml", "psutil", "pyasn1", "tlslite", "twisted"], "https://github.com/bcbio/bcbio-nextgen": ["bcbio-nextgen", "flake8", "sphinx", "sphinx-rtd-theme", "recommonmark"], "https://github.com/coin-or/CyLP": ["numpy", "scipy"], "https://github.com/SciTools/cartopy": ["beautifulsoup4", "cf-units", "iris", "iris-sample-data", "netcdf4", "sphinx", "sphinx-gallery", "numpy", "pyshp", "setuptools", "shapely", "pyepsg", "owslib", "pillow", "gdal", "matplotlib", "scipy", "flufl-lock", "pytest"], "https://github.com/Jollyfant/PMAG2": ["jekyll", "jekyll-redirect-from", "jekyll-sitemap", "jekyll-toc", "addressable", "colorator", "concurrent-ruby", "em-websocket", "eventmachine", "ffi", "forwardable-extended", "http_parser.rb", "i18n", "jekyll-sass-converter", "jekyll-watch", "kramdown", "liquid", "listen", "mercenary", "mini_portile2", "nokogiri", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "ruby_dep", "safe_yaml", "sass", "sass-listen", "wdm", "@babel/cli", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/template", "@babel/traverse", "@babel/types", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@sinonjs/commons", "@sinonjs/formatio", "@sinonjs/samsam", "@types/estree", "@types/node", "@types/unist", "@types/vfile", "@types/vfile-message", "abbrev", "accepts", "acorn", "acorn-jsx", "after", "agent-base", "ajv", "amdefine", "ansi-align", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "append-transform", "aproba", "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-filter", "array-find-index", "array-from", "array-map", "array-reduce", "array-slice", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "arrify", "asn1", "assert-plus", "assign-symbols", "astral-regex", "async", "async-each", "async-foreach", "async-limiter", "asynckit", "atob", "autoprefixer", "aws-sign2", "aws4", "axios", "babel-eslint", "babel-plugin-istanbul", "babel-polyfill", "babel-runtime", "backo2", "bail", "balanced-match", "base", "base64-arraybuffer", "base64id", "bcrypt-pbkdf", "better-assert", "bhttp", "big-integer", "binary", "binary-extensions", "blob", "block-stream", "bluebird", "body-parser", "boxen", "brace-expansion", "braces", "broken-link-checker", "browserslist", "browserstack", "browserstacktunnel-wrapper", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "buffer-from", "buffer-indexof-polyfill", "buffers", "builtin-modules", "bundlesize", "bytes", "cache-base", "call-me-maybe", "caller-callsite", "caller-path", "callsite", "callsites", "calmcard", "camelcase", "camelcase-keys", "caniuse-lite", "capture-stack-trace", "caseless", "ccount", "chainsaw", "chalk", "char-spinner", "character-entities", "character-entities-html4", "character-entities-legacy", "character-reference-invalid", "chardet", "chokidar", "ci-env", "ci-info", "circular-json", "class-utils", "clean-css", "clean-css-cli", "cli-boxes", "cli-cursor", "cli-spinners", "cli-table", "cli-table3", "cli-width", "cliui", "clone", "clone-regexp", "code-point-at", "collapse-white-space", "collection-visit", "color-convert", "color-name", "colors", "combine-lists", "combined-stream", "combined-stream2", "commander", "compare-versions", "component-bind", "component-emitter", "component-inherit", "concat-map", "concat-stream", "condense-whitespace", "configstore", "connect", "console-control-strings", "content-type", "convert-source-map", "cookie", "copy-descriptor", "core-js", "core-util-is", "corser", "cosmiconfig", "coveralls", "create-error-class", "cross-env", "cross-spawn", "crypto-random-string", "cssesc", "currently-unhandled", "custom-event", "dashdash", "date-format", "debug", "decamelize", "decamelize-keys", "decode-uri-component", "deep-extend", "deep-is", "default-require-extensions", "default-user-agent", "defaults", "define-properties", "define-property", "delayed-stream", "delegates", "depd", "dependency-graph", "dev-null", "di", "eslint", "find-unused-sass-variables", "glob", "hammer-simulator", "http-server", "ip", "jquery", "karma", "karma-browserstack-launcher", "karma-chrome-launcher", "karma-coverage-istanbul-reporter", "karma-detect-browsers", "karma-firefox-launcher", "karma-qunit", "karma-sinon", "node-sass", "nodemon", "npm-run-all", "popper.js", "postcss-cli", "qunit", "rollup", "rollup-plugin-babel", "rollup-plugin-commonjs", "rollup-plugin-node-resolve", "shelljs", "shx", "sinon", "stylelint", "stylelint-config-twbs-bootstrap", "uglify-js", "vnu-jar", "jQuery", "align-text", "alphabet", "annois", "annotate", "annozip", "archiver", "archiver-utils", "array-differ", "asap", "autoprefixer-core", "base64-js", "bl", "body", "buffer", "buffer-crc32", "caniuse-db", "center-align", "chownr", "clone-function", "co", "coffeescript", "compress-commons", "continuable-cache", "crc", "crc32-stream", "csslint", "dateformat", "decompress-response", "del", "detect-libc", "diff", "doctrine", "duplexer", "ecc-jsbn", "end-of-stream", "errno", "error", "error-ex", "es6-promise", "escape-string-regexp", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "eventemitter2", "exit", "expand-template", "extend", "external-editor", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "faye-websocket", "figures", "file-entry-cache", "file-sync-cmp", "find-up", "findup-sync", "flat-cache", "forever-agent", "form-data", "fs-constants", "fs.realpath", "fstream", "functional-red-black-tree", "gauge", "gaze", "get-stdin", "getobject", "getpass", "github-from-package", "globals", "globby", "globule", "graceful-fs", "grunt", "grunt-autoprefixer", "grunt-banner", "grunt-contrib-clean", "grunt-contrib-compress", "grunt-contrib-concat", "grunt-contrib-copy", "grunt-contrib-csslint", "grunt-contrib-cssmin", "grunt-contrib-less", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-eslint", "grunt-known-options", "grunt-legacy-log", "grunt-legacy-log-utils", "grunt-legacy-util", "grunt-umd", "grunt-version", "gzip-size", "handlebars", "har-schema", "har-validator", "has-ansi", "has-flag", "has-unicode", "hooker", "hosted-git-info", "http-parser-js", "http-signature", "iconv-lite", "ieee754", "ignore", "iltorb", "image-size", "imurmurhash", "indent-string", "inflight", "inherits", "ini", "inquirer", "is-arrayish", "is-buffer", "is-builtin-module", "is-finite", "is-fullwidth-code-point", "is-path-cwd", "is-path-in-cwd", "is-path-inside", "is-promise", "is-resolvable", "is-typedarray", "is-utf8", "isarray", "isexe", "isstream", "js-base64", "js-tokens", "js-yaml", "jsbn", "json-schema", "json-schema-traverse", "json-stable-stringify-without-jsonify", "json-stringify-safe", "jsprim", "kind-of", "lazy-cache", "lazystream", "less", "levn", "libumd", "livereload-js", "load-grunt-tasks", "load-json-file", "locate-path", "lodash", "longest", "loud-rejection", "map-obj", "maxmin", "meow", "mime", "mime-db", "mime-types", "mimic-fn", "mimic-response", "minimatch", "minimist", "mkdirp", "ms", "multimatch", "mute-stream", "nan", "natural-compare", "nice-try", "node-abi", "node-gyp", "noop-logger", "nopt", "normalize-package-data", "normalize-path", "npmlog", "num2fraction", "number-is-nan", "bootstrap"], "https://github.com/AlBi-HHU/homo-edit-distance": ["numpy"], "https://github.com/atmtools/typhon": ["cartopy", "cython", "gdal", "keras", "matplotlib", "netcdf4", "numba", "numexpr", "numpy", "pandas", "pint", "pykdtree", "pytest", "scikit-image", "scikit-learn", "scipy", "setuptools", "sphinx", "sphinx-rtd-theme", "xarray", "docutils", "imageio"], "https://github.com/benvanwerkhoven/kernel_tuner": ["numpy", "scipy"], "https://github.com/myGrid/ruby-ro-bundle": ["bundler", "coveralls", "json", "rake", "rdoc", "test-unit", "ucf", "uuid"], "https://github.com/juoceano/lecture_figures": ["github-pages", "activesupport", "addressable", "coffee-script", "coffee-script-source", "colorator", "ethon", "execjs", "faraday", "ffi", "forwardable-extended", "gemoji", "github-pages-health-check", "html-pipeline", "i18n", "jekyll", "jekyll-coffeescript", "jekyll-feed", "jekyll-gist", "jekyll-github-metadata", "jekyll-mentions", "jekyll-paginate", "jekyll-redirect-from", "jekyll-sass-converter", "jekyll-seo-tag", "jekyll-sitemap", "jekyll-watch", "jemoji", "json", "kramdown", "liquid", "listen", "mercenary", "minima", "minitest", "mini_portile2", "multipart-post", "net-dns", "nokogiri", "octokit", "pathutil", "public_suffix", "rb-fsevent", "rb-inotify", "rouge", "safe_yaml", "sass", "sawyer", "terminal-table", "thread_safe", "typhoeus", "tzinfo", "npm-run-all", "onchange", "uglify-js"], "https://github.com/briandconnelly/nicheconstruct": ["configobj", "networkx", "numpy", "pandas"], "https://github.com/deeptools/HiCExplorer": ["commonmark", "coverage", "flake8", "flake8-import-order", "mock", "nose", "pyflakes", "readme", "sphinx", "sphinx-argparse", "sphinx-rtd-theme", "tox", "twine", "wheel", "biopython", "cooler", "fit-nbinom", "future", "hic2cool", "hicmatrix", "hyperopt", "intervaltree", "ipykernel", "jinja2", "krbalancing", "matplotlib-base", "numpy", "pandas", "psutil", "pybedtools", "pybigwig", "pygenometracks", "pysam", "pytables", "python", "python-graphviz", "scipy", "tqdm", "unidecode", "graphviz", "tables"], "https://github.com/mmalekzadeh/privacy-preserving-bandits": ["absl-py", "appnope", "arff", "astor", "backcall", "cachetools", "category-encoders", "certifi", "chardet", "cycler", "decorator", "gast", "google-auth", "google-auth-oauthlib", "google-pasta", "grpcio", "h5py", "idna", "ipykernel", "ipython", "ipython-genutils", "iteround", "jedi", "joblib", "jupyter-client", "jupyter-core", "keras-applications", "keras-preprocessing", "kiwisolver", "markdown", "matplotlib", "numpy", "oauthlib", "opt-einsum", "pairing", "pandas", "parso", "patsy", "pexpect", "pickleshare", "prompt-toolkit", "protobuf", "ptyprocess", "pyasn1", "pyasn1-modules", "pygments", "pyparsing", "python-dateutil", "pytz", "pyzmq", "requests", "requests-oauthlib", "rsa", "scikit-learn", "scikit-multilearn", "scipy", "six", "statsmodels", "tensorboard", "tensorflow", "tensorflow-estimator", "termcolor", "tornado", "traitlets", "urllib3", "wcwidth", "werkzeug", "wrapt"], "https://github.com/jjnp/dss-ue2": ["org.apache.jena:apache-jena-libs", "org.apache.jena:jena-arq", "org.apache.poi:poi", "org.apache.poi:poi-ooxml", "org.projectlombok:lombok", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-web"], "https://github.com/jsh9/PySeismoSoil": ["matplotlib", "numba", "numpy", "scipy"], "https://github.com/wiheto/teneto": ["matplotlib", "networkx", "nilearn", "numpy", "pandas", "pybids", "python-louvain", "scipy", "statsmodels", "tables", "templateflow", "pytest", "m2r", "nbsphinx", "scikit-learn", "sphinx-automodapi"], "https://github.com/CamDavidsonPilon/lifetimes": ["autopep8", "coveralls", "flake8", "matplotlib", "pycodestyle", "pydocstyle", "pytest", "pytest-cov", "pytest-mpl", "dill", "numpy", "pandas", "scipy", "autograd", "recommonmark", "sphinxcontrib-napoleon"], "https://github.com/meelgroup/baital": ["gmpy2", "numpy", "psutil", "pycosat", "pydot", "pyparsing"], "https://github.com/harnesscloud/bqwm": ["flask", "flask-migrate", "flask-script", "flask-sqlalchemy", "pyyaml", "requests", "python-daemon"], "https://github.com/apcamargo/tspex": ["matplotlib", "numpy", "pandas", "xlrd"], "https://github.com/a-slide/pycoMeth": ["colorlog", "jinja2", "kaleido", "nbformat", "numpy", "pandas", "plotly", "pyfaidx", "scipy", "statsmodels", "tqdm"], "https://github.com/RoberAgro/nurbspy": ["matplotlib", "numba", "numpy", "pygmo", "scipy"], "https://github.com/ralph-group/pymeasure": ["numpy", "pandas", "pyqtgraph", "pyserial", "pytest", "pytest-qt", "pyvisa"], "https://github.com/TrapperTeam/Trapper": ["amqp", "anyjson", "argparse", "billiard", "celery", "django", "django-ajax-selects", "django-braces", "django-extensions", "django-extra-views", "django-filter", "django-tinymce", "docutils", "ffvideo", "jinja2", "kombu", "markupsafe", "pillow", "psycopg2", "pygments", "pytz", "pyyaml", "six", "sphinx", "sphinx-rtd-theme", "wsgiref"], "https://github.com/sertansenturk/tomato": ["black", "flake8", "pylint", "pylint-fail-under", "pytest", "rope", "tox", "essentia", "eyed3", "json-tricks", "lxml", "matplotlib", "musicbrainzngs", "networkx", "numpy", "pandas", "python-levenshtein", "scipy"], "https://github.com/oscarbranson/carbspec": ["matplotlib", "numpy", "scipy", "uncertainties"], "https://github.com/rodighiero/AIUCD2020": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@types/anymatch", "@types/events", "@types/glob", "@types/html-minifier-terser", "@types/minimatch", "@types/node", "@types/source-list-map", "@types/tapable", "@types/uglify-js", "@types/webpack", "@types/webpack-sources", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "accepts", "acorn", "afinn-165", "ajv", "ajv-errors", "ajv-keywords", "ansi-colors", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "apparatus", "aproba", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "asn1", "asn1.js", "assert", "assert-plus", "assign-symbols", "async", "async-each", "async-limiter", "asynckit", "atob", "aws-sign2", "aws4", "babel-loader", "babel-plugin-dynamic-import-node", "balanced-match", "base", "base64-js", "batch", "bcrypt-pbkdf", "big.js", "binary-extensions", "bindings", "bluebird", "bn.js", "body-parser", "bonjour", "boolbase", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "camel-case", "camelcase", "caniuse-lite", "caseless", "chalk", "cheerio", "chokidar", "chownr", "chrome-trace-event", "cipher-base", "class-utils", "clean-css", "cliui", "code-point-at", "collapse-white-space", "collection-visit", "color-convert", "color-name", "combined-stream", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "connect-history-api-fallback", "console-browserify", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "core-js-compat", "core-util-is", "create-ecdh", "create-hash", "create-hmac", "cross-spawn", "crypto-browserify", "css-loader", "css-select", "css-what", "cssesc", "cyclist", "d3", "d3-array", "d3-axis", "d3-brush", "d3-chord", "d3-collection", "d3-color", "d3-contour", "d3-dispatch", "d3-drag", "d3-dsv", "d3-ease", "d3-fetch", "d3-force", "d3-format", "d3-geo", "d3-hierarchy", "d3-interpolate", "d3-path", "d3-polygon", "d3-quadtree", "d3-random", "d3-scale", "file-loader", "franc-min", "fs", "html-loader", "html-webpack-plugin", "js-combinatorics", "mini-css-extract-plugin", "natural", "remove-accents", "request", "request-promise", "stopword", "webpack", "webpack-cli", "webpack-dev-server"], "https://github.com/michaelaye/planet4": ["ipyparallel", "matplotlib", "numpy", "pandas", "pytables", "scikit-learn", "scipy", "seaborn", "pyaml", "pytest", "shapely"], "https://github.com/mcs07/PubChemPy": ["pandas", "bumpversion", "coverage", "coveralls", "pytest", "sphinx", "sphinx-rtd-theme"], "https://github.com/kyleniemeyer/mech_util": ["numpy", "scipy"], "https://github.com/nathandunn/galaxy-monarch-integration": ["planemo"], "https://github.com/pyoceans/python-ctd": ["black", "check-manifest", "doctr", "flake8", "flake8-builtins", "flake8-comprehensions", "flake8-mutable", "flake8-print", "ipykernel", "isort", "jupyter", "jupyter-client", "mypy", "nbconvert", "nbsphinx", "pre-commit", "pycodestyle", "pylint", "pytest", "pytest-cov", "pytest-flake8", "pytest-xdist", "setuptools-scm", "sphinx", "twine", "wheel", "gsw", "matplotlib", "numpy", "pandas", "pandas-flavor", "scipy"], "https://github.com/sebhenri/HyWF": ["numpy", "sklearn"], "https://github.com/MatthijsKaminski/AnalyzeTool": ["bootstrap-table", "c3", "d3", "electron-prebuilt", "jquery", "mongodb", "browser-sync", "coffee-script", "gulp", "gulp-changed", "gulp-coffee", "gulp-coffeelint", "gulp-connect", "gulp-header", "gulp-jade", "gulp-less", "gulp-load-plugins", "gulp-notify", "gulp-open", "gulp-plumber", "gulp-rename", "gulp-uglify", "gulp-util", "jasmine-core", "karma", "karma-firefox-launcher", "karma-jasmine", "less-plugin-clean-css", "run-sequence"], "https://github.com/mila-iqia/blocks": ["numpy", "picklable-itertools", "progressbar2", "pyyaml", "six", "toolz", "fuel", "theano"], "https://github.com/vnmabus/dcor": ["jupyter-sphinx", "matplotlib", "pygments", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-bibtex", "numba", "numpy", "scipy", "setuptools", "pytest-cov", "pytest-subtests"], "https://github.com/ejhumphrey/optimus": ["numpy", "pandas", "theano"], "https://github.com/Kaleidophon/token2index": ["m2r", "recommonmark", "sphinxbootstrap4theme", "sphinxemoji"], "https://github.com/gchrupala/visually-grounded-speech": ["funktional", "theano"], "https://github.com/dhhagan/opcsim": ["cycler", "kiwisolver", "matplotlib", "numpy", "pandas", "pyparsing", "python-dateutil", "pytz", "scipy", "seaborn", "six"], "https://github.com/kipoi/kipoiseq": ["cyvcf2", "deprecation", "genomelake", "gffutils", "kipoi", "kipoi-conda", "kipoi-utils", "kipoi-veff", "numpy", "pandas", "pybedtools", "pyfaidx", "pyranges", "pytest", "pytest-mock", "six", "tqdm", "bumpversion", "concise", "coveralls", "cython", "epc", "jedi", "keras", "pytest-cov", "pytest-pep8", "pytest-xdist", "scikit-learn", "tensorflow", "wheel"], "https://github.com/pnlbwh/freesurfer-analysis": ["dash", "pandas", "statsmodels"], "https://github.com/mpastell/CowLog": ["wcjs-player"], "https://github.com/TGAC/RAMPART": ["commons-cli:commons-cli", "junit:junit", "net.sf.opencsv:opencsv", "org.apache.maven.plugins:maven-antrun-plugin", "org.apache.maven.plugins:maven-clean-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.maven.surefire:maven-failsafe-plugin", "org.apache.maven.surefire:surefire-junit47", "org.codehaus.mojo:appassembler-maven-plugin", "org.codehaus.mojo:properties-maven-plugin", "org.mockito:mockito-all", "org.springframework:spring-test", "uk.ac.tgac.conan:tgac-conan-process-wrappers"], "https://github.com/repseqio/repseqio": ["ch.qos.logback:logback-classic", "com.beust:jcommander", "com.milaboratory:milib", "commons-io:commons-io", "junit:junit", "net.sf.trove4j:trove4j", "org.apache.httpcomponents:httpclient", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.codehaus.mojo:build-helper-maven-plugin", "org.codehaus.mojo:buildnumber-maven-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.mockito:mockito-all", "org.reflections:reflections", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/liminoid/liminoid": ["@agentofuser/remark-oembed", "@loadable/component", "@mdx-js/mdx", "@mojs/core", "@rebass/forms", "@rebass/layout", "@rebass/preset", "@rebass/preset-material", "@rebass/space", "@theme-ui/presets", "@theme-ui/prism", "@theme-ui/sidenav", "deepmerge", "faker", "gatsby", "gatsby-cli", "gatsby-plugin-catch-links", "gatsby-plugin-mdx", "gatsby-plugin-react-helmet", "gatsby-plugin-theme-ui", "gatsby-remark-code-buttons", "gatsby-source-filesystem", "gatsby-transformer-remark", "liminoid-mdx", "mermaid.cli", "prettier", "react", "react-dom", "react-helmet", "react-live", "rebass", "remark-footnotes", "remark-html-katex", "remark-mermaid", "remark-slug", "remark-sources", "semiotic", "theme-ui", "vega", "vega-embed", "vega-lite"], "https://github.com/SotosTsepe/invenio-madmp": ["check-manifest", "coverage", "elasticsearch", "elasticsearch-dsl", "flask-babelex", "flask-login", "flask-security", "invenio-db", "invenio-files-rest", "invenio-indexer", "invenio-pidstore", "invenio-records", "invenio-records-files", "invenio-search", "isort", "pydocstyle", "pytest-cov", "pytest-invenio", "pytest-pep8", "werkzeug"], "https://github.com/russianwordnet/yarn": ["activerecord-jdbcpostgresql-adapter", "active_link_to", "bb-ruby", "better_errors", "binding_of_caller", "bootstrap-sass", "ceaser-easing", "cells", "coffee-rails", "compass-rails", "devise", "devise-i18n", "font-awesome-sass-rails", "foreigner", "friendly_id", "haml", "high_voltage", "jbuilder", "jquery-rails", "jquery-validation-rails", "json", "kaminari", "kramdown", "merit", "meta_request", "nokogiri", "nprogress-rails", "omniauth-facebook", "omniauth-github", "omniauth-vkontakte", "parallel", "pg", "pghero", "postgres_ext", "protected_attributes", "pry", "puma", "railroady", "rails", "rails-i18n", "rdf", "rdf-lemon", "rdf-n3", "rdf-raptor", "redis-rails", "rspec-rails", "sass-rails", "sax-machine", "therubyracer", "therubyrhino", "uglifier", "actionmailer", "actionpack", "activemodel", "activerecord", "activerecord-deprecated_finders", "activerecord-jdbc-adapter", "activesupport", "ambry", "arel", "bcrypt", "builder", "callsite", "chunky_png", "coderay", "coffee-script", "coffee-script-source", "compass", "compass-core", "compass-import-once", "concurrent-ruby", "debug_inspector", "diff-lcs", "erubis", "execjs", "faraday", "ffi", "git-version-bump", "hashie", "i18n", "jdbc-postgres", "jwt", "libv8", "link_header", "mail", "method_source", "mime-types", "mime-types-data", "minitest", "mini_portile2", "multipart-post", "multi_json", "multi_xml", "oauth2", "omniauth", "omniauth-oauth2", "orm_adapter", "pg_array_parser", "rack", "rack-contrib", "rack-test", "railties", "rake", "rb-fsevent", "rb-inotify", "redis", "redis-actionpack", "redis-activesupport", "redis-rack", "redis-store", "ref", "responders", "rspec-core", "rspec-expectations", "rspec-mocks", "rspec-support", "sass", "slop", "spoon", "sprockets", "sprockets-rails", "therubyrhino_jar", "thor", "thread_safe", "tilt", "tzinfo", "uber", "warden"], "https://github.com/ihmeuw/vivarium_conic_lsff": ["click", "gbd-mapping", "jinja2", "loguru", "numpy", "pandas", "pyyaml", "scipy", "tables", "vivarium", "vivarium-public-health"], "https://github.com/CMA-ES/pycma": ["numpy"], "https://github.com/FAST-HEP/fast-curator": ["codecov", "flake8", "pytest", "pytest-cov", "pytest-runner", "twine", "xrootd", "pyyaml", "six", "uproot"], "https://github.com/erdc/AutoRoutePy": ["condorpy", "gdal", "numpy", "psutil", "rapidpy"], "https://github.com/kjappelbaum/oximachinetool": ["ipython", "oximachinerunner", "shap"], "https://github.com/ameyaKetkar/SimpleTypeChangeMiner": ["com.google.protobuf:protobuf-java", "commons-io:commons-io", "commons-lang:commons-lang", "io.vavr:vavr", "MigrationMiner:MigrationMiner", "org.apache.commons:commons-text", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.shared:maven-invoker", "org.apache.tinkerpop:gremlin-core", "org.apache.tinkerpop:gremlin-driver", "org.apache.tinkerpop:tinkergraph-gremlin", "org.codehaus.plexus:plexus-utils", "org.eclipse.jdt:org.eclipse.jdt.core", "org.eclipse.jgit:org.eclipse.jgit", "org.jdom:jdom2", "org.kohsuke:github-api", "org.refactoringMiner:RefactoringMiner", "TypeChange:Models", "jinja2", "markupsafe", "protobuf", "six"], "https://github.com/rvhonorato/cazy-parser": ["beautifulsoup4", "progressbar2"], "https://github.com/CrystalMei/ProvBuild": ["future", "pyposast", "sqlalchemy"], "https://github.com/stoqs/stoqs": ["aiohttp", "beautifulsoup4", "cmocean", "coards", "coverage", "datadiff", "dj-database-url", "django", "django-cache-url", "django-configurations", "django-debug-toolbar", "django-environ", "django-extensions", "django-model-utils", "django-picklefield", "djangorestframework", "euclid", "gitpython", "httplib2", "ipython", "jdcal", "jinja2", "jupyter", "lxml", "matplotlib", "mock", "netcdf4", "netifaces", "nose", "oauthlib", "ordereddict", "paste", "pastedeploy", "pastescript", "pika", "pillow", "psycopg2-binary", "pupynere", "pydap", "pysher", "python-dateutil", "python-openid", "python3-memcached", "pytz", "pyzmq", "readline", "requests-oauthlib", "scikit-learn", "scipy", "seawater", "selenium", "simplejson", "slacker", "sphinx", "sphinx-rtd-theme", "sqlparse", "statsmodels", "thredds-crawler", "watchdog", "websocket-client", "alabaster", "amqp", "amqplib", "anyjson", "babel", "backports-ssl-match-hostname", "billiard", "binaryornot", "certifi", "cookiecutter", "cython", "docutils", "ephem", "genshi", "geopandas", "h5py", "markupsafe", "numpy", "pandas", "pygments", "pygraphviz", "pymssql-py38", "pyparsing", "python-coveralls", "requests", "scikit-bio", "snowballstemmer", "tornado", "uwsgi"], "https://github.com/jamesrhester/PyFormatTransformer": ["numpy", "pycifrw"], "https://github.com/mirnylab/cooltools": ["pytest", "pytest-cov", "pytest-flake8", "bioframe", "click", "cooler", "cython", "joblib", "matplotlib", "multiprocess", "numba", "numpy", "pandas", "scikit-learn", "scipy", "tables", "ipython", "nbsphinx", "pygments", "recommonmark", "sphinx", "sphinx-click", "sphinx-rtd-theme"], "https://github.com/maxibor/adrsm": ["click", "numpy", "requests", "scipy"], "https://github.com/thorstenwagner/ij-shape-filter": ["de.biomedical-imaging.ij:ij_blob", "net.imagej:ij", "org.apache.maven.plugins:maven-javadoc-plugin"], "https://github.com/cemac/SWIFTDB": ["certbot", "flask-migrate", "flask-script", "gunicorn", "pandas", "passlib", "psycopg2", "wtforms", "WTForms-Components", "-libgcc-mutex", "alembic", "blas", "ca-certificates", "certifi", "click", "et-xmlfile", "flask", "flask-sqlalchemy", "intel-openmp", "itsdangerous", "jdcal", "jinja2", "krb5", "libedit", "libffi", "libgcc-ng", "libgfortran-ng", "libpq", "libstdcxx-ng", "mako", "markupsafe", "mkl", "mkl-fft", "mkl-random", "mkl-service", "ncurses", "numpy", "numpy-base", "openpyxl", "openssl", "pip", "postgresql", "python", "python-dateutil", "python-editor", "pytz", "readline", "setuptools", "six", "sqlalchemy", "sqlite", "tk", "werkzeug", "wheel", "xz", "zlib"], "https://github.com/minimalparts/nonce2vec": ["gensim", "numpy", "pyyaml", "scipy"], "https://github.com/sepandhaghighi/pyrgg": ["art", "bandit", "codecov", "flake8", "networkx", "pydocstyle", "pytest", "pytest-cov", "pyyaml", "scipy", "setuptools", "vulture"], "https://github.com/xBimTeam/XbimEssentials": ["FluentAssertions", "Microsoft.NET.Test.Sdk", "MSTest.TestAdapter", "MSTest.TestFramework", "xunit", "xunit.runner.visualstudio", "log4net", "ManagedEsent", "SharpZipLib", "Microsoft.Extensions.Logging", "Microsoft.Extensions.Logging.Abstractions", "System.Memory", "NPOI"], "https://github.com/bionode/bionode-fasta": ["async", "beefy", "browserify-fs", "concat-stream", "contributor", "coveralls", "docco", "fasta-parser", "istanbul", "minimist", "pumpify", "request", "split2", "standard", "tap-spec", "tape", "testling", "through2", "uglify-js"], "https://github.com/chembl/FPSim2": ["pybind11"], "https://github.com/WIPACrepo/iceprod": ["alabaster", "asn1crypto", "aws-xray-sdk", "babel", "backcall", "beautifulsoup4", "boto", "boto3", "botocore", "bs4", "cachetools", "certifi", "cffi", "chardet", "cookies", "coverage", "cryptography", "decorator", "docker", "docker-pycreds", "docutils", "ecdsa", "flexmock", "future", "idna", "imagesize", "ipython", "ipython-genutils", "jedi", "jinja2", "jmespath", "jsondiff", "jsonpickle", "jsonschema", "ldap3", "markupsafe", "mock", "moto", "motor", "pbr", "pexpect", "pickleshare", "prompt-toolkit", "psutil", "ptyprocess", "pyaml", "pyasn1", "pycparser", "pycryptodome", "pygments", "pyjwt", "pymongo", "pymysql", "pyopenssl", "python-dateutil", "python-jose", "pytz", "pyyaml", "requests", "requests-futures", "requests-mock", "requests-toolbelt", "responses", "s3transfer", "selenium", "setproctitle", "simplegeneric", "six", "snowballstemmer", "sphinx", "sphinxcontrib-websupport", "statsd", "tornado", "traitlets", "urllib3", "wcwidth", "websocket-client", "werkzeug", "wrapt", "xmltodict"], "https://github.com/smarsland/AviaNZ": ["click", "cython", "jsonschema", "librosa", "numpy", "openpyxl", "pyfftw", "pyqt5", "scikit-image", "scipy", "setuptools", "spectrum", "tensorflow"], "https://github.com/chasemc/IDBacApp": ["grunt", "grunt-contrib-jade", "grunt-contrib-less", "grunt-contrib-sass", "grunt-contrib-watch"], "https://github.com/metomi/rose": ["aiofiles", "cylc-flow", "jinja2", "ldap3", "metomi-isodatetime", "requests", "sqlalchemy", "tornado"], "https://github.com/dune-community/dune-gdt": ["codecov", "jinja2", "where"], "https://github.com/LEAF-BoiseState/janus": ["fiona", "geopandas", "joblib", "matplotlib", "nass", "netcdf4", "numpy", "pandas", "pycrs", "pyyaml", "rasterio", "rasterstats", "scipy", "seaborn", "setuptools", "shapely"], "https://github.com/mmbajo/PROBA-V": ["matplotlib", "numpy", "pandas", "scikit-image", "scikit-learn", "tensorflow-addons", "torch", "tqdm"], "https://github.com/koszullab/instaGRAAL": ["biopython", "codepy", "docopt", "h5py", "matplotlib", "numpy", "pyopengl", "scipy", "instagraal", "nbsphinx", "notebook", "recommonmark", "sphinx"], "https://github.com/clincolnoz/WorldBank_WDI_Visulization": ["dash", "numpy", "pandas", "pingouin", "plotly", "scikit-learn"], "https://github.com/lifs-tools/jmzTab-m-webapp": ["com.brsanthu:migbase64", "com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.fasterxml.jackson.dataformat:jackson-dataformat-csv", "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", "com.fasterxml.jackson.datatype:jackson-datatype-joda", "com.fasterxml.jackson.jaxrs:jackson-jaxrs-base", "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider", "com.fasterxml.jackson.module:jackson-module-jaxb-annotations", "com.google.guava:guava", "com.spotify:dockerfile-maven-plugin", "com.sun.activation:javax.activation", "com.sun.xml.bind:jaxb-core", "com.sun.xml.bind:jaxb-impl", "de.isas.mztab:jmztabm-io", "de.isas.mztab:jmztabm-validation", "io.github.swagger2markup:swagger2markup", "io.springfox:springfox-swagger-ui", "io.springfox:springfox-swagger2", "io.swagger:swagger-annotations", "io.swagger:swagger-models", "javax.annotation:javax.annotation-api", "javax.ws.rs:javax.ws.rs-api", "javax.xml.bind:jaxb-api", "joda-time:joda-time", "junit:junit", "ognl:ognl", "org.apache.maven.plugins:maven-assembly-plugin", "org.apache.maven.plugins:maven-dependency-plugin", "org.apache.maven.plugins:maven-deploy-plugin", "org.apache.maven.plugins:maven-install-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-resources-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.codehaus.mojo:buildnumber-maven-plugin", "org.glassfish.jersey.core:jersey-client", "org.glassfish.jersey.media:jersey-media-json-jackson", "org.glassfish.jersey.media:jersey-media-multipart", "org.jacoco:jacoco-maven-plugin", "org.owasp:dependency-check-maven", "org.projectlombok:lombok", "org.springframework.boot:spring-boot-dependencies", "org.springframework.boot:spring-boot-devtools", "org.springframework.boot:spring-boot-maven-plugin", "org.springframework.boot:spring-boot-starter-actuator", "org.springframework.boot:spring-boot-starter-test", "org.springframework.boot:spring-boot-starter-thymeleaf", "org.springframework.boot:spring-boot-starter-web", "uk.ac.ebi.pride:jmztab-modular-model", "uk.ac.ebi.pride:jmztab-modular-util"], "https://github.com/thieunguyen5991/mealpy": ["matplotlib", "numpy", "opfunu", "scipy"], "https://github.com/sepandhaghighi/pycm": ["art", "bandit", "codecov", "notebook", "numpy", "pydocstyle", "pytest", "pytest-cov", "setuptools", "vulture"], "https://github.com/fruchtfolge/client": ["@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-create-class-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-decorators", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-decorators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/polyfill", "@babel/preset-env", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@csstools/convert-colors", "@nuxt/babel-preset-app", "@nuxt/builder", "@nuxt/cli", "@nuxt/config", "@nuxt/core", "@nuxt/devalue", "@nuxt/friendly-errors-webpack-plugin", "@nuxt/generator", "@nuxt/opencollective", "@nuxt/server", "@nuxt/utils", "@nuxt/vue-app", "@nuxt/vue-renderer", "@nuxt/webpack", "@nuxtjs/axios", "@nuxtjs/eslint-config", "@nuxtjs/proxy", "@nuxtjs/youch", "@types/q", "@vue/babel-helper-vue-jsx-merge-props", "@vue/babel-plugin-transform-vue-jsx", "@vue/babel-preset-jsx", "@vue/babel-sugar-functional-vue", "@vue/babel-sugar-inject-h", "@vue/babel-sugar-v-model", "@vue/babel-sugar-v-on", "@vue/component-compiler-utils", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abbrev", "accepts", "acorn", "acorn-dynamic-import", "acorn-jsx", "acorn-walk", "ajv", "ajv-errors", "ajv-keywords", "alphanum-sort", "ansi-align", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-filter", "array-flatten", "array-map", "array-reduce", "array-unique", "asn1.js", "assert", "assign-symbols", "astral-regex", "async", "async-each", "async-limiter", "atob", "autoprefixer", "axios", "axios-retry", "babel-eslint", "babel-loader", "babylon", "balanced-match", "base", "base64-js", "bfj", "big.js", "binary-extensions", "bluebird", "bn.js", "body-parser", "boolbase", "boxen", "brace-expansion", "braces", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-from", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "cache-loader", "caller-callsite", "caller-path", "callsites", "camel-case", "camelcase", "caniuse-api", "caniuse-lite", "capture-stack-trace", "chalk", "chardet", "check-types", "chokidar", "chownr", "chrome-trace-event", "ci-info", "cipher-base", "class-utils", "clean-css", "cli-boxes", "cli-cursor", "cli-width", "coa", "collection-visit", "color", "color-convert", "color-name", "color-string", "commander", "commondir", "component-emitter", "compressible", "compression", "concat-map", "concat-stream", "configstore", "connect", "consola", "console-browserify", "consolidate", "constants-browserify", "contains-path", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "core-js", "core-util-is", "cosmiconfig", "create-ecdh", "create-error-class", "create-hash", "create-hmac", "cross-env", "cross-spawn", "@mapbox/mapbox-gl-draw", "@nuxtjs/google-analytics", "@turf/area", "@turf/bbox", "@turf/helpers", "bufferutil", "chart.js", "chartjs-plugin-deferred", "chartjs-plugin-dragdata", "chartjs-plugin-piechart-outlabels", "eslint", "eslint-config-prettier", "eslint-config-standard", "eslint-loader", "eslint-plugin-import", "eslint-plugin-jest", "eslint-plugin-node", "eslint-plugin-prettier", "eslint-plugin-promise", "eslint-plugin-standard", "eslint-plugin-vue", "fold-to-ascii", "lodash", "mapbox-gl", "mini-toastr", "nodemon", "nuxt", "pouchdb", "pouchdb-browser", "pouchdb-find", "pouchdb-live-find", "prettier", "vue-carousel", "vue-clickaway", "vue-multiselect", "vue-notifications", "xlsx"], "https://github.com/newcastle-living-lab/living-lab": ["@babel/runtime", "@jimp/bmp", "@jimp/core", "@jimp/custom", "@jimp/gif", "@jimp/jpeg", "@jimp/plugin-blit", "@jimp/plugin-blur", "@jimp/plugin-color", "@jimp/plugin-contain", "@jimp/plugin-cover", "@jimp/plugin-crop", "@jimp/plugin-displace", "@jimp/plugin-dither", "@jimp/plugin-flip", "@jimp/plugin-gaussian", "@jimp/plugin-invert", "@jimp/plugin-mask", "@jimp/plugin-normalize", "@jimp/plugin-print", "@jimp/plugin-resize", "@jimp/plugin-rotate", "@jimp/plugin-scale", "@jimp/plugins", "@jimp/png", "@jimp/tiff", "@jimp/types", "@jimp/utils", "a-sync-waterfall", "accepts", "accord", "after", "ajv", "align-text", "ansi-colors", "ansi-cyan", "ansi-gray", "ansi-red", "ansi-regex", "ansi-styles", "ansi-wrap", "any-base", "anymatch", "append-buffer", "archiver", "archiver-utils", "archy", "arr-diff", "arr-filter", "arr-flatten", "arr-map", "arr-union", "array-each", "array-flatten", "array-initial", "array-last", "array-slice", "array-sort", "array-unique", "arraybuffer.slice", "asap", "asn1", "assert-plus", "assign-symbols", "async", "async-done", "async-each", "async-limiter", "async-settle", "asynckit", "atob", "aws-sign2", "aws4", "bach", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64-js", "base64id", "bcrypt-pbkdf", "bcryptjs", "better-assert", "big-integer", "binary", "binary-extensions", "bl", "blob", "bluebird", "bmp-js", "body-parser", "boom", "brace-expansion", "braces", "buffer", "buffer-crc32", "buffer-equal", "buffer-from", "buffer-indexof-polyfill", "buffers", "bytes", "cache-base", "callsite", "camelcase", "caseless", "center-align", "chainsaw", "chalk", "chokidar", "class-utils", "clean-css", "cliui", "clone", "clone-buffer", "clone-stats", "cloneable-readable", "co", "code-point-at", "collection-map", "collection-visit", "color-convert", "color-name", "color-support", "combined-stream", "component-bind", "component-emitter", "component-inherit", "compress-commons", "concat-map", "concat-stream", "concat-with-sourcemaps", "connect-ensure-login", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-parser", "cookie-signature", "copy-descriptor", "copy-props", "core-js", "core-util-is", "crc", "crc32-stream", "cross-env", "cross-spawn", "cryptiles", "d", "dashdash", "dateformat", "debug", "decamelize", "decode-uri-component", "default-compare", "default-resolution", "define-properties", "define-property", "delayed-stream", "depd", "destroy", "detect-file", "directory-tree", "dom-walk", "duplexer2", "duplexify", "each-props", "ecc-jsbn", "ee-first", "emoji-regex", "encodeurl", "end-of-stream", "engine.io", "engine.io-client", "engine.io-parser", "errno", "error-ex", "es5-ext", "es6-iterator", "es6-symbol", "es6-weak-map", "escape-html", "escape-string-regexp", "etag", "exif-parser", "expand-brackets", "expand-tilde", "express", "express-session", "ext", "extend", "extend-shallow", "extglob", "extsprintf", "fancy-log", "file-type", "fill-range", "finalhandler", "find-up", "findup-sync", "fined", "flagged-respawn", "flush-write-stream", "for-in", "for-own", "forever-agent", "form-data", "formidable", "forwarded", "fragment-cache", "fresh", "fs-constants", "fs-mkdirp-stream", "fs.realpath", "fsevents", "fstream", "function-bind", "get-caller-file", "get-value", "getpass", "glob", "glob-parent", "glob-stream", "glob-watcher", "global", "global-modules", "global-prefix", "glogg", "graceful-fs", "gulp", "gulp-clean-css", "gulp-concat", "gulp-less", "gulp-plumber", "gulp-rename", "gulplog", "har-schema", "har-validator", "has-ansi", "has-binary2", "has-cors", "has-symbols", "has-value", "has-values", "hawk", "hoek", "homedir-polyfill", "hosted-git-info", "http-errors", "http-signature", "iconv-lite", "jimp", "jquery", "lodash", "nunjucks", "passport", "passport-local", "rimraf", "showdown", "slugify", "socket.io", "sqlite3", "unzipper", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-call-delegate", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/template", "@babel/traverse", "@babel/types", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "@types/q", "@vue/component-compiler-utils", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "abab", "acorn", "acorn-globals", "adjust-sourcemap-loader", "ajv-errors", "ajv-keywords", "alphanum-sort", "ansi-html", "aproba", "argparse", "arity-n", "array-equal", "array-union", "array-uniq", "arrify", "asn1.js", "assert", "ast-types", "autoprefixer", "axios", "babel-code-frame", "babel-helper-vue-jsx-merge-props", "babel-loader", "babel-merge", "babel-plugin-dynamic-import-node", "batch", "big.js", "bindings", "bn.js", "bonjour", "boolbase", "brorand", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer-indexof", "buffer-xor", "builtin-status-codes", "cacache", "call-me-maybe", "caller-callsite", "caller-path", "callsites", "camel-case", "caniuse-api", "caniuse-lite", "canvg", "charenc", "chownr", "chrome-trace-event", "cipher-base", "clone-deep", "coa", "collect.js", "color", "color-string", "colors.css", "commander", "commondir", "compose-function", "compressible", "compression", "concatenate", "connect-history-api-fallback", "console-browserify", "consolidate", "constants-browserify", "copy-concurrently", "core-js-compat", "cosmiconfig", "create-ecdh", "create-hash", "create-hmac", "crypt", "crypto-browserify", "css", "css-color-names", "css-declaration-sorter", "css-line-break", "css-loader", "css-select", "css-select-base-adapter", "css-selector-tokenizer", "css-tree", "date-fns", "es6-promise", "jspdf", "konva", "laravel-mix", "md5", "resolve-url-loader", "sass", "sass-loader", "spectre.css", "vue", "vue-feather-icons", "vue-i18n", "vue-konva", "vue-router", "vue-slicksort", "vue-template-compiler", "vue-tour", "vuex", "vuex-map-fields", "vuex-pathify", "acorn-dynamic-import", "backbone", "backbone.marionette", "backbone.radio", "builtin-modules", "classlist-polyfill", "date-now", "deep-clone-simple", "des.js", "diffie-hellman", "domain-browser", "domify", "elliptic", "emojis-list", "enhanced-resolve", "es6-map", "es6-object-assign", "es6-set", "escope", "esrecurse", "estraverse", "event-emitter", "events", "evp_bytestokey", "execa", "fast-deep-equal", "fast-json-stable-stringify", "fastparse", "form-serialize", "get-stream", "has-flag", "hash-base", "hash.js", "hmac-drbg", "html5sortable", "https-browserify", "ieee754", "indexof", "inherits", "interpret", "invert-kv", "is-accessor-descriptor", "is-arrayish", "is-binary-path", "is-buffer", "is-builtin-module", "is-data-descriptor", "is-descriptor", "is-extendable", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-number", "is-plain-object", "is-stream", "is-windows", "isarray", "isexe", "isobject", "json-loader", "json-schema-traverse", "json5", "kind-of", "lazy-cache", "lcid", "load-json-file", "loader-runner", "loader-utils", "locate-path", "lodash.debounce", "longest", "lru-cache", "map-cache", "map-visit", "md5.js", "mem", "memory-fs", "micromatch", "miller-rabin", "mimic-fn", "minimalistic-assert", "minimalistic-crypto-utils", "minimatch", "minimist", "mixin-deep", "mkdirp", "ms", "nan", "nanomatch", "neo-async", "next-tick", "node-libs-browser", "normalize-package-data", "normalize-path", "npm-run-path", "number-is-nan", "object-assign", "object-copy", "object-visit", "object.pick", "os-browserify", "os-locale", "p-finally", "p-limit", "p-locate", "p-try", "pako", "parse-asn1", "parse-json", "pascalcase", "path-browserify", "path-dirname", "path-exists", "path-is-absolute", "path-key", "path-type", "pbkdf2", "pify", "posix-character-classes", "process", "process-nextick-args", "prr", "pseudomap", "public-encrypt", "punycode", "querystring", "querystring-es3", "randombytes", "randomfill", "read-pkg", "read-pkg-up", "readable-stream", "readdirp", "regex-not", "remove-trailing-separator", "repeat-element", "repeat-string", "require-directory", "require-main-filename", "resolve-url", "ret", "right-align", "ripemd160", "safe-buffer", "safe-regex", "semver", "set-blocking", "set-immediate-shim", "set-value", "setimmediate", "sha.js", "shebang-command", "shebang-regex", "signal-exit", "snapdragon", "snapdragon-node", "snapdragon-util", "sortablejs", "source-list-map", "source-map", "source-map-resolve", "source-map-url", "spdx-correct", "spdx-exceptions", "spdx-expression-parse", "spdx-license-ids", "split-string", "static-extend"], "https://github.com/waqasbhatti/astrobase": ["astropy", "awscli", "boto3", "futures", "google-api-python-client", "google-cloud-pubsub", "google-cloud-storage", "jplephem", "matplotlib", "numpy", "paramiko", "pillow", "psycopg2-binary", "pyeebls", "requests", "scikit-learn", "scipy", "tornado", "tqdm", "pytest"], "https://github.com/TECH-UB-24-Programming-DS-Spring-2020/notebooks": ["matplotlib", "numpy", "pandas", "seaborn"], "https://github.com/hidrokit/hidrokit": ["matplotlib", "numpy", "pandas", "xlrd", "numpydoc"], "https://github.com/biosustain/gnomic": ["grako", "pytest", "six"], "https://github.com/digicademy/AskMoreXtension": ["com.oxygenxml:oxygen"], "https://github.com/jnicoleoliveira/SPECData": ["astropy", "astroquery", "matplotlib", "numpy", "periodic", "pyqtgraph", "pysqlite"], "https://github.com/glotzerlab/signac-flow": ["click", "ruamel-yaml", "flake8", "pre-commit", "pydocstyle", "pytest", "pytest-subtests", "cloudpickle", "deprecation", "jinja2", "signac", "tqdm"], "https://github.com/erdc/spt_compute": ["netcdf4", "numpy", "pandas", "rapidpy", "tethys-dataset-services", "xarray"], "https://github.com/maayane/PhotoManip": ["csv", "matplotlib", "numpy", "os", "pandas", "pylab"], "https://github.com/ufbmi/mdc_tree": ["grunt", "grunt-angular-templates", "grunt-autoprefixer", "grunt-concurrent", "grunt-contrib-clean", "grunt-contrib-concat", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-cssmin", "grunt-contrib-htmlmin", "grunt-contrib-imagemin", "grunt-contrib-jshint", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-filerev", "grunt-google-cdn", "grunt-newer", "grunt-ng-annotate", "grunt-svgmin", "grunt-usemin", "grunt-wiredep", "jit-grunt", "jshint-stylish", "time-grunt"], "https://github.com/VlachosGroup/vunits": ["numpy", "pandas", "xlrd"], "https://github.com/rhshah/iCallSV": ["biopython", "coloredlogs", "pandas", "pysam", "pyvcf"], "https://github.com/widdowquinn/SI_Holmes_etal_2020": ["biopython", "pystan", "seaborn", "arviz", "jupyter", "matplotlib", "notebook", "numpy", "pandas", "scipy"], "https://github.com/vemomoto/vemomoto": ["matplotlib", "numpy", "scipy", "vemomoto-core-tools", "sharedmem", "vemomoto-core-concurrent", "vemomoto-core-npcollections", "ci-rvm", "hybrid-vector-model", "lopaths", "autograd", "cvxpy", "numdifftools", "pandas", "statsmodels", "dill"], "https://github.com/nschloe/tikzplotlib": ["mock"], "https://github.com/msmbuilder/msmbuilder": ["jinja2", "jupyter", "matplotlib", "msmb-data", "msmexplorer", "nbconvert", "notebook", "numpydoc", "openmm", "pyparsing"], "https://github.com/dmolina/shadeils": ["cec2013lsgo", "numpy", "pandas", "python-dateutil", "pytz", "scipy", "six", "cython"], "https://github.com/spacetelescope/mirage": ["asdf", "astropy", "astroquery", "batman-package", "crds", "grismconf", "gwcs", "h5py", "healpy", "ipython", "jupyter", "jwst", "jwst-backgrounds", "jwxml", "lxml", "matplotlib", "nircam-gsim", "numpy", "photutils", "pysiaf", "pytest", "pyyaml", "scipy", "sphinx", "synphot", "webbpsf"], "https://github.com/dpla/ingestion": ["argparse", "avro", "boto3", "couchdb", "geopy", "jsonschema", "markupsafe", "mock", "nose", "ordereddict", "pyrax", "python-cloudfiles", "python-dateutil", "simplejson", "six", "timelib"], "https://github.com/bigbadcrad/PUFFIN": ["brfs", "browserify", "corslite", "csv2geojson", "jshint", "mapbox.js", "mocha", "phantomjs-prebuilt", "polyline", "st", "tape", "togeojson", "topojson", "uglify-js", "wellknown", "zuul", "jake", "karma", "leaflet", "magic-string"], "https://github.com/Ouranosinc/xclim": ["bump2version", "coverage", "flake8", "pip", "pre-commit", "pylint", "pytest", "pytest-runner", "tox", "twine", "watchdog", "wheel", "xdoctest", "boltons", "bottleneck", "cftime", "click", "dask", "netcdf4", "numba", "numpy", "packaging", "pandas", "pint", "scikit-learn", "scipy", "xarray"], "https://github.com/erdc/spt_dataset_manager": ["future", "requests", "requests-toolbelt", "tethys-dataset-services"], "https://github.com/jhrmnn/pyberny": ["ipykernel", "pandas", "pytest", "sphinx", "alabaster", "appnope", "atomicwrites", "attrs", "babel", "backcall", "certifi", "chardet", "decorator", "docutils", "idna", "imagesize", "ipython", "ipython-genutils", "jedi", "jinja2", "jupyter-client", "jupyter-core", "markupsafe", "more-itertools", "numpy", "packaging", "parso", "pexpect", "pickleshare", "pluggy", "prompt-toolkit", "ptyprocess", "py", "pygments", "pyparsing", "python-dateutil", "pytz", "pyzmq", "requests", "simplegeneric", "six", "snowballstemmer", "sphinxcontrib-websupport", "tornado", "traitlets", "urllib3", "wcwidth"], "https://github.com/scharom16/evolutionary-nas-with-performance-estimation": ["absl-py", "astroid", "attrs", "autopep8", "backcall", "bleach", "cachetools", "certifi", "cffi", "chardet", "click", "cloudpickle", "cycler", "deap", "decorator", "defusedxml", "docopt", "entrypoints", "flask", "google-auth", "google-auth-oauthlib", "grpcio", "idna", "importlib-metadata", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "isort", "itsdangerous", "jedi", "jinja2", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-core", "kiwisolver", "lazy-object-proxy", "markdown", "markupsafe", "matplotlib", "mccabe", "mistune", "more-itertools", "nbconvert", "nbformat", "networkx", "notebook", "numpy", "oauthlib", "pandocfilters", "parso", "pexpect", "pickleshare", "pillow", "poutyne", "prometheus-client", "prompt-toolkit", "protobuf", "psutil", "ptyprocess", "pyasn1", "pyasn1-modules", "pycodestyle", "pycparser", "pygments", "pygraphviz", "pylint", "pyparsing", "pyrsistent", "python-dateutil", "pyyaml", "pyzmq", "qtconsole", "requests", "requests-oauthlib", "rope", "rsa", "send2trash", "six", "terminado", "testpath", "torch", "torchvision", "tornado", "tqdm", "traitlets", "typed-ast", "urllib3", "wcwidth", "webencodings", "werkzeug", "widgetsnbextension", "wrapt", "yarg", "zipp"], "https://github.com/timm/shape": ["gawk"], "https://github.com/JulianKarlBauer/mechkit": ["numpy"], "https://github.com/gher-ulg/DINCAE": ["netcdf4", "numpy", "tensorflow"], "https://github.com/eweitz/ideogram": ["@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@istanbuljs/schema", "@ranfdev/deepobj", "@types/color-name", "@types/events", "@types/glob", "@types/minimatch", "@types/node", "@types/normalize-package-data", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "accepts", "acorn", "acorn-jsx", "after", "ajv", "ajv-errors", "ajv-keywords", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "append-buffer", "append-transform", "aproba", "argparse", "arr-diff", "arr-flatten", "arr-union", "array-flatten", "array-union", "array-uniq", "array-unique", "arraybuffer.slice", "asn1", "asn1.js", "assert", "assert-plus", "assertion-error", "assign-symbols", "astral-regex", "async", "async-each", "async-limiter", "asynckit", "atob", "aws-sign2", "aws4", "babel-code-frame", "babel-generator", "babel-loader", "babel-messages", "babel-plugin-dynamic-import-node", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "backo2", "balanced-match", "base", "base64-arraybuffer", "base64-js", "base64id", "batch", "bcrypt-pbkdf", "better-assert", "big.js", "binary-extensions", "bindings", "blob", "bluebird", "bn.js", "body-parser", "bonjour", "brace-expansion", "braces", "brorand", "browser-stdout", "browserify-aes", "browserify-cipher", "browserify-des", "browserify-rsa", "browserify-sign", "browserify-zlib", "browserslist", "buffer", "buffer-equal", "buffer-from", "buffer-indexof", "buffer-xor", "builtin-status-codes", "bytes", "cacache", "cache-base", "caller-callsite", "caller-path", "callsite", "callsites", "camelcase", "caniuse-lite", "caseless", "chai", "chalk", "chardet", "check-error", "chokidar", "chownr", "chrome-trace-event", "ci-info", "cipher-base", "class-utils", "cli-cursor", "cli-width", "cliui", "clone", "clone-buffer", "clone-deep", "clone-stats", "cloneable-readable", "co", "collection-visit", "color-convert", "color-name", "colors", "combined-stream", "commander", "commondir", "compare-versions", "component-bind", "component-emitter", "component-inherit", "compressible", "compression", "concat-map", "concat-stream", "connect", "connect-history-api-fallback", "console-browserify", "constants-browserify", "content-disposition", "content-type", "convert-source-map", "cookie", "cookie-signature", "copy-concurrently", "copy-descriptor", "core-js", "coveralls", "crossfilter2", "d3-array", "d3-brush", "d3-dispatch", "d3-fetch", "d3-format", "d3-scale", "eslint", "eslint-config-google", "eslint-plugin-promise", "husky", "istanbul-instrumenter-loader", "karma", "karma-chai", "karma-chrome-launcher", "karma-coverage", "karma-coverage-istanbul-reporter", "karma-coveralls", "karma-mocha", "karma-webpack", "mocha", "webpack", "webpack-cli", "webpack-dev-server", "abbrev", "acorn-dynamic-import", "align-text", "alphanum-sort", "amdefine", "array-find-index", "array-includes", "array-slice", "arrify", "autoprefixer", "babel-core", "babel-eslint", "babel-helper-bindify-decorators", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-explode-class", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helper-vue-jsx-merge-props", "babel-helpers", "babel-plugin-check-es2015-constants", "babel-plugin-istanbul", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-async-generators", "babel-plugin-syntax-class-properties", "babel-plugin-syntax-decorators", "babel-plugin-syntax-dynamic-import", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-jsx", "babel-plugin-syntax-object-rest-spread", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-generator-functions", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-class-properties", "babel-plugin-transform-decorators", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-regenerator", "babel-plugin-transform-runtime", "babel-plugin-transform-strict-mode", "babel-plugin-transform-vue-jsx", "babel-preset-env", "babel-preset-stage-2", "babel-preset-stage-3", "babel-register", "boolbase", "boom", "builtin-modules", "camel-case", "camelcase-keys", "caniuse-api", "caniuse-db", "center-align", "circular-json", "clap", "clean-css", "cli-spinners", "coa", "coalescy", "code-point-at", "color", "color-string", "colormin", "combine-lists", "consolidate", "contains-path", "copy-webpack-plugin", "core-util-is", "cosmiconfig", "create-ecdh", "create-hash", "create-hmac", "cross-env", "cross-spawn", "cryptiles", "crypto-browserify", "css-color-names", "css-loader", "css-select", "css-selector-tokenizer", "css-what", "cssesc", "cssnano", "csso", "currently-unhandled", "custom-event", "cyclist", "d", "d3-collection", "d3-color", "d3-drag", "d3-dsv", "d3-ease", "d3-interpolate", "d3-request", "d3-selection", "d3-time", "d3-time-format", "d3-timer", "d3-transition", "d3.promise", "dashdash", "date-now", "eslint-config-standard", "eslint-friendly-formatter", "eslint-loader", "eslint-plugin-html", "eslint-plugin-import", "eslint-plugin-node", "eslint-plugin-standard", "extract-text-webpack-plugin", "file-loader", "friendly-errors-webpack-plugin", "html-webpack-plugin", "ideogram", "inject-loader", "karma-phantomjs-launcher", "karma-phantomjs-shim", "karma-sinon-chai", "karma-sourcemap-loader", "karma-spec-reporter", "node-notifier", "optimize-css-assets-webpack-plugin", "ora", "phantomjs-prebuilt", "portfinder", "postcss-import", "postcss-loader", "rimraf", "semver", "shelljs", "sinon", "sinon-chai", "uglifyjs-webpack-plugin", "url-loader", "vue", "vue-loader", "vue-router", "vue-style-loader", "vue-template-compiler", "webpack-bundle-analyzer", "webpack-merge", "abab", "acorn-globals", "address", "anser", "ansi-align", "aria-query", "array-equal", "array-filter", "array-map", "array-reduce", "asap", "ast-types-flow", "axobject-query", "babel-helper-builder-react-jsx", "babel-jest", "babel-plugin-jest-hoist", "babel-plugin-syntax-flow", "babel-plugin-transform-flow-strip-types", "babel-plugin-transform-react-constant-elements", "babel-plugin-transform-react-display-name", "babel-plugin-transform-react-jsx", "babel-plugin-transform-react-jsx-self", "babel-plugin-transform-react-jsx-source", "babel-preset-flow", "babel-preset-jest", "babel-preset-react", "babel-preset-react-app", "boxen", "browser-resolve", "bser", "capture-stack-trace", "case-sensitive-paths-webpack-plugin", "cli-boxes", "configstore", "content-type-parser", "create-error-class", "cssom", "cssstyle", "damerau-levenshtein", "react", "react-dom", "react-scripts", "@angular-devkit/build-optimizer", "@angular-devkit/core", "@angular-devkit/schematics", "@angular/animations", "@angular/cli", "@angular/common", "@angular/compiler", "@angular/compiler-cli", "@angular/core", "@angular/forms", "@angular/http", "@angular/language-service", "@angular/platform-browser", "@angular/platform-browser-dynamic", "@angular/router", "@angular/tsc-wrapped", "@ngtools/json-schema", "@ngtools/webpack", "@schematics/angular", "@schematics/schematics", "@types/jasmine", "@types/jasminewd2", "@types/q", "@types/selenium-webdriver", "adm-zip", "agent-base", "app-root-path", "are-we-there-yet", "async-foreach", "block-stream", "blocking-proxy", "charenc", "circular-dependency-plugin", "codelyzer", "common-tags", "console-control-strings", "core-object", "crypt", "css-parse", "cssauron", "cuint", "debug", "decamelize", "deep-equal", "default-require-extensions", "define-properties", "defined", "del", "delayed-stream", "delegates", "denodeify", "depd", "des.js", "destroy", "detect-indent", "detect-node", "di", "diff", "diffie-hellman", "dir-glob", "dns-equal", "dns-packet", "dns-txt", "dom-converter", "dom-serialize", "dom-serializer", "domain-browser", "domelementtype", "domhandler", "domutils", "duplexify", "ecc-jsbn", "ee-first", "ejs", "electron-releases", "electron-to-chromium", "elliptic", "ember-cli-string-utils", "emojis-list", "jasmine-core", "jasmine-spec-reporter", "karma-cli", "karma-jasmine", "karma-jasmine-html-reporter", "protractor", "rxjs", "ts-node", "tslint", "typescript", "zone.js"], "https://github.com/rinde/vanLon17-GPEM-code": ["ch.qos.logback:logback-classic", "com.github.rinde:datgen", "com.github.rinde:evo4mas", "com.github.rinde:rinecj", "com.github.rinde:rinlog", "com.github.rinde:rinsim-scenario-util", "com.google.auto.value:auto-value", "com.google.code.findbugs:jsr305", "com.google.guava:guava", "com.mycila:license-maven-plugin"], "https://github.com/NESCent/dplace": ["codecov", "istanbul", "jasmine-core", "jasmine-node", "karma", "karma-coverage", "karma-jasmine", "karma-phantomjs-launcher", "phantomjs-prebuilt", "attrs", "clldutils", "coverage", "django", "django-appconf", "django-bootstrap3", "django-filter", "djangorestframework", "ete3", "flake8", "newick", "psycopg2", "python-nexus", "six"], "https://github.com/kkmann/optimal-binary-two-stage-designs": ["snakemake"], "https://github.com/pyoceans/python-oceans": ["black", "cartopy", "check-manifest", "doctr", "flake8", "flake8-builtins", "flake8-comprehensions", "flake8-mutable", "iris", "isort", "nbsphinx", "netcdf4", "pandas", "pylint", "pytest", "pytest-cov", "pytest-flake8", "pytest-xdist", "scipy", "sphinx", "twine", "gsw", "matplotlib", "numpy", "seawater"], "https://github.com/DiamondLightSource/Opt-ID": ["coverage", "h5py", "jinja2", "mock", "mpi4py", "nbconvert", "nbformat", "numpy", "pytest", "pytest-cov", "ruamel-yaml", "scipy"], "https://github.com/salvadorgarciamunoz/kipet": ["appdirs", "backports-functools-lru-cache", "casadi", "coverage", "cycler", "decorator", "kiwisolver", "matplotlib", "networkx", "nose", "numpy", "pandas", "ply", "pyomo", "pyparsing", "python-dateutil", "pytz", "pyutilib", "scipy", "six"], "https://github.com/JasperHG90/sleepsimR-api": ["numpy", "pandas", "scipy"], "https://github.com/njsmith/zs": ["cython", "docopt", "ipython", "requests", "six", "sphinxcontrib-programoutput"], "https://github.com/cicirello/JavaPermutationTools": ["junit:junit", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin"], "https://github.com/AndrewAnnex/SpiceyPy": ["codecov", "coverage", "numpy", "pandas", "pytest", "setuptools", "sphinx", "sphinx-autodoc-typehints", "sphinx-copybutton"], "https://github.com/CESNET/perun-mitreid": ["org.mitre:openid-connect-parent", "ch.qos.logback:logback-classic", "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", "jakarta.servlet:jakarta.servlet-api", "jakarta.xml.bind:jakarta.xml.bind-api", "javax.annotation:javax.annotation-api", "javax.servlet:jstl", "javax.servlet:servlet-api", "net.javacrumbs.shedlock:shedlock-provider-jdbc-template", "net.javacrumbs.shedlock:shedlock-spring", "org.apache.commons:commons-lang3", "org.apache.directory.api:api-all", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-war-plugin", "org.aspectj:aspectjweaver", "org.codehaus.janino:janino", "org.glassfish.jaxb:jaxb-runtime", "org.mariadb.jdbc:mariadb-java-client", "org.mitre:openid-connect-common", "org.mitre:openid-connect-server", "org.mitre:openid-connect-server-webapp", "org.slf4j:jul-to-slf4j", "org.springframework:spring-aop"], "https://github.com/choderalab/itctools": ["coverage", "matplotlib", "mock", "nose", "numpy", "openpyxl", "pip", "seaborn", "setuptools", "behave", "pint", "python-coveralls", "rednose"], "https://github.com/vpasumarthi/PyCD": ["astroid", "backcall", "certifi", "cycler", "decorator", "ipython", "ipython-genutils", "isort", "jedi", "kiwisolver", "lazy-object-proxy", "line-profiler", "mccabe", "numpy", "parso", "pexpect", "pickleshare", "pprofile", "prompt-toolkit", "ptyprocess", "pygments", "pylint", "pyparsing", "pytest-cov", "python-dateutil", "pytz", "pyyaml", "scipy", "simplegeneric", "six", "traitlets", "wcwidth", "wrapt", "matplotlib"], "https://github.com/jiemakel/seco-hfst": ["com.carrotsearch:hppc", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-gpg-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-source-plugin", "org.sonatype.plugins:nexus-staging-maven-plugin"], "https://github.com/digitallinguistics/spec": ["@babel/code-frame", "@babel/generator", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-split-export-declaration", "@babel/highlight", "@babel/parser", "@babel/template", "@babel/traverse", "@babel/types", "@types/color-name", "acorn", "acorn-jsx", "ajv", "ansi-escapes", "ansi-regex", "ansi-styles", "argparse", "asap", "asn1", "assert-plus", "astral-regex", "asynckit", "aws-sign2", "aws4", "azure-storage", "babel-eslint", "balanced-match", "bcrypt-pbkdf", "brace-expansion", "browserify-mime", "callsites", "caseless", "chalk", "chardet", "cli-cursor", "cli-spinners", "cli-width", "clone", "color-convert", "color-name", "combined-stream", "commander", "concat-map", "core-util-is", "cross-spawn", "dashdash", "debug", "deep-is", "defaults", "delayed-stream", "doctrine", "ecc-jsbn", "emoji-regex", "entities", "errno", "escape-string-regexp", "eslint", "eslint-scope", "eslint-utils", "eslint-visitor-keys", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", "extend", "external-editor", "extsprintf", "fast-deep-equal", "fast-json-stable-stringify", "fast-levenshtein", "figures", "file-entry-cache", "flat-cache", "flatted", "forever-agent", "form-data", "fs-extra", "fs.realpath", "functional-red-black-tree", "getpass", "glob", "glob-parent", "globals", "graceful-fs", "handlebars", "har-schema", "har-validator", "has-flag", "hash-base", "highlight.js", "http-signature", "iconv-lite", "ietf-language-tag-regex", "ignore", "image-size", "import-fresh", "imurmurhash", "inflight", "inherits", "inquirer", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-promise", "is-typedarray", "isarray", "isexe", "isstream", "jasmine", "jasmine-core", "js-tokens", "js-yaml", "jsbn", "jschemer", "jsesc", "json-edm-parser", "json-schema", "json-schema-traverse", "json-stable-stringify-without-jsonify", "json-stringify-safe", "jsonfile", "jsonparse", "jsprim", "less", "levn", "linkify-it", "lodash", "log-symbols", "markdown-it", "md5.js", "mdurl", "mime", "mime-db", "mime-types", "mimic-fn", "minimatch", "minimist", "mkdirp", "ms", "mute-stream", "natural-compare", "neo-async", "nice-try", "oauth-sign", "once", "onetime", "optimist", "optionator", "ora", "os-tmpdir", "parent-module", "path-is-absolute", "path-key", "path-parse", "performance-now", "prelude-ls", "process-nextick-args", "progress", "promise", "prr", "psl", "punycode", "qs", "readable-stream", "regexpp", "request", "resolve", "resolve-from", "restore-cursor", "rimraf", "run-async", "rxjs", "safe-buffer", "safer-buffer", "sax", "semver", "semver-regex", "shebang-command", "shebang-regex", "signal-exit", "slice-ansi", "source-map", "sprintf-js", "sshpk", "string-width", "string_decoder", "strip-ansi", "strip-json-comments", "supports-color", "table", "text-table", "through", "tmp", "to-fast-properties", "tough-cookie", "tslib", "tunnel-agent", "tweetnacl", "type-check", "type-fest", "uc.micro", "uglify-js", "underscore", "universalify", "uri-js", "util-deprecate", "uuid", "v8-compile-cache", "validator", "verror", "wcwidth", "which", "word-wrap", "wordwrap", "wrappy", "write", "xml2js", "xmlbuilder", "xregexp", "yamljs"], "https://github.com/philippkraft/cmf": ["numpy"], "https://github.com/fo-am/mongoose-2000": ["NLog", "Dapper", "Npgsql", "System.Threading.Tasks.Extensions"], "https://github.com/snowformatics/macrobot": ["jinja2", "numpy", "opencv-python", "pytest", "scikit-image", "sphinx-autoapi"], "https://github.com/kach/nearley": ["@textlint/ast-node-types", "@textlint/markdown-to-ast", "@types/moo", "@types/node", "anchor-markdown-header", "ansi-regex", "ansi-styles", "anymatch", "aproba", "are-we-there-yet", "arr-diff", "arr-flatten", "arr-union", "array-unique", "assign-symbols", "async-each", "atob", "babel-cli", "babel-code-frame", "babel-core", "babel-generator", "babel-helper-builder-binary-assignment-operator-visitor", "babel-helper-call-delegate", "babel-helper-define-map", "babel-helper-explode-assignable-expression", "babel-helper-function-name", "babel-helper-get-function-arity", "babel-helper-hoist-variables", "babel-helper-optimise-call-expression", "babel-helper-regex", "babel-helper-remap-async-to-generator", "babel-helper-replace-supers", "babel-helpers", "babel-messages", "babel-plugin-check-es2015-constants", "babel-plugin-syntax-async-functions", "babel-plugin-syntax-exponentiation-operator", "babel-plugin-syntax-trailing-function-commas", "babel-plugin-transform-async-to-generator", "babel-plugin-transform-es2015-arrow-functions", "babel-plugin-transform-es2015-block-scoped-functions", "babel-plugin-transform-es2015-block-scoping", "babel-plugin-transform-es2015-classes", "babel-plugin-transform-es2015-computed-properties", "babel-plugin-transform-es2015-destructuring", "babel-plugin-transform-es2015-duplicate-keys", "babel-plugin-transform-es2015-for-of", "babel-plugin-transform-es2015-function-name", "babel-plugin-transform-es2015-literals", "babel-plugin-transform-es2015-modules-amd", "babel-plugin-transform-es2015-modules-commonjs", "babel-plugin-transform-es2015-modules-systemjs", "babel-plugin-transform-es2015-modules-umd", "babel-plugin-transform-es2015-object-super", "babel-plugin-transform-es2015-parameters", "babel-plugin-transform-es2015-shorthand-properties", "babel-plugin-transform-es2015-spread", "babel-plugin-transform-es2015-sticky-regex", "babel-plugin-transform-es2015-template-literals", "babel-plugin-transform-es2015-typeof-symbol", "babel-plugin-transform-es2015-unicode-regex", "babel-plugin-transform-exponentiation-operator", "babel-plugin-transform-regenerator", "babel-plugin-transform-strict-mode", "babel-polyfill", "babel-preset-env", "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", "bail", "balanced-match", "base", "benchmark", "benchr", "binary-extensions", "bindings", "bl", "boundary", "brace-expansion", "braces", "browserslist", "buffer-alloc", "buffer-alloc-unsafe", "buffer-fill", "cache-base", "caniuse-lite", "chalk", "character-entities", "character-entities-legacy", "character-reference-invalid", "chokidar", "chownr", "class-utils", "clone", "code-point-at", "coffee-script", "collapse-white-space", "collection-visit", "commander", "component-emitter", "concat-map", "console-control-strings", "convert-source-map", "copy-descriptor", "core-js", "core-util-is", "debug", "decode-uri-component", "decompress-response", "deep-extend", "defaults", "define-properties", "define-property", "delegates", "detect-indent", "detect-libc", "diff", "discontinuous-range", "docopt", "doctoc", "dom-serializer", "domelementtype", "domhandler", "domutils", "easy-table", "electron-to-chromium", "emoji-regex", "end-of-stream", "entities", "es-abstract", "es-to-primitive", "escape-string-regexp", "esutils", "expand-brackets", "expand-range", "expand-template", "expect", "extend", "extend-shallow", "extglob", "fault", "filename-regex", "fill-range", "for-in", "for-own", "format", "fragment-cache", "fs-constants", "fs-readdir-recursive", "fs.realpath", "fsevents", "function-bind", "gauge", "get-value", "github-from-package", "glob", "glob-base", "glob-parent", "globals", "graceful-fs", "growl", "has", "has-ansi", "has-symbols", "has-unicode", "has-value", "has-values", "home-or-tmp", "htmlparser2", "inflight", "inherits", "ini", "invariant", "is-accessor-descriptor", "is-alphabetical", "is-alphanumerical", "is-arrow-function", "is-binary-path", "is-boolean-object", "is-buffer", "is-callable", "is-data-descriptor", "is-date-object", "is-decimal", "is-descriptor", "is-dotfile", "is-equal", "is-equal-shallow", "is-extendable", "is-extglob", "is-finite", "is-fullwidth-code-point", "is-generator-function", "is-glob", "is-hexadecimal", "is-number", "is-number-object", "is-plain-obj", "is-plain-object", "is-posix-bracket", "is-primitive", "is-regex", "is-string", "is-symbol", "is-whitespace-character", "is-windows", "is-word-character", "isarray", "isobject", "jade", "js-tokens", "jsesc", "json5", "kind-of", "lodash", "loose-envify", "lru-cache", "map-cache", "map-visit", "markdown-escapes", "math-random", "micromatch", "microtime", "mimic-response", "minimatch", "minimist", "mixin-deep", "mkdirp", "mocha", "moo", "ms", "nan", "nanomatch", "node-abi", "noop-logger", "normalize-path", "npmlog", "number-is-nan", "object-assign", "object-copy", "object-inspect", "object-keys", "object-visit", "object.entries", "object.omit", "object.pick", "once", "railroad-diagrams", "randexp", "semver", "typescript", "absolute", "align-text", "amdefine", "ansi-red", "ansi-wrap", "argparse", "array-differ", "array-union", "array-uniq", "arrify", "async", "bluebird", "camelcase", "center-align", "cheerio", "cliui", "co", "co-from-stream", "co-fs-extra", "co-read", "colors", "consolidate", "corser", "CSSselect", "CSSwhat", "decamelize", "ecstatic", "enable", "esprima", "eventemitter3", "fs-extra", "gray-matter", "handlebars", "has-generators", "he", "http-proxy", "http-server", "is", "is-utf8", "js-yaml", "jsonfile", "klaw", "lazy-cache", "lodash.omit", "longest", "marked", "metalsmith", "metalsmith-headings", "metalsmith-layouts", "metalsmith-markdown", "metalsmith-paths", "mime", "multimatch", "opener", "optimist", "path-is-absolute", "portfinder", "qs", "readable-stream", "recursive-readdir", "repeat-string", "requires-port", "right-align", "rimraf", "source-map", "sprintf-js", "stat-mode", "string_decoder", "strip-ansi", "supports-color", "thunkify", "thunkify-wrap", "toml", "uglify-js", "uglify-to-browserify", "union", "unyield", "url-join", "ware", "win-fork", "window-size", "wordwrap", "wrap-fn", "wrappy", "yargs"], "https://github.com/direwolf/direwolf-app": ["@appnest/masonry-layout", "@babel/code-frame", "@babel/compat-data", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-compilation-targets", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-nullish-coalescing-operator", "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-import-meta", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-nullish-coalescing-operator", "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-env", "@babel/preset-modules", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@hapi/address", "@hapi/bourne", "@hapi/hoek", "@hapi/joi", "@hapi/topo", "@import-maps/resolve", "@koa/cors", "@material/animation", "@material/base", "@material/button", "@material/density", "@material/dialog", "@material/dom", "@material/elevation", "@material/feature-targeting", "@material/icon-button", "@material/mwc-base", "@material/mwc-button", "@material/mwc-dialog", "@material/mwc-icon", "@material/mwc-icon-button", "@material/mwc-ripple", "@material/mwc-tab", "@material/mwc-tab-bar", "@material/mwc-tab-indicator", "@material/mwc-tab-scroller", "@material/mwc-top-app-bar", "@material/mwc-top-app-bar-fixed", "@material/ripple", "@material/rtl", "@material/shape", "@material/tab", "@material/tab-bar", "@material/tab-indicator", "@material/tab-scroller", "@material/theme", "@material/top-app-bar", "@material/touch-target", "@material/typography", "@open-wc/building-rollup", "@open-wc/building-utils", "@rollup/plugin-node-resolve", "@rollup/pluginutils", "@svgdotjs/svg.js", "@types/accepts", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/body-parser", "@types/browserslist", "@types/browserslist-useragent", "@types/caniuse-api", "@types/command-line-args", "@types/command-line-usage", "@types/connect", "@types/content-disposition", "@types/cookies", "@types/debounce", "@types/estree", "@types/etag", "@types/express", "@types/express-serve-static-core", "@types/http-assert", "@types/keygrip", "@types/koa", "@types/koa-compose", "@types/koa-compress", "@types/koa-etag", "@types/koa-send", "@types/koa-static", "@types/koa__cors", "@types/lru-cache", "@types/mime", "@types/minimatch", "@types/node", "@types/path-is-inside", "@types/qs", "@types/range-parser", "@types/resolve", "@types/serve-static", "@types/whatwg-url", "@webcomponents/shadycss", "@webcomponents/webcomponentsjs", "abortcontroller-polyfill", "abstract-leveldown", "accepts", "acorn", "ansi-regex", "ansi-styles", "any-promise", "anymatch", "array-back", "arrify", "async", "async-limiter", "babel-extract-comments", "babel-plugin-bundled-import-meta", "babel-plugin-dynamic-import-node", "babel-plugin-syntax-object-rest-spread", "babel-plugin-template-html-minifier", "babel-plugin-transform-commonjs", "babel-plugin-transform-object-rest-spread", "babel-runtime", "babylon", "balanced-match", "base64-js", "binary-extensions", "blocking-elements", "brace-expansion", "braces", "browser-nativefs", "browserslist", "browserslist-useragent", "buffer", "buffer-from", "builtin-modules", "bytes", "cache-content-type", "camel-case", "camelcase", "caniuse-api", "caniuse-lite", "chalk", "charenc", "chokidar", "clean-css", "clone", "co", "color-convert", "color-name", "command-line-args", "command-line-usage", "commander", "common-tags", "compressible", "concat-map", "content-disposition", "content-type", "convert-source-map", "cookies", "core-js", "core-js-bundle", "core-js-compat", "crypt", "debounce", "debug", "deep-equal", "deep-extend", "deepmerge", "deferred-leveldown", "define-properties", "delegates", "depd", "destroy", "direwolf-elements", "direwolf-ifml-elements", "direwolf-istar-elements", "direwolf-modeler", "dynamic-import-polyfill", "ee-first", "electron-to-chromium", "encodeurl", "encoding-down", "es-dev-commonjs-transformer", "es-dev-server", "es-module-lexer", "lit-element", "lit-element-router", "lit-html", "reqbaz-components", "rimraf", "rollup", "rollup-plugin-commonjs"], "https://github.com/infraling/atomic": ["ch.raffael.pegdown-doclet:maven-javadoc-plugin", "org.apache.maven.plugins:maven-jarsigner-plugin", "org.eclipse.tycho:target-platform-configuration", "org.eclipse.tycho:tycho-maven-plugin", "org.eclipse.tycho:tycho-versions-plugin", "com.agilejava.docbkx:docbkx-maven-plugin", "net.sf.docbook:docbook-xml", "net.sf.offo:fop-hyph", "net.sf.xslthl:xslthl", "org.asciidoctor:asciidoctor-maven-plugin", "org.eclipse.tycho:tycho-p2-director-plugin", "org.apache.maven.plugins:maven-scm-publish-plugin", "org.apache.maven.plugins:maven-site-plugin", "org.codehaus.mojo:exec-maven-plugin", "org.eclipse.tycho:tycho-surefire-plugin", "org.antlr:antlr4-maven-plugin", "org.eclipse.rcptt:rcptt-maven-plugin", "junit:junit", "org.apache.commons:commons-lang3", "org.apache.felix:maven-bundle-plugin", "org.apache.felix:org.apache.felix.framework", "org.apache.maven.plugins:maven-changes-plugin", "org.apache.maven.plugins:maven-checkstyle-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-jxr-plugin", "org.apache.maven.plugins:maven-pmd-plugin", "org.apache.maven.plugins:maven-remote-resources-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.maven:maven-core", "org.codehaus.mojo:clirr-maven-plugin", "org.codehaus.mojo:findbugs-maven-plugin", "org.eclipse.osgi:org.eclipse.osgi", "org.osgi:org.osgi.core", "ch.qos.logback:logback-classic", "ch.qos.logback:logback-core", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.fasterxml.jackson.dataformat:jackson-dataformat-xml", "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", "com.h2database:h2", "com.lmax:disruptor", "com.sun.mail:javax.mail", "commons-codec:commons-codec", "commons-io:commons-io", "commons-logging:commons-logging", "javax.jmdns:jmdns", "log4j:log4j", "net.javacrumbs.json-unit:json-unit", "org.apache.activemq:activemq-broker", "org.apache.logging.log4j:log4j-api", "org.apache.maven.plugins:maven-failsafe-plugin", "org.codehaus.woodstox:woodstox-core-asl", "org.easymock:easymock", "org.eclipse.persistence:javax.persistence", "org.eclipse.persistence:org.eclipse.persistence.jpa", "org.fusesource.jansi:jansi", "org.hamcrest:hamcrest-all", "org.hsqldb:hsqldb", "org.jboss.spec.javax.jms:jboss-jms-api_1.1_spec", "org.mockejb:mockejb", "org.slf4j:slf4j-api", "org.slf4j:slf4j-ext"], "https://github.com/samapriya/plantpy": ["beautifulsoup4", "pandas", "rapidfuzz", "requests", "geopandas", "shapely"], "https://github.com/KatyBrown/CIAlign": ["configargparse", "matplotlib", "numpy", "pillow"], "https://github.com/iteal/wormpose": ["h5py", "numpy", "opencv-python", "scipy", "tensorflow", "black", "coverage", "pre-commit", "pytest", "sphinx", "sphinx-rtd-theme"], "https://github.com/felixriese/susi": ["codecov", "coverage", "joblib", "matplotlib", "nbval", "notebook", "numpy", "numpydoc", "pandas", "pytest", "pytest-cov", "scikit-learn", "scipy", "seaborn", "sphinx", "sphinx-autobuild", "sphinx-rtd-theme", "tqdm"], "https://github.com/proycon/codemetapy": ["importlib-metadata", "nameparser"], "https://github.com/eblur/dust": ["astropy", "numpy", "scipy"], "https://github.com/BioMoDeL/aesop": ["matplotlib", "numpy", "numpydoc", "plotly", "scipy", "sphinx-rtd-theme"], "https://github.com/bashtage/randomgen": ["pytest", "pytest-cov", "cython", "numpy", "setuptools", "wheel", "ipython", "nbsphinx", "numba", "sphinx", "sphinx-material"], "https://github.com/UT-CHG/BET": ["matplotlib", "numpy", "pydoe", "pytest", "scipy", "mpi4py"], "https://github.com/bids-standard/bids-validator": ["@babel/core", "@babel/preset-env", "jest", "jest-environment-node", "lerna", "@babel/code-frame", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", "@babel/helper-builder-react-jsx", "@babel/helper-call-delegate", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-json-strings", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-top-level-await", "@babel/plugin-transform-arrow-functions", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", "@babel/plugin-transform-for-of", "@babel/plugin-transform-function-name", "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", "@babel/plugin-transform-react-display-name", "@babel/plugin-transform-react-jsx", "@babel/plugin-transform-react-jsx-self", "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", "@babel/plugin-transform-unicode-regex", "@babel/preset-react", "@babel/runtime", "@babel/runtime-corejs2", "@babel/template", "@babel/traverse", "@babel/types", "@cnakazawa/watch", "@evocateur/libnpmaccess", "@evocateur/libnpmpublish", "@evocateur/npm-registry-fetch", "@evocateur/pacote", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", "@lerna/add", "@lerna/batch-packages", "@lerna/bootstrap", "@lerna/changed", "@lerna/check-working-tree", "@lerna/child-process", "@lerna/clean", "@lerna/cli", "@lerna/collect-uncommitted", "@lerna/collect-updates", "@lerna/command", "@lerna/conventional-commits", "@lerna/create", "@lerna/create-symlink", "@lerna/describe-ref", "@lerna/diff", "@lerna/exec", "@lerna/filter-options", "@lerna/filter-packages", "@lerna/get-npm-exec-opts", "@lerna/get-packed", "@lerna/github-client", "@lerna/gitlab-client", "@lerna/global-options", "@lerna/has-npm-version", "@lerna/import", "@lerna/init", "@lerna/link", "@lerna/list", "@lerna/listable", "@lerna/log-packed", "@lerna/npm-conf", "@lerna/npm-dist-tag", "@lerna/npm-install", "@lerna/npm-publish", "@lerna/npm-run-script", "@lerna/otplease", "@lerna/output", "@lerna/pack-directory", "@lerna/package", "@lerna/package-graph", "@lerna/prerelease-id-from-version", "@lerna/project", "@lerna/prompt", "@lerna/publish", "@lerna/pulse-till-done", "@lerna/query-graph", "@lerna/resolve-symlink", "@lerna/rimraf-dir", "@lerna/run", "@lerna/run-lifecycle", "@lerna/run-parallel-batches", "@lerna/run-topologically", "@lerna/symlink-binary", "@lerna/symlink-dependencies", "@lerna/timer", "@lerna/validation-error", "@lerna/version", "@lerna/write-log-file", "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", "@octokit/endpoint", "@octokit/plugin-enterprise-rest", "@octokit/request", "@octokit/request-error", "@octokit/rest", "@react-bootstrap/react-popper", "@restart/context", "@restart/hooks", "@tootallnate/once", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/concat-stream", "@types/form-data", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/node", "@types/qs", "@types/stack-utils", "@types/yargs", "@types/yargs-parser", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", "@webassemblyjs/helper-api-error", "@webassemblyjs/helper-buffer", "@webassemblyjs/helper-code-frame", "@webassemblyjs/helper-fsm", "@webassemblyjs/helper-module-context", "@webassemblyjs/helper-wasm-bytecode", "@webassemblyjs/helper-wasm-section", "@webassemblyjs/ieee754", "@webassemblyjs/leb128", "@webassemblyjs/utf8", "@webassemblyjs/wasm-edit", "@webassemblyjs/wasm-gen", "@webassemblyjs/wasm-opt", "@webassemblyjs/wasm-parser", "@webassemblyjs/wast-parser", "@webassemblyjs/wast-printer", "@xtuc/ieee754", "@xtuc/long", "@zeit/next-css", "@zeit/next-sass", "abab", "abbrev", "acorn", "acorn-dynamic-import", "acorn-globals", "acorn-jsx", "acorn-walk", "adm-zip", "agent-base", "agentkeepalive", "ajv", "ajv-errors", "ajv-keywords", "amdefine", "amp-toolbox-core", "amp-toolbox-optimizer", "amp-toolbox-runtime-version", "amphtml-validator", "ansi", "ansi-colors", "ansi-escapes", "ansi-html", "ansi-regex", "ansi-styles", "anymatch", "aproba", "are-we-there-yet", "argparse", "argv", "arr-diff", "arr-flatten", "arr-union", "array-differ", "array-equal", "array-filter", "array-find-index", "array-ify", "array-map", "array-reduce", "array-union", "array-uniq", "array-unique", "arrify", "asap", "aws-sdk", "bytes", "chai", "codecov", "colors", "cross-fetch", "date-fns", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "esm", "hed-validator", "husky", "ignore", "is-utf8", "jshint", "lockfile", "minimatch", "nifti-js", "npm-cli-login", "p-limit", "pako", "path", "pluralize", "prettier", "pretty-quick", "semver", "sync-request", "table", "yargs", "bootstrap", "bowser", "next", "next-transpile-modules", "node-sass", "react", "react-bootstrap", "react-dom"], "https://github.com/concepticon/pynorare": ["attrs", "cldfcatalog", "clldutils", "csvw", "pyconcepticon", "tqdm", "uritemplate", "xlrd"], "https://github.com/nipy/PySurfer": ["matplotlib", "mayavi", "nibabel", "numpy", "scipy"], "https://github.com/jeffreyruffolo/lamprey_rs_neuron_parameter_exploration": ["argparse", "cython", "deap", "matplotlib", "numpy", "scipy"], "https://github.com/harnesscloud/irm-nova": ["bottle", "requests"], "https://github.com/obachem/kmc2": ["nose", "numpy", "scikit-learn", "scipy"], "https://github.com/biowdl/gatk-preprocess": ["cromwell", "miniwdl", "pysam", "pytest-workflow", "wdl-aid"], "https://github.com/beOn/cili": ["numexpr", "numpy", "pandas-0-13-1", "scipy", "tables", "pandas"], "https://github.com/trendscenter/coinstac": ["babel-eslint", "concurrently", "cross-spawn", "eslint", "eslint-config-airbnb", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "fs-extra", "gh-pages", "github-markdown-css", "jsdoc", "lerna", "marked", "minami", "minimist", "pre-commit", "@material-ui/core", "@material-ui/icons", "@material-ui/styles", "add-graphql-subscriptions", "app-module-path", "archiver", "async", "axios", "babel-cli", "babel-core", "babel-loader", "babel-polyfill", "babel-preset-es2015", "babel-preset-react", "babel-preset-stage-0", "babel-register", "bitap", "bootstrap-sass", "chai", "chai-as-promised", "clarify", "classnames", "cloudinary", "cloudinary-react", "coinstac-client-core", "coinstac-common", "coinstac-docker-manager", "coinstac-graphql-schema", "coinstac-pipeline", "commander", "convict", "create-react-class", "cross-env", "css-loader", "d3", "deep-equal", "deep-parse-json", "devtron", "dexie", "dotenv", "electron", "electron-debug", "electron-default-menu", "electron-packager", "electron-store", "file-loader", "html-loader", "immutability-helper", "ipc-promise", "istanbul", "javascript-natural-sort", "jspdf", "lodash", "md5", "memoize-one", "mkdirp", "mocha", "mockery", "moment", "ncp", "node-sass", "notistack", "nyc", "prop-types", "rasterizehtml", "react", "react-apollo", "react-avatar", "react-bootstrap", "react-bootstrap-typeahead", "react-dnd", "react-dnd-html5-backend", "react-dom", "react-dragula", "react-dropzone", "react-faux-dom", "react-hot-loader", "react-material-ui-form-validator", "react-number-format", "react-redux", "react-router", "react-router-bootstrap", "react-router-redux", "react-select", "read-last-lines", "redux", "redux-devtools", "redux-form", "redux-logger", "redux-persist", "redux-persist-electron-storage", "redux-promise", "redux-thunk", "rimraf", "sass-loader", "scino", "serialize-error", "sha-1", "shortid", "sinon", "spectron", "stack-chain", "style-loader", "subscriptions-transport-ws", "tail", "tape", "trace", "url-loader", "webpack", "webpack-cli", "webpack-dev-server", "winston", "hoek", "isemail", "items", "joi", "topo", "accept", "ammo", "b64", "boom", "bourne", "call", "catbox", "catbox-memory", "content", "cryptiles", "debug", "follow-redirects", "hapi", "heavy", "iron", "is-buffer", "mime-db", "mimos", "ms", "nigel", "pez", "podium", "punycode", "shot", "somever", "statehood", "subtext", "vise", "wreck", "@ava/babel-plugin-throws-helper", "@ava/babel-preset-stage-4", "@ava/babel-preset-transform-test-files", "@babel/code-frame", "@babel/core", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-create-regexp-features-plugin", "@babel/helper-function-name", "@babel/helper-get-function-arity", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", "@babel/helper-regex", "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-dynamic-import", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-modules-commonjs", "@babel/template", "@babel/traverse", "@babel/types", "@concordance/react", "@dabh/diagnostics", "@nodelib/fs.scandir", "@nodelib/fs.stat", "@nodelib/fs.walk", "@sindresorhus/is", "@szmarczak/http-timer", "@types/color-name", "@types/glob", "@types/minimatch", "@types/node", "accepts", "ansi-align", "ansi-escapes", "ansi-regex", "ansi-styles", "anymatch", "append-field", "append-type", "archiver-utils", "argparse", "arr-flatten", "array-find-index", "array-flatten", "array-to-sentence", "array-union", "array-uniq", "arrify", "assert-valid-glob-opts", "astral-regex", "asynckit", "ava", "babel-plugin-dynamic-import-node", "babel-plugin-espower", "balanced-match", "base64-js", "binary-extensions", "bl", "bluebird", "blueimp-md5", "body-parser", "boxen", "brace-expansion", "braces", "buffer", "buffer-alloc", "buffer-alloc-unsafe", "buffer-crc32", "buffer-fill", "buffer-from", "busboy", "bytes", "cacheable-request", "call-matcher", "call-signature", "callback-stream", "camelcase", "camelcase-keys", "chalk", "chokidar", "chownr", "chunkd", "ci-info", "ci-parallel-vars", "clean-stack", "clean-yaml-object", "cli-boxes", "cli-cursor", "cli-spinners", "cli-truncate", "clone", "clone-response", "code-excerpt", "color", "color-convert", "color-name", "color-string", "colors", "colorspace", "combined-stream", "commist", "common-path-prefix", "compress-commons", "concat-map", "concat-stream", "concordance", "configstore", "content-disposition", "content-type", "convert-source-map", "convert-to-spaces", "cookie", "cookie-signature", "core-js", "core-util-is", "crc", "crc32-stream", "crypto-random-string", "currently-unhandled", "d", "date-time", "decamelize", "decamelize-keys", "decompress", "decompress-response", "decompress-tar", "decompress-tarbz2", "decompress-targz", "decompress-unzip", "deep-extend", "defaults", "defer-to-connect", "define-properties", "del", "delayed-stream", "depd", "destroy", "dicer", "dir-glob", "docker-modem", "dockerode", "dot-prop", "duplexer3", "duplexify", "ee-first", "emittery", "emoji-regex", "empower-core", "enabled", "encodeurl", "end-of-stream", "equal-length", "error-ex", "es-abstract", "es-to-primitive", "es5-ext", "es6-error", "es6-iterator", "es6-map", "es6-set", "es6-symbol", "escape-html", "escape-string-regexp", "esm", "espower-location-detector", "esprima", "espurify", "estraverse", "esutils", "etag", "event-emitter", "execa", "express", "ext", "extend", "fast-diff", "fast-glob", "fast-safe-stringify", "fastq", "fd-slicer", "fecha", "figures", "file-type", "fill-range", "finalhandler", "find-up", "fn.name", "form-data", "forwarded", "fresh", "fs-constants", "fs.realpath", "fsevents", "function-bind", "gensync", "get-port", "get-stream", "glob", "glob-option-error", "glob-parent", "glob-stream", "global-dirs", "globals", "globby", "got", "graceful-fs", "has", "has-flag", "has-symbols", "has-yarn", "hasha", "help-me", "hosted-git-info", "http-cache-semantics", "http-errors", "iconv-lite", "ieee754", "ignore", "ignore-by-default", "import-lazy", "import-local", "imurmurhash", "indent-string", "indexed-filter", "inflight", "inherits", "ini", "merge2", "mqtt", "multer", "rmfr", "sse.js", "tar-fs", "uuid", "abbrev", "abstract-leveldown", "acorn", "aedes", "aedes-packet", "aedes-persistence", "after", "ajv", "amqp", "amqplib", "ansi", "ansi-term", "ansicolors", "ansistyles", "aproba", "are-we-there-yet", "array-from", "array-index", "ascoltatori", "asn1", "assert-plus", "async-cache", "aws-sign2", "aws4", "bcrypt-pbkdf", "binary", "bindings", "bitsyntax", "blessed", "blessed-contrib", "block-stream", "bresenham", "brfs", "bson", "buffer-equal", "buffer-more-ints", "buffermaker", "buffers", "bulk-write-stream", "bytewise", "bytewise-core", "cardinal", "caseless", "chainsaw", "chardet", "charm", "cli-table", "cli-width", "cluster-key-slot", "code-point-at", "console-control-strings", "dashdash", "deep-is", "deepcopy", "deferred-leveldown", "delegates", "double-ended-queue", "drawille-blessed-contrib", "drawille-canvas-blessed-contrib", "duplexer2", "ecc-jsbn", "errno", "es6-promise", "escodegen", "event-lite", "event-stream", "eventemitter2", "execspawn", "exit-hook", "expand-template", "external-editor", "extsprintf", "falafel", "fast-deep-equal", "fast-future", "fast-json-parse", "fast-json-stable-stringify", "fast-levenshtein", "fastfall", "fastparallel", "fastseries", "fd", "flatstr", "flexbuffer", "foreach", "forever-agent", "from2", "fs-ext", "fstream", "functional-red-black-tree", "gauge", "getpass", "ghreleases", "ghrepos", "ghutils", "github-from-package", "gl-matrix", "graceful-readlink", "har-schema", "har-validator", "has-ansi", "has-color", "has-unicode", "here", "hermit", "http-signature", "hyperquest", "inquirer", "int64-buffer", "ioredis", "is-absolute", "is-arrayish", "is-extglob", "is-fullwidth-code-point", "is-glob", "is-negated-glob", "is-relative", "is-stream", "is-typedarray", "is-unc-path", "is-windows", "isarray", "isexe", "isstream", "istanbul-lib-coverage", "istanbul-lib-instrument", "js-tokens", "jsbn", "jsesc", "json-buffer", "json-schema", "json-schema-traverse", "json-stable-stringify-without-jsonify", "json-stringify-safe", "json5", "jsonist", "jsonschema", "jsprim", "kafka-node", "kerberos", "kuler", "level-codec", "level-errors", "level-iterator-stream", "level-post", "level-sublevel", "leveldown", "levelup", "leven", "levn", "lodash.clonedeep", "lodash.pad", "lodash.padend", "lodash.padstart", "lodash.toarray", "logform", "long", "looper", "lru-cache", "mosca", "@sendgrid/client", "@sendgrid/helpers", "@sendgrid/mail", "@types/caseless", "@types/graphql", "@types/request", "@types/tough-cookie", "apollo-cache-control", "apollo-server-core", "apollo-server-hapi-coinstac", "apollo-server-module-graphiql", "apollo-tracing", "async-limiter", "backo2", "base64url", "buffer-equal-constant-time", "deepmerge", "denque", "deprecated-decorator", "ecdsa-sig-formatter", "eventemitter3", "github-api", "graphql", "graphql-extensions", "graphql-subscriptions", "graphql-tools", "graphql-type-json", "hapi-auth-jwt2", "iterall", "js-base64", "jsonwebtoken", "jwa", "jws", "lodash.assign", "lodash.includes", "lodash.isboolean", "lodash.isinteger", "lodash.isnumber", "lodash.isobject", "lodash.isplainobject", "lodash.isstring", "lodash.once", "memory-pager", "mime-types", "mongodb", "oauth-sign", "performance-now", "process-nextick-args", "psl", "qs", "readable-stream", "request", "require_optional", "resolve-from", "safe-buffer", "safer-buffer", "saslprep", "semver", "source-map", "source-map-support", "sparse-bitfield", "sshpk", "string_decoder", "supports-color", "symbol-observable", "tough-cookie", "tunnel-agent", "tweetnacl", "ultron", "uri-js", "utf8", "util-deprecate", "verror", "ws", "xtend", "colornames", "csv-parse", "diagnostics", "env-variable", "one-time", "simple-swizzle", "stack-trace", "text-hex", "triple-beam", "validator", "winston-transport", "yargs-parser", "is-number-like", "jsonparse", "JSONStream", "lodash.isfinite", "once", "portscanner", "pump", "request-stream", "split-ca", "tar-stream", "through", "to-buffer", "typedarray", "util", "wrappy", "@types/normalize-package-data", "acorn-walk", "aggregate-error", "append-transform", "archy", "arraybuffer.slice", "arrgv", "base64-arraybuffer", "base64id", "better-assert", "big-integer", "blob", "buffer-indexof-polyfill", "caching-transform", "callsite", "callsites", "cliui", "commondir", "component-bind", "component-emitter", "component-inherit", "cp-file", "default-require-extensions", "engine.io", "engine.io-client", "engine.io-parser", "escape-goat", "find-cache-dir", "foreground-child", "get-caller-file", "get-stdin", "handlebars", "has-binary2", "has-cors", "indexof", "irregular-plurals", "is-binary-path", "is-ci", "is-error", "is-installed-globally", "is-interactive", "is-npm", "is-number", "is-obj", "is-path-cwd", "is-path-inside", "is-plain-object", "is-promise", "is-yarn-global", "istanbul-lib-hook", "istanbul-lib-report", "istanbul-lib-source-maps", "istanbul-reports", "js-string-escape", "js-yaml", "json-parse-better-errors", "keyv", "latest-version", "lines-and-columns", "listenercount", "load-json-file", "locate-path", "lodash.flattendeep", "log-symbols", "lowercase-keys", "make-dir", "map-age-cleaner", "matcher", "md5-hex", "mem", "merge-source-map", "micromatch", "mimic-fn", "mimic-response", "minimatch", "mute-stream", "negotiator", "neo-async", "nested-error-stacks", "normalize-package-data", "normalize-path", "normalize-url", "object-component", "onetime", "optimist", "ora", "os-homedir", "p-cancelable", "socket.io", "socket.io-client", "socket.io-stream", "unzipper", "tornado"], "https://github.com/kuechenrole/antarctic_melting": ["alabaster", "asn1crypto", "attrs", "awscli", "babel", "backcall", "bathy-smoother", "bleach", "bokeh", "botocore", "bottleneck", "cartopy", "certifi", "cffi", "cftime", "chardet", "click", "cloudpickle", "cmocean", "colorama", "configobj", "coverage", "cryptography", "cryptography-vectors", "cycler", "cytoolz", "dask", "datetime", "decorator", "defusedxml", "distributed", "docutils", "entrypoints", "eofs", "fastai", "flake8", "graphviz", "gsw", "h5py", "heapdict", "html5lib", "idna", "imageio", "imagesize", "ipykernel", "ipython", "ipython-genutils", "ipywidgets", "jedi", "jinja2", "jmespath", "joblib", "jsonschema", "jupyter", "jupyter-client", "jupyter-console", "jupyter-contrib-core", "jupyter-contrib-nbextensions", "jupyter-core", "jupyter-highlight-selected-word", "jupyter-latex-envs", "jupyter-nbextensions-configurator", "kiwisolver", "llvmlite", "locket", "lxml", "markupsafe", "matplotlib", "matplotlib-scalebar", "mccabe", "mistune", "mkl-fft", "mkl-random", "mkl-service", "msgpack", "nbconvert", "nbformat", "netcdf4", "networkx", "notebook", "numba", "numpy", "olefile", "owslib", "packaging", "pandas", "pandocfilters", "parso", "partd", "patsy", "pexpect", "pickleshare", "pillow", "prometheus-client", "prompt-toolkit", "psutil", "ptyprocess", "pyasn1", "pycodestyle", "pycparser", "pyepsg", "pyflakes", "pygments", "pykdtree", "pyopenssl", "pyparsing", "pyproj", "pyresample", "pyrsistent", "pyshp", "pysocks", "python-dateutil", "python-dotenv", "pytils", "pytz", "pywavelets", "pyyaml", "pyzmq", "qtconsole", "requests", "rsa", "s3transfer", "scikit-image", "scikit-learn", "scipy", "seaborn", "send2trash", "shapely", "simplegeneric", "six", "snowballstemmer", "sortedcontainers", "sphinx", "sphinxcontrib-websupport", "statsmodels", "tblib", "terminado", "testpath", "tools", "toolz", "tornado", "traitlets", "ttide", "urllib3", "wcwidth", "webencodings", "widgetsnbextension", "xarray", "zict", "zope-interface"], "https://github.com/saketkc/moca": ["biopython", "click", "click-help-colors", "coverage", "future", "matplotlib", "numpy", "pandas", "pybedtools", "pybigwig", "pytest", "pytest-cov", "pytest-mpl", "scipy", "seaborn", "six", "statsmodels", "tqdm"], "https://github.com/PBR/MQ2": ["straight-plugin", "xlrd"], "https://github.com/ijpb/MorphoLibJ": ["gov.nist.math:jama", "junit:junit", "net.imagej:ij"], "https://github.com/tesera/pygypsy": ["cython", "numpy", "boto", "boto3", "click", "colorlog", "jsonschema", "matplotlib", "pandas"], "https://github.com/ml-evs/ilustrado": ["sphinx", "sphinx-argparse", "sphinx-rtd-theme", "sphinxcontrib-napoleon", "matplotlib", "seaborn", "matador-db", "numpy", "periodictable", "scikit-learn", "scipy", "ase", "codecov", "coverage", "pytest", "pytest-cov", "ajm-group-voronoi-code"], "https://github.com/DeepRank/iScore": ["biopython", "h5py", "h5xplorer", "libsvm", "matplotlib", "mpi4py", "numpy", "pdb2sql", "pssmgen", "scipy"], "https://github.com/fastscape-lem/fastscape": ["xarray-simlab"], "https://github.com/yogo/sapphire": ["data_mapper", "devise", "dm-devise", "dm-is-nested_set", "dm-pager", "dm-rails", "haml", "hpricot", "jquery-rails", "rails", "ruby-debug19", "rubyzip", "ruby_parser", "rvm-capistrano", "sass", "sqlite3", "tilt", "turn", "uglifier", "yogo-datamapper", "yogo-framework", "yogo-operation", "yogo-support", "abstract", "actionmailer", "actionpack", "activemodel", "activerecord", "activeresource", "activesupport", "addressable", "ansi", "archive-tar-minitar", "arel", "bcrypt-ruby", "builder", "capistrano", "carrierwave", "carrierwave-datamapper", "columnize", "configatron", "dataflow", "data_objects", "dm-active_model", "dm-adjust", "dm-aggregates", "dm-constraints", "dm-core", "dm-do-adapter", "dm-is-list", "dm-is-remixable", "dm-is-versioned", "dm-migrations", "dm-postgres-adapter", "dm-rest-adapter", "dm-serializer", "dm-sqlite-adapter", "dm-timestamps", "dm-transactions", "dm-types", "dm-validations", "do_postgres", "do_sqlite3", "erubis", "execjs", "facets", "fastercsv", "highline", "i18n", "json", "linecache19", "mail", "mime-types", "multi_json", "net-scp", "net-sftp", "net-ssh", "net-ssh-gateway", "orm_adapter", "polyglot", "rack", "rack-mount", "rack-test", "railties", "rake", "rdoc", "ruby-debug-base19", "ruby_core_source", "sexp_processor", "stringex", "thor", "treetop", "tzinfo", "uuidtools", "warden", "yamler"], "https://github.com/BlueBrain/MorphIO": ["numpy", "mock", "morphio", "nose"], "https://github.com/bashtage/arch": ["black", "cython", "flake8", "ipython", "isort", "jupyter", "matplotlib", "nbsphinx", "notebook", "numba", "numpydoc", "pytest", "pytest-xdist", "seaborn", "sphinx", "sphinx-autodoc-typehints", "sphinx-material", "numpy", "pandas", "property-cached", "scipy", "statsmodels", "patsy", "colorama", "joblib", "psutil"], "https://github.com/vsoch/TtoZ": ["nibabel", "numpy", "scipy"], "https://github.com/miurahr/pykakasi": ["coverage", "coveralls", "mock", "pinocchio", "pycodestyle", "pytest", "pytest-cov", "setuptools", "sphinx-intl", "tox", "wheel"], "https://github.com/dalejn/cleanBib": ["bibtexparser", "ethnicolr", "habanero", "matplotlib", "numpy", "pandas", "pybtex", "pylatexenc", "seaborn", "sos", "sos-notebook", "tqdm"], "https://github.com/fail2ban/fail2ban": ["numpydoc"], "https://github.com/mih/gumpdata": ["numpydoc"], "https://github.com/compas-dev/compas_fab": ["attrs", "autopep8", "bump2version", "check-manifest", "flake8", "invoke", "isort", "pylint", "pytest", "pytest-cov", "sphinx", "sphinx-compas-theme", "sybil", "twine", "compas", "pybullet", "pyserial", "roslibpy"], "https://github.com/steelelab-delft/stlab": ["lmfit", "pyvisa-py", "require-python-3", "scipy"], "https://github.com/mozillazg/python-pinyin": ["argparse", "bumpversion", "mypy", "pre-commit", "pytest", "pytest-cov", "pytest-random-order", "sphinx", "tox", "twine", "wheel"], "https://github.com/aestimosolver/aestimo": ["matplotlib", "numpy", "scipy"], "https://github.com/PyMVPA/PyMVPA": ["duecredit", "joblib", "nibabel"], "https://github.com/eljost/pysisyphus": ["autograd", "dask", "distributed", "h5py", "jinja2", "matplotlib", "natsort", "numpy", "pytest", "pyyaml", "rmsd", "scipy", "sympy"], "https://github.com/mikahama/murre": ["natas", "opennmt-tf", "pyonmttok"], "https://github.com/sbalci/clinicopathological": ["@babel/core", "@babel/plugin-transform-react-jsx", "@babel/preset-env", "@babel/preset-react", "@hapi/cryptiles", "@hapi/hoek", "@reduxjs/toolkit", "acorn", "axios", "babel-loader", "babel-plugin-module-resolver", "babel-plugin-transform-async-to-generator", "btoa", "clean-css", "concurrently", "connected-react-router", "constantinople", "cross-env", "csp-html-webpack-plugin", "css-loader", "debug", "easy-redux-undo", "electron", "electron-builder", "electron-compile", "electron-debug", "electron-devtools-installer", "electron-forge", "electron-prebuilt-compile", "electron-squirrel-startup", "eslint", "eslint-config-airbnb", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "eslint-plugin-react-hooks", "execa", "fs-extra", "html-loader", "html-webpack-plugin", "i18next", "i18next-electron-fs-backend", "immutable", "js-yaml", "lodash", "lodash.merge", "mem", "mime", "mini-css-extract-plugin", "node-gyp", "q", "react", "react-dom", "react-i18next", "react-redux", "react-router", "react-router-dom", "rebuild", "redux", "seamless-immutable", "secure-electron-context-menu", "secure-electron-store", "semver", "style-loader", "uglify-js", "url-loader", "webpack", "webpack-cli", "webpack-dev-server", "webpack-merge"], "https://github.com/arselzer/HTQueryOptimizer": ["com.github.jsqlparser:jsqlparser", "com.google.code.gson:gson", "commons-cli:commons-cli", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-jar-plugin", "org.apache.maven.plugins:maven-shade-plugin", "org.jgrapht:jgrapht-core", "org.jgrapht:jgrapht-io", "org.junit.jupiter:junit-jupiter", "org.postgresql:postgresql"], "https://github.com/phenomecentre/ISTOCSY": ["ipython", "matplotlib", "networkx", "numpy", "pandas", "plotly", "pyqt5", "pyqtgraph", "scipy", "setuptools", "statsmodels"], "https://github.com/BerkeleyPhotonicsGenerator/BPG": ["asn1crypto", "atomicwrites", "attrs", "certifi", "cffi", "chardet", "conda", "cryptography", "cycler", "decorator", "h5py", "idna", "jinja2", "kiwisolver", "markupsafe", "matplotlib", "memory-profiler", "more-itertools", "networkx", "numpy", "pexpect", "pluggy", "psutil", "ptyprocess", "py", "pycosat", "pycparser", "pyopenssl", "pyparsing", "pysocks", "pytest", "python-dateutil", "pyyaml", "pyzmq", "requests", "rtree", "ruamel-yaml", "scipy", "shapely", "six", "urllib3", "gdspy", "setuptools"], "https://github.com/shiny-data-scientist/webscrap_pract_1": ["beautifulsoup4", "jupyter", "numpy", "pandas", "requests", "selenium", "tabula-py"], "https://github.com/GeoscienceAustralia/tcrm": ["boto3", "botocore", "netcdf4", "seaborn", "simplejson", "statsmodels", "affine", "basemap", "cartopy", "cftime", "configparser", "coverage", "coveralls", "imageio", "matplotlib", "mpi4py", "nose", "numpy", "pandas", "pthread-stubs", "pycurl", "pyproj", "scipy", "shapely", "sqlite", "tqdm", "xarray"], "https://github.com/dputhier/pygtftk": ["biopython", "cffi", "cloudpickle", "cython", "ftputil", "gitpython", "graphviz", "matplotlib", "mpmath", "numpy", "pandas", "plotnine", "pybedtools", "pybigwig", "pyparsing", "pyyaml", "requests", "scikit-learn", "scipy", "seaborn", "setuptools", "nose"], "https://github.com/michaelaye/iuvs": ["astropy", "matplotlib", "numpy", "pandas", "pip", "pytest", "scipy"], "https://github.com/discsim/frank": ["matplotlib", "numpy", "scipy"], "https://github.com/dguijo/TSOC": ["numpy", "pandas", "scikit-learn", "scipy", "sktime"]} \ No newline at end of file diff --git a/test/1_repodata_1hop b/test/1_repodata_1hop new file mode 100644 index 0000000..b2d2ba0 --- /dev/null +++ b/test/1_repodata_1hop @@ -0,0 +1,311 @@ +{ + "https://github.com/pymedphys/pymedphys": [ + "autopep8", + "mypy", + "pylint", + "deepdiff", + "pytest", + "pytest-cov", + "tox", + "xlwings", + "-", + "altair", + "appnope", + "argon2-cffi", + "astor", + "async-generator", + "attrs", + "backcall", + "base58", + "bleach", + "blinker", + "boto3", + "botocore", + "cachetools", + "certifi", + "cffi", + "chardet", + "click", + "colorama", + "cryptography", + "cycler", + "cython", + "dataclasses", + "dbfread", + "decorator", + "defusedxml", + "entrypoints", + "enum-compat", + "gitdb", + "gitpython", + "idna", + "imageio", + "immutables", + "importlib-metadata", + "ipykernel", + "ipython", + "ipython-genutils", + "ipywidgets", + "jedi", + "jeepney", + "jinja2", + "jmespath", + "jsonschema", + "jupyter-client", + "jupyter-core", + "jupyterlab-pygments", + "keyring", + "kiwisolver", + "markupsafe", + "matplotlib", + "mistune", + "nbclient", + "nbconvert", + "nbformat", + "nest-asyncio", + "networkx", + "notebook", + "numpy", + "packaging", + "pandas", + "pandocfilters", + "parso", + "pathtools", + "pexpect", + "pickleshare", + "pillow", + "prometheus-client", + "prompt-toolkit", + "protobuf", + "ptyprocess", + "pyarrow", + "pycparser", + "pydeck", + "pydicom", + "pygments", + "pylibjpeg-libjpeg", + "pymssql", + "pynetdicom", + "pyparsing", + "pyrsistent", + "python-dateutil", + "pytz", + "pywavelets", + "pywin32", + "pywin32-ctypes", + "pywinpty", + "pyyaml", + "pyzmq", + "requests", + "s3transfer", + "scikit-image", + "scipy", + "secretstorage", + "send2trash", + "shapely", + "six", + "smmap", + "streamlit", + "terminado", + "testpath", + "tifffile", + "timeago", + "toml", + "toolz", + "tornado", + "tqdm", + "traitlets", + "tzlocal", + "urllib3", + "validators", + "watchdog", + "wcwidth", + "webencodings", + "widgetsnbextension", + "zipp", + "cypress", + "@cypress/listr-verbose-renderer", + "@cypress/request", + "@cypress/xvfb", + "@samverschueren/stream-to-observable", + "@types/sinonjs__fake-timers", + "@types/sizzle", + "ajv", + "ansi-escapes", + "ansi-regex", + "ansi-styles", + "any-observable", + "arch", + "asn1", + "assert-plus", + "async", + "asynckit", + "aws-sign2", + "aws4", + "balanced-match", + "bcrypt-pbkdf", + "bluebird", + "brace-expansion", + "buffer-crc32", + "buffer-from", + "cachedir", + "caseless", + "chalk", + "check-more-types", + "ci-info", + "cli-cursor", + "cli-table3", + "cli-truncate", + "code-point-at", + "color-convert", + "color-name", + "colors", + "combined-stream", + "commander", + "common-tags", + "concat-map", + "concat-stream", + "core-util-is", + "cross-spawn", + "dashdash", + "date-fns", + "debug", + "delayed-stream", + "ecc-jsbn", + "elegant-spinner", + "end-of-stream", + "escape-string-regexp", + "eventemitter2", + "execa", + "executable", + "exit-hook", + "extend", + "extract-zip", + "extsprintf", + "fast-deep-equal", + "fast-json-stable-stringify", + "fd-slicer", + "figures", + "forever-agent", + "form-data", + "fs-extra", + "fs.realpath", + "get-stream", + "getos", + "getpass", + "glob", + "global-dirs", + "graceful-fs", + "har-schema", + "har-validator", + "has-ansi", + "has-flag", + "http-signature", + "indent-string", + "inflight", + "inherits", + "ini", + "is-ci", + "is-fullwidth-code-point", + "is-installed-globally", + "is-observable", + "is-path-inside", + "is-promise", + "is-stream", + "is-typedarray", + "isarray", + "isexe", + "isstream", + "jsbn", + "json-schema", + "json-schema-traverse", + "json-stringify-safe", + "jsonfile", + "jsprim", + "lazy-ass", + "listr", + "listr-silent-renderer", + "listr-update-renderer", + "listr-verbose-renderer", + "lodash", + "lodash.once", + "log-symbols", + "log-update", + "mime-db", + "mime-types", + "mimic-fn", + "minimatch", + "minimist", + "mkdirp", + "moment", + "ms", + "nice-try", + "npm-run-path", + "number-is-nan", + "oauth-sign", + "object-assign", + "once", + "onetime", + "ospath", + "p-finally", + "p-map", + "path-is-absolute", + "path-key", + "pend", + "performance-now", + "pify", + "pretty-bytes", + "process-nextick-args", + "psl", + "pump", + "punycode", + "qs", + "querystring", + "ramda", + "readable-stream", + "request-progress", + "restore-cursor", + "rimraf", + "rxjs", + "safe-buffer", + "safer-buffer", + "semver", + "shebang-command", + "shebang-regex", + "signal-exit", + "slice-ansi", + "sshpk", + "string-width", + "string_decoder", + "strip-ansi", + "strip-eof", + "supports-color", + "symbol-observable", + "throttleit", + "tmp", + "tough-cookie", + "tslib", + "tunnel-agent", + "tweetnacl", + "typedarray", + "universalify", + "untildify", + "uri-js", + "url", + "util-deprecate", + "uuid", + "verror", + "which", + "wrap-ansi", + "wrappy", + "yauzl", + "pymedphys_databases", + "pymedphys_dicom", + "pymedphys_fileformats", + "pymedphys_utilities", + "pymedphys_mudensity", + "csv-compare", + "mosaiq-connection", + "mosaiq-field-export" + ] +} \ No newline at end of file diff --git a/test/3k_valid_repos_test_2hop b/test/1_repodata_2hop similarity index 82% rename from test/3k_valid_repos_test_2hop rename to test/1_repodata_2hop index 4308a8c..f2f045a 100644 --- a/test/3k_valid_repos_test_2hop +++ b/test/1_repodata_2hop @@ -91,159 +91,1217 @@ "oauth2client", "python-gflags", "xlwings", - "cypress", - "@cypress/bumpercar", - "@cypress/commit-message-install", - "@cypress/env-or-json-file", - "@cypress/eslint-plugin-dev", - "@cypress/github-commit-status-check", - "@cypress/questions-remain", - "@cypress/request", - "@cypress/request-promise", - "@fellow/eslint-plugin-coffee", - "@percy/cypress", - "@semantic-release/changelog", - "@semantic-release/git", - "@types/bluebird", - "@types/chai-enzyme", - "@types/classnames", - "@types/debug", - "@types/enzyme", - "@types/enzyme-adapter-react-16", - "@types/execa", - "@types/fs-extra", - "@types/glob", - "@types/lodash", - "@types/markdown-it", - "@types/mini-css-extract-plugin", - "@types/mocha", - "@types/node", - "@types/prismjs", - "@types/ramda", - "@types/react", - "@types/react-dom", - "@types/request-promise", - "@types/sinon-chai", + "-", + "altair", + "entrypoints", + "jinja2", + "jsonschema", + "numpy", + "pandas", + "toolz", + "black", + "docutils", + "flake8", + "ipython", + "m2r", + "pytest", + "recommonmark", + "sphinx", + "vega-datasets", + "numpydoc", + "pillow", + "sphinx-rtd-theme", + "appnope", + "argon2-cffi", + "astor", + "async-generator", + "attrs", + "backcall", + "base58", + "bleach", + "flake8", + "hashin", + "pytest", + "pytest-wholenodeid", + "sphinx", + "tox", + "twine", + "wheel", + "packaging", + "six", + "webencodings", + "blinker", + "boto3", + "guzzle-sphinx-theme", + "sphinx", + "mock", + "nose", + "wheel", + "botocore", + "jmespath", + "s3transfer", + "botocore", + "docutils", + "guzzle-sphinx-theme", + "sphinx", + "behave", + "jsonschema", + "mock", + "nose", + "tox", + "wheel", + "jmespath", + "python-dateutil", + "cachetools", + "certifi", + "cffi", + "chardet", + "hypothesis", + "pytest", + "click", + "colorama", + "cryptography", + "click", + "coverage", + "tox", + "twine", + "cycler", + "cython", + "dataclasses", + "dbfread", + "decorator", + "defusedxml", + "entrypoints", + "enum-compat", + "enum34", + "gitdb", + "smmap", + "gitpython", + "gitdb", + "coverage", + "ddt", + "flake8", + "nose", + "tox", + "virtualenv", + "sphinx", + "sphinx-rtd-theme", + "idna", + "imageio", + "astropy", + "black", + "coveralls", + "flake8", + "imageio-ffmpeg", + "invoke", + "numpy", + "numpydoc", + "pillow", + "psutil", + "pytest", + "pytest-cov", + "simpleitk", + "sphinx", + "immutables", + "importlib-metadata", + "ipykernel", + "appnope", + "ipython", + "jupyter-client", + "tornado", + "traitlets", + "sphinxcontrib-github-alt", + "ipython", + "docrepr", + "ipykernel", + "matplotlib", + "setuptools", + "sphinx", + "sphinx-rtd-theme", + "stack-data", + "ipython-genutils", + "ipywidgets", + "@jupyterlab/buildutils", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", - "ansi-styles", - "arg", - "ascii-table", - "aws-sdk", - "babel-eslint", - "bluebird", - "bluebird-retry", - "bulk-decaffeinate", - "chai", - "chai-as-promised", - "chalk", - "check-dependencies", - "check-more-types", - "common-tags", - "debug", - "decaffeinate", - "del", - "electron-builder", - "electron-notarize", - "enzyme-adapter-react-16", "eslint", - "eslint-plugin-cypress", - "eslint-plugin-json-format", - "eslint-plugin-mocha", - "eslint-plugin-react", - "execa", - "execa-wrap", - "filesize", - "find-package-json", - "fs-extra", - "gift", - "globby", - "got", - "gulp", - "gulp-awspublish", - "gulp-debug", - "gulp-rename", - "hasha", - "http-server", - "human-interval", + "eslint-config-prettier", "husky", - "inquirer", - "inquirer-confirm", - "jest", - "jscodeshift", - "konfig", - "lazy-ass", "lerna", "lint-staged", - "listr", - "lodash", - "make-empty-github-commit", - "mocha", - "mocha-banner", - "mocha-junit-reporter", - "mocha-multi-reporters", - "mock-fs", - "parse-github-repo-url", - "patch-package", - "percy", - "plist", - "pluralize", - "postinstall-postinstall", - "prefixed-list", - "pretty-ms", - "print-arch", - "proxyquire", - "ramda", - "semantic-release", - "semantic-release-monorepo", - "shelljs", - "shx", - "sinon", - "snap-shot-it", - "start-server-and-test", - "stop-only", - "strip-ansi", - "term-to-html", - "terminal-banner", - "through", - "ts-node", - "typescript", - "@babel/cli", - "@babel/preset-env", - "@cypress/listr-verbose-renderer", - "@cypress/sinon-chai", - "@cypress/xvfb", - "@packages/root", + "prettier", + "sort-package-json", + "@babel/code-frame", + "@babel/highlight", + "@babel/runtime", + "@blueprintjs/core", + "@blueprintjs/icons", + "@blueprintjs/select", + "@evocateur/libnpmaccess", + "@evocateur/libnpmpublish", + "@evocateur/npm-registry-fetch", + "@evocateur/pacote", + "@fortawesome/fontawesome-free", + "@jupyterlab/application", + "@jupyterlab/apputils", + "@jupyterlab/attachments", + "@jupyterlab/cells", + "@jupyterlab/codeeditor", + "@jupyterlab/codemirror", + "@jupyterlab/coreutils", + "@jupyterlab/docmanager", + "@jupyterlab/docregistry", + "@jupyterlab/filebrowser", + "@jupyterlab/logconsole", + "@jupyterlab/mainmenu", + "@jupyterlab/nbformat", + "@jupyterlab/notebook", + "@jupyterlab/observables", + "@jupyterlab/outputarea", + "@jupyterlab/rendermime", + "@jupyterlab/rendermime-interfaces", + "@jupyterlab/services", + "@jupyterlab/settingregistry", + "@jupyterlab/statedb", + "@jupyterlab/statusbar", + "@jupyterlab/ui-components", + "@lerna/add", + "@lerna/bootstrap", + "@lerna/changed", + "@lerna/check-working-tree", + "@lerna/child-process", + "@lerna/clean", + "@lerna/cli", + "@lerna/collect-uncommitted", + "@lerna/collect-updates", + "@lerna/command", + "@lerna/conventional-commits", + "@lerna/create", + "@lerna/create-symlink", + "@lerna/describe-ref", + "@lerna/diff", + "@lerna/exec", + "@lerna/filter-options", + "@lerna/filter-packages", + "@lerna/get-npm-exec-opts", + "@lerna/get-packed", + "@lerna/github-client", + "@lerna/gitlab-client", + "@lerna/global-options", + "@lerna/has-npm-version", + "@lerna/import", + "@lerna/info", + "@lerna/init", + "@lerna/link", + "@lerna/list", + "@lerna/listable", + "@lerna/log-packed", + "@lerna/npm-conf", + "@lerna/npm-dist-tag", + "@lerna/npm-install", + "@lerna/npm-publish", + "@lerna/npm-run-script", + "@lerna/otplease", + "@lerna/output", + "@lerna/pack-directory", + "@lerna/package", + "@lerna/package-graph", + "@lerna/prerelease-id-from-version", + "@lerna/profiler", + "@lerna/project", + "@lerna/prompt", + "@lerna/publish", + "@lerna/pulse-till-done", + "@lerna/query-graph", + "@lerna/resolve-symlink", + "@lerna/rimraf-dir", + "@lerna/run", + "@lerna/run-lifecycle", + "@lerna/run-topologically", + "@lerna/symlink-binary", + "@lerna/symlink-dependencies", + "@lerna/timer", + "@lerna/validation-error", + "@lerna/version", + "@lerna/write-log-file", + "@lumino/algorithm", + "@lumino/application", + "@lumino/collections", + "@lumino/commands", + "@lumino/coreutils", + "@lumino/disposable", + "@lumino/domutils", + "@lumino/dragdrop", + "@lumino/keyboard", + "@lumino/messaging", + "@lumino/polling", + "@lumino/properties", + "@lumino/signaling", + "@lumino/virtualdom", + "@lumino/widgets", + "@mrmlnc/readdir-enhanced", + "@nodelib/fs.scandir", + "@nodelib/fs.stat", + "@nodelib/fs.walk", + "@octokit/endpoint", + "@octokit/plugin-enterprise-rest", + "@octokit/request", + "@octokit/request-error", + "@octokit/rest", + "@octokit/types", + "@samverschueren/stream-to-observable", + "@sindresorhus/is", + "@sinonjs/commons", + "@sinonjs/formatio", + "@sinonjs/samsam", + "@sinonjs/text-encoding", + "@szmarczak/http-timer", + "@types/backbone", + "@types/base64-js", "@types/chai", - "@types/chai-jquery", + "@types/chai-as-promised", + "@types/codemirror", + "@types/d3-color", + "@types/d3-format", + "@types/dom4", + "@types/eslint-visitor-keys", + "@types/estree", + "@types/events", + "@types/expect.js", + "@types/glob", "@types/jquery", + "@types/json-schema", + "@types/lodash", + "@types/mathjax", "@types/minimatch", + "@types/mocha", + "@types/node", + "@types/normalize-package-data", + "@types/nouislider", + "@types/prop-types", + "@types/react", + "@types/semver", "@types/sinon", - "@types/sinonjs__fake-timers", + "@types/sinon-chai", "@types/sizzle", - "arch", - "blob-util", - "cachedir", - "chai-string", - "cli-table3", - "commander", - "cross-env", - "dependency-check", - "dtslint", - "eventemitter2", - "executable", - "extract-zip", - "getos", - "is-ci", - "is-installed-globally", - "log-symbols", - "minimist", - "mocked-env", - "moment", - "nock", - "ospath", - "pretty-bytes", - "request-progress", + "@types/tern", + "@types/underscore", + "@types/wnumb", + "@typescript-eslint/experimental-utils", + "@typescript-eslint/typescript-estree", + "@webassemblyjs/ast", + "@webassemblyjs/floating-point-hex-parser", + "@webassemblyjs/helper-api-error", + "@webassemblyjs/helper-buffer", + "@webassemblyjs/helper-code-frame", + "@webassemblyjs/helper-fsm", + "@webassemblyjs/helper-module-context", + "@webassemblyjs/helper-wasm-bytecode", + "@webassemblyjs/helper-wasm-section", + "@webassemblyjs/ieee754", + "@webassemblyjs/leb128", + "@webassemblyjs/utf8", + "@webassemblyjs/wasm-edit", + "@webassemblyjs/wasm-gen", + "@webassemblyjs/wasm-opt", + "@webassemblyjs/wasm-parser", + "@webassemblyjs/wast-parser", + "@webassemblyjs/wast-printer", + "@xtuc/ieee754", + "@xtuc/long", + "@yarnpkg/lockfile", + "@zkochan/cmd-shim", + "abbrev", + "accepts", + "acorn", + "acorn-jsx", + "after", + "agent-base", + "agentkeepalive", + "aggregate-error", + "ajv", + "ajv-errors", + "ajv-keywords", + "amdefine", + "ansi-colors", + "ansi-escapes", + "ansi-regex", + "ansi-styles", + "any-observable", + "any-promise", + "anymatch", + "aproba", + "are-we-there-yet", + "argparse", + "arr-diff", + "arr-flatten", + "arr-union", + "array-differ", + "array-find-index", + "array-from", + "array-ify", + "array-union", + "array-uniq", + "array-unique", + "arraybuffer.slice", + "arrify", + "asap", + "asn1", + "asn1.js", + "assert", + "assert-plus", + "assertion-error", + "assign-symbols", + "astral-regex", + "async", + "async-each", + "async-limiter", + "asynckit", + "atob", + "atob-lite", + "autoprefixer", + "aws-sign2", + "aws4", + "babel-code-frame", + "babel-generator", + "babel-messages", + "babel-runtime", + "babel-template", + "babel-traverse", + "babel-types", + "babylon", + "backbone", + "backo2", + "balanced-match", + "base", + "base64-arraybuffer", + "base64-js", + "base64id", + "bcrypt-pbkdf", + "bqplot", + "ipykernel", + "ipyleaflet", + "jupyter-client", + "matplotlib", + "nbsphinx", + "numpy", + "recommonmark", + "sphinx", + "sphinx-rtd-theme", + "@jupyter-widgets/base", + "@jupyter-widgets/base-manager", + "@jupyter-widgets/controls", + "chai", + "css-loader", + "file-loader", + "karma", + "karma-chai", + "karma-chrome-launcher", + "karma-firefox-launcher", + "karma-mocha", + "karma-mocha-reporter", + "mocha", + "style-loader", + "webpack", + "codemirror", + "font-awesome", + "raw-loader", + "url-loader", + "@jupyter-widgets/html-manager", + "fs-extra", + "http-server", + "postcss", + "postcss-cssnext", + "postcss-import", + "postcss-loader", + "rimraf", + "typescript", + "chai-as-promised", + "expect.js", + "istanbul-instrumenter-loader", + "jquery", + "karma-coverage", + "karma-ie-launcher", + "karma-webpack", + "lodash", + "npm-run-all", + "sinon", + "sinon-chai", + "d3-color", + "d3-format", + "nouislider", + "postcss-cli", + "@jupyter-widgets/output", + "webpack-cli", + "@jupyter-widgets/schema", + "semver", + "typedoc", + "jedi", + "parso", + "jeepney", + "jinja2", + "markupsafe", + "appdirs", + "attrs", + "cfgv", + "click", + "distlib", + "filelock", + "identify", + "iniconfig", + "nodeenv", + "packaging", + "pluggy", + "py", + "pyparsing", + "pyyaml", + "six", + "toml", + "virtualenv", + "alabaster", + "babel", + "certifi", + "chardet", + "docutils", + "idna", + "imagesize", + "jinja2", + "pygments", + "pytz", + "requests", + "snowballstemmer", + "sphinxcontrib-applehelp", + "sphinxcontrib-devhelp", + "sphinxcontrib-htmlhelp", + "sphinxcontrib-jsmath", + "sphinxcontrib-qthelp", + "sphinxcontrib-serializinghtml", + "urllib3", + "jmespath", + "jsonschema", + "alabaster", + "babel", + "certifi", + "chardet", + "docutils", + "idna", + "imagesize", + "jinja2", + "lxml", + "markupsafe", + "packaging", + "pyenchant", + "pygments", + "pyparsing", + "pytz", + "requests", + "six", + "snowballstemmer", + "sphinx", + "sphinxcontrib-applehelp", + "sphinxcontrib-devhelp", + "sphinxcontrib-htmlhelp", + "sphinxcontrib-jsmath", + "sphinxcontrib-qthelp", + "sphinxcontrib-serializinghtml", + "sphinxcontrib-spelling", + "urllib3", + "ajv", + "json-schema-test", + "mocha", + "jupyter-client", + "jupyter-core", + "python-dateutil", + "pyzmq", + "tornado", + "traitlets", + "sphinx", + "sphinx-rtd-theme", + "sphinxcontrib-github-alt", + "jupyter-core", + "ipykernel", + "pytest", + "sphinxcontrib-github-alt", + "traitlets", + "jupyterlab-pygments", + "keyring", + "kiwisolver", + "markupsafe", + "matplotlib", + "cycler", + "kiwisolver", + "numpy", + "pillow", + "pyparsing", + "python-dateutil", + "colorspacious", + "ipython", + "ipywidgets", + "numpydoc", + "scipy", + "sphinx", + "sphinx-copybutton", + "sphinx-gallery", + "sphinxcontrib-svg2pdfconverter", + "flake8", + "flake8-docstrings", + "pydocstyle", + "certifi", + "coverage", + "pytest", + "pytest-cov", + "pytest-rerunfailures", + "pytest-timeout", + "pytest-xdist", + "tornado", + "ipykernel", + "nbconvert", + "nbformat", + "pandas", + "pikepdf", + "pytz", + "eslint", + "eslint-config-prettier", + "prettier", + "mistune", + "sphinx-typlog-theme", + "nose", + "nbclient", + "black", + "bumpversion", + "check-manifest", + "codecov", + "coverage", + "flake8", + "ipykernel", + "ipython", + "ipywidgets", + "mypy", + "pip", + "pytest", + "pytest-cov", + "setuptools", + "tox", + "twine", + "wheel", + "xmltodict", + "async-generator", + "jupyter-client", + "nbformat", + "nest-asyncio", + "traitlets", + "mock", + "moto", + "myst-parser", + "sphinx", + "sphinx-book-theme", + "nbconvert", + "nbformat", + "ipython-genutils", + "jsonschema", + "traitlets", + "nest-asyncio", + "networkx", + "decorator", + "matplotlib", + "numpy", + "pandas", + "scipy", + "black", + "pre-commit", + "nb2plots", + "pillow", + "sphinx", + "sphinx-gallery", + "sphinx-rtd-theme", + "texext", + "cartopy", + "cython", + "pyshp", + "shapely", + "six", + "lxml", + "pydot", + "pygraphviz", + "pyyaml", + "twine", + "wheel", + "codecov", + "pytest", + "pytest-cov", + "notebook", + "bower", + "less", + "onchange", + "po2json", + "requirejs", + "argon2-cffi", + "ipykernel", + "ipython-genutils", + "jinja2", + "jupyter-client", + "jupyter-core", + "nbconvert", + "nbformat", + "prometheus-client", + "pyzmq", + "send2trash", + "terminado", + "tornado", + "traitlets", + "nbsphinx", + "sphinx", + "sphinx-rtd-theme", + "sphinxcontrib-github-alt", + "numpy", + "packaging", + "pyparsing", + "invoke", + "progress", + "pandas", + "asv", + "beautifulsoup4", + "black", + "blosc", + "boto3", + "botocore", + "bottleneck", + "cftime", + "cloudpickle", + "cpplint", + "cython", + "dask", + "fastparquet", + "feedparser", + "flake8", + "flake8-comprehensions", + "flask", + "fsspec", + "gcsfs", + "gitdb", + "gitpython", + "html5lib", + "hypothesis", + "ipykernel", + "ipython", + "ipywidgets", + "isort", + "jinja2", + "lxml", + "markdown", + "matplotlib", + "moto", + "mypy", + "natsort", + "nbconvert", + "nbformat", + "nbsphinx", + "notebook", + "numba", + "numexpr", + "numpy", + "odfpy", + "openpyxl", + "pandoc", + "partd", + "pip", + "pre-commit", + "pyarrow", + "pycodestyle", + "pyqt5", + "pyreadstat", + "pytest", + "pytest-asyncio", + "pytest-cov", + "pytest-instafail", + "pytest-xdist", + "python-dateutil", + "python-snappy", + "pytz", + "pyupgrade", + "pyyaml", + "requests", + "s3fs", + "scipy", + "seaborn", + "sphinx", + "sqlalchemy", + "statsmodels", + "tables", + "tabulate", + "toolz", + "xarray", + "xlrd", + "xlsxwriter", + "xlwt", + "pandocfilters", + "parso", + "pathtools", + "pexpect", + "coverage", + "coveralls", + "pytest", + "pytest-capturelog", + "pytest-cov", + "ptyprocess", + "sphinx", + "sphinxcontrib-github-alt", + "pickleshare", + "pillow", + "prometheus-client", + "prompt-toolkit", + "wcwidth", + "protobuf", + "glob", + "google-closure-compiler", + "google-closure-library", + "gulp", + "jasmine", + "com.google.guava:guava", + "com.google.guava:guava-testlib", + "com.google.protobuf:protobuf-bom", + "com.google.truth:truth", + "junit:junit", + "org.apache.felix:maven-bundle-plugin", + "org.apache.maven.plugins:maven-javadoc-plugin", + "org.apache.maven.plugins:maven-source-plugin", + "org.codehaus.mojo:build-helper-maven-plugin", + "org.easymock:easymock", + "org.easymock:easymockclassextension", + "org.sonatype.plugins:nexus-staging-maven-plugin", + "rake-compiler", + "rake-compiler-dock", + "rubygems-tasks", + "test-unit", + "com.fasterxml.jackson.core:jackson-core", + "com.google.protobuf:protobuf-java", + "org.apache.maven.plugins:maven-assembly-plugin", + "org.apache.maven.plugins:maven-compiler-plugin", + "org.jruby:jruby-complete", + "six", + "com.google.code.gson:gson", + "com.google.errorprone:error_prone_annotations", + "com.google.caliper:caliper", + "org.apache.maven.plugins:maven-jar-plugin", + "org.apache.maven.plugins:maven-gpg-plugin", + "Microsoft.NETFramework.ReferenceAssemblies", + "Microsoft.SourceLink.GitHub", + "System.Memory", + "System.Runtime.CompilerServices.Unsafe", + "Microsoft.NET.Test.Sdk", + "NUnit", + "NUnit3TestAdapter", + "setuptools", + "com.google.protobuf.compatibility:compatibility-more-protos", + "com.google.protobuf.compatibility:compatibility-protos", + "NUnitLite", + "ptyprocess", + "pyarrow", + "pycparser", + "pydeck", + "livereload", + "pyyaml", + "pydicom", + "pygments", + "pylibjpeg-libjpeg", + "pymssql", + "pynetdicom", + "pydicom", + "matplotlib", + "numpy", + "numpydoc", + "pillow", + "sphinx", + "sphinx-gallery", + "sphinx-issues", + "sphinx-rtd-theme", + "sphinxcontrib-napoleon", + "pyparsing", + "pyrsistent", + "python-dateutil", + "pytz", + "pywavelets", + "pywin32", + "pywin32-ctypes", + "pywinpty", + "backports-shutil-which", + "coveralls", + "cython", + "flaky", + "libpython", + "m2w64-toolchain", + "pytest", + "pytest-cov", + "python", + "setuptools", + "winpty", + "pyyaml", + "pyzmq", + "requests", + "alabaster", + "codecov", + "detox", + "docutils", + "flake8", + "httpbin", + "more-itertools", + "pysocks", + "pytest", + "pytest-cov", + "pytest-httpbin", + "pytest-mock", + "pytest-xdist", + "readme-renderer", + "sphinx", + "tox", + "apipkg", + "appdirs", + "atomicwrites", + "attrs", + "babel", + "bleach", + "blinker", + "brotlipy", + "certifi", + "cffi", + "chardet", + "click", + "configparser", + "contextlib2", + "coverage", + "decorator", + "distlib", + "dnspython", + "entrypoints", + "enum34", + "eventlet", + "execnet", + "filelock", + "flask", + "funcsigs", + "functools32", + "greenlet", + "idna", + "imagesize", + "importlib-metadata", + "importlib-resources", + "itsdangerous", + "jinja2", + "markupsafe", + "mccabe", + "mock", + "monotonic", + "pathlib2", + "pluggy", + "py", + "pycodestyle", + "pycparser", + "pyflakes", + "pygments", + "pytest-forked", + "pytz", + "raven", + "scandir", + "singledispatch", + "six", + "snowballstemmer", + "toml", + "typing", + "urllib3", + "virtualenv", + "webencodings", + "werkzeug", + "zipp", + "s3transfer", + "psutil", + "tabulate", + "coverage", + "mock", + "nose", + "wheel", + "botocore", + "scikit-image", + "cython", + "numpy", + "wheel", + "imageio", + "matplotlib", + "networkx", + "pillow", + "pywavelets", + "scipy", + "tifffile", + "cloudpickle", + "dask", + "ipywidgets", + "myst-parser", + "numpydoc", + "pandas", + "plotly", + "pooch", + "pytest-runner", + "scikit-learn", + "seaborn", + "sphinx", + "sphinx-copybutton", + "sphinx-gallery", + "astropy", + "pyamg", + "qtpy", + "simpleitk", + "codecov", + "flake8", + "pytest", + "pytest-cov", + "pytest-faulthandler", + "pytest-localserver", + "scipy", + "cython", + "matplotlib", + "mpmath", + "numpy", + "pillow", + "pybind11", + "pytest", + "pytest-env", + "pytest-timeout", + "pytest-xdist", + "secretstorage", + "send2trash", + "shapely", + "cython", + "descartes", + "matplotlib", + "numpy", + "pytest", + "pytest-cov", + "setuptools", + "wheel", + "six", + "smmap", + "streamlit", + "terminado", + "ptyprocess", + "tornado", + "terminado", + "tornado-xstatic", + "xstatic", + "xstatic-term-js", + "testpath", + "tifffile", + "enum34", + "futures", + "numpy", + "pathlib", + "timeago", + "toml", + "toolz", + "tornado", + "tqdm", + "argopt", + "pydoc-markdown", + "twine", + "coverage", + "flake8", + "pytest", + "traitlets", + "ipython-genutils", + "sphinx", + "sphinx-rtd-theme", + "tzlocal", + "urllib3", + "coverage", + "cryptography", + "flaky", + "gcp-devrel-py-tools", + "mock", + "pylint", + "pysocks", + "pytest", + "pytest-freezegun", + "pytest-timeout", + "python-dateutil", + "tornado", + "trustme", + "win-inet-pton", + "furo", + "requests", + "sphinx", + "httpbin", + "pytest-httpbin", + "pytest-mock", + "validators", + "watchdog", + "eventlet", + "flake8", + "flaky", + "pytest", + "pytest-cov", + "pytest-timeout", + "pathtools", + "wcwidth", + "blessed", + "docopt", + "sphinx", + "sphinx-paramlinks", + "sphinx-rtd-theme", + "sphinxcontrib-manpage", + "webencodings", + "widgetsnbextension", + "zipp", + "cypress", + "@cypress/bumpercar", + "@cypress/commit-message-install", + "@cypress/env-or-json-file", + "@cypress/github-commit-status-check", + "@cypress/questions-remain", + "@cypress/request", + "@cypress/request-promise", + "@fellow/eslint-plugin-coffee", + "@percy/cypress", + "@semantic-release/changelog", + "@semantic-release/git", + "@types/bluebird", + "@types/chai-enzyme", + "@types/classnames", + "@types/debug", + "@types/enzyme", + "@types/enzyme-adapter-react-16", + "@types/execa", + "@types/fs-extra", + "@types/glob", + "@types/lodash", + "@types/markdown-it", + "@types/mini-css-extract-plugin", + "@types/mocha", + "@types/node", + "@types/prismjs", + "@types/ramda", + "@types/react", + "@types/react-dom", + "@types/request-promise", + "@types/sinon-chai", + "@typescript-eslint/eslint-plugin", + "@typescript-eslint/parser", + "ansi-styles", + "arg", + "ascii-table", + "aws-sdk", + "babel-eslint", + "bluebird", + "bluebird-retry", + "bulk-decaffeinate", + "chai", + "chai-as-promised", + "chalk", + "check-dependencies", + "check-more-types", + "common-tags", + "debug", + "decaffeinate", + "del", + "electron-builder", + "electron-notarize", + "enzyme-adapter-react-16", + "eslint", + "eslint-plugin-cypress", + "eslint-plugin-json-format", + "eslint-plugin-mocha", + "eslint-plugin-react", + "execa", + "execa-wrap", + "filesize", + "find-package-json", + "fs-extra", + "gift", + "globby", + "got", + "gulp", + "gulp-awspublish", + "gulp-debug", + "gulp-rename", + "hasha", + "http-server", + "human-interval", + "husky", + "inquirer", + "inquirer-confirm", + "jest", + "jscodeshift", + "konfig", + "lazy-ass", + "lerna", + "lint-staged", + "listr", + "lodash", + "make-empty-github-commit", + "mocha", + "mocha-banner", + "mocha-junit-reporter", + "mocha-multi-reporters", + "mock-fs", + "parse-github-repo-url", + "patch-package", + "percy", + "plist", + "pluralize", + "postinstall-postinstall", + "prefixed-list", + "pretty-ms", + "print-arch", + "proxyquire", + "ramda", + "semantic-release", + "semantic-release-monorepo", + "semver", + "shelljs", + "shx", + "sinon", + "snap-shot-it", + "start-server-and-test", + "stop-only", + "strip-ansi", + "term-to-html", + "terminal-banner", + "through", + "ts-node", + "typescript", + "@babel/cli", + "@babel/preset-env", + "@cypress/listr-verbose-renderer", + "@cypress/sinon-chai", + "@cypress/xvfb", + "@packages/root", + "@types/chai", + "@types/chai-jquery", + "@types/jquery", + "@types/minimatch", + "@types/sinon", + "@types/sinonjs__fake-timers", + "@types/sizzle", + "arch", + "blob-util", + "cachedir", + "chai-string", + "cli-table3", + "commander", + "cross-env", + "dependency-check", + "dtslint", + "eventemitter2", + "executable", + "extract-zip", + "getos", + "is-ci", + "is-installed-globally", + "log-symbols", + "minimist", + "mocked-env", + "moment", + "nock", + "ospath", + "pretty-bytes", + "request-progress", "resolve-pkg", "spawn-mock", "supports-color", @@ -315,7 +1373,6 @@ "prop-types", "react", "react-dom", - "regenerator-runtime", "sinon-chai", "snap-shot-core", "webpack-cli", @@ -391,7 +1448,6 @@ "resolve", "return-deep-diff", "sanitize-filename", - "semver", "send", "shell-env", "signal-exit", @@ -463,9 +1519,9 @@ "resolve-url-loader", "sass-loader", "webpack-livereload-plugin", - "@babel/polyfill", "bootstrap-sass", "cypress-react-unit-test", + "dayjs", "gravatar", "mobx-react-devtools", "rc-collapse", @@ -648,6 +1704,7 @@ "from2", "fs-extra", "fs.realpath", + "function-bind", "functional-red-black-tree", "gauge", "get-caller-file", @@ -670,6 +1727,7 @@ "har-schema", "har-validator", "hard-rejection", + "has", "has-ansi", "has-flag", "has-unicode", @@ -695,6 +1753,7 @@ "invert-kv", "is-arrayish", "is-ci", + "is-core-module", "is-directory", "is-extglob", "is-fullwidth-code-point", @@ -737,9 +1796,6 @@ "lines-and-columns", "load-json-file", "local-or-home-npmrc", - "locate-path", - "lodash", - "lodash.capitalize", "lodash.once", "mocha", "npm-utils", @@ -1194,468 +2250,981 @@ "minimalistic-crypto-utils", "minimatch", "minimist", - "mkdirp-classic", + "mkdirp-classic", + "module-deps", + "object-assign", + "once", + "os-browserify", + "pako", + "parents", + "parse-asn1", + "path-browserify", + "path-is-absolute", + "path-parse", + "path-platform", + "pbkdf2", + "process", + "process-nextick-args", + "public-encrypt", + "punycode", + "querystring", + "querystring-es3", + "randombytes", + "randomfill", + "read-only-stream", + "readable-stream", + "resolve", + "ripemd160", + "safe-buffer", + "sha.js", + "shasum", + "shasum-object", + "shell-quote", + "simple-concat", + "source-map", + "stream-browserify", + "stream-combiner2", + "stream-http", + "stream-splicer", + "string_decoder", + "subarg", + "syntax-error", + "through", + "through2", + "timers-browserify", + "tty-browserify", + "typedarray", + "umd", + "undeclared-identifiers", + "url", + "util", + "util-deprecate", + "vm-browserify", + "wrappy", + "xtend", + "balanced-match", + "bcrypt-pbkdf", + "tweetnacl", + "bluebird", + "abbrev", + "acorn", + "acorn-dynamic-import", + "acorn-node", + "acorn-walk", + "amdefine", + "ansi-styles", + "argparse", + "asn1", + "asn1.js", + "assert", + "assert-plus", + "astw", + "async", + "aws-sign", + "aws-sign2", + "baconjs", + "balanced-match", + "Base64", + "base64-js", + "bluebird", + "bn.js", + "body-parser", + "boom", + "brace-expansion", + "brorand", + "browser-pack", + "browser-resolve", + "browserify", + "browserify-aes", + "browserify-cipher", + "browserify-des", + "browserify-rsa", + "browserify-sign", + "browserify-zlib", + "buffer", + "buffer-xor", + "builtins", + "buster-core", + "buster-format", + "bytes", + "callsite", + "camelcase", + "chalk", + "cipher-base", + "cli", + "cli-table", + "co", + "colors", + "combine-source-map", + "combined-stream", + "commander", + "commondir", + "concat-map", + "concat-stream", + "console-browserify", + "constants-browserify", + "content-type", + "convert-source-map", + "cookie-jar", + "core-util-is", + "create-ecdh", + "create-hash", + "create-hmac", + "cross-spawn", + "cryptiles", + "crypto-browserify", + "ctype", + "date-now", + "debug", + "decamelize", + "deep-equal", + "deep-is", + "defined", + "delayed-stream", + "depd", + "deps-sort", + "des.js", + "destroy", + "detective", + "diff", + "diffie-hellman", + "dom-serializer", + "domain-browser", + "domelementtype", + "domhandler", + "domutils", + "duplexer2", + "ee-first", + "elliptic", + "encodeurl", + "entities", + "escape-html", + "escape-string-regexp", + "escodegen", + "esprima", + "estraverse", + "esutils", + "etag", + "events", + "evp_bytestokey", + "exit", + "fast-levenshtein", + "fileset", + "forever-agent", + "form-data", + "fresh", + "fs.realpath", + "glob", + "graceful-fs", + "growl", + "grunt-saucelabs", + "handlebars", + "has-color", + "has-flag", + "hash-base", + "hash.js", + "hawk", + "highland", + "hmac-drbg", + "hoek", + "htmlparser2", + "http-browserify", + "http-errors", + "http-signature", + "https-browserify", + "iconv-lite", + "ieee754", + "indexof", + "inflight", + "inherits", + "inline-source-map", + "insert-module-globals", + "ip-regex", + "is-buffer", + "isarray", + "isexe", + "istanbul", + "jade", + "js-yaml", + "jshint", + "jshint-stylish", + "json-stable-stringify", + "json-stringify-safe", + "jsonify", + "jsonparse", + "JSONStream", + "kefir", + "labeled-stream-splicer", + "levn", + "lexical-scope", + "lodash", + "lodash.bind", + "lodash.foreach", + "lodash.forin", + "lodash.forown", + "lodash.identity", + "lodash.isarray", + "lodash.isfunction", + "lodash.isobject", + "lodash.isplainobject", + "lodash.keys", + "lodash.memoize", + "lodash.merge", + "lodash.noop", + "lodash.support", + "lodash._arraypool", + "lodash._basebind", + "lodash._basecreate", + "lodash._basecreatecallback", + "lodash._basecreatewrapper", + "lodash._basemerge", + "lodash._createwrapper", + "lodash._getarray", + "lodash._isnative", + "lodash._maxpoolsize", + "lodash._objecttypes", + "lodash._releasearray", + "lodash._setbinddata", + "lodash._shimisplainobject", + "lodash._shimkeys", + "lodash._slice", + "lru-cache", + "md5.js", + "media-typer", + "miller-rabin", + "mime", + "mime-db", + "mime-types", + "minimalistic-assert", + "minimalistic-crypto-utils", + "minimatch", + "minimist", + "mkdirp", + "mocha", "module-deps", - "object-assign", + "ms", + "neo-async", + "node-uuid", + "nopt", + "oauth-sign", + "on-finished", "once", + "open", + "optimist", + "optionator", "os-browserify", "pako", "parents", "parse-asn1", + "parseurl", "path-browserify", "path-is-absolute", "path-parse", "path-platform", "pbkdf2", + "prelude-ls", "process", - "process-nextick-args", + "psl", "public-encrypt", "punycode", + "q", + "qs", "querystring", "querystring-es3", "randombytes", "randomfill", - "read-only-stream", + "range-parser", + "raw-body", "readable-stream", + "readable-wrap", + "request", "resolve", + "rfile", + "rimraf", "ripemd160", + "ruglify", + "rx", "safe-buffer", + "safer-buffer", + "sauce-tunnel", + "saucelabs", + "send", + "serve-static", + "setprototypeof", "sha.js", + "shallow-copy", "shasum", - "shasum-object", "shell-quote", - "simple-concat", - "source-map", - "stream-browserify", - "stream-combiner2", - "stream-http", - "stream-splicer", - "string_decoder", - "subarg", - "syntax-error", + "shelljs", + "sinon", + "uglify-js", + "jekyll", + "jekyll-redirect-from", + "pygments.rb", + "redcarpet", + "sanitize", + "ansi-regex", + "asap", + "babel-code-frame", + "babel-generator", + "babel-helper-call-delegate", + "babel-helper-define-map", + "babel-helper-function-name", + "babel-helper-get-function-arity", + "babel-helper-hoist-variables", + "babel-helper-optimise-call-expression", + "babel-helper-regex", + "babel-helper-replace-supers", + "babel-helpers", + "babel-messages", + "babel-plugin-check-es2015-constants", + "babel-plugin-streamline", + "babel-plugin-transform-es2015-arrow-functions", + "babel-plugin-transform-es2015-block-scoped-functions", + "babel-plugin-transform-es2015-block-scoping", + "babel-plugin-transform-es2015-classes", + "babel-plugin-transform-es2015-computed-properties", + "babel-plugin-transform-es2015-destructuring", + "babel-plugin-transform-es2015-duplicate-keys", + "babel-plugin-transform-es2015-for-of", + "babel-plugin-transform-es2015-function-name", + "babel-plugin-transform-es2015-literals", + "babel-plugin-transform-es2015-modules-amd", + "babel-plugin-transform-es2015-modules-commonjs", + "babel-plugin-transform-es2015-modules-systemjs", + "babel-plugin-transform-es2015-modules-umd", + "babel-plugin-transform-es2015-object-super", + "babel-plugin-transform-es2015-parameters", + "babel-plugin-transform-es2015-shorthand-properties", + "babel-plugin-transform-es2015-spread", + "babel-plugin-transform-es2015-sticky-regex", + "babel-plugin-transform-es2015-template-literals", + "babel-plugin-transform-es2015-typeof-symbol", + "babel-plugin-transform-es2015-unicode-regex", + "babel-plugin-transform-regenerator", + "babel-plugin-transform-strict-mode", + "babel-preset-es2015", + "babel-register", + "babel-runtime", + "babel-template", + "babel-traverse", + "babel-types", + "d", + "davy", + "deferred", + "es5-ext", + "es6-iterator", + "es6-symbol", + "event-emitter", + "fibers", + "has-ansi", + "immediate", + "invariant", + "is-finite", + "jsesc", + "kew", + "lie", + "loose-envify", + "next-tick", + "number-is-nan", + "os-homedir", + "os-tmpdir", + "private", + "promise", + "regenerate", + "regenerator-runtime", + "regenerator-transform", + "regexpu-core", + "regjsgen", + "regjsparser", + "rsvp", + "slash", + "streamline", + "streamline-runtime", + "strip-ansi", + "subsequent", + "supports-color", + "text-table", + "timers-ext", + "to-fast-properties", + "trim-right", + "typescript", + "vow", + "when", + "wordwrap", + "brace-expansion", + "balanced-match", + "brace-expansion", + "concat-map", + "deep-equal", + "define-properties", + "defined", + "dotignore", + "drip", + "electron", + "es-abstract", + "es-to-primitive", + "for-each", + "fs.realpath", + "function-bind", + "glob", + "has", + "has-symbols", + "inflight", + "inherits", + "is-arguments", + "is-callable", + "is-date-object", + "is-negative-zero", + "is-regex", + "is-symbol", + "matcha", + "minimatch", + "minimist", + "object-inspect", + "object-is", + "object-keys", + "object.assign", + "once", + "path-is-absolute", + "path-parse", + "regexp.prototype.flags", + "resolve", + "resumer", + "string.prototype.trim", + "string.prototype.trimend", + "string.prototype.trimstart", + "tape", + "tea-concat", "through", - "through2", - "timers-browserify", - "tty-browserify", - "typedarray", - "umd", - "undeclared-identifiers", - "url", - "util", - "util-deprecate", - "vm-browserify", + "v8-argv", "wrappy", - "xtend", - "balanced-match", - "bcrypt-pbkdf", - "tweetnacl", - "bluebird", - "abbrev", + "buffer-crc32", + "tap", + "buffer-from", "acorn", - "acorn-dynamic-import", - "acorn-node", - "acorn-walk", - "amdefine", + "acorn-jsx", + "ajv", + "ajv-keywords", + "ansi-escapes", + "ansi-regex", "ansi-styles", "argparse", - "asn1", - "asn1.js", - "assert", - "assert-plus", - "astw", - "async", - "aws-sign", - "aws-sign2", - "baconjs", - "balanced-match", - "Base64", - "base64-js", - "bluebird", - "bn.js", - "body-parser", - "boom", + "array-includes", + "babel-code-frame", + "balanced-match", "brace-expansion", - "brorand", - "browser-pack", - "browser-resolve", - "browserify", - "browserify-aes", - "browserify-cipher", - "browserify-des", - "browserify-rsa", - "browserify-sign", - "browserify-zlib", - "buffer", - "buffer-xor", - "builtins", - "buster-core", - "buster-format", - "bytes", - "callsite", - "camelcase", + "caller-path", + "callsites", "chalk", - "cipher-base", - "cli", - "cli-table", - "co", - "colors", - "combine-source-map", - "combined-stream", - "commander", - "commondir", + "chardet", + "circular-json", + "cli-cursor", + "cli-width", + "color-convert", + "color-name", "concat-map", - "concat-stream", - "console-browserify", - "constants-browserify", - "content-type", - "convert-source-map", - "cookie-jar", - "core-util-is", - "create-ecdh", - "create-hash", - "create-hmac", + "contains-path", "cross-spawn", - "cryptiles", - "crypto-browserify", - "ctype", - "date-now", "debug", - "decamelize", - "deep-equal", + "debug-log", "deep-is", - "defined", - "delayed-stream", - "depd", - "deps-sort", - "des.js", - "destroy", - "detective", - "diff", - "diffie-hellman", - "dom-serializer", - "domain-browser", - "domelementtype", - "domhandler", - "domutils", - "duplexer2", - "ee-first", - "elliptic", - "encodeurl", - "entities", - "escape-html", + "define-properties", + "deglob", + "doctrine", + "error-ex", + "es-abstract", + "es-to-primitive", "escape-string-regexp", - "escodegen", + "eslint", + "eslint-config-standard", + "eslint-config-standard-jsx", + "eslint-import-resolver-node", + "eslint-module-utils", + "eslint-plugin-es", + "eslint-plugin-import", + "eslint-plugin-node", + "eslint-plugin-promise", + "eslint-plugin-react", + "eslint-plugin-standard", + "eslint-scope", + "eslint-utils", + "eslint-visitor-keys", + "espree", "esprima", + "esquery", + "esrecurse", "estraverse", "esutils", - "etag", - "events", - "evp_bytestokey", - "exit", + "external-editor", + "fast-deep-equal", + "fast-json-stable-stringify", "fast-levenshtein", - "fileset", - "forever-agent", - "form-data", - "fresh", + "figures", + "file-entry-cache", + "find-root", + "find-up", + "flat-cache", "fs.realpath", + "function-bind", + "functional-red-black-tree", + "get-stdin", "glob", + "globals", "graceful-fs", - "growl", - "grunt-saucelabs", - "handlebars", - "has-color", + "has", + "has-ansi", "has-flag", - "hash-base", - "hash.js", - "hawk", - "highland", - "hmac-drbg", - "hoek", - "htmlparser2", - "http-browserify", - "http-errors", - "http-signature", - "https-browserify", + "has-symbols", + "hosted-git-info", "iconv-lite", - "ieee754", - "indexof", + "ignore", + "imurmurhash", "inflight", "inherits", - "inline-source-map", - "insert-module-globals", - "ip-regex", - "is-buffer", + "inquirer", + "is-arrayish", + "is-callable", + "is-date-object", + "is-fullwidth-code-point", + "is-promise", + "is-regex", + "is-resolvable", + "is-symbol", "isarray", "isexe", - "istanbul", - "jade", + "js-tokens", "js-yaml", - "jshint", - "jshint-stylish", - "json-stable-stringify", - "json-stringify-safe", - "jsonify", - "jsonparse", - "JSONStream", - "kefir", - "labeled-stream-splicer", + "json-parse-better-errors", + "json-schema-traverse", + "json-stable-stringify-without-jsonify", + "jsx-ast-utils", "levn", - "lexical-scope", + "load-json-file", + "locate-path", "lodash", - "lodash.bind", - "lodash.foreach", - "lodash.forin", - "lodash.forown", - "lodash.identity", - "lodash.isarray", - "lodash.isfunction", - "lodash.isobject", - "lodash.isplainobject", - "lodash.keys", - "lodash.memoize", - "lodash.merge", - "lodash.noop", - "lodash.support", - "lodash._arraypool", - "lodash._basebind", - "lodash._basecreate", - "lodash._basecreatecallback", - "lodash._basecreatewrapper", - "lodash._basemerge", - "lodash._createwrapper", - "lodash._getarray", - "lodash._isnative", - "lodash._maxpoolsize", - "lodash._objecttypes", - "lodash._releasearray", - "lodash._setbinddata", - "lodash._shimisplainobject", - "lodash._shimkeys", - "lodash._slice", - "lru-cache", - "md5.js", - "media-typer", - "miller-rabin", - "mime", - "mime-db", - "mime-types", - "minimalistic-assert", - "minimalistic-crypto-utils", + "mimic-fn", "minimatch", "minimist", "mkdirp", - "mocha", - "module-deps", "ms", - "neo-async", - "node-uuid", - "nopt", - "oauth-sign", - "on-finished", + "mute-stream", + "natural-compare", + "nice-try", + "normalize-package-data", + "object-assign", + "object-keys", "once", - "open", - "optimist", + "onetime", "optionator", - "os-browserify", - "pako", - "parents", - "parse-asn1", - "parseurl", - "path-browserify", + "os-tmpdir", + "p-limit", + "p-locate", + "p-try", + "parse-json", + "path-exists", "path-is-absolute", + "path-is-inside", + "path-key", "path-parse", - "path-platform", - "pbkdf2", - "prelude-ls", - "process", - "psl", - "public-encrypt", + "path-type", + "pify", + "pkg-conf", + "pkg-config", + "pkg-dir", + "pluralize", + "prelude-ls", + "progress", + "prop-types", "punycode", - "q", - "qs", - "querystring", - "querystring-es3", - "randombytes", - "randomfill", - "range-parser", - "raw-body", - "readable-stream", - "readable-wrap", - "request", + "react-is", + "read-pkg", + "read-pkg-up", + "regexpp", + "require-uncached", "resolve", - "rfile", + "resolve-from", + "restore-cursor", "rimraf", - "ripemd160", - "ruglify", - "rx", - "safe-buffer", + "run-async", + "run-parallel", + "rxjs", "safer-buffer", - "sauce-tunnel", - "saucelabs", - "send", - "serve-static", - "setprototypeof", - "sha.js", - "shallow-copy", - "shasum", - "shell-quote", - "shelljs", - "sinon", - "uglify-js", - "jekyll", - "jekyll-redirect-from", - "pygments.rb", - "redcarpet", - "sanitize", - "ansi-regex", - "asap", - "babel-code-frame", - "babel-generator", - "babel-helper-call-delegate", - "babel-helper-define-map", - "babel-helper-function-name", - "babel-helper-get-function-arity", - "babel-helper-hoist-variables", - "babel-helper-optimise-call-expression", - "babel-helper-regex", - "babel-helper-replace-supers", - "babel-helpers", - "babel-messages", - "babel-plugin-check-es2015-constants", - "babel-plugin-streamline", - "babel-plugin-transform-es2015-arrow-functions", - "babel-plugin-transform-es2015-block-scoped-functions", - "babel-plugin-transform-es2015-block-scoping", - "babel-plugin-transform-es2015-classes", - "babel-plugin-transform-es2015-computed-properties", - "babel-plugin-transform-es2015-destructuring", - "babel-plugin-transform-es2015-duplicate-keys", - "babel-plugin-transform-es2015-for-of", - "babel-plugin-transform-es2015-function-name", - "babel-plugin-transform-es2015-literals", - "babel-plugin-transform-es2015-modules-amd", - "babel-plugin-transform-es2015-modules-commonjs", - "babel-plugin-transform-es2015-modules-systemjs", - "babel-plugin-transform-es2015-modules-umd", - "babel-plugin-transform-es2015-object-super", - "babel-plugin-transform-es2015-parameters", - "babel-plugin-transform-es2015-shorthand-properties", - "babel-plugin-transform-es2015-spread", - "babel-plugin-transform-es2015-sticky-regex", - "babel-plugin-transform-es2015-template-literals", - "babel-plugin-transform-es2015-typeof-symbol", - "babel-plugin-transform-es2015-unicode-regex", - "babel-plugin-transform-regenerator", - "babel-plugin-transform-strict-mode", - "babel-preset-es2015", - "babel-register", - "babel-runtime", - "babel-template", - "babel-traverse", - "babel-types", - "d", - "davy", - "deferred", - "es5-ext", - "es6-iterator", - "es6-symbol", - "event-emitter", - "fibers", - "has-ansi", - "immediate", - "invariant", - "is-finite", - "jsesc", - "kew", - "lie", - "loose-envify", - "next-tick", - "number-is-nan", - "os-homedir", - "os-tmpdir", - "private", - "promise", - "regenerate", - "regenerator-runtime", - "regenerator-transform", - "regexpu-core", - "regjsgen", - "regjsparser", - "rsvp", - "slash", - "streamline", - "streamline-runtime", + "semver", + "shebang-command", + "shebang-regex", + "signal-exit", + "slice-ansi", + "spdx-correct", + "spdx-exceptions", + "spdx-expression-parse", + "spdx-license-ids", + "sprintf-js", + "standard", + "standard-engine", + "string-width", "strip-ansi", - "subsequent", + "strip-bom", + "strip-json-comments", "supports-color", + "symbol-observable", + "table", "text-table", - "timers-ext", - "to-fast-properties", - "trim-right", - "typescript", - "vow", - "when", + "through", + "tmp", + "type-check", + "uniq", + "uri-js", + "validate-npm-package-license", + "which", "wordwrap", - "brace-expansion", + "wrappy", + "write", + "xtend", + "cachedir", + "mocha", + "proxyquire", + "standard", + "caseless", + "chalk", + "ansi-styles", + "ava", + "coveralls", + "execa", + "import-fresh", + "matcha", + "nyc", + "resolve-from", + "supports-color", + "tsd", + "xo", + "check-more-types", + "@semantic-release/condition-travis", + "condition-node-version", + "coveralls", + "git-issues", + "grunt-cli", + "grunt-contrib-jshint", + "grunt-contrib-uglify", + "grunt-contrib-watch", + "grunt-deps-ok", + "grunt-gt", + "grunt-jshint-solid", + "grunt-mocha-test", + "grunt-nice-package", + "grunt-npm2bower-sync", + "grunt-readme", + "grunt-toc", + "grunt-xplain", + "include-version", + "jshint-summary", + "karma", + "karma-chrome-launcher", + "karma-mocha", + "karma-phantomjs-launcher", + "lazy-ass", + "lazy-ass-helpful", + "lcov-filter", + "lodash", + "matchdep", + "mocha", + "phantomjs-prebuilt", + "pkgfiles", + "pre-git", + "semantic-release", + "standard", + "webpack", + "ci-info", + "clear-module", + "standard", + "tape", + "cli-cursor", + "@types/node", + "ava", + "restore-cursor", + "tsd", + "xo", + "cli-table3", + "ansi-256-colors", + "cli-table", + "eslint-config-prettier", + "eslint-plugin-prettier", + "jest", + "jest-runner-eslint", + "lerna-changelog", + "object-assign", + "prettier", + "string-width", + "@babel/code-frame", + "@babel/core", + "@babel/generator", + "@babel/helper-function-name", + "@babel/helper-get-function-arity", + "@babel/helper-member-expression-to-functions", + "@babel/helper-module-imports", + "@babel/helper-module-transforms", + "@babel/helper-optimise-call-expression", + "@babel/helper-plugin-utils", + "@babel/helper-replace-supers", + "@babel/helper-simple-access", + "@babel/helper-split-export-declaration", + "@babel/helper-validator-identifier", + "@babel/helpers", + "@babel/highlight", + "@babel/parser", + "@babel/plugin-syntax-async-generators", + "@babel/plugin-syntax-bigint", + "@babel/plugin-syntax-class-properties", + "@babel/plugin-syntax-json-strings", + "@babel/plugin-syntax-logical-assignment-operators", + "@babel/plugin-syntax-nullish-coalescing-operator", + "@babel/plugin-syntax-numeric-separator", + "@babel/plugin-syntax-object-rest-spread", + "@babel/plugin-syntax-optional-catch-binding", + "@babel/plugin-syntax-optional-chaining", + "@babel/template", + "@babel/traverse", + "@babel/types", + "@bcoe/v8-coverage", + "@cnakazawa/watch", + "@istanbuljs/load-nyc-config", + "@istanbuljs/schema", + "@jest/console", + "@jest/core", + "@jest/environment", + "@jest/fake-timers", + "@jest/globals", + "@jest/reporters", + "@jest/source-map", + "@jest/test-result", + "@jest/test-sequencer", + "@jest/transform", + "@jest/types", + "@sinonjs/commons", + "@types/babel__core", + "@types/babel__generator", + "@types/babel__template", + "@types/babel__traverse", + "@types/color-name", + "@types/graceful-fs", + "@types/istanbul-lib-coverage", + "@types/istanbul-lib-report", + "@types/istanbul-reports", + "@types/node", + "@types/normalize-package-data", + "@types/prettier", + "@types/stack-utils", + "@types/yargs", + "@types/yargs-parser", + "abab", + "acorn", + "acorn-globals", + "acorn-jsx", + "acorn-walk", + "agent-base", + "agentkeepalive", + "aggregate-error", + "ajv", + "ansi-escapes", + "ansi-regex", + "ansi-styles", + "any-promise", + "anymatch", + "aproba", + "argparse", + "arr-diff", + "arr-flatten", + "arr-union", + "array-equal", + "array-unique", + "asn1", + "assert-plus", + "assign-symbols", + "astral-regex", + "asynckit", + "atob", + "aws-sign2", + "aws4", + "babel-jest", + "babel-plugin-istanbul", + "babel-plugin-jest-hoist", + "babel-preset-current-node-syntax", + "babel-preset-jest", "balanced-match", + "base", + "bcrypt-pbkdf", "brace-expansion", + "braces", + "browser-process-hrtime", + "browser-resolve", + "bser", + "buffer-from", + "cacache", + "cache-base", + "caller-callsite", + "caller-path", + "callsites", + "camelcase", + "capture-exit", + "caseless", + "chalk", + "chardet", + "chownr", + "ci-info", + "class-utils", + "clean-stack", + "cli-cursor", + "cli-highlight", + "cli-width", + "cliui", + "co", + "collect-v8-coverage", + "collection-visit", + "color-convert", + "color-name", + "colors", + "combined-stream", + "component-emitter", "concat-map", - "deep-equal", - "define-properties", - "defined", - "dotignore", - "drip", - "electron", - "es-abstract", - "es-to-primitive", - "for-each", + "convert-source-map", + "copy-concurrently", + "copy-descriptor", + "core-util-is", + "cosmiconfig", + "create-jest-runner", + "cross-spawn", + "cssom", + "cssstyle", + "dashdash", + "data-urls", + "debug", + "decamelize", + "decode-uri-component", + "deep-is", + "deepmerge", + "define-property", + "delayed-stream", + "depd", + "detect-newline", + "diff-sequences", + "doctrine", + "domexception", + "ecc-jsbn", + "emoji-regex", + "encoding", + "end-of-stream", + "err-code", + "error-ex", + "es6-promise", + "es6-promisify", + "escape-string-regexp", + "escodegen", + "eslint", + "eslint-scope", + "eslint-utils", + "eslint-visitor-keys", + "espree", + "esprima", + "esquery", + "esrecurse", + "estraverse", + "esutils", + "exec-sh", + "execa", + "exit", + "expand-brackets", + "expect", + "extend", + "extend-shallow", + "external-editor", + "extglob", + "extsprintf", + "fast-deep-equal", + "fast-diff", + "fast-json-stable-stringify", + "fast-levenshtein", + "fb-watchman", + "figgy-pudding", + "figures", + "file-entry-cache", + "fill-range", + "find-up", + "flat-cache", + "flatted", + "for-in", + "forever-agent", + "form-data", + "fragment-cache", + "fs-minipass", + "fs-write-stream-atomic", "fs.realpath", - "function-bind", + "fsevents", + "functional-red-black-tree", + "gensync", + "get-caller-file", + "get-stdin", + "get-stream", + "get-value", + "getpass", "glob", - "has", - "has-symbols", - "inflight", - "inherits", - "is-arguments", - "is-callable", - "is-date-object", - "is-negative-zero", - "is-regex", - "is-symbol", - "matcha", - "minimatch", - "minimist", - "object-inspect", - "object-is", - "object-keys", - "object.assign", - "once", - "path-is-absolute", - "path-parse", - "regexp.prototype.flags", - "resolve", - "resumer", - "string.prototype.trim", - "string.prototype.trimend", - "string.prototype.trimstart", - "tape", - "tea-concat", - "through", - "v8-argv", - "wrappy", - "buffer-crc32", - "tap", - "buffer-from", + "glob-parent", + "globals", + "graceful-fs", + "growly", + "har-schema", + "har-validator", + "has-flag", + "has-value", + "has-values", + "highlight.js", + "hosted-git-info", + "html-encoding-sniffer", + "html-escaper", + "http-cache-semantics", + "http-proxy-agent", + "http-signature", + "https-proxy-agent", + "human-signals", + "humanize-ms", + "iconv-lite", + "iferr", + "ignore", + "import-fresh", + "import-local", + "imurmurhash", + "indent-string", + "infer-owner", + "inflight", + "inherits", + "inquirer", + "ip", + "ip-regex", + "is-accessor-descriptor", + "is-arrayish", + "cli-truncate", + "ava", + "slice-ansi", + "string-width", + "tsd", + "xo", + "code-point-at", + "ava", + "color-convert", + "chalk", + "color-name", + "xo", + "color-name", + "colors", + "@babel/code-frame", + "@babel/highlight", "acorn", "acorn-jsx", "ajv", - "ajv-keywords", "ansi-escapes", "ansi-regex", "ansi-styles", "argparse", - "array-includes", - "babel-code-frame", + "astral-regex", "balanced-match", "brace-expansion", "caller-path", @@ -1668,29 +3237,13 @@ "color-convert", "color-name", "concat-map", - "contains-path", "cross-spawn", "debug", - "debug-log", "deep-is", - "define-properties", - "deglob", "doctrine", - "error-ex", - "es-abstract", - "es-to-primitive", "escape-string-regexp", "eslint", - "eslint-config-standard", - "eslint-config-standard-jsx", - "eslint-import-resolver-node", - "eslint-module-utils", - "eslint-plugin-es", - "eslint-plugin-import", - "eslint-plugin-node", - "eslint-plugin-promise", - "eslint-plugin-react", - "eslint-plugin-standard", + "eslint-config-google", "eslint-scope", "eslint-utils", "eslint-visitor-keys", @@ -1706,46 +3259,27 @@ "fast-levenshtein", "figures", "file-entry-cache", - "find-root", - "find-up", "flat-cache", "fs.realpath", - "function-bind", "functional-red-black-tree", - "get-stdin", "glob", "globals", "graceful-fs", - "has", - "has-ansi", "has-flag", - "has-symbols", - "hosted-git-info", "iconv-lite", "ignore", "imurmurhash", "inflight", "inherits", "inquirer", - "is-arrayish", - "is-callable", - "is-date-object", "is-fullwidth-code-point", "is-promise", - "is-regex", - "is-resolvable", - "is-symbol", - "isarray", "isexe", "js-tokens", "js-yaml", - "json-parse-better-errors", "json-schema-traverse", "json-stable-stringify-without-jsonify", - "jsx-ast-utils", "levn", - "load-json-file", - "locate-path", "lodash", "mimic-fn", "minimatch", @@ -1755,43 +3289,24 @@ "mute-stream", "natural-compare", "nice-try", - "normalize-package-data", "object-assign", - "object-keys", "once", "onetime", "optionator", "os-tmpdir", - "p-limit", - "p-locate", - "p-try", - "parse-json", - "path-exists", "path-is-absolute", "path-is-inside", "path-key", - "path-parse", - "path-type", - "pify", - "pkg-conf", - "pkg-config", - "pkg-dir", "pluralize", "prelude-ls", "progress", - "prop-types", "punycode", - "react-is", - "read-pkg", - "read-pkg-up", "regexpp", "require-uncached", - "resolve", "resolve-from", "restore-cursor", "rimraf", "run-async", - "run-parallel", "rxjs", "safer-buffer", "semver", @@ -1799,126 +3314,327 @@ "shebang-regex", "signal-exit", "slice-ansi", - "spdx-correct", - "spdx-exceptions", - "spdx-expression-parse", - "spdx-license-ids", "sprintf-js", - "standard", - "standard-engine", "string-width", "strip-ansi", - "strip-bom", "strip-json-comments", "supports-color", - "symbol-observable", "table", "text-table", "through", "tmp", + "tslib", "type-check", - "uniq", "uri-js", - "validate-npm-package-license", "which", "wordwrap", "wrappy", "write", - "xtend", - "cachedir", - "mocha", - "proxyquire", - "standard", + "combined-stream", + "delayed-stream", + "far", + "commander", + "@babel/code-frame", + "@babel/core", + "@babel/generator", + "@babel/helper-function-name", + "@babel/helper-get-function-arity", + "@babel/helper-member-expression-to-functions", + "@babel/helper-module-imports", + "@babel/helper-module-transforms", + "@babel/helper-optimise-call-expression", + "@babel/helper-plugin-utils", + "@babel/helper-replace-supers", + "@babel/helper-simple-access", + "@babel/helper-split-export-declaration", + "@babel/helper-validator-identifier", + "@babel/helpers", + "@babel/highlight", + "@babel/parser", + "@babel/plugin-syntax-async-generators", + "@babel/plugin-syntax-bigint", + "@babel/plugin-syntax-class-properties", + "@babel/plugin-syntax-import-meta", + "@babel/plugin-syntax-json-strings", + "@babel/plugin-syntax-logical-assignment-operators", + "@babel/plugin-syntax-nullish-coalescing-operator", + "@babel/plugin-syntax-numeric-separator", + "@babel/plugin-syntax-object-rest-spread", + "@babel/plugin-syntax-optional-catch-binding", + "@babel/plugin-syntax-optional-chaining", + "@babel/template", + "@babel/traverse", + "@babel/types", + "@bcoe/v8-coverage", + "@cnakazawa/watch", + "@eslint/eslintrc", + "@istanbuljs/load-nyc-config", + "@istanbuljs/schema", + "@jest/console", + "@jest/core", + "@jest/environment", + "@jest/fake-timers", + "@jest/globals", + "@jest/reporters", + "@jest/source-map", + "@jest/test-result", + "@jest/test-sequencer", + "@jest/transform", + "@jest/types", + "@nodelib/fs.scandir", + "@nodelib/fs.stat", + "@nodelib/fs.walk", + "@sinonjs/commons", + "@sinonjs/fake-timers", + "@types/babel__core", + "@types/babel__generator", + "@types/babel__template", + "@types/babel__traverse", + "@types/color-name", + "@types/graceful-fs", + "@types/istanbul-lib-coverage", + "@types/istanbul-lib-report", + "@types/istanbul-reports", + "@types/jest", + "@types/json-schema", + "@types/json5", + "@types/node", + "@types/normalize-package-data", + "@types/prettier", + "@types/stack-utils", + "@types/yargs", + "@types/yargs-parser", + "@typescript-eslint/eslint-plugin", + "@typescript-eslint/experimental-utils", + "@typescript-eslint/parser", + "@typescript-eslint/scope-manager", + "@typescript-eslint/types", + "@typescript-eslint/typescript-estree", + "@typescript-eslint/visitor-keys", + "abab", + "acorn", + "acorn-globals", + "acorn-jsx", + "acorn-walk", + "ajv", + "ansi-colors", + "ansi-escapes", + "ansi-regex", + "ansi-styles", + "anymatch", + "argparse", + "arr-diff", + "arr-flatten", + "arr-union", + "array-includes", + "array-union", + "array-unique", + "array.prototype.flat", + "array.prototype.flatmap", + "asn1", + "assert-plus", + "assign-symbols", + "astral-regex", + "asynckit", + "atob", + "aws-sign2", + "aws4", + "babel-jest", + "babel-plugin-istanbul", + "babel-plugin-jest-hoist", + "babel-preset-current-node-syntax", + "babel-preset-jest", + "balanced-match", + "base", + "bcrypt-pbkdf", + "brace-expansion", + "braces", + "browser-process-hrtime", + "bser", + "buffer-from", + "cache-base", + "callsites", + "camelcase", + "capture-exit", "caseless", "chalk", - "ansi-styles", - "ava", - "coveralls", + "char-regex", + "ci-info", + "class-utils", + "cliui", + "co", + "collect-v8-coverage", + "collection-visit", + "color-convert", + "color-name", + "combined-stream", + "component-emitter", + "concat-map", + "contains-path", + "convert-source-map", + "copy-descriptor", + "core-util-is", + "cross-spawn", + "cssom", + "cssstyle", + "dashdash", + "data-urls", + "debug", + "debug-log", + "decamelize", + "decimal.js", + "decode-uri-component", + "deep-is", + "deepmerge", + "define-properties", + "define-property", + "deglob", + "delayed-stream", + "detect-newline", + "diff-sequences", + "dir-glob", + "doctrine", + "domexception", + "ecc-jsbn", + "emittery", + "emoji-regex", + "end-of-stream", + "enquirer", + "error-ex", + "es-abstract", + "es-to-primitive", + "escape-string-regexp", + "escodegen", + "eslint", + "eslint-config-standard", + "eslint-config-standard-jsx", + "eslint-config-standard-with-typescript", + "eslint-import-resolver-node", + "eslint-module-utils", + "eslint-plugin-es", + "eslint-plugin-import", + "eslint-plugin-jest", + "eslint-plugin-node", + "eslint-plugin-promise", + "eslint-plugin-react", + "eslint-plugin-standard", + "eslint-scope", + "eslint-utils", + "eslint-visitor-keys", + "espree", + "esprima", + "esquery", + "esrecurse", + "estraverse", + "esutils", + "exec-sh", "execa", + "exit", + "expand-brackets", + "expect", + "extend", + "extend-shallow", + "extglob", + "extsprintf", + "fast-deep-equal", + "fast-glob", + "fast-json-stable-stringify", + "fast-levenshtein", + "fastq", + "fb-watchman", + "file-entry-cache", + "fill-range", + "find-root", + "find-up", + "flat-cache", + "flatted", + "for-in", + "forever-agent", + "form-data", + "fragment-cache", + "fs.realpath", + "fsevents", + "function-bind", + "functional-red-black-tree", + "gensync", + "get-caller-file", + "get-package-type", + "get-stdin", + "get-stream", + "get-value", + "getpass", + "glob", + "glob-parent", + "globals", + "globby", + "graceful-fs", + "growly", + "har-schema", + "har-validator", + "has", + "has-flag", + "has-symbols", + "has-value", + "has-values", + "hosted-git-info", + "html-encoding-sniffer", + "html-escaper", + "http-signature", + "human-signals", + "iconv-lite", + "ignore", "import-fresh", - "matcha", - "nyc", - "resolve-from", - "supports-color", - "tsd", - "xo", - "check-more-types", - "@semantic-release/condition-travis", - "condition-node-version", - "coveralls", - "git-issues", - "grunt-cli", - "grunt-contrib-jshint", - "grunt-contrib-uglify", - "grunt-contrib-watch", - "grunt-deps-ok", - "grunt-gt", - "grunt-jshint-solid", - "grunt-mocha-test", - "grunt-nice-package", - "grunt-npm2bower-sync", - "grunt-readme", - "grunt-toc", - "grunt-xplain", - "include-version", - "jshint-summary", - "karma", - "karma-chrome-launcher", - "karma-mocha", - "karma-phantomjs-launcher", - "lazy-ass", - "lazy-ass-helpful", - "lcov-filter", - "lodash", - "matchdep", - "mocha", - "phantomjs-prebuilt", - "pkgfiles", - "pre-git", - "semantic-release", - "standard", - "webpack", - "ci-info", - "clear-module", - "standard", - "tape", - "cli-cursor", - "@types/node", - "ava", - "restore-cursor", - "tsd", - "xo", - "cli-table3", - "ansi-256-colors", - "cli-table", - "eslint-config-prettier", - "eslint-plugin-prettier", "jest", - "jest-runner-eslint", - "lerna-changelog", - "object-assign", - "prettier", - "string-width", + "standard", + "typescript", + "common-tags", + "@babel/cli", "@babel/code-frame", + "@babel/compat-data", "@babel/core", "@babel/generator", + "@babel/helper-annotate-as-pure", + "@babel/helper-builder-binary-assignment-operator-visitor", + "@babel/helper-compilation-targets", + "@babel/helper-create-class-features-plugin", + "@babel/helper-create-regexp-features-plugin", + "@babel/helper-define-map", + "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", + "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", + "@babel/helper-regex", + "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", + "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", + "@babel/plugin-proposal-async-generator-functions", + "@babel/plugin-proposal-class-properties", + "@babel/plugin-proposal-dynamic-import", + "@babel/plugin-proposal-export-default-from", + "@babel/plugin-proposal-json-strings", + "@babel/plugin-proposal-nullish-coalescing-operator", + "@babel/plugin-proposal-numeric-separator", + "@babel/plugin-proposal-object-rest-spread", + "@babel/plugin-proposal-optional-catch-binding", + "@babel/plugin-proposal-optional-chaining", + "@babel/plugin-proposal-private-methods", + "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", "@babel/plugin-syntax-bigint", "@babel/plugin-syntax-class-properties", + "@babel/plugin-syntax-dynamic-import", + "@babel/plugin-syntax-export-default-from", "@babel/plugin-syntax-json-strings", "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", @@ -1926,6 +3642,42 @@ "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", + "@babel/plugin-syntax-top-level-await", + "@babel/plugin-transform-arrow-functions", + "@babel/plugin-transform-async-to-generator", + "@babel/plugin-transform-block-scoped-functions", + "@babel/plugin-transform-block-scoping", + "@babel/plugin-transform-classes", + "@babel/plugin-transform-computed-properties", + "@babel/plugin-transform-destructuring", + "@babel/plugin-transform-dotall-regex", + "@babel/plugin-transform-duplicate-keys", + "@babel/plugin-transform-exponentiation-operator", + "@babel/plugin-transform-for-of", + "@babel/plugin-transform-function-name", + "@babel/plugin-transform-literals", + "@babel/plugin-transform-member-expression-literals", + "@babel/plugin-transform-modules-amd", + "@babel/plugin-transform-modules-commonjs", + "@babel/plugin-transform-modules-systemjs", + "@babel/plugin-transform-modules-umd", + "@babel/plugin-transform-named-capturing-groups-regex", + "@babel/plugin-transform-new-target", + "@babel/plugin-transform-object-super", + "@babel/plugin-transform-parameters", + "@babel/plugin-transform-property-literals", + "@babel/plugin-transform-regenerator", + "@babel/plugin-transform-reserved-words", + "@babel/plugin-transform-shorthand-properties", + "@babel/plugin-transform-spread", + "@babel/plugin-transform-sticky-regex", + "@babel/plugin-transform-template-literals", + "@babel/plugin-transform-typeof-symbol", + "@babel/plugin-transform-unicode-escapes", + "@babel/plugin-transform-unicode-regex", + "@babel/preset-env", + "@babel/preset-modules", + "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", @@ -1944,12 +3696,20 @@ "@jest/test-sequencer", "@jest/transform", "@jest/types", + "@rollup/plugin-babel", + "@rollup/plugin-node-resolve", + "@rollup/pluginutils", "@sinonjs/commons", + "@sinonjs/fake-timers", + "@textlint/ast-node-types", + "@textlint/markdown-to-ast", + "@tootallnate/once", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", "@types/color-name", + "@types/estree", "@types/graceful-fs", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", @@ -1957,6 +3717,7 @@ "@types/node", "@types/normalize-package-data", "@types/prettier", + "@types/resolve", "@types/stack-utils", "@types/yargs", "@types/yargs-parser", @@ -1966,76 +3727,95 @@ "acorn-jsx", "acorn-walk", "agent-base", - "agentkeepalive", - "aggregate-error", "ajv", + "anchor-markdown-header", "ansi-escapes", "ansi-regex", "ansi-styles", - "any-promise", "anymatch", - "aproba", "argparse", + "argv", "arr-diff", "arr-flatten", "arr-union", - "array-equal", "array-unique", "asn1", "assert-plus", "assign-symbols", "astral-regex", + "async-each", "asynckit", "atob", "aws-sign2", "aws4", + "babel-code-frame", + "babel-core", + "babel-eslint", + "babel-generator", + "babel-helpers", "babel-jest", + "babel-messages", + "babel-plugin-add-module-exports", + "babel-plugin-dynamic-import-node", "babel-plugin-istanbul", "babel-plugin-jest-hoist", "babel-preset-current-node-syntax", "babel-preset-jest", + "babel-register", + "babel-runtime", + "babel-template", + "babel-traverse", + "babel-types", + "babylon", + "bail", "balanced-match", "base", "bcrypt-pbkdf", + "binary-extensions", + "bindings", + "boundary", "brace-expansion", "braces", "browser-process-hrtime", - "browser-resolve", + "browserslist", "bser", "buffer-from", - "cacache", + "builtin-modules", "cache-base", - "caller-callsite", - "caller-path", "callsites", "camelcase", + "caniuse-lite", "capture-exit", "caseless", "chalk", + "char-regex", + "character-entities", + "character-entities-legacy", + "character-reference-invalid", "chardet", - "chownr", + "chokidar", "ci-info", "class-utils", - "clean-stack", "cli-cursor", - "cli-highlight", "cli-width", "cliui", "co", + "codecov", + "collapse-white-space", "collect-v8-coverage", "collection-visit", "color-convert", "color-name", - "colors", "combined-stream", + "commander", "component-emitter", "concat-map", "convert-source-map", - "copy-concurrently", "copy-descriptor", + "core-js", + "core-js-compat", "core-util-is", - "cosmiconfig", - "create-jest-runner", + "cross-env", "cross-spawn", "cssom", "cssstyle", @@ -2043,771 +3823,629 @@ "data-urls", "debug", "decamelize", + "decimal.js", "decode-uri-component", + "deep-freeze", "deep-is", "deepmerge", + "define-properties", "define-property", "delayed-stream", - "depd", + "detect-indent", "detect-newline", "diff-sequences", + "doctoc", "doctrine", - "domexception", - "ecc-jsbn", - "emoji-regex", - "encoding", - "end-of-stream", - "err-code", - "error-ex", - "es6-promise", - "es6-promisify", - "escape-string-regexp", - "escodegen", - "eslint", - "eslint-scope", - "eslint-utils", - "eslint-visitor-keys", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "esutils", - "exec-sh", - "execa", - "exit", - "expand-brackets", - "expect", - "extend", - "extend-shallow", - "external-editor", - "extglob", - "extsprintf", - "fast-deep-equal", - "fast-diff", - "fast-json-stable-stringify", - "fast-levenshtein", - "fb-watchman", - "figgy-pudding", - "figures", - "file-entry-cache", - "fill-range", - "find-up", - "flat-cache", - "flatted", - "for-in", - "forever-agent", - "form-data", - "fragment-cache", - "fs-minipass", - "fs-write-stream-atomic", - "fs.realpath", - "fsevents", - "functional-red-black-tree", - "gensync", - "get-caller-file", - "get-stdin", - "get-stream", - "get-value", - "getpass", - "glob", - "glob-parent", - "globals", - "graceful-fs", - "growly", - "har-schema", - "har-validator", - "has-flag", - "has-value", - "has-values", - "highlight.js", - "hosted-git-info", - "html-encoding-sniffer", - "html-escaper", - "http-cache-semantics", - "http-proxy-agent", - "http-signature", - "https-proxy-agent", - "human-signals", - "humanize-ms", - "iconv-lite", - "iferr", - "ignore", - "import-fresh", - "import-local", - "imurmurhash", - "indent-string", - "infer-owner", - "inflight", - "inherits", - "inquirer", - "ip", - "ip-regex", - "is-accessor-descriptor", - "is-arrayish", - "cli-truncate", - "ava", - "slice-ansi", - "string-width", - "tsd", - "xo", - "code-point-at", - "ava", - "color-convert", - "chalk", - "color-name", - "xo", - "color-name", - "colors", - "@babel/code-frame", - "@babel/highlight", - "acorn", - "acorn-jsx", - "ajv", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "argparse", - "astral-regex", - "balanced-match", - "brace-expansion", - "caller-path", - "callsites", - "chalk", - "chardet", - "circular-json", - "cli-cursor", - "cli-width", - "color-convert", - "color-name", - "concat-map", - "cross-spawn", - "debug", - "deep-is", - "doctrine", - "escape-string-regexp", - "eslint", - "eslint-config-google", - "eslint-scope", - "eslint-utils", - "eslint-visitor-keys", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "esutils", - "external-editor", - "fast-deep-equal", - "fast-json-stable-stringify", - "fast-levenshtein", - "figures", - "file-entry-cache", - "flat-cache", - "fs.realpath", - "functional-red-black-tree", - "glob", - "globals", - "graceful-fs", - "has-flag", - "iconv-lite", - "ignore", - "imurmurhash", - "inflight", - "inherits", - "inquirer", - "is-fullwidth-code-point", - "is-promise", - "isexe", - "js-tokens", - "js-yaml", - "json-schema-traverse", - "json-stable-stringify-without-jsonify", - "levn", - "lodash", - "mimic-fn", - "minimatch", - "minimist", - "mkdirp", - "ms", - "mute-stream", - "natural-compare", - "nice-try", - "object-assign", - "once", - "onetime", - "optionator", - "os-tmpdir", - "path-is-absolute", - "path-is-inside", - "path-key", - "pluralize", - "prelude-ls", - "progress", - "punycode", - "regexpp", - "require-uncached", - "resolve-from", - "restore-cursor", - "rimraf", - "run-async", - "rxjs", - "safer-buffer", - "semver", - "shebang-command", - "shebang-regex", - "signal-exit", - "slice-ansi", - "sprintf-js", - "string-width", - "strip-ansi", - "strip-json-comments", - "supports-color", - "table", - "text-table", - "through", - "tmp", - "tslib", - "type-check", - "uri-js", - "which", - "wordwrap", - "wrappy", - "write", - "combined-stream", - "delayed-stream", - "far", - "commander", + "dom-serializer", + "domelementtype", + "eslint", + "eslint-config-prettier", + "eslint-plugin-prettier", + "jest", + "micromatch", + "prettier", + "rimraf", + "rollup", + "rollup-plugin-uglify", + "concat-map", + "tape", + "concat-stream", + "buffer-from", + "inherits", + "readable-stream", + "tape", + "typedarray", + "core-util-is", + "cross-spawn", "@babel/code-frame", "@babel/core", "@babel/generator", + "@babel/helper-annotate-as-pure", + "@babel/helper-builder-binary-assignment-operator-visitor", + "@babel/helper-builder-react-jsx", + "@babel/helper-call-delegate", + "@babel/helper-create-class-features-plugin", + "@babel/helper-create-regexp-features-plugin", + "@babel/helper-define-map", + "@babel/helper-explode-assignable-expression", "@babel/helper-function-name", "@babel/helper-get-function-arity", + "@babel/helper-hoist-variables", "@babel/helper-member-expression-to-functions", "@babel/helper-module-imports", "@babel/helper-module-transforms", "@babel/helper-optimise-call-expression", "@babel/helper-plugin-utils", + "@babel/helper-regex", + "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", "@babel/helper-split-export-declaration", - "@babel/helper-validator-identifier", + "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", "@babel/parser", + "@babel/plugin-proposal-async-generator-functions", + "@babel/plugin-proposal-class-properties", + "@babel/plugin-proposal-dynamic-import", + "@babel/plugin-proposal-json-strings", + "@babel/plugin-proposal-nullish-coalescing-operator", + "@babel/plugin-proposal-object-rest-spread", + "@babel/plugin-proposal-optional-catch-binding", + "@babel/plugin-proposal-optional-chaining", + "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", - "@babel/plugin-syntax-bigint", - "@babel/plugin-syntax-class-properties", - "@babel/plugin-syntax-import-meta", + "@babel/plugin-syntax-dynamic-import", "@babel/plugin-syntax-json-strings", - "@babel/plugin-syntax-logical-assignment-operators", + "@babel/plugin-syntax-jsx", "@babel/plugin-syntax-nullish-coalescing-operator", - "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", + "@babel/plugin-syntax-top-level-await", + "@babel/plugin-transform-arrow-functions", + "@babel/plugin-transform-async-to-generator", + "@babel/plugin-transform-block-scoped-functions", + "@babel/plugin-transform-block-scoping", + "@babel/plugin-transform-classes", + "@babel/plugin-transform-computed-properties", + "@babel/plugin-transform-destructuring", + "@babel/plugin-transform-dotall-regex", + "@babel/plugin-transform-duplicate-keys", + "@babel/plugin-transform-exponentiation-operator", + "@babel/plugin-transform-for-of", + "@babel/plugin-transform-function-name", + "@babel/plugin-transform-literals", + "@babel/plugin-transform-member-expression-literals", + "@babel/plugin-transform-modules-amd", + "@babel/plugin-transform-modules-commonjs", + "@babel/plugin-transform-modules-systemjs", + "@babel/plugin-transform-modules-umd", + "@babel/plugin-transform-named-capturing-groups-regex", + "@babel/plugin-transform-new-target", + "@babel/plugin-transform-object-super", + "@babel/plugin-transform-parameters", + "@babel/plugin-transform-property-literals", + "@babel/plugin-transform-react-display-name", + "@babel/plugin-transform-react-jsx", + "@babel/plugin-transform-react-jsx-self", + "@babel/plugin-transform-react-jsx-source", + "@babel/plugin-transform-regenerator", + "@babel/plugin-transform-reserved-words", + "@babel/plugin-transform-runtime", + "@babel/plugin-transform-shorthand-properties", + "@babel/plugin-transform-spread", + "@babel/plugin-transform-sticky-regex", + "@babel/plugin-transform-template-literals", + "@babel/plugin-transform-typeof-symbol", + "@babel/plugin-transform-unicode-regex", + "@babel/preset-env", + "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", - "@bcoe/v8-coverage", "@cnakazawa/watch", - "@istanbuljs/load-nyc-config", - "@istanbuljs/schema", + "@commitlint/cli", + "@commitlint/config-conventional", + "@commitlint/ensure", + "@commitlint/execute-rule", + "@commitlint/format", + "@commitlint/is-ignored", + "@commitlint/lint", + "@commitlint/load", + "@commitlint/message", + "@commitlint/parse", + "@commitlint/read", + "@commitlint/resolve-extends", + "@commitlint/rules", + "@commitlint/to-lines", + "@commitlint/top-level", "@jest/console", "@jest/core", "@jest/environment", "@jest/fake-timers", - "@jest/globals", "@jest/reporters", "@jest/source-map", "@jest/test-result", "@jest/test-sequencer", "@jest/transform", "@jest/types", - "@sinonjs/commons", - "@sinonjs/fake-timers", + "@marionebl/sander", + "@nodelib/fs.scandir", + "@nodelib/fs.stat", + "@nodelib/fs.walk", + "@samverschueren/stream-to-observable", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", - "@types/color-name", - "@types/eslint-visitor-keys", - "@types/graceful-fs", + "@types/events", + "@types/glob", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", - "@types/jest", "@types/json-schema", + "@types/minimatch", + "@types/minimist", "@types/node", "@types/normalize-package-data", - "@types/prettier", + "@types/semver", "@types/stack-utils", "@types/yargs", "@types/yargs-parser", - "@typescript-eslint/eslint-plugin", "@typescript-eslint/experimental-utils", - "@typescript-eslint/parser", "@typescript-eslint/typescript-estree", "abab", "acorn", "acorn-globals", "acorn-jsx", "acorn-walk", + "add-stream", + "aggregate-error", "ajv", "ansi-escapes", "ansi-regex", "ansi-styles", + "any-observable", "anymatch", "argparse", "arr-diff", "arr-flatten", "arr-union", + "array-equal", + "array-find-index", + "array-ify", "array-includes", + "array-union", "array-unique", + "arrify", "asn1", "assert-plus", "assign-symbols", "astral-regex", + "async-each", + "async-limiter", "asynckit", "atob", "aws-sign2", "aws4", + "babel-code-frame", + "babel-core", + "babel-eslint", + "babel-generator", + "babel-helpers", "babel-jest", + "babel-messages", + "babel-plugin-add-module-exports", + "babel-plugin-dynamic-import-node", "babel-plugin-istanbul", "babel-plugin-jest-hoist", - "babel-preset-current-node-syntax", + "babel-plugin-lodash", + "babel-plugin-transform-react-remove-prop-types", + "babel-polyfill", "babel-preset-jest", + "babel-preset-moxy", + "babel-register", + "babel-runtime", + "babel-template", + "babel-traverse", + "babel-types", + "babylon", "balanced-match", "base", "bcrypt-pbkdf", + "binary-extensions", + "brace-expansion", + "braces", + "browser-process-hrtime", + "browser-resolve", + "browserslist", + "browserslist-config-google", + "bser", + "buffer-from", + "cache-base", + "caller-callsite", + "caller-path", + "callsites", + "camelcase", + "camelcase-keys", + "caniuse-lite", + "capture-exit", + "caseless", + "chalk", + "chardet", + "chokidar", + "ci-info", + "class-utils", + "clean-stack", + "cli-cursor", + "cli-truncate", + "cli-width", + "cliui", + "co", + "code-point-at", + "collection-visit", + "color-convert", + "color-name", + "combined-stream", + "commander", + "comment-parser", + "compare-func", + "component-emitter", + "concat-map", + "concat-stream", + "conventional-changelog", + "conventional-changelog-angular", + "conventional-changelog-atom", + "conventional-changelog-codemirror", + "conventional-changelog-config-spec", + "conventional-changelog-conventionalcommits", + "conventional-changelog-core", + "conventional-changelog-ember", + "conventional-changelog-eslint", + "conventional-changelog-express", + "conventional-changelog-jquery", + "conventional-changelog-jshint", + "conventional-changelog-preset-loader", + "eslint", + "eslint-config-moxy", + "husky", + "jest", + "lint-staged", + "mkdirp", + "path-key", + "rimraf", + "shebang-command", + "standard-version", + "which", + "dashdash", + "@babel/code-frame", + "@babel/generator", + "@babel/helper-function-name", + "@babel/helper-get-function-arity", + "@babel/helper-split-export-declaration", + "@babel/helper-validator-identifier", + "@babel/highlight", + "@babel/parser", + "@babel/template", + "@babel/traverse", + "@babel/types", + "@eslint/eslintrc", + "@types/color-name", + "acorn", + "acorn-jsx", + "ajv", + "ansi-colors", + "ansi-regex", + "ansi-styles", + "anymatch", + "append-transform", + "archy", + "arg", + "argparse", + "asn1", + "assert-plus", + "astral-regex", + "async-hook-domain", + "asynckit", + "aws-sign2", + "aws4", + "balanced-match", + "bcrypt-pbkdf", + "binary-extensions", + "bind-obj-methods", "brace-expansion", "braces", "browser-process-hrtime", - "bser", "buffer-from", - "cache-base", + "caching-transform", "callsites", "camelcase", - "capture-exit", "caseless", "chalk", - "char-regex", - "chardet", - "ci-info", - "class-utils", - "cli-cursor", - "cli-width", + "chokidar", "cliui", - "co", - "collect-v8-coverage", - "collection-visit", + "code-point-at", "color-convert", "color-name", + "color-support", "combined-stream", - "component-emitter", + "commondir", "concat-map", - "contains-path", "convert-source-map", - "copy-descriptor", "core-util-is", + "coveralls", + "cp-file", "cross-spawn", - "cssom", - "cssstyle", "dashdash", - "data-urls", "debug", - "debug-log", "decamelize", - "decimal.js", - "decode-uri-component", "deep-is", - "deepmerge", - "define-properties", - "define-property", - "deglob", + "default-require-extensions", "delayed-stream", - "detect-newline", - "diff-sequences", + "diff", + "diff-frag", "doctrine", - "domexception", "ecc-jsbn", "emoji-regex", - "end-of-stream", + "enquirer", "error-ex", - "es-abstract", - "es-to-primitive", + "es6-error", "escape-string-regexp", - "escodegen", "eslint", - "eslint-config-standard", - "eslint-config-standard-jsx", - "eslint-config-standard-with-typescript", - "eslint-import-resolver-node", - "eslint-module-utils", - "eslint-plugin-es", - "eslint-plugin-import", - "eslint-plugin-jest", - "eslint-plugin-node", - "eslint-plugin-promise", - "eslint-plugin-react", - "eslint-plugin-standard", + "eslint-config-prettier", + "eslint-plugin-prettier", "eslint-scope", "eslint-utils", "eslint-visitor-keys", + "esm", "espree", "esprima", "esquery", "esrecurse", "estraverse", "esutils", - "exec-sh", - "execa", - "exit", - "expand-brackets", - "expect", + "events-to-array", "extend", - "extend-shallow", - "external-editor", - "extglob", "extsprintf", "fast-deep-equal", + "fast-diff", "fast-json-stable-stringify", "fast-levenshtein", - "fb-watchman", - "figures", "file-entry-cache", "fill-range", - "find-root", + "find-cache-dir", "find-up", + "findit", "flat-cache", "flatted", - "for-in", + "flow-parser", + "flow-remove-types", + "foreground-child", "forever-agent", "form-data", - "fragment-cache", + "fs-exists-cached", "fs.realpath", "fsevents", - "function-bind", + "function-loop", "functional-red-black-tree", - "gensync", "get-caller-file", - "get-package-type", "get-stdin", - "get-stream", - "get-value", "getpass", "glob", "glob-parent", "globals", "graceful-fs", - "growly", "har-schema", "har-validator", - "has", "has-flag", - "has-symbols", - "has-value", - "has-values", + "hasha", "hosted-git-info", - "html-encoding-sniffer", "html-escaper", "http-signature", - "human-signals", - "iconv-lite", "ignore", "import-fresh", - "import-local", "imurmurhash", "inflight", "inherits", - "inquirer", - "ip-regex", - "is-accessor-descriptor", "is-arrayish", - "is-buffer", - "is-callable", - "is-ci", - "is-data-descriptor", - "jest", - "standard", - "typescript", - "common-tags", - "@babel/cli", - "@babel/code-frame", - "@babel/compat-data", - "@babel/core", - "@babel/generator", - "@babel/helper-annotate-as-pure", - "@babel/helper-builder-binary-assignment-operator-visitor", - "@babel/helper-compilation-targets", - "@babel/helper-create-class-features-plugin", - "@babel/helper-create-regexp-features-plugin", - "@babel/helper-define-map", - "@babel/helper-explode-assignable-expression", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-hoist-variables", - "@babel/helper-member-expression-to-functions", - "@babel/helper-module-imports", - "@babel/helper-module-transforms", - "@babel/helper-optimise-call-expression", - "@babel/helper-plugin-utils", - "@babel/helper-regex", - "@babel/helper-remap-async-to-generator", - "@babel/helper-replace-supers", - "@babel/helper-simple-access", - "@babel/helper-split-export-declaration", - "@babel/helper-validator-identifier", - "@babel/helper-wrap-function", - "@babel/helpers", - "@babel/highlight", - "@babel/parser", - "@babel/plugin-proposal-async-generator-functions", - "@babel/plugin-proposal-class-properties", - "@babel/plugin-proposal-dynamic-import", - "@babel/plugin-proposal-export-default-from", - "@babel/plugin-proposal-json-strings", - "@babel/plugin-proposal-nullish-coalescing-operator", - "@babel/plugin-proposal-numeric-separator", - "@babel/plugin-proposal-object-rest-spread", - "@babel/plugin-proposal-optional-catch-binding", - "@babel/plugin-proposal-optional-chaining", - "@babel/plugin-proposal-private-methods", - "@babel/plugin-proposal-unicode-property-regex", - "@babel/plugin-syntax-async-generators", - "@babel/plugin-syntax-bigint", - "@babel/plugin-syntax-class-properties", - "@babel/plugin-syntax-dynamic-import", - "@babel/plugin-syntax-export-default-from", - "@babel/plugin-syntax-json-strings", - "@babel/plugin-syntax-logical-assignment-operators", - "@babel/plugin-syntax-nullish-coalescing-operator", - "@babel/plugin-syntax-numeric-separator", - "@babel/plugin-syntax-object-rest-spread", - "@babel/plugin-syntax-optional-catch-binding", - "@babel/plugin-syntax-optional-chaining", - "@babel/plugin-syntax-top-level-await", + "is-binary-path", + "is-extglob", + "is-fullwidth-code-point", + "is-glob", + "is-number", + "is-stream", + "is-typedarray", + "isexe", + "isstream", + "istanbul-lib-coverage", + "istanbul-lib-hook", + "istanbul-lib-instrument", + "istanbul-lib-processinfo", + "istanbul-lib-report", + "istanbul-lib-source-maps", + "istanbul-reports", + "jackspeak", + "js-tokens", + "js-yaml", + "jsbn", + "jsesc", + "json-parse-better-errors", + "json-schema", + "json-schema-traverse", + "json-stable-stringify-without-jsonify", + "json-stringify-safe", + "jsprim", + "lcov-parse", + "levn", + "load-json-file", + "locate-path", + "lodash", + "lodash.flattendeep", + "log-driver", + "loose-envify", + "lru-cache", + "make-dir", + "make-error", + "merge-source-map", + "mime-db", + "mime-types", + "minimatch", + "minimist", + "minipass", + "mkdirp", + "ms", + "natural-compare", + "nested-error-stacks", + "nice-try", + "node-modules-regexp", + "normalize-package-data", + "normalize-path", + "number-is-nan", + "nyc", + "oauth-sign", + "object-assign", + "once", + "opener", + "optionator", + "os-homedir", + "own-or", + "own-or-env", + "p-limit", + "p-locate", + "p-try", + "package-hash", + "parent-module", + "parse-json", + "path-exists", + "path-is-absolute", + "path-key", + "path-parse", + "path-type", + "performance-now", + "picomatch", + "pify", + "pirates", + "pkg-dir", + "prelude-ls", + "prettier", + "prettier-linter-helpers", + "progress", + "prop-types", + "pseudomap", + "psl", + "punycode", + "qs", + "react", + "react-is", + "read-pkg", + "read-pkg-up", + "readdirp", + "regexpp", + "release-zalgo", + "request", + "require-directory", + "require-main-filename", + "resolve", + "resolve-from", + "rimraf", + "safe-buffer", + "safer-buffer", + "semver", + "set-blocking", + "shebang-command", + "shebang-regex", + "signal-exit", + "slice-ansi", + "source-map", + "source-map-support", + "spawn-wrap", + "spdx-correct", + "spdx-exceptions", + "spdx-expression-parse", + "spdx-license-ids", + "sprintf-js", + "sshpk", + "stack-utils", + "string-width", + "strip-ansi", + "tap", + "date-fns", + "@babel/cli", + "@babel/core", + "@babel/node", "@babel/plugin-transform-arrow-functions", - "@babel/plugin-transform-async-to-generator", - "@babel/plugin-transform-block-scoped-functions", "@babel/plugin-transform-block-scoping", - "@babel/plugin-transform-classes", - "@babel/plugin-transform-computed-properties", "@babel/plugin-transform-destructuring", - "@babel/plugin-transform-dotall-regex", - "@babel/plugin-transform-duplicate-keys", - "@babel/plugin-transform-exponentiation-operator", - "@babel/plugin-transform-for-of", - "@babel/plugin-transform-function-name", - "@babel/plugin-transform-literals", - "@babel/plugin-transform-member-expression-literals", - "@babel/plugin-transform-modules-amd", "@babel/plugin-transform-modules-commonjs", - "@babel/plugin-transform-modules-systemjs", - "@babel/plugin-transform-modules-umd", - "@babel/plugin-transform-named-capturing-groups-regex", - "@babel/plugin-transform-new-target", - "@babel/plugin-transform-object-super", "@babel/plugin-transform-parameters", - "@babel/plugin-transform-property-literals", - "@babel/plugin-transform-regenerator", - "@babel/plugin-transform-reserved-words", - "@babel/plugin-transform-shorthand-properties", - "@babel/plugin-transform-spread", - "@babel/plugin-transform-sticky-regex", "@babel/plugin-transform-template-literals", - "@babel/plugin-transform-typeof-symbol", - "@babel/plugin-transform-unicode-escapes", - "@babel/plugin-transform-unicode-regex", "@babel/preset-env", - "@babel/preset-modules", - "@babel/runtime", - "@babel/template", - "@babel/traverse", - "@babel/types", - "@bcoe/v8-coverage", - "@cnakazawa/watch", - "@istanbuljs/load-nyc-config", - "@istanbuljs/schema", - "@jest/console", - "@jest/core", - "@jest/environment", - "@jest/fake-timers", - "@jest/globals", - "@jest/reporters", - "@jest/source-map", - "@jest/test-result", - "@jest/test-sequencer", - "@jest/transform", - "@jest/types", - "@rollup/plugin-babel", - "@rollup/plugin-node-resolve", - "@rollup/pluginutils", - "@sinonjs/commons", - "@sinonjs/fake-timers", - "@textlint/ast-node-types", - "@textlint/markdown-to-ast", - "@tootallnate/once", - "@types/babel__core", - "@types/babel__generator", - "@types/babel__template", - "@types/babel__traverse", - "@types/color-name", - "@types/estree", - "@types/graceful-fs", - "@types/istanbul-lib-coverage", - "@types/istanbul-lib-report", - "@types/istanbul-reports", + "@babel/preset-typescript", + "@types/jest", "@types/node", - "@types/normalize-package-data", - "@types/prettier", - "@types/resolve", - "@types/stack-utils", - "@types/yargs", - "@types/yargs-parser", - "abab", - "acorn", - "acorn-globals", - "acorn-jsx", - "acorn-walk", - "agent-base", - "ajv", - "anchor-markdown-header", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "anymatch", - "argparse", - "argv", - "arr-diff", - "arr-flatten", - "arr-union", - "array-unique", - "asn1", - "assert-plus", - "assign-symbols", - "astral-regex", - "async-each", - "asynckit", - "atob", - "aws-sign2", - "aws4", - "babel-code-frame", - "babel-core", + "@types/power-assert", + "@types/sinon", + "@typescript-eslint/eslint-plugin", + "@typescript-eslint/parser", "babel-eslint", - "babel-generator", - "babel-helpers", - "babel-jest", - "babel-messages", + "babel-loader", + "babel-plugin-add-import-extension", "babel-plugin-add-module-exports", - "babel-plugin-dynamic-import-node", - "babel-plugin-istanbul", - "babel-plugin-jest-hoist", - "babel-preset-current-node-syntax", - "babel-preset-jest", - "babel-register", - "babel-runtime", - "babel-template", - "babel-traverse", - "babel-types", - "babylon", - "bail", - "balanced-match", - "base", - "bcrypt-pbkdf", - "binary-extensions", - "bindings", - "boundary", - "brace-expansion", - "braces", - "browser-process-hrtime", - "browserslist", - "bser", - "buffer-from", - "builtin-modules", - "cache-base", - "callsites", - "camelcase", - "caniuse-lite", - "capture-exit", - "caseless", - "chalk", - "char-regex", - "character-entities", - "character-entities-legacy", - "character-reference-invalid", - "chardet", - "chokidar", - "ci-info", - "class-utils", - "cli-cursor", - "cli-width", - "cliui", - "co", - "codecov", - "collapse-white-space", - "collect-v8-coverage", - "collection-visit", - "color-convert", - "color-name", - "combined-stream", - "commander", - "component-emitter", - "concat-map", - "convert-source-map", - "copy-descriptor", - "core-js", - "core-js-compat", - "core-util-is", - "cross-env", - "cross-spawn", - "cssom", - "cssstyle", - "dashdash", - "data-urls", - "debug", - "decamelize", - "decimal.js", - "decode-uri-component", - "deep-freeze", - "deep-is", - "deepmerge", - "define-properties", - "define-property", - "delayed-stream", - "detect-indent", - "detect-newline", - "diff-sequences", - "doctoc", - "doctrine", - "dom-serializer", - "domelementtype", + "babel-preset-power-assert", + "cloc", + "coveralls", "eslint", "eslint-config-prettier", - "eslint-plugin-prettier", + "firebase", + "flow-bin", + "fs-promise", + "glob-promise", + "gzip-size-cli", + "husky", + "istanbul-instrumenter-loader", "jest", - "micromatch", + "jest-plugin-context", + "js-beautify", + "jsdoc-babel", + "jsdoc-to-markdown", + "karma", + "karma-benchmark", + "karma-benchmark-reporter", + "karma-chrome-launcher", + "karma-cli", + "karma-coverage", + "karma-coverage-istanbul-reporter", + "karma-mocha", + "karma-mocha-reporter", + "karma-phantomjs-launcher", + "karma-sauce-launcher", + "karma-sourcemap-loader", + "karma-webpack", + "lint-staged", + "lodash", + "lodash.clonedeep", + "mocha", + "moment", + "mz", + "node-fetch", + "power-assert", "prettier", "rimraf", - "rollup", - "rollup-plugin-uglify", - "concat-map", - "tape", - "concat-stream", - "buffer-from", - "inherits", - "readable-stream", - "tape", - "typedarray", - "core-util-is", - "cross-spawn", + "sinon", + "size-limit", + "snazzy", + "typescript", + "webpack", + "webpack-cli", + "world-countries", "@babel/code-frame", - "@babel/core", + "@babel/compat-data", "@babel/generator", "@babel/helper-annotate-as-pure", "@babel/helper-builder-binary-assignment-operator-visitor", - "@babel/helper-builder-react-jsx", "@babel/helper-call-delegate", + "@babel/helper-compilation-targets", "@babel/helper-create-class-features-plugin", "@babel/helper-create-regexp-features-plugin", "@babel/helper-define-map", @@ -2824,7 +4462,9 @@ "@babel/helper-remap-async-to-generator", "@babel/helper-replace-supers", "@babel/helper-simple-access", + "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", + "@babel/helper-validator-identifier", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", @@ -2832,28 +4472,33 @@ "@babel/plugin-proposal-async-generator-functions", "@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-dynamic-import", + "@babel/plugin-proposal-export-namespace-from", "@babel/plugin-proposal-json-strings", + "@babel/plugin-proposal-logical-assignment-operators", "@babel/plugin-proposal-nullish-coalescing-operator", + "@babel/plugin-proposal-numeric-separator", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-optional-catch-binding", "@babel/plugin-proposal-optional-chaining", + "@babel/plugin-proposal-private-methods", "@babel/plugin-proposal-unicode-property-regex", "@babel/plugin-syntax-async-generators", + "@babel/plugin-syntax-class-properties", "@babel/plugin-syntax-dynamic-import", + "@babel/plugin-syntax-export-namespace-from", "@babel/plugin-syntax-json-strings", - "@babel/plugin-syntax-jsx", + "@babel/plugin-syntax-logical-assignment-operators", "@babel/plugin-syntax-nullish-coalescing-operator", + "@babel/plugin-syntax-numeric-separator", "@babel/plugin-syntax-object-rest-spread", "@babel/plugin-syntax-optional-catch-binding", "@babel/plugin-syntax-optional-chaining", "@babel/plugin-syntax-top-level-await", - "@babel/plugin-transform-arrow-functions", + "@babel/plugin-syntax-typescript", "@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-block-scoped-functions", - "@babel/plugin-transform-block-scoping", "@babel/plugin-transform-classes", "@babel/plugin-transform-computed-properties", - "@babel/plugin-transform-destructuring", "@babel/plugin-transform-dotall-regex", "@babel/plugin-transform-duplicate-keys", "@babel/plugin-transform-exponentiation-operator", @@ -2862,48 +4507,29 @@ "@babel/plugin-transform-literals", "@babel/plugin-transform-member-expression-literals", "@babel/plugin-transform-modules-amd", - "@babel/plugin-transform-modules-commonjs", "@babel/plugin-transform-modules-systemjs", "@babel/plugin-transform-modules-umd", "@babel/plugin-transform-named-capturing-groups-regex", "@babel/plugin-transform-new-target", "@babel/plugin-transform-object-super", - "@babel/plugin-transform-parameters", "@babel/plugin-transform-property-literals", - "@babel/plugin-transform-react-display-name", - "@babel/plugin-transform-react-jsx", - "@babel/plugin-transform-react-jsx-self", - "@babel/plugin-transform-react-jsx-source", "@babel/plugin-transform-regenerator", "@babel/plugin-transform-reserved-words", - "@babel/plugin-transform-runtime", "@babel/plugin-transform-shorthand-properties", "@babel/plugin-transform-spread", "@babel/plugin-transform-sticky-regex", - "@babel/plugin-transform-template-literals", "@babel/plugin-transform-typeof-symbol", + "@babel/plugin-transform-typescript", + "@babel/plugin-transform-unicode-escapes", "@babel/plugin-transform-unicode-regex", - "@babel/preset-env", + "@babel/polyfill", + "@babel/preset-modules", + "@babel/register", "@babel/runtime", "@babel/template", "@babel/traverse", "@babel/types", "@cnakazawa/watch", - "@commitlint/cli", - "@commitlint/config-conventional", - "@commitlint/ensure", - "@commitlint/execute-rule", - "@commitlint/format", - "@commitlint/is-ignored", - "@commitlint/lint", - "@commitlint/load", - "@commitlint/message", - "@commitlint/parse", - "@commitlint/read", - "@commitlint/resolve-extends", - "@commitlint/rules", - "@commitlint/to-lines", - "@commitlint/top-level", "@jest/console", "@jest/core", "@jest/environment", @@ -2914,59 +4540,106 @@ "@jest/test-sequencer", "@jest/transform", "@jest/types", - "@marionebl/sander", - "@nodelib/fs.scandir", + "@mrmlnc/readdir-enhanced", "@nodelib/fs.stat", - "@nodelib/fs.walk", "@samverschueren/stream-to-observable", + "@sinonjs/commons", + "@sinonjs/formatio", + "@sinonjs/samsam", + "@sinonjs/text-encoding", "@types/babel__core", "@types/babel__generator", "@types/babel__template", "@types/babel__traverse", - "@types/events", - "@types/glob", + "@types/color-name", + "@types/empower", + "@types/eslint-visitor-keys", "@types/istanbul-lib-coverage", "@types/istanbul-lib-report", "@types/istanbul-reports", "@types/json-schema", - "@types/minimatch", - "@types/minimist", - "@types/node", - "@types/normalize-package-data", - "@types/semver", + "@types/power-assert-formatter", + "@types/q", + "@types/sinonjs__fake-timers", "@types/stack-utils", "@types/yargs", "@types/yargs-parser", "@typescript-eslint/experimental-utils", "@typescript-eslint/typescript-estree", + "@webassemblyjs/ast", + "@webassemblyjs/floating-point-hex-parser", + "@webassemblyjs/helper-api-error", + "@webassemblyjs/helper-buffer", + "@webassemblyjs/helper-code-frame", + "@webassemblyjs/helper-fsm", + "@webassemblyjs/helper-module-context", + "@webassemblyjs/helper-wasm-bytecode", + "@webassemblyjs/helper-wasm-section", + "@webassemblyjs/ieee754", + "@webassemblyjs/leb128", + "@webassemblyjs/utf8", + "@webassemblyjs/wasm-edit", + "@webassemblyjs/wasm-gen", + "@webassemblyjs/wasm-opt", + "@webassemblyjs/wasm-parser", + "@webassemblyjs/wast-parser", + "@webassemblyjs/wast-printer", + "@xtuc/ieee754", + "@xtuc/long", "abab", + "abbrev", + "accepts", "acorn", + "acorn-es7-plugin", "acorn-globals", "acorn-jsx", "acorn-walk", - "add-stream", - "aggregate-error", + "adm-zip", + "after", + "agent-base", "ajv", + "ajv-errors", + "ajv-keywords", + "alphanum-sort", + "amdefine", + "ansi-colors", + "ansi-escape-sequences", "ansi-escapes", + "ansi-gray", "ansi-regex", "ansi-styles", + "ansi-wrap", "any-observable", + "any-promise", "anymatch", + "append-transform", + "aproba", + "archiver", + "archiver-utils", + "are-we-there-yet", "argparse", "arr-diff", "arr-flatten", "arr-union", + "array-back", "array-equal", + "array-filter", "array-find-index", - "array-ify", - "array-includes", + "array-flatten", + "array-from", + "array-slice", "array-union", + "array-uniq", "array-unique", + "arraybuffer.slice", "arrify", "asn1", + "asn1.js", + "assert", "assert-plus", "assign-symbols", "astral-regex", + "async", "async-each", "async-limiter", "asynckit", @@ -2974,347 +4647,513 @@ "aws-sign2", "aws4", "babel-code-frame", - "babel-core", - "babel-eslint", "babel-generator", - "babel-helpers", "babel-jest", "babel-messages", - "babel-plugin-add-module-exports", "babel-plugin-dynamic-import-node", + "babel-plugin-empower-assert", + "babel-plugin-espower", "babel-plugin-istanbul", "babel-plugin-jest-hoist", - "babel-plugin-lodash", - "babel-plugin-transform-react-remove-prop-types", - "babel-polyfill", "babel-preset-jest", - "babel-preset-moxy", - "babel-register", "babel-runtime", "babel-template", "babel-traverse", "babel-types", "babylon", + "backo2", "balanced-match", "base", + "base64-arraybuffer", + "base64-js", + "base64id", + "babel-cli", + "babel-plugin-transform-flow-strip-types", + "babel-core", + "babel-helpers", + "babel-plugin-syntax-flow", + "babel-polyfill", + "babel-register", "bcrypt-pbkdf", "binary-extensions", + "block-stream", + "boom", "brace-expansion", "braces", - "browser-process-hrtime", - "browser-resolve", - "browserslist", - "browserslist-config-google", - "bser", - "buffer-from", - "cache-base", - "caller-callsite", - "caller-path", - "callsites", + "buffer-shims", + "caseless", + "chalk", + "chokidar", + "code-point-at", + "combined-stream", + "commander", + "concat-map", + "console-control-strings", + "convert-source-map", + "core-js", + "core-util-is", + "cryptiles", + "dashdash", + "debug", + "deep-extend", + "delayed-stream", + "delegates", + "detect-indent", + "ecc-jsbn", + "escape-string-regexp", + "esutils", + "expand-brackets", + "expand-range", + "extend", + "extglob", + "extsprintf", + "filename-regex", + "fill-range", + "for-in", + "for-own", + "forever-agent", + "form-data", + "fs-readdir-recursive", + "fs.realpath", + "fsevents", + "fstream", + "fstream-ignore", + "gauge", + "generate-function", + "generate-object-property", + "getpass", + "glob", + "glob-base", + "glob-parent", + "globals", + "graceful-fs", + "graceful-readlink", + "har-validator", + "has-ansi", + "has-unicode", + "hawk", + "hoek", + "home-or-tmp", + "http-signature", + "inflight", + "inherits", + "ini", + "invariant", + "is-binary-path", + "is-buffer", + "is-dotfile", + "is-equal-shallow", + "is-extendable", + "is-extglob", + "is-finite", + "is-fullwidth-code-point", + "is-glob", + "is-my-json-valid", + "is-number", + "is-posix-bracket", + "is-primitive", + "is-property", + "is-typedarray", + "isarray", + "isobject", + "isstream", + "jodid25519", + "js-tokens", + "jsbn", + "jsesc", + "json-schema", + "json-stringify-safe", + "json5", + "jsonpointer", + "jsprim", + "kind-of", + "loose-envify", + "micromatch", + "mime-db", + "mime-types", + "minimatch", + "minimist", + "mkdirp", + "ms", + "nan", + "node-pre-gyp", + "nopt", + "normalize-path", + "npmlog", + "number-is-nan", + "oauth-sign", + "object-assign", + "object.omit", + "once", + "os-homedir", + "os-tmpdir", + "output-file-sync", + "parse-glob", + "path-is-absolute", + "pinkie", + "pinkie-promise", + "preserve", + "private", + "process-nextick-args", + "punycode", + "qs", + "randomatic", + "rc", + "readable-stream", + "readdirp", + "regenerator-runtime", + "regex-cache", + "repeat-element", + "repeat-string", + "repeating", + "request", + "semver", + "set-blocking", + "set-immediate-shim", + "signal-exit", + "slash", + "sntp", + "source-map", + "source-map-support", + "sshpk", + "string-width", + "stringstream", + "string_decoder", + "strip-ansi", + "strip-json-comments", + "supports-color", + "tar", + "tar-pack", + "to-fast-properties", + "tough-cookie", + "tunnel-agent", + "tweetnacl", + "uid-number", + "user-home", + "util-deprecate", + "uuid", + "v8flags", + "verror", + "wide-align", + "wrappy", + "xtend", + "babel-plugin-date-fns", + "babel-preset-babili", + "babel-preset-es2015", + "babili", + "pretty-bytes-cli", + "align-text", + "babel-helper-call-delegate", + "babel-helper-define-map", + "babel-helper-evaluate-path", + "babel-helper-flip-expressions", + "babel-helper-function-name", + "babel-helper-get-function-arity", + "babel-helper-hoist-variables", + "babel-helper-is-nodes-equiv", + "babel-helper-is-void-0", + "babel-helper-mark-eval-scopes", + "babel-helper-optimise-call-expression", + "babel-helper-regex", + "babel-helper-remove-or-void", + "babel-helper-replace-supers", + "babel-helper-to-multiple-sequence-expressions", + "babel-plugin-check-es2015-constants", + "babel-plugin-minify-constant-folding", + "babel-plugin-minify-dead-code-elimination", + "babel-plugin-minify-flip-comparisons", + "babel-plugin-minify-guarded-expressions", + "babel-plugin-minify-infinity", + "babel-plugin-minify-mangle-names", + "babel-plugin-minify-numeric-literals", + "babel-plugin-minify-replace", + "babel-plugin-minify-simplify", + "babel-plugin-minify-type-constructors", + "babel-plugin-transform-es2015-arrow-functions", + "babel-plugin-transform-es2015-block-scoped-functions", + "babel-plugin-transform-es2015-block-scoping", + "babel-plugin-transform-es2015-classes", + "babel-plugin-transform-es2015-computed-properties", + "babel-plugin-transform-es2015-destructuring", + "babel-plugin-transform-es2015-duplicate-keys", + "babel-plugin-transform-es2015-for-of", + "babel-plugin-transform-es2015-function-name", + "babel-plugin-transform-es2015-literals", + "babel-plugin-transform-es2015-modules-amd", + "babel-plugin-transform-es2015-modules-commonjs", + "babel-plugin-transform-es2015-modules-systemjs", + "babel-plugin-transform-es2015-modules-umd", + "babel-plugin-transform-es2015-object-super", + "babel-plugin-transform-es2015-parameters", + "babel-plugin-transform-es2015-shorthand-properties", + "babel-plugin-transform-es2015-spread", + "babel-plugin-transform-es2015-sticky-regex", + "babel-plugin-transform-es2015-template-literals", + "babel-plugin-transform-es2015-typeof-symbol", + "babel-plugin-transform-es2015-unicode-regex", + "babel-plugin-transform-inline-consecutive-adds", + "babel-plugin-transform-member-expression-literals", + "babel-plugin-transform-merge-sibling-variables", + "babel-plugin-transform-minify-booleans", + "babel-plugin-transform-property-literals", + "babel-plugin-transform-regenerator", + "babel-plugin-transform-regexp-constructors", + "babel-plugin-transform-remove-console", + "babel-plugin-transform-remove-debugger", + "babel-plugin-transform-remove-undefined", + "babel-plugin-transform-simplify-comparison-operators", + "babel-plugin-transform-strict-mode", + "babel-plugin-transform-undefined-to-void", + "big.js", + "browserify-aes", + "browserify-zlib", + "buffer", + "builtin-modules", + "builtin-status-codes", "camelcase", "camelcase-keys", - "caniuse-lite", - "capture-exit", - "caseless", - "chalk", - "chardet", - "chokidar", - "ci-info", - "class-utils", - "clean-stack", - "cli-cursor", - "cli-truncate", - "cli-width", + "center-align", "cliui", - "co", - "code-point-at", - "collection-visit", - "color-convert", - "color-name", - "combined-stream", - "commander", - "comment-parser", - "compare-func", - "component-emitter", - "concat-map", + "clone", + "commondir", + "console-browserify", + "constants-browserify", + "crypto-browserify", + "currently-unhandled", + "date-now", + "decamelize", + "domain-browser", + "duplexer", + "emojis-list", + "enhanced-resolve", + "errno", + "error-ex", + "events", + "find-cache-dir", + "find-up", + "get-stdin", + "gzip-size", + "has-flag", + "hosted-git-info", + "https-browserify", + "ieee754", + "indent-string", + "indexof", + "interpret", + "is-arrayish", + "is-builtin-module", + "is-utf8", + "lazy-cache", + "load-json-file", + "loader-utils", + "lodash.isplainobject", + "lodash.snakecase", + "lodash.some", + "longest", + "loud-rejection", + "map-obj", + "memory-fs", + "meow", + "rollup", + "rollup-plugin-commonjs", + "rollup-plugin-node-resolve", + "browser-resolve", + "estree-walker", + "magic-string", + "normalize-package-data", + "parse-json", + "path-exists", + "path-type", + "pify", + "pretty-bytes", + "read-pkg", + "read-pkg-up", + "redent", + "resolve", + "rollup-pluginutils", + "spdx-correct", + "spdx-expression-parse", + "spdx-license-ids", + "strip-bom", + "strip-indent", + "browserify", + "array-map", + "array-reduce", + "astw", + "browser-pack", + "cached-path-relative", + "combine-source-map", "concat-stream", - "conventional-changelog", - "conventional-changelog-angular", - "conventional-changelog-atom", - "conventional-changelog-codemirror", - "conventional-changelog-config-spec", - "conventional-changelog-conventionalcommits", - "conventional-changelog-core", - "conventional-changelog-ember", - "conventional-changelog-eslint", - "conventional-changelog-express", - "conventional-changelog-jquery", - "conventional-changelog-jshint", - "conventional-changelog-preset-loader", - "eslint", - "eslint-config-moxy", - "husky", - "jest", - "lint-staged", - "mkdirp", - "path-key", - "rimraf", - "shebang-command", - "standard-version", - "which", - "dashdash", - "@babel/code-frame", - "@babel/generator", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-split-export-declaration", - "@babel/helper-validator-identifier", - "@babel/highlight", - "@babel/parser", - "@babel/template", - "@babel/traverse", - "@babel/types", - "@eslint/eslintrc", - "@types/color-name", - "acorn", - "acorn-jsx", - "ajv", - "ansi-colors", - "ansi-regex", - "ansi-styles", - "anymatch", - "append-transform", - "archy", - "arg", - "argparse", - "asn1", - "assert-plus", - "astral-regex", - "async-hook-domain", - "asynckit", - "aws-sign2", - "aws4", - "balanced-match", - "bcrypt-pbkdf", - "binary-extensions", - "bind-obj-methods", - "brace-expansion", - "braces", - "browser-process-hrtime", + "defined", + "deps-sort", + "detective", + "duplexer2", + "function-bind", + "has", + "htmlescape", + "inline-source-map", + "insert-module-globals", + "json-stable-stringify", + "jsonify", + "jsonparse", + "JSONStream", + "labeled-stream-splicer", + "lexical-scope", + "lodash.memoize", + "module-deps", + "os-browserify", + "pako", + "parents", + "path-browserify", + "path-platform", + "pbkdf2-compat", + "bluebird", + "bn.js", + "brorand", + "browserify-cipher", + "browserify-des", + "browserify-rsa", + "browserify-sign", "buffer-from", - "caching-transform", - "callsites", - "camelcase", - "caseless", - "chalk", - "chokidar", - "cliui", - "code-point-at", - "color-convert", - "color-name", - "color-support", - "combined-stream", - "commondir", - "concat-map", - "convert-source-map", - "core-util-is", - "coveralls", - "cp-file", - "cross-spawn", - "dashdash", - "debug", - "decamelize", - "deep-is", - "default-require-extensions", - "delayed-stream", - "diff", - "diff-frag", - "doctrine", - "ecc-jsbn", - "emoji-regex", - "enquirer", - "error-ex", - "es6-error", - "escape-string-regexp", - "eslint", - "eslint-config-prettier", - "eslint-plugin-prettier", + "buffer-xor", + "cacache", + "cache-base", + "chownr", + "chrome-trace-event", + "cipher-base", + "class-utils", + "collection-visit", + "component-emitter", + "copy-concurrently", + "copy-descriptor", + "create-ecdh", + "create-hash", + "create-hmac", + "cyclist", + "decode-uri-component", + "define-property", + "des.js", + "detect-libc", + "diffie-hellman", + "duplexify", + "elliptic", + "end-of-stream", "eslint-scope", - "eslint-utils", - "eslint-visitor-keys", - "esm", - "espree", - "esprima", - "esquery", "esrecurse", "estraverse", - "esutils", - "events-to-array", - "extend", - "extsprintf", + "evp_bytestokey", + "extend-shallow", "fast-deep-equal", - "fast-diff", "fast-json-stable-stringify", - "fast-levenshtein", - "file-entry-cache", - "fill-range", - "find-cache-dir", - "find-up", - "findit", - "flat-cache", - "flatted", - "flow-parser", - "flow-remove-types", - "foreground-child", - "forever-agent", - "form-data", - "fs-exists-cached", - "fs.realpath", - "fsevents", - "function-loop", - "functional-red-black-tree", - "get-caller-file", - "get-stdin", - "getpass", - "glob", - "glob-parent", - "globals", - "graceful-fs", - "har-schema", - "har-validator", - "has-flag", - "hasha", - "hosted-git-info", - "html-escaper", - "http-signature", - "ignore", - "import-fresh", + "figgy-pudding", + "flush-write-stream", + "fragment-cache", + "from2", + "fs-minipass", + "fs-write-stream-atomic", + "get-value", + "has-value", + "has-values", + "hash.js", + "iconv-lite", + "iferr", + "ignore-walk", "imurmurhash", - "inflight", - "inherits", - "is-arrayish", - "is-binary-path", - "is-extglob", - "is-fullwidth-code-point", - "is-glob", - "is-number", - "is-stream", - "is-typedarray", - "isexe", - "isstream", - "istanbul-lib-coverage", - "istanbul-lib-hook", - "istanbul-lib-instrument", - "istanbul-lib-processinfo", - "istanbul-lib-report", - "istanbul-lib-source-maps", - "istanbul-reports", - "jackspeak", - "js-tokens", - "js-yaml", - "jsbn", - "jsesc", + "infer-owner", + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "is-plain-object", + "is-windows", + "is-wsl", "json-parse-better-errors", - "json-schema", "json-schema-traverse", - "json-stable-stringify-without-jsonify", - "json-stringify-safe", - "jsprim", - "lcov-parse", - "levn", - "load-json-file", + "loader-runner", "locate-path", - "lodash", - "lodash.flattendeep", - "log-driver", - "loose-envify", "lru-cache", "make-dir", - "make-error", - "merge-source-map", - "mime-db", - "mime-types", - "minimatch", - "minimist", + "map-cache", + "map-visit", + "miller-rabin", + "minimalistic-assert", "minipass", - "mkdirp", - "ms", - "natural-compare", - "nested-error-stacks", - "nice-try", - "node-modules-regexp", - "normalize-package-data", - "normalize-path", - "number-is-nan", - "nyc", - "oauth-sign", - "object-assign", - "once", - "opener", - "optionator", - "os-homedir", - "own-or", - "own-or-env", + "minizlib", + "mississippi", + "mixin-deep", + "move-concurrently", + "nanomatch", + "needle", + "neo-async", + "node-libs-browser", + "npm-bundled", + "npm-packlist", + "object-copy", + "object-visit", + "object.pick", + "osenv", "p-limit", "p-locate", "p-try", - "package-hash", - "parent-module", - "parse-json", - "path-exists", - "path-is-absolute", - "path-key", - "path-parse", - "path-type", - "performance-now", + "parallel-transform", + "parse-asn1", + "pascalcase", + "path-dirname", + "pbkdf2", "picomatch", - "pify", - "pirates", "pkg-dir", - "prelude-ls", - "prettier", - "prettier-linter-helpers", - "progress", - "prop-types", - "pseudomap", - "psl", - "punycode", - "qs", - "react", - "react-is", - "read-pkg", - "read-pkg-up", - "readdirp", - "regexpp", - "release-zalgo", - "request", - "require-directory", - "require-main-filename", - "resolve", - "resolve-from", - "rimraf", + "posix-character-classes", + "process", + "promise-inflight", + "prr", + "public-encrypt", + "pump", + "pumpify", + "querystring", + "querystring-es3", + "randombytes", + "regex-not", + "remove-trailing-separator", + "resolve-url", + "ret", + "ripemd160", + "run-queue", "safe-buffer", + "safe-regex", "safer-buffer", - "semver", - "set-blocking", - "shebang-command", - "shebang-regex", - "signal-exit", - "slice-ansi", - "source-map", - "source-map-support", - "spawn-wrap", - "spdx-correct", - "spdx-exceptions", - "spdx-expression-parse", - "spdx-license-ids", - "sprintf-js", - "sshpk", - "stack-utils", - "string-width", - "strip-ansi", - "tap", - "date-fns", + "sax", + "schema-utils", + "serialize-javascript", + "set-value", + "setimmediate", + "optimist", + "acorn-dynamic-import", + "co", + "get-caller-file", + "invert-kv", + "json-loader", + "lcid", + "uglify-es", + "color-convert", + "color-name", + "cross-spawn", + "execa", + "get-stream", + "global-modules-path", + "hash-base", + "hmac-drbg", + "import-local", + "is-stream", + "isexe", + "lodash.debounce", + "map-age-cleaner", + "md5.js", + "mem", + "mimic-fn", + "minimalistic-crypto-utils", + "nice-try", + "npm-run-path", + "os-locale", + "p-defer", "debug", "brfs", "browserify", @@ -3471,19 +5310,6 @@ "tape", "typescript", "fs-extra", - "at-least-node", - "coveralls", - "graceful-fs", - "jsonfile", - "klaw", - "klaw-sync", - "minimist", - "mocha", - "nyc", - "proxyquire", - "read-dir-files", - "standard", - "universalify", "fs.realpath", "get-stream", "@types/node", @@ -3492,11 +5318,6 @@ "tsd", "xo", "getos", - "async", - "cli-color", - "execSync", - "standard", - "tape", "getpass", "assert-plus", "json", @@ -4306,13 +6127,6 @@ "xo", "is-installed-globally", "is-observable", - "ava", - "indefinite-observable", - "most", - "rxjs", - "xo", - "xstream", - "zen-observable", "is-path-inside", "ava", "tsd", @@ -4378,27 +6192,6 @@ "ts-jest", "typescript", "listr", - "@samverschueren/stream-to-observable", - "ava", - "clinton", - "codecov", - "delay", - "hook-std", - "is-observable", - "is-promise", - "is-stream", - "lint-staged", - "listr-silent-renderer", - "listr-update-renderer", - "listr-verbose-renderer", - "log-symbols", - "nyc", - "p-map", - "pre-commit", - "rxjs", - "split", - "xo", - "zen-observable", "listr-silent-renderer", "xo", "listr-update-renderer", @@ -7055,12 +8848,6 @@ "throttleit", "mocha", "tmp", - "eslint", - "eslint-plugin-mocha", - "istanbul", - "lerna-changelog", - "mocha", - "rimraf", "tough-cookie", "async", "eslint", @@ -7329,11 +9116,6 @@ "typedarray", "tape", "universalify", - "colortape", - "coveralls", - "nyc", - "standard", - "tape", "untildify", "uri-js", "babel-cli", @@ -8363,154 +10145,7 @@ "pymedphys_utilities", "pymedphys_mudensity", "csv-compare", - "ipython", - "docrepr", - "ipykernel", - "matplotlib", - "setuptools", - "sphinx", - "sphinx-rtd-theme", - "stack-data", - "jinja2", - "markupsafe", - "appdirs", - "attrs", - "cfgv", - "click", - "distlib", - "filelock", - "identify", - "iniconfig", - "nodeenv", - "packaging", - "pluggy", - "py", - "pyparsing", - "pyyaml", - "six", - "toml", - "virtualenv", - "alabaster", - "babel", - "certifi", - "chardet", - "docutils", - "idna", - "imagesize", - "jinja2", - "pygments", - "pytz", - "requests", - "snowballstemmer", - "sphinxcontrib-applehelp", - "sphinxcontrib-devhelp", - "sphinxcontrib-htmlhelp", - "sphinxcontrib-jsmath", - "sphinxcontrib-qthelp", - "sphinxcontrib-serializinghtml", - "urllib3", "mosaiq-connection", - "mosaiq-field-export", - "notebook", - "bower", - "less", - "onchange", - "po2json", - "requirejs", - "argon2-cffi", - "ipykernel", - "ipython-genutils", - "jinja2", - "jupyter-client", - "jupyter-core", - "nbconvert", - "nbformat", - "prometheus-client", - "pyzmq", - "send2trash", - "terminado", - "tornado", - "traitlets", - "nbsphinx", - "sphinx", - "sphinx-rtd-theme", - "sphinxcontrib-github-alt", - "numpy", - "pandas", - "asv", - "beautifulsoup4", - "black", - "blosc", - "boto3", - "botocore", - "bottleneck", - "cftime", - "cloudpickle", - "cpplint", - "cython", - "dask", - "fastparquet", - "feedparser", - "flake8", - "flake8-comprehensions", - "flask", - "fsspec", - "gcsfs", - "gitdb", - "gitpython", - "html5lib", - "hypothesis", - "ipykernel", - "ipython", - "ipywidgets", - "isort", - "jinja2", - "lxml", - "markdown", - "matplotlib", - "moto", - "mypy", - "natsort", - "nbconvert", - "nbformat", - "nbsphinx", - "notebook", - "numba", - "numexpr", - "numpy", - "odfpy", - "openpyxl", - "pandoc", - "partd", - "pip", - "pre-commit", - "pyarrow", - "pycodestyle", - "pyqt5", - "pyreadstat", - "pytest", - "pytest-asyncio", - "pytest-cov", - "pytest-instafail", - "pytest-xdist", - "python-dateutil", - "python-snappy", - "pytz", - "pyupgrade", - "pyyaml", - "requests", - "s3fs", - "scipy", - "seaborn", - "sphinx", - "sqlalchemy", - "statsmodels", - "tables", - "tabulate", - "toolz", - "xarray", - "xlrd", - "xlsxwriter", - "xlwt" + "mosaiq-field-export" ] } \ No newline at end of file diff --git a/test/3k_repodata_test b/test/3k_repodata_1hop similarity index 98% rename from test/3k_repodata_test rename to test/3k_repodata_1hop index a0d004d..eb8d4b6 100644 --- a/test/3k_repodata_test +++ b/test/3k_repodata_1hop @@ -8,6 +8,121 @@ "pytest-cov", "tox", "xlwings", + "-", + "altair", + "appnope", + "argon2-cffi", + "astor", + "async-generator", + "attrs", + "backcall", + "base58", + "bleach", + "blinker", + "boto3", + "botocore", + "cachetools", + "certifi", + "cffi", + "chardet", + "click", + "colorama", + "cryptography", + "cycler", + "cython", + "dataclasses", + "dbfread", + "decorator", + "defusedxml", + "entrypoints", + "enum-compat", + "gitdb", + "gitpython", + "idna", + "imageio", + "immutables", + "importlib-metadata", + "ipykernel", + "ipython", + "ipython-genutils", + "ipywidgets", + "jedi", + "jeepney", + "jinja2", + "jmespath", + "jsonschema", + "jupyter-client", + "jupyter-core", + "jupyterlab-pygments", + "keyring", + "kiwisolver", + "markupsafe", + "matplotlib", + "mistune", + "nbclient", + "nbconvert", + "nbformat", + "nest-asyncio", + "networkx", + "notebook", + "numpy", + "packaging", + "pandas", + "pandocfilters", + "parso", + "pathtools", + "pexpect", + "pickleshare", + "pillow", + "prometheus-client", + "prompt-toolkit", + "protobuf", + "ptyprocess", + "pyarrow", + "pycparser", + "pydeck", + "pydicom", + "pygments", + "pylibjpeg-libjpeg", + "pymssql", + "pynetdicom", + "pyparsing", + "pyrsistent", + "python-dateutil", + "pytz", + "pywavelets", + "pywin32", + "pywin32-ctypes", + "pywinpty", + "pyyaml", + "pyzmq", + "requests", + "s3transfer", + "scikit-image", + "scipy", + "secretstorage", + "send2trash", + "shapely", + "six", + "smmap", + "streamlit", + "terminado", + "testpath", + "tifffile", + "timeago", + "toml", + "toolz", + "tornado", + "tqdm", + "traitlets", + "tzlocal", + "urllib3", + "validators", + "watchdog", + "wcwidth", + "webencodings", + "widgetsnbextension", + "zipp", "cypress", "@cypress/listr-verbose-renderer", "@cypress/request", @@ -190,13 +305,8 @@ "pymedphys_utilities", "pymedphys_mudensity", "csv-compare", - "ipython", - "jinja2", "mosaiq-connection", - "mosaiq-field-export", - "notebook", - "numpy", - "pandas" + "mosaiq-field-export" ], "https://github.com/anuprulez/galaxy_tool_recommendation": [ "csvkit", @@ -1260,13 +1370,11 @@ "attrs", "imageio", "joblib", - "jupyterlab", "matplotlib", "numpy", "pandas", "pyprojroot", "scikit-learn", - "scikit-posthocs", "scipy", "seaborn", "searchstims", @@ -4418,7 +4526,6 @@ "org.osgi:org.osgi.core" ], "https://github.com/AlanLoh/nenupy": [ - "astroplan", "astropy", "dask", "healpy", @@ -5479,6 +5586,7 @@ "numba", "numpydoc", "pint", + "sphinxcontrib-katex", "coveralls", "fuzzywuzzy", "pytest", @@ -6589,6 +6697,7 @@ "jupyter", "matplotlib", "nbconvert", + "nbsphinx", "netcdf4", "openmm", "packaging", @@ -6599,6 +6708,7 @@ "sphinx-rtd-theme" ], "https://github.com/Teichlab/cellphonedb": [ + "uwsgi", "boto3", "click", "cython", @@ -7362,6 +7472,7 @@ "dictdiffer", "distro", "dpath", + "dulwich", "flatten-dict", "flufl-lock", "funcy", @@ -7459,6 +7570,7 @@ "sphinx", "sphinx-rtd-theme", "tsfresh", + "catch22", "cython", "notebook", "pandas", @@ -7854,6 +7966,39 @@ "https://github.com/fnl/medic": [ "sqlalchemy" ], + "https://github.com/SciTools/iris": [ + "mo-pack", + "nc-time-axis", + "pandas", + "pyugrid", + "stratify", + "cartopy", + "cf-units", + "cftime", + "dask", + "matplotlib", + "netcdf4", + "numpy", + "scipy", + "xxhash", + "sphinx", + "sphinx-copybutton", + "sphinx-gallery", + "sphinx-panels", + "sphinx-rtd-theme", + "sphinxcontrib-napoleon", + "scitools-pyke", + "setuptools", + "wheel", + "asv", + "black", + "filelock", + "imagehash", + "nose", + "pillow", + "pre-commit", + "requests" + ], "https://github.com/neglectos/dockerhub_analysis": [ "cycler", "jupyter", @@ -9247,6 +9392,7 @@ "net.sourceforge.jexcelapi:jxl", "org.antlr:antlr", "org.antlr:antlr3-maven-plugin", + "org.antlr:stringtemplate", "org.apache.commons:commons-collections4", "org.apache.commons:commons-lang3", "org.apache.derby:derby", @@ -9255,7 +9401,9 @@ "org.apache.logging.log4j:log4j-slf4j-impl", "org.apache.maven.plugins:maven-compiler-plugin", "org.apache.maven.plugins:maven-dependency-plugin", + "org.apache.maven.plugins:maven-javadoc-plugin", "org.apache.maven.plugins:maven-shade-plugin", + "org.apache.maven.plugins:maven-source-plugin", "org.apache.maven.plugins:maven-surefire-plugin", "org.apache.velocity:velocity", "org.apache.velocity:velocity-tools", @@ -9270,7 +9418,6 @@ "org.swinglabs:swingx", "uk.co.caprica:vlcj", "com.github.zafarkhaja:java-semver", - "org.antlr:stringtemplate", "org.codehaus.groovy:groovy-all", "org.mozilla:rhino-engine" ], @@ -10766,7 +10913,6 @@ "ephem", "flask-restplus", "flask-socketio", - "future", "geopandas", "gevent", "ipython", @@ -14019,6 +14165,7 @@ "xlrd" ], "https://github.com/hdcaicyt/La-Argentina-Manuscrita": [ + "kramdown-parser-gfm", "addressable", "colorator", "concurrent-ruby", @@ -14040,6 +14187,7 @@ "rake", "rb-fsevent", "rb-inotify", + "rexml", "rouge", "safe_yaml", "sass", @@ -15552,18 +15700,19 @@ "papermill", "papermill-nb-runner", "pyarrow", + "requests", + "snowflake-connector-python", "snowflake-sqlalchemy", - "wtforms", "boto3", "botocore", "bs4", "html5lib", "jinja2", "lxml", + "modin", "pandas", "pycountry", "pygsheets", - "requests", "seaborn", "tableauhyperapi", "tabula-py", @@ -15986,6 +16135,7 @@ "html-webpack-plugin", "igv", "jest", + "js-cookie", "jsoneditor", "jsoneditor-react", "lodash", @@ -16433,7 +16583,6 @@ "doc2dash", "ipython", "jupyter", - "nbconvert", "nose", "notebook", "numpy", @@ -16446,7 +16595,8 @@ "sphinx-rtd-theme", "statsmodels", "xlrd", - "xlwt" + "xlwt", + "nbconvert" ], "https://github.com/mpschr/mutex": [ "joblib", @@ -17499,14 +17649,17 @@ "attrs", "cachetools", "certifi", - "cftime", + "cffi", "chardet", "click", "click-plugins", "cligj", + "cryptography", + "dask", "earthengine-api", "fiona", "future", + "geojson", "geopandas", "google-api-core", "google-api-python-client", @@ -17514,23 +17667,32 @@ "google-auth-httplib2", "google-cloud-core", "google-cloud-storage", + "google-crc32c", "google-resumable-media", "googleapis-common-protos", "httplib2", "httplib2shim", "idna", + "keyring", + "keyrings-alt", "munch", - "netcdf4", "numpy", "pandas", "protobuf", "pyasn1", "pyasn1-modules", + "pycparser", + "pycrypto", + "pygobject", "pyproj", "pytz", + "pyxdg", "rsa", + "scipy", + "secretstorage", "shapely", "six", + "toolz", "uritemplate", "urllib3", "xarray" @@ -18090,6 +18252,7 @@ ], "https://github.com/rajeshrinet/pystokes": [ "cython", + "kiwisolver", "matplotlib", "numpy", "scipy" @@ -20433,6 +20596,7 @@ "browserify", "codelyzer", "com-darryncampbell-cordova-plugin-intent", + "cordova", "cordova-android", "cordova-android-support-gradle-release", "cordova-custom-config", @@ -20449,13 +20613,11 @@ "cordova-plugin-device", "cordova-plugin-dialogs", "cordova-plugin-file", - "cordova-plugin-firebase-with-upstream-messaging", "cordova-plugin-globalization", "cordova-plugin-insomnia", "cordova-plugin-ionic-keyboard", "cordova-plugin-ionic-webview", "cordova-plugin-local-notification", - "cordova-plugin-network-information", "cordova-plugin-splashscreen", "cordova-plugin-statusbar", "cordova-plugin-vibration", @@ -20741,6 +20903,7 @@ "diraccfg", "docutils", "elasticsearch-dsl", + "flaky", "fts3-rest", "funcsigs", "future", @@ -20870,7 +21033,6 @@ "waitress", "webassets", "webhelpers2", - "xlwt", "yuicompressor", "zope-sqlalchemy", "appdirs", @@ -21491,7 +21653,6 @@ "moment", "node-loader", "nspell", - "on-change", "raw-loader", "reveal.js", "rimraf", @@ -21504,7 +21665,6 @@ "ts-loader", "typescript", "typings-for-css-modules-loader", - "uglify-js", "uuid", "v8-compile-cache", "vue", @@ -21515,8 +21675,16 @@ "yaml", "7zip-bin", "@babel/code-frame", + "@babel/generator", + "@babel/helper-function-name", + "@babel/helper-get-function-arity", + "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", "@babel/highlight", + "@babel/parser", + "@babel/template", + "@babel/traverse", + "@babel/types", "@braintree/sanitize-url", "@develar/schema-utils", "@electron-forge/async-ora", @@ -21576,6 +21744,7 @@ "@typescript-eslint/types", "@typescript-eslint/typescript-estree", "@typescript-eslint/visitor-keys", + "@ungap/promise-all-settled", "@vue/component-compiler-utils", "@webassemblyjs/ast", "@webassemblyjs/floating-point-hex-parser", @@ -21631,7 +21800,6 @@ "array-union", "array-unique", "array.prototype.flat", - "array.prototype.map", "asar", "asn1", "asn1.js", @@ -21654,6 +21822,7 @@ "author-regex", "aws-sign2", "aws4", + "babel-eslint", "balanced-match", "base", "base64-js", @@ -21734,16 +21903,7 @@ "concat-map", "concat-stream", "config-chain", - "configstore", - "console-browserify", - "console-control-strings", - "consolidate", - "constants-browserify", - "contains-path", - "content-disposition", - "content-type", - "cookie", - "cookie-signature" + "configstore" ], "https://github.com/coreylammie/MemTorch": [ "matplotlib", @@ -22525,7 +22685,6 @@ "psycopg2-binary", "pytest", "python-jose", - "scanpy", "twine", "louvain", "python-igraph", @@ -22545,10 +22704,10 @@ "numba", "numpy", "packaging", - "pandas", "pyyaml", "requests", "s3fs", + "scanpy", "scipy", "sqlalchemy", "tiledb", @@ -24959,6 +25118,8 @@ "cwltool", "docker", "jsonmerge", + "marshmallow", + "marshmallow-sqlalchemy", "pyjwt", "ruamel-yaml", "schema-salad", @@ -27026,6 +27187,7 @@ "param", "pyct", "pyviz-comms", + "requests", "tqdm", "@bokeh/bokehjs", "@bokeh/numbro", @@ -27592,14 +27754,14 @@ "numpy", "openpyxl", "pandas", - "pyinstaller", "pypdf2", "pyqt5", - "pywin32", "pyyaml", "scikit-learn", "scipy", "xlrd", + "pyinstaller", + "pywin32", "ipython", "sphinx", "sphinx-rtd-theme", @@ -29939,7 +30101,6 @@ "pandas", "pandocfilters", "parso", - "pdfminer3k", "pexpect", "pickleshare", "ply", @@ -30653,10 +30814,6 @@ "sphinx-mdolab-theme" ], "https://github.com/matthiaskoenig/libsbgn-python": [ - "lxml", - "pytest", - "pytest-cov", - "requests", "ipykernel", "nbsphinx", "sphinx", @@ -31235,12 +31392,15 @@ "faraday-http-cache", "git", "kramdown", + "kramdown-parser-gfm", "multipart-post", "nap", "no_proxy_fix", "octokit", "open4", "public_suffix", + "rchardet", + "rexml", "sawyer", "terminal-table", "unicode-display_width", @@ -31582,9 +31742,9 @@ "scipy" ], "https://github.com/KnowledgeCaptureAndDiscovery/OBA": [ + "com.github.jsonld-java:jsonld-java", "commons-cli:commons-cli", "junit:junit", - "log4j:log4j", "net.sourceforge.owlapi:owlapi-api", "net.sourceforge.owlapi:owlapi-apibinding", "net.sourceforge.owlapi:owlapi-compatibility", @@ -31593,7 +31753,6 @@ "org.apache.maven.plugins:maven-eclipse-plugin", "org.json:json", "org.openapitools:openapi-generator", - "org.slf4j:slf4j-simple", "org.yaml:snakeyaml", "mkdocs-material" ], @@ -32992,30 +33151,43 @@ "pytest", "pytest-cov", "scipy", - "atomicwrites", + "astroid", "attrs", + "certifi", + "chardet", "coverage", "decorator", - "entrypoints", + "gensim", + "idna", "importlib-metadata", + "iniconfig", + "isort", + "joblib", + "lazy-object-proxy", + "lightgbm", "mccabe", - "more-itertools", "networkx", "packaging", "pluggy", "py", "pycodestyle", "pyflakes", + "pylint", "pyparsing", "python-dateutil", "pytz", + "requests", + "scikit-learn", "six", + "smart-open", "termcolor", - "wcwidth", + "threadpoolctl", + "toml", + "typed-ast", + "urllib3", + "wrapt", "zipp", "matplotlib", - "requests", - "scikit-learn", "txt2hpo" ], "https://github.com/andremann/MoniQ": [ @@ -33218,6 +33390,7 @@ "tables", "tikzplotlib", "tqdm", + "xgboost", "xlrd", "xnat", "boto3", @@ -33540,31 +33713,6 @@ "wikidata-jskos", "yaml" ], - "https://github.com/callat-qcd/espressodb": [ - "beautifulsoup4", - "pytest", - "pytest-django", - "pytest-env", - "recommonmark", - "sphinx", - "sphinx-autodoc-typehints", - "sphinx-markdown-tables", - "sphinx-rtd-theme", - "django", - "django-bootstrap4", - "django-extensions", - "django-pandas", - "django-widget-tweaks", - "pyyaml", - "bokeh", - "espressodb", - "pandas" - ], - "https://github.com/longavailable/adaptive-curvefitting": [ - "matplotlib", - "pandas", - "scipy" - ], "https://github.com/LUMC/pytest-workflow": [ "sphinx", "tox", @@ -34631,6 +34779,8 @@ "pytest", "pytest-console-scripts", "geojson", + "numpy", + "pandas", "pygeoj", "pyproj", "pyshp", @@ -35753,9 +35903,6 @@ "org.springframework.data:spring-data-neo4j", "org.springframework:spring-messaging" ], - "https://github.com/abhi1693/yii2-enum": [ - "yiisoft/yii2" - ], "https://github.com/rinde/pdptw-dataset-generator": [ "com.github.rinde:rinlog", "com.github.rinde:rinsim-scenario-util", @@ -35898,39 +36045,11 @@ "nunit", "NUnit3TestAdapter" ], - "https://github.com/rjw57/videosequence": [ - "future", - "pillow", - "pytest", - "pytest-capturelog", - "pytest-cov", - "requests" - ], "https://github.com/tylerjereddy/diffusion_analysis_MD_simulations": [ "mock", "numpy", "numpydoc" ], - "https://github.com/luphysics/PyMODA": [ - "aiohttp", - "asyncprocessscheduler", - "dataclasses", - "easysettings", - "matplotlib", - "multiprocess", - "numpy", - "pre-commit", - "psutil", - "pygithub", - "pymodalib", - "pyopengl", - "pyqt5", - "pyqt5-sip", - "pyqt5-stubs", - "pyqtgraph", - "qasync", - "scipy" - ], "https://github.com/NatLibFi/Annif": [ "flask", "pyyaml", @@ -36248,14 +36367,6 @@ "pandas", "scipy" ], - "https://github.com/rasbt/mlxtend": [ - "joblib", - "matplotlib", - "numpy", - "pandas", - "scikit-learn", - "scipy" - ], "https://github.com/VIDA-NYU/domain-discovery-d4": [ "com.google.code.gson:gson", "commons-codec:commons-codec", @@ -36651,16 +36762,6 @@ "pytablewriter", "solt" ], - "https://github.com/hibernator11/notebook-texts-metadata": [ - "datapackage", - "gensim", - "nltk", - "pandas", - "pymarc", - "regex", - "requests", - "wordcloud" - ], "https://github.com/nismod/transport": [ "javasphinx", "com.google.inject:guice", @@ -36910,12 +37011,6 @@ "sphinx", "sphinx-jsondomain" ], - "https://github.com/tofaquih/imputation_of_untargeted_metabolites": [ - "docstring-1-0-0", - "dplyr-0-8-5", - "mice-3-8-0", - "vim-5-1-1" - ], "https://github.com/sebastientourbier/multiscalebrainparcellator": [ "grabbit", "pybids", @@ -37381,75 +37476,14 @@ "pysimpleguiweb", "scipy" ], - "https://github.com/geoschem/gcpy": [ - "cartopy", - "dask", + "https://github.com/NickSwainston/mwa_search": [ + "argparse", + "astropy", "matplotlib", "numpy", - "pytest", - "scipy", - "xarray", - "xbpch" - ], - "https://github.com/NickSwainston/mwa_search": [ + "psrqpy", "pytest" ], - "https://github.com/dhimmel/gene-ontology": [ - "activesupport", - "blankslate", - "celluloid", - "classifier-reborn", - "coffee-script", - "coffee-script-source", - "colorator", - "execjs", - "fast-stemmer", - "ffi", - "gemoji", - "github-pages", - "github-pages-health-check", - "hitimes", - "html-pipeline", - "i18n", - "jekyll", - "jekyll-coffeescript", - "jekyll-feed", - "jekyll-gist", - "jekyll-mentions", - "jekyll-paginate", - "jekyll-redirect-from", - "jekyll-sass-converter", - "jekyll-sitemap", - "jekyll-watch", - "jemoji", - "json", - "kramdown", - "liquid", - "listen", - "maruku", - "mercenary", - "minitest", - "mini_portile", - "net-dns", - "nokogiri", - "parslet", - "posix-spawn", - "public_suffix", - "pygments.rb", - "rb-fsevent", - "rb-inotify", - "rdiscount", - "redcarpet", - "RedCloth", - "safe_yaml", - "sass", - "terminal-table", - "thread_safe", - "timers", - "toml", - "tzinfo", - "yajl-ruby" - ], "https://github.com/lmarti/nsgaiii": [ "deap", "numpy" @@ -37772,6 +37806,8 @@ "scipy" ], "https://github.com/neurodata/graspy": [ + "anytree", + "gensim", "hyppo", "matplotlib", "networkx", @@ -38466,7 +38502,6 @@ "sphinx", "sphinx-tabs", "sphinxcontrib-bibtex", - "mpi4py", "pandas", "scikit-learn", "statsmodels", @@ -38987,16 +39022,6 @@ "pytest", "coffee" ], - "https://github.com/cgat-developers/cgat-core": [ - "gevent", - "pandas", - "paramiko", - "pep8", - "pytest", - "ruffus", - "yaml", - "apsw" - ], "https://github.com/pnlbwh/luigi-pnlpipe": [ "dipy", "future", @@ -40066,7 +40091,7 @@ "numpy", "pandas", "neurokit2", - "pywt", + "pywavelets", "seaborn" ], "https://github.com/makgyver/rectorch": [ @@ -40246,6 +40271,7 @@ "@docusaurus/core", "@docusaurus/preset-classic", "classnames", + "node-fetch", "react", "react-dom", "remark-images", @@ -40292,6 +40318,7 @@ "@babel/helper-skip-transparent-expression-wrappers", "@babel/helper-split-export-declaration", "@babel/helper-validator-identifier", + "@babel/helper-validator-option", "@babel/helper-wrap-function", "@babel/helpers", "@babel/highlight", @@ -40424,7 +40451,6 @@ "@svgr/webpack", "@szmarczak/http-timer", "@types/anymatch", - "@types/color-name", "@types/glob", "@types/hast", "@types/html-minifier-terser", @@ -40483,7 +40509,6 @@ "ansi-styles", "anymatch", "aproba", - "are-passive-events-supported", "argparse", "arr-diff", "arr-flatten", @@ -40498,6 +40523,7 @@ "assert", "assign-symbols", "async", + "async-each", "rspec" ], "https://github.com/krischer/pyflex": [ @@ -40659,6 +40685,263 @@ "pandas", "scipy" ], + "https://github.com/liminoid/liminoid-js": [ + "@babel/cli", + "@babel/code-frame", + "@babel/compat-data", + "@babel/core", + "@babel/generator", + "@babel/helper-annotate-as-pure", + "@babel/helper-builder-binary-assignment-operator-visitor", + "@babel/helper-compilation-targets", + "@babel/helper-create-class-features-plugin", + "@babel/helper-create-regexp-features-plugin", + "@babel/helper-define-map", + "@babel/helper-explode-assignable-expression", + "@babel/helper-function-name", + "@babel/helper-get-function-arity", + "@babel/helper-hoist-variables", + "@babel/helper-member-expression-to-functions", + "@babel/helper-module-imports", + "@babel/helper-module-transforms", + "@babel/helper-optimise-call-expression", + "@babel/helper-plugin-utils", + "@babel/helper-regex", + "@babel/helper-remap-async-to-generator", + "@babel/helper-replace-supers", + "@babel/helper-simple-access", + "@babel/helper-skip-transparent-expression-wrappers", + "@babel/helper-split-export-declaration", + "@babel/helper-validator-identifier", + "@babel/helper-wrap-function", + "@babel/helpers", + "@babel/highlight", + "@babel/parser", + "@babel/plugin-proposal-async-generator-functions", + "@babel/plugin-proposal-class-properties", + "@babel/plugin-proposal-dynamic-import", + "@babel/plugin-proposal-export-namespace-from", + "@babel/plugin-proposal-json-strings", + "@babel/plugin-proposal-logical-assignment-operators", + "@babel/plugin-proposal-nullish-coalescing-operator", + "@babel/plugin-proposal-numeric-separator", + "@babel/plugin-proposal-object-rest-spread", + "@babel/plugin-proposal-optional-catch-binding", + "@babel/plugin-proposal-optional-chaining", + "@babel/plugin-proposal-private-methods", + "@babel/plugin-proposal-unicode-property-regex", + "@babel/plugin-syntax-async-generators", + "@babel/plugin-syntax-class-properties", + "@babel/plugin-syntax-dynamic-import", + "@babel/plugin-syntax-export-namespace-from", + "@babel/plugin-syntax-json-strings", + "@babel/plugin-syntax-logical-assignment-operators", + "@babel/plugin-syntax-nullish-coalescing-operator", + "@babel/plugin-syntax-numeric-separator", + "@babel/plugin-syntax-object-rest-spread", + "@babel/plugin-syntax-optional-catch-binding", + "@babel/plugin-syntax-optional-chaining", + "@babel/plugin-syntax-top-level-await", + "@babel/plugin-transform-arrow-functions", + "@babel/plugin-transform-async-to-generator", + "@babel/plugin-transform-block-scoped-functions", + "@babel/plugin-transform-block-scoping", + "@babel/plugin-transform-classes", + "@babel/plugin-transform-computed-properties", + "@babel/plugin-transform-destructuring", + "@babel/plugin-transform-dotall-regex", + "@babel/plugin-transform-duplicate-keys", + "@babel/plugin-transform-exponentiation-operator", + "@babel/plugin-transform-for-of", + "@babel/plugin-transform-function-name", + "@babel/plugin-transform-literals", + "@babel/plugin-transform-member-expression-literals", + "@babel/plugin-transform-modules-amd", + "@babel/plugin-transform-modules-commonjs", + "@babel/plugin-transform-modules-systemjs", + "@babel/plugin-transform-modules-umd", + "@babel/plugin-transform-named-capturing-groups-regex", + "@babel/plugin-transform-new-target", + "@babel/plugin-transform-object-super", + "@babel/plugin-transform-parameters", + "@babel/plugin-transform-property-literals", + "@babel/plugin-transform-regenerator", + "@babel/plugin-transform-reserved-words", + "@babel/plugin-transform-shorthand-properties", + "@babel/plugin-transform-spread", + "@babel/plugin-transform-sticky-regex", + "@babel/plugin-transform-template-literals", + "@babel/plugin-transform-typeof-symbol", + "@babel/plugin-transform-unicode-escapes", + "@babel/plugin-transform-unicode-regex", + "@babel/preset-env", + "@babel/preset-modules", + "@babel/register", + "@babel/runtime", + "@babel/template", + "@babel/traverse", + "@babel/types", + "@eslint/eslintrc", + "@rollup/plugin-commonjs", + "@rollup/plugin-node-resolve", + "@rollup/pluginutils", + "@types/color-name", + "@types/estree", + "@types/json5", + "@types/node", + "@types/resolve", + "acorn", + "acorn-jsx", + "ajv", + "ansi-colors", + "ansi-regex", + "ansi-styles", + "anymatch", + "argparse", + "arr-diff", + "arr-flatten", + "arr-union", + "array-includes", + "array-unique", + "array.prototype.flat", + "array.prototype.map", + "assertion-error", + "assign-symbols", + "astral-regex", + "async-each", + "atob", + "babel-eslint", + "babel-plugin-dynamic-import-node", + "babel-plugin-syntax-object-rest-spread", + "babel-plugin-transform-object-rest-spread", + "babel-runtime", + "balanced-match", + "base", + "binary-extensions", + "bindings", + "brace-expansion", + "braces", + "browser-stdout", + "browserslist", + "buffer-from", + "builtin-modules", + "cache-base", + "callsites", + "camelcase", + "caniuse-lite", + "chai", + "chalk", + "check-error", + "chokidar", + "class-utils", + "cliui", + "collection-visit", + "color-convert", + "color-name", + "commander", + "commondir", + "component-emitter", + "concat-map", + "confusing-browser-globals", + "contains-path", + "convert-source-map", + "copy-descriptor", + "core-js", + "core-js-compat", + "core-util-is", + "cross-spawn", + "debug", + "decamelize", + "decode-uri-component", + "deep-eql", + "deep-is", + "deepmerge", + "define-properties", + "define-property", + "diff", + "doctrine", + "electron-to-chromium", + "emoji-regex", + "enquirer", + "error-ex", + "es-abstract", + "es-array-method-boxes-properly", + "es-get-iterator", + "es-to-primitive", + "escalade", + "escape-string-regexp", + "eslint", + "eslint-config-airbnb-base", + "eslint-config-prettier", + "eslint-import-resolver-node", + "eslint-module-utils", + "eslint-plugin-babel", + "eslint-plugin-import", + "eslint-plugin-prettier", + "eslint-rule-composer", + "eslint-scope", + "eslint-utils", + "eslint-visitor-keys", + "espree", + "esprima", + "esquery", + "esrecurse", + "estraverse", + "estree-walker", + "esutils", + "expand-brackets", + "extend-shallow", + "extglob", + "fast-deep-equal", + "fast-diff", + "fast-json-stable-stringify", + "fast-levenshtein", + "file-entry-cache", + "file-uri-to-path", + "fill-range", + "find-cache-dir", + "find-up", + "flat", + "flat-cache", + "flatted", + "for-in", + "fragment-cache", + "fs-readdir-recursive", + "fs.realpath", + "fsevents", + "function-bind", + "functional-red-black-tree", + "gensync", + "get-caller-file", + "get-func-name", + "get-stdin", + "get-value", + "glob", + "glob-parent", + "globals", + "graceful-fs", + "growl", + "has", + "has-flag", + "has-symbols", + "has-value", + "has-values", + "he", + "hosted-git-info", + "ignore", + "import-fresh", + "imurmurhash", + "inflight", + "inherits", + "invariant", + "is-accessor-descriptor", + "is-arguments", + "mocha", + "prettier", + "rollup", + "rollup-plugin-babel", + "rollup-plugin-terser" + ], "https://github.com/llambourne/isoenzymes_flux_balance": [ "cobra", "cycler", @@ -42414,6 +42697,7 @@ "euclid", "gitpython", "httplib2", + "ipyleaflet", "ipython", "jdcal", "jinja2", @@ -42525,6 +42809,64 @@ "net.imagej:ij", "org.apache.maven.plugins:maven-javadoc-plugin" ], + "https://github.com/cemac/SWIFTDB": [ + "certbot", + "flask-migrate", + "flask-script", + "gunicorn", + "pandas", + "passlib", + "psycopg2", + "wtforms", + "WTForms-Components", + "-libgcc-mutex", + "alembic", + "blas", + "ca-certificates", + "certifi", + "click", + "et-xmlfile", + "flask", + "flask-sqlalchemy", + "intel-openmp", + "itsdangerous", + "jdcal", + "jinja2", + "krb5", + "libedit", + "libffi", + "libgcc-ng", + "libgfortran-ng", + "libpq", + "libstdcxx-ng", + "mako", + "markupsafe", + "mkl", + "mkl-fft", + "mkl-random", + "mkl-service", + "ncurses", + "numpy", + "numpy-base", + "openpyxl", + "openssl", + "pip", + "postgresql", + "python", + "python-dateutil", + "python-editor", + "pytz", + "readline", + "setuptools", + "six", + "sqlalchemy", + "sqlite", + "tk", + "werkzeug", + "wheel", + "xz", + "zlib" + ], "https://github.com/minimalparts/nonce2vec": [ "gensim", "numpy", @@ -42820,11 +43162,13 @@ "art", "bandit", "codecov", + "matplotlib", "notebook", "numpy", "pydocstyle", "pytest", "pytest-cov", + "seaborn", "setuptools", "vulture" ], @@ -43831,9 +44175,6 @@ "pytest", "six" ], - "https://github.com/digicademy/AskMoreXtension": [ - "com.oxygenxml:oxygen" - ], "https://github.com/jnicoleoliveira/SPECData": [ "astropy", "astroquery", @@ -44875,42 +45216,6 @@ "numpy", "seawater" ], - "https://github.com/DiamondLightSource/Opt-ID": [ - "coverage", - "h5py", - "jinja2", - "mock", - "mpi4py", - "nbconvert", - "nbformat", - "numpy", - "pytest", - "pytest-cov", - "ruamel-yaml", - "scipy" - ], - "https://github.com/salvadorgarciamunoz/kipet": [ - "appdirs", - "backports-functools-lru-cache", - "casadi", - "coverage", - "cycler", - "decorator", - "kiwisolver", - "matplotlib", - "networkx", - "nose", - "numpy", - "pandas", - "ply", - "pyomo", - "pyparsing", - "python-dateutil", - "pytz", - "pyutilib", - "scipy", - "six" - ], "https://github.com/JasperHG90/sleepsimR-api": [ "numpy", "pandas", @@ -46558,10 +46863,6 @@ "numpy", "scipy" ], - "https://github.com/harnesscloud/irm-nova": [ - "bottle", - "requests" - ], "https://github.com/obachem/kmc2": [ "nose", "numpy", @@ -47600,104 +47901,6 @@ "https://github.com/fastscape-lem/fastscape": [ "xarray-simlab" ], - "https://github.com/yogo/sapphire": [ - "data_mapper", - "devise", - "dm-devise", - "dm-is-nested_set", - "dm-pager", - "dm-rails", - "haml", - "hpricot", - "jquery-rails", - "rails", - "ruby-debug19", - "rubyzip", - "ruby_parser", - "rvm-capistrano", - "sass", - "sqlite3", - "tilt", - "turn", - "uglifier", - "yogo-datamapper", - "yogo-framework", - "yogo-operation", - "yogo-support", - "abstract", - "actionmailer", - "actionpack", - "activemodel", - "activerecord", - "activeresource", - "activesupport", - "addressable", - "ansi", - "archive-tar-minitar", - "arel", - "bcrypt-ruby", - "builder", - "capistrano", - "carrierwave", - "carrierwave-datamapper", - "columnize", - "configatron", - "dataflow", - "data_objects", - "dm-active_model", - "dm-adjust", - "dm-aggregates", - "dm-constraints", - "dm-core", - "dm-do-adapter", - "dm-is-list", - "dm-is-remixable", - "dm-is-versioned", - "dm-migrations", - "dm-postgres-adapter", - "dm-rest-adapter", - "dm-serializer", - "dm-sqlite-adapter", - "dm-timestamps", - "dm-transactions", - "dm-types", - "dm-validations", - "do_postgres", - "do_sqlite3", - "erubis", - "execjs", - "facets", - "fastercsv", - "highline", - "i18n", - "json", - "linecache19", - "mail", - "mime-types", - "multi_json", - "net-scp", - "net-sftp", - "net-ssh", - "net-ssh-gateway", - "orm_adapter", - "polyglot", - "rack", - "rack-mount", - "rack-test", - "railties", - "rake", - "rdoc", - "ruby-debug-base19", - "ruby_core_source", - "sexp_processor", - "stringex", - "thor", - "treetop", - "tzinfo", - "uuidtools", - "warden", - "yamler" - ], "https://github.com/BlueBrain/MorphIO": [ "numpy", "mock", @@ -47839,6 +48042,78 @@ "opennmt-tf", "pyonmttok" ], + "https://github.com/sbalci/clinicopathological": [ + "@babel/core", + "@babel/plugin-transform-react-jsx", + "@babel/preset-env", + "@babel/preset-react", + "@hapi/cryptiles", + "@hapi/hoek", + "@reduxjs/toolkit", + "acorn", + "axios", + "babel-loader", + "babel-plugin-module-resolver", + "babel-plugin-transform-async-to-generator", + "btoa", + "clean-css", + "concurrently", + "connected-react-router", + "constantinople", + "cross-env", + "csp-html-webpack-plugin", + "css-loader", + "debug", + "easy-redux-undo", + "electron", + "electron-builder", + "electron-compile", + "electron-debug", + "electron-devtools-installer", + "electron-forge", + "electron-prebuilt-compile", + "electron-squirrel-startup", + "eslint", + "eslint-config-airbnb", + "eslint-plugin-import", + "eslint-plugin-jsx-a11y", + "eslint-plugin-react", + "eslint-plugin-react-hooks", + "execa", + "fs-extra", + "html-loader", + "html-webpack-plugin", + "i18next", + "i18next-electron-fs-backend", + "immutable", + "js-yaml", + "lodash", + "lodash.merge", + "mem", + "mime", + "mini-css-extract-plugin", + "node-gyp", + "q", + "react", + "react-dom", + "react-i18next", + "react-redux", + "react-router", + "react-router-dom", + "rebuild", + "redux", + "seamless-immutable", + "secure-electron-context-menu", + "secure-electron-store", + "semver", + "style-loader", + "uglify-js", + "url-loader", + "webpack", + "webpack-cli", + "webpack-dev-server", + "webpack-merge" + ], "https://github.com/arselzer/HTQueryOptimizer": [ "com.github.jsqlparser:jsqlparser", "com.google.code.gson:gson", diff --git a/test/README.md b/test/README.md new file mode 100644 index 0000000..64138ee --- /dev/null +++ b/test/README.md @@ -0,0 +1,29 @@ +# test data (3k repos with dependency files) + +3k_valid_repos + + +# test file + +## 1. Get dependency: +### (1).py files: + - extractor_depend_1repo.py: Extract the 1-hop in the dependencies of the repository + - extractor_depend.py: Extract the multi-hop in the dependencies of the repository +### (2).ipynb files: + - test_extractor_depend_1repo_1hop.ipynb: test and extract 1-hop dependencies in 1 repository + - test_extractor_depend_1repo_2hop.ipynb: test and extract 2-hop dependencies in 1 repository + - test_extractor_depend_3k_1hop.ipynb: test and extract 1-hop dependencies in 3k repository +## 2. cluter: +### (1).py file: + - cluster.py: load data and use kmeans,gmm, LDA methods to analysis these repositories similarity +### (2).ipynb file: + - test_cluster.ipynb: Given data repository name and get analysis result + +# Output result + +## Extract dependency result: +- 1_repodata_1hop: Get extract 1-hop dependency result from 1 repository +- 1_repodata_2hop: Get extract 2-hop dependency result from 1 repository +- 3k_repodata_1hop: Get extract 1-hop dependency result from 3k repository + + diff --git a/test/cluster.ipynb b/test/cluster.ipynb deleted file mode 100644 index 6ba0ad7..0000000 --- a/test/cluster.ipynb +++ /dev/null @@ -1,315 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Data looking:\n", - "repos nums: 1869\n", - "repos which have no dependency files: 0\n", - "repos with dependency files: 1869\n", - "distinct dependency file: 12947\n", - "========================================\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "E:\\Anaconda\\lib\\site-packages\\gensim\\models\\doc2vec.py:319: UserWarning: The parameter `size` is deprecated, will be removed in 4.0.0, use `vector_size` instead.\n", - " warnings.warn(\"The parameter `size` is deprecated, will be removed in 4.0.0, use `vector_size` instead.\")\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "KMEANS:\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - ":79: DeprecationWarning: Call to deprecated `doctag_syn0` (Attribute will be removed in 4.0.0, use docvecs.vectors_docs instead).\n", - " X = kmeans_model.fit(d2v_model.docvecs.doctag_syn0)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "topic 0 : repos num: 1405\n", - "topic 1 : repos num: 46\n", - "topic 2 : repos num: 76\n", - "topic 3 : repos num: 27\n", - "topic 4 : repos num: 86\n", - "topic 5 : repos num: 2\n", - "topic 6 : repos num: 165\n", - "topic 7 : repos num: 44\n", - "topic 8 : repos num: 10\n", - "topic 9 : repos num: 8\n", - "========================================\n", - "GMM:\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - ":97: DeprecationWarning: Call to deprecated `doctag_syn0` (Attribute will be removed in 4.0.0, use docvecs.vectors_docs instead).\n", - " GMM = GaussianMixture(n_components=k).fit(d2v_model.docvecs.doctag_syn0)\n", - ":98: DeprecationWarning: Call to deprecated `doctag_syn0` (Attribute will be removed in 4.0.0, use docvecs.vectors_docs instead).\n", - " probs = GMM.predict_proba(d2v_model.docvecs.doctag_syn0)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[1.00000000e+000 0.00000000e+000 0.00000000e+000 ... 0.00000000e+000\n", - " 0.00000000e+000 1.99674674e-012]\n", - " [0.00000000e+000 0.00000000e+000 0.00000000e+000 ... 0.00000000e+000\n", - " 0.00000000e+000 0.00000000e+000]\n", - " [1.00000000e+000 0.00000000e+000 0.00000000e+000 ... 2.58109775e-319\n", - " 0.00000000e+000 3.37617168e-014]\n", - " ...\n", - " [1.00000000e+000 0.00000000e+000 0.00000000e+000 ... 0.00000000e+000\n", - " 0.00000000e+000 2.58154894e-014]\n", - " [1.00000000e+000 0.00000000e+000 0.00000000e+000 ... 1.79793673e-303\n", - " 0.00000000e+000 6.87015377e-022]\n", - " [1.00000000e+000 0.00000000e+000 0.00000000e+000 ... 3.63613442e-317\n", - " 0.00000000e+000 4.09114112e-020]]\n", - "========================================\n", - "LDA:\n", - "Perplexity: -8.75247979015459\n", - "Coherence Score: 0.6670300120458954\n", - "(0, '0.029*\"pylint\" + 0.023*\"xarray\" + 0.012*\"protobuf\" + 0.010*\"sphinx-autodoc-typehints\" + 0.009*\"mypy\"')\n", - "(1, '0.006*\"@babel/parser\" + 0.006*\"@babel/core\" + 0.005*\"@babel/helper-module-imports\" + 0.005*\"@babel/helpers\" + 0.005*\"@babel/helper-optimise-call-expression\"')\n", - "(2, '0.026*\"junit:junit\" + 0.023*\"org.apache.maven.plugins:maven-compiler-plugin\" + 0.017*\"org.apache.maven.plugins:maven-surefire-plugin\" + 0.013*\"org.apache.maven.plugins:maven-source-plugin\" + 0.011*\"org.apache.maven.plugins:maven-jar-plugin\"')\n", - "(3, '0.024*\"org.apache.maven.plugins:maven-javadoc-plugin\" + 0.012*\"org.apache.maven.plugins:maven-gpg-plugin\" + 0.008*\"org.sonatype.plugins:nexus-staging-maven-plugin\" + 0.008*\"kramdown\" + 0.008*\"sass\"')\n", - "(4, '0.017*\"python-dateutil\" + 0.015*\"six\" + 0.015*\"pytz\" + 0.014*\"requests\" + 0.013*\"pyparsing\"')\n", - "(5, '0.004*\"debug\" + 0.004*\"core-util-is\" + 0.004*\"concat-map\" + 0.004*\"commander\" + 0.004*\"chalk\"')\n", - "(6, '0.093*\"numpy\" + 0.059*\"scipy\" + 0.053*\"matplotlib\" + 0.051*\"pandas\" + 0.038*\"pytest\"')\n", - "(7, '0.021*\"nbsphinx\" + 0.015*\"coveralls\" + 0.014*\"twine\" + 0.011*\"mpi4py\" + 0.010*\"tox\"')\n", - "(8, '0.025*\"tensorflow\" + 0.011*\"load-grunt-tasks\" + 0.009*\"pyserial\" + 0.006*\"gevent\" + 0.005*\"flask-cors\"')\n", - "(9, '0.008*\"semver\" + 0.007*\"isort\" + 0.006*\"minimatch\" + 0.005*\"wrapt\" + 0.005*\"js-tokens\"')\n", - "[[0.05810447 0.02687364 0.03236715 ... 0.10543193 0.01991389 0.05671248]\n", - " [1.0603286 0.02687364 0.03236715 ... 6.201501 0.01991389 1.074665 ]\n", - " [3.0952764 0.02687364 0.03236715 ... 5.1444044 0.01991389 0.05671248]\n", - " ...\n", - " [0.05810447 0.02687364 0.03236715 ... 1.0997568 0.01991389 0.05671248]\n", - " [0.05810447 0.02687364 0.03236715 ... 0.10542996 0.01991389 0.05671248]\n", - " [0.05810447 0.02687364 0.03236715 ... 0.10542996 0.01991389 0.05671248]]\n", - "========================================\n" - ] - } - ], - "source": [ - "import json\n", - "import numpy\n", - "import re\n", - "import os\n", - "import numpy as np\n", - "import gensim\n", - "import gensim.corpora as corpora\n", - "from gensim.models import CoherenceModel\n", - "from sklearn.cluster import KMeans\n", - "from sklearn.mixture import GaussianMixture\n", - "from sklearn.decomposition import PCA\n", - "from gensim.models import Doc2Vec\n", - "\n", - "\n", - "\n", - "def load_data(input_file):\n", - " '''\n", - " input: result_13k.json\n", - " output: rep_list,dep_list\n", - " '''\n", - " with open(input_file) as f:\n", - " data = json.load(f)\n", - " print(f'repos nums: {len(data)}')\n", - "\n", - " need_to_remove = []\n", - " for k,v in data.items():\n", - " if 'No dependency' in v:\n", - " need_to_remove.append(k)\n", - " print(f'repos which have no dependency files: {len(need_to_remove)}')\n", - "\n", - " for k in need_to_remove:\n", - " del data[k]\n", - " print(f'repos with dependency files: {len(data)}')\n", - "\n", - " rep_list,dep_list = [],[]\n", - " for k,v in data.items():\n", - " rep_list.append(k)\n", - " dep_list.append(v)\n", - " \n", - " dep_dict = {}\n", - " for deps in data.values():\n", - " for i in deps:\n", - " dep_dict[i] = dep_dict.get(i,0)+1\n", - "\n", - " print(f'distinct dependency file: {len(dep_dict)}')\n", - "\n", - " return rep_list,dep_list,data\n", - " ### rep_list format : ['https://github.com/AgriculturalModelExchangeInitiative/Crop2ML' ... ]\n", - " ### dep_list format: [['ipython', 'jupyter-sphinx', 'nbformat', 'nbsphinx', 'path-py', 'six', 'sphinx', \n", - " # 'sphinx-hoverxref', 'sphinx-rtd-theme'], ['pypng', 'requests'], ....] \n", - " ### data format: {repo1: [dep1,dep2], ...}\n", - "\n", - "def d2v(dep_list):\n", - " LabeledSentence1 = gensim.models.doc2vec.TaggedDocument\n", - " all_content_train = []\n", - " j=0\n", - " for em in dep_list:\n", - " all_content_train.append(LabeledSentence1(em,[j]))\n", - " j+=1\n", - " d2v_model = Doc2Vec(all_content_train, \n", - " size = 100, \n", - " window = 10, \n", - " min_count = 1, \n", - " workers=7, \n", - " dm = 1,\n", - " alpha=0.025, \n", - " min_alpha=0.001)\n", - " d2v_model.train(all_content_train, \n", - " total_examples=d2v_model.corpus_count, \n", - " epochs=10, \n", - " start_alpha=0.002, \n", - " end_alpha=-0.016)\n", - "\n", - " return d2v_model\n", - " ### d2v_model can be seen as a list, each item represents a doc vector \n", - "\n", - "def kmeans(k,d2v_model,rep_list):\n", - " kmeans_model = KMeans(n_clusters=k, init='k-means++', max_iter=500) \n", - " X = kmeans_model.fit(d2v_model.docvecs.doctag_syn0)\n", - " labels=kmeans_model.labels_\n", - "\n", - " topic_dict = {}\n", - " for index,label in enumerate(labels):\n", - " topic_id = label\n", - " # print(topic_id, '--->', rep_list[index])\n", - " topic_dict[label] = topic_dict.get(label,[])\n", - " topic_dict[label].append(rep_list[index])\n", - "\n", - " for k in sorted(topic_dict.keys()):\n", - " print(f'topic {k} : repos num: {len(topic_dict[k])}')\n", - "\n", - " return topic_dict\n", - " ## topic_dict is a dictionary whose key is the topic and value is a list of repos\n", - " ## format {top1: [repo1,repo2] ....}\n", - "\n", - "def gmm(k,d2v_model):\n", - " GMM = GaussianMixture(n_components=k).fit(d2v_model.docvecs.doctag_syn0)\n", - " probs = GMM.predict_proba(d2v_model.docvecs.doctag_syn0)\n", - " #probs.shape,probs\n", - " return probs\n", - "\n", - "### LDA ### \n", - "def LDA(data,rep_list):\n", - " # based on dep file names , build dep name dictionary\n", - " id2word = corpora.Dictionary(list(data.values())) # {0: 'emd-signal',1: 'numpy', 2: 'SQLAlchemy' ...}\n", - " # based on dep name dict and dep names, build corpus\n", - " corpus = [id2word.doc2bow(text) for text in list(data.values())] # [[(0, 1), (1, 1)],.....]\n", - " lda_model = gensim.models.ldamodel.LdaModel(corpus=corpus,\n", - " id2word=id2word,\n", - " num_topics=10, \n", - " random_state=100,\n", - " update_every=1,\n", - " chunksize=100,\n", - " passes=10,\n", - " alpha='auto',\n", - " per_word_topics=True)\n", - " # pprint(lda_model.print_topics())\n", - "\n", - " print('Perplexity: ', lda_model.log_perplexity(corpus)) # a measure of how good the model is. lower the better.\n", - " # Compute Coherence Score\n", - " coherence_model_lda = CoherenceModel(model=lda_model, texts=list(data.values()), dictionary=id2word, coherence='c_v')\n", - " coherence_lda = coherence_model_lda.get_coherence()\n", - " print('Coherence Score: ', coherence_lda)\n", - "\n", - " # Show the top 5 words of each topic\n", - " for topic in lda_model.print_topics(num_words=5):\n", - " print(topic)\n", - "\n", - " # get the possible of each topic\n", - " probs = lda_model.inference(corpus)[0]\n", - "\n", - " # inference\n", - " topic_dict = {}\n", - " for e, values in enumerate(lda_model.inference(corpus)[0]):\n", - " topic_val = 0\n", - " topic_id = 0\n", - " for tid, val in enumerate(values):\n", - " if val > topic_val:\n", - " topic_val = val\n", - " topic_id = tid \n", - " topic_dict[topic_id] = topic_dict.get(topic_id,[])\n", - " topic_dict[topic_id].append(rep_list[e])\n", - "\n", - " return probs,topic_dict\n", - "\n", - "\n", - "\n", - "if __name__ == \"__main__\":\n", - " input_file = '../data/dependency_data_8k.json'\n", - " # load data\n", - " print('Data looking:')\n", - " rep_list,dep_list,data = load_data(input_file)\n", - " print('='*40)\n", - " #doc2vector\n", - " d2v_model = d2v(dep_list)\n", - " # kmeans\n", - " print('KMEANS:')\n", - " topic_dict = kmeans(10,d2v_model,rep_list)\n", - " print('='*40)\n", - " # gmm\n", - " print('GMM:')\n", - " probs = gmm(10,d2v_model)\n", - " print(probs)\n", - " print('='*40)\n", - " \n", - " # LDA\n", - " print('LDA:')\n", - " probs_lds, topic_dict_lda = LDA(data,rep_list)\n", - " print(probs_lds)\n", - " print('='*40)\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/test/repodata_8k_test_2hop b/test/repodata_8k_test_2hop deleted file mode 100644 index 4308a8c..0000000 --- a/test/repodata_8k_test_2hop +++ /dev/null @@ -1,8516 +0,0 @@ -{ - "https://github.com/pymedphys/pymedphys": [ - "autopep8", - "mypy", - "mypy-extensions", - "typed-ast", - "typing-extensions", - "attrs", - "flake8", - "flake8-bugbear", - "flake8-pyi", - "importlib-metadata", - "lxml", - "psutil", - "py", - "pytest", - "pytest-cov", - "pytest-forked", - "pytest-xdist", - "setuptools", - "typing", - "virtualenv", - "sphinx", - "sphinx-rtd-theme", - "pylint", - "pytest", - "pytest-benchmark", - "python-docs-theme", - "deepdiff", - "numpydoc", - "bump2version", - "coverage", - "ipdb", - "jsonpickle", - "mmh3", - "numpy", - "pytest", - "pytest-cov", - "python-dotenv", - "sphinx", - "sphinx-sitemap", - "watchdog", - "ordered-set", - "mock", - "pytest", - "pallets-sphinx-themes", - "pygments-pytest", - "sphinx", - "sphinx-removed-in", - "sphinxcontrib-trio", - "django", - "pytest-asyncio", - "pytest-bdd", - "pytest-cov", - "pytest-django", - "pytest-flakes", - "pytest-html", - "pytest-mock", - "pytest-rerunfailures", - "pytest-sugar", - "pytest-trio", - "pytest-twisted", - "pytest-xvfb", - "twisted", - "pytest-cov", - "coverage", - "pytest", - "pip", - "setuptools", - "six", - "virtualenv", - "docutils", - "sphinx", - "sphinx-py3doc-enhanced-theme", - "tox", - "xlwings", - "comtypes", - "cryptography", - "sphinxcontrib-httpdomain", - "sphinxcontrib-napoleon", - "appscript", - "flask", - "matplotlib", - "nose", - "numpy", - "pandas", - "pillow", - "psutil", - "pywin32", - "google-api-python-client", - "oauth2client", - "python-gflags", - "xlwings", - "cypress", - "@cypress/bumpercar", - "@cypress/commit-message-install", - "@cypress/env-or-json-file", - "@cypress/eslint-plugin-dev", - "@cypress/github-commit-status-check", - "@cypress/questions-remain", - "@cypress/request", - "@cypress/request-promise", - "@fellow/eslint-plugin-coffee", - "@percy/cypress", - "@semantic-release/changelog", - "@semantic-release/git", - "@types/bluebird", - "@types/chai-enzyme", - "@types/classnames", - "@types/debug", - "@types/enzyme", - "@types/enzyme-adapter-react-16", - "@types/execa", - "@types/fs-extra", - "@types/glob", - "@types/lodash", - "@types/markdown-it", - "@types/mini-css-extract-plugin", - "@types/mocha", - "@types/node", - "@types/prismjs", - "@types/ramda", - "@types/react", - "@types/react-dom", - "@types/request-promise", - "@types/sinon-chai", - "@typescript-eslint/eslint-plugin", - "@typescript-eslint/parser", - "ansi-styles", - "arg", - "ascii-table", - "aws-sdk", - "babel-eslint", - "bluebird", - "bluebird-retry", - "bulk-decaffeinate", - "chai", - "chai-as-promised", - "chalk", - "check-dependencies", - "check-more-types", - "common-tags", - "debug", - "decaffeinate", - "del", - "electron-builder", - "electron-notarize", - "enzyme-adapter-react-16", - "eslint", - "eslint-plugin-cypress", - "eslint-plugin-json-format", - "eslint-plugin-mocha", - "eslint-plugin-react", - "execa", - "execa-wrap", - "filesize", - "find-package-json", - "fs-extra", - "gift", - "globby", - "got", - "gulp", - "gulp-awspublish", - "gulp-debug", - "gulp-rename", - "hasha", - "http-server", - "human-interval", - "husky", - "inquirer", - "inquirer-confirm", - "jest", - "jscodeshift", - "konfig", - "lazy-ass", - "lerna", - "lint-staged", - "listr", - "lodash", - "make-empty-github-commit", - "mocha", - "mocha-banner", - "mocha-junit-reporter", - "mocha-multi-reporters", - "mock-fs", - "parse-github-repo-url", - "patch-package", - "percy", - "plist", - "pluralize", - "postinstall-postinstall", - "prefixed-list", - "pretty-ms", - "print-arch", - "proxyquire", - "ramda", - "semantic-release", - "semantic-release-monorepo", - "shelljs", - "shx", - "sinon", - "snap-shot-it", - "start-server-and-test", - "stop-only", - "strip-ansi", - "term-to-html", - "terminal-banner", - "through", - "ts-node", - "typescript", - "@babel/cli", - "@babel/preset-env", - "@cypress/listr-verbose-renderer", - "@cypress/sinon-chai", - "@cypress/xvfb", - "@packages/root", - "@types/chai", - "@types/chai-jquery", - "@types/jquery", - "@types/minimatch", - "@types/sinon", - "@types/sinonjs__fake-timers", - "@types/sizzle", - "arch", - "blob-util", - "cachedir", - "chai-string", - "cli-table3", - "commander", - "cross-env", - "dependency-check", - "dtslint", - "eventemitter2", - "executable", - "extract-zip", - "getos", - "is-ci", - "is-installed-globally", - "log-symbols", - "minimist", - "mocked-env", - "moment", - "nock", - "ospath", - "pretty-bytes", - "request-progress", - "resolve-pkg", - "spawn-mock", - "supports-color", - "tmp", - "untildify", - "url", - "yauzl", - "@babel/code-frame", - "@cypress/bower-kendo-ui", - "@cypress/unique-selector", - "@cypress/webpack-preprocessor", - "@cypress/what-is-circular", - "@packages/network", - "@packages/runner", - "@packages/server", - "@packages/ts", - "@types/chalk", - "@types/common-tags", - "angular", - "backbone", - "basic-auth", - "body-parser", - "bootstrap", - "bytes", - "chai-subset", - "chokidar-cli", - "clone", - "compression", - "cors", - "cypress-multi-reporters", - "error-stack-parser", - "errorhandler", - "express", - "jquery", - "jquery.scrollto", - "js-cookie", - "jsdom", - "lolex", - "md5", - "method-override", - "methods", - "minimatch", - "morgan", - "ordinal", - "setimmediate", - "source-map", - "text-mask-addons", - "underscore", - "underscore.string", - "unfetch", - "url-parse", - "vanilla-text-mask", - "webpack", - "zone.js", - "@cypress/react-tooltip", - "@fortawesome/fontawesome-free", - "@packages/driver", - "@packages/reporter", - "@packages/socket", - "@packages/web-config", - "ansi-to-html", - "babel-plugin-prismjs", - "chai-enzyme", - "classnames", - "enzyme", - "mobx", - "mobx-react", - "prismjs", - "prop-types", - "react", - "react-dom", - "regenerator-runtime", - "sinon-chai", - "snap-shot-core", - "webpack-cli", - "@babel/core", - "@benmalka/foxdriver", - "@cypress/commit-info", - "@cypress/debugging-proxy", - "@cypress/get-windows-proxy", - "@cypress/icons", - "@cypress/json-schemas", - "@cypress/mocha-teamcity-reporter", - "@cypress/webpack-batteries-included-preprocessor", - "@ffmpeg-installer/ffmpeg", - "@ffprobe-installer/ffprobe", - "@packages/desktop-gui", - "@packages/electron", - "@packages/example", - "@packages/extension", - "@packages/https-proxy", - "@packages/launcher", - "@packages/static", - "@types/chai-as-promised", - "@types/chrome", - "ansi_up", - "awesome-typescript-loader", - "babel-loader", - "black-hole-stream", - "chai-uuid", - "chokidar", - "chrome-har-capturer", - "chrome-remote-interface", - "coffeescript", - "color-string", - "command-exists", - "content-type", - "cookie-parser", - "data-uri-to-buffer", - "dependency-tree", - "devtools-protocol", - "duplexify", - "electron-context-menu", - "eol", - "eventsource", - "evil-dns", - "express-session", - "express-useragent", - "find-process", - "firefox-profile", - "fix-path", - "fluent-ffmpeg", - "get-port", - "glob", - "graceful-fs", - "http-mitm-proxy", - "http-status-codes", - "https-proxy-agent", - "image-size", - "is-fork-pr", - "is-html", - "istanbul", - "jimp", - "jsonlint", - "launch-editor", - "lockfile", - "mime", - "mocha-teamcity-reporter", - "mockery", - "multiparty", - "node-machine-id", - "p-queue", - "randomstring", - "repl.history", - "resolve", - "return-deep-diff", - "sanitize-filename", - "semver", - "send", - "shell-env", - "signal-exit", - "squirrelly", - "ssestream", - "supertest", - "supertest-session", - "syntax-error", - "systeminformation", - "term-size", - "through2", - "tough-cookie", - "trash", - "tree-kill", - "ts-loader", - "tsconfig-paths", - "uuid", - "which", - "widest-line", - "winston", - "ws", - "xvfb-maybe", - "socket.io", - "socket.io-client", - "cypress-example-kitchensink", - "gulp-clean", - "gulp-gh-pages", - "gulp-rev-all", - "@cypress/parse-domain", - "@types/concat-stream", - "concat-stream", - "proxy-from-env", - "electron", - "electron-packager", - "@reach/dialog", - "@reach/visually-hidden", - "css-element-queries", - "markdown-it", - "browserify", - "mock-require", - "rimraf", - "vinyl-source-stream", - "webextension-polyfill", - "@babel/plugin-proposal-class-properties", - "@babel/plugin-proposal-decorators", - "@babel/plugin-proposal-object-rest-spread", - "@babel/preset-react", - "@babel/preset-typescript", - "@babel/register", - "@types/copy-webpack-plugin", - "@types/html-webpack-plugin", - "@types/jsdom", - "@types/mock-require", - "@types/webpack", - "ansi-escapes", - "arraybuffer-loader", - "autoprefixer", - "browser-resolve", - "clean-webpack-plugin", - "css-loader", - "extract-text-webpack-plugin", - "file-loader", - "html-webpack-plugin", - "mini-css-extract-plugin", - "node-sass", - "node-sass-globbing", - "postcss-loader", - "rebuild-node-sass", - "resolve-url-loader", - "sass-loader", - "webpack-livereload-plugin", - "@babel/polyfill", - "bootstrap-sass", - "cypress-react-unit-test", - "gravatar", - "mobx-react-devtools", - "rc-collapse", - "react-bootstrap-modal", - "react-inspector", - "react-loader", - "react-select", - "react-transition-group", - "node-forge", - "semaphore", - "sinon-as-promised", - "ssl-root-cas", - "@cypress/listr-verbose-renderer", - "ava", - "chalk", - "cli-cursor", - "date-fns", - "figures", - "hook-std", - "listr", - "strip-ansi", - "xo", - "@cypress/request", - "@cypress/xvfb", - "@babel/code-frame", - "@babel/helper-validator-identifier", - "@babel/highlight", - "@nodelib/fs.scandir", - "@nodelib/fs.stat", - "@nodelib/fs.walk", - "@octokit/auth-token", - "@octokit/endpoint", - "@octokit/plugin-paginate-rest", - "@octokit/plugin-request-log", - "@octokit/plugin-rest-endpoint-methods", - "@octokit/request", - "@octokit/request-error", - "@octokit/rest", - "@octokit/types", - "@semantic-release/commit-analyzer", - "@semantic-release/error", - "@semantic-release/github", - "@semantic-release/npm", - "@semantic-release/release-notes-generator", - "@types/glob", - "@types/minimatch", - "@types/minimist", - "@types/node", - "@types/normalize-package-data", - "@types/retry", - "acorn", - "acorn-jsx", - "agent-base", - "aggregate-error", - "ajv", - "ajv-keywords", - "always-error", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "ansicolors", - "aproba", - "are-we-there-yet", - "argparse", - "argv-formatter", - "array-ify", - "array-union", - "array-uniq", - "arrify", - "asap", - "asn1", - "assert-plus", - "assertion-error", - "asynckit", - "atob-lite", - "aws-sign2", - "aws4", - "babel-code-frame", - "balanced-match", - "bcrypt-pbkdf", - "before-after-hook", - "bluebird", - "bottleneck", - "brace-expansion", - "braces", - "browser-stdout", - "btoa-lite", - "buffer-from", - "builtins", - "caller-callsite", - "caller-path", - "callsites", - "camelcase", - "camelcase-keys", - "cardinal", - "caseless", - "chai", - "chalk", - "chardet", - "chdir-promise", - "check-error", - "check-more-types", - "ci-info", - "circular-json", - "clean-stack", - "cli-cursor", - "cli-table", - "cli-width", - "cliui", - "co", - "code-point-at", - "color-convert", - "color-name", - "colors", - "combined-stream", - "commander", - "compare-func", - "concat-map", - "concat-stream", - "console-control-strings", - "conventional-changelog-angular", - "conventional-changelog-writer", - "conventional-commits-filter", - "conventional-commits-parser", - "core-util-is", - "cosmiconfig", - "cross-spawn", - "crypto-random-string", - "d3-helpers", - "dashdash", - "dateformat", - "debug", - "decamelize", - "decamelize-keys", - "deep-eql", - "deep-extend", - "deep-is", - "del", - "delayed-stream", - "delegates", - "deprecation", - "diff", - "dir-glob", - "doctrine", - "dot-prop", - "duplexer2", - "ecc-jsbn", - "end-of-stream", - "env-ci", - "error-ex", - "escape-string-regexp", - "eslint", - "eslint-plugin-cypress-dev", - "eslint-plugin-mocha", - "eslint-scope", - "eslint-visitor-keys", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "esutils", - "execa", - "extend", - "external-editor", - "extsprintf", - "fast-deep-equal", - "fast-glob", - "fast-json-stable-stringify", - "fast-levenshtein", - "fastq", - "figures", - "file-entry-cache", - "fill-range", - "find-up", - "find-versions", - "flat-cache", - "forever-agent", - "form-data", - "from2", - "fs-extra", - "fs.realpath", - "functional-red-black-tree", - "gauge", - "get-caller-file", - "get-func-name", - "get-stdin", - "get-stream", - "getpass", - "ggit", - "git-log-parser", - "git-up", - "git-url-parse", - "glob", - "glob-parent", - "globals", - "globby", - "graceful-fs", - "graceful-readlink", - "growl", - "handlebars", - "har-schema", - "har-validator", - "hard-rejection", - "has-ansi", - "has-flag", - "has-unicode", - "he", - "hook-std", - "hosted-git-info", - "http-proxy-agent", - "http-signature", - "https-proxy-agent", - "human-signals", - "husky", - "iconv-lite", - "ignore", - "import-fresh", - "import-from", - "imurmurhash", - "indent-string", - "inflight", - "inherits", - "ini", - "inquirer", - "into-stream", - "invert-kv", - "is-arrayish", - "is-ci", - "is-directory", - "is-extglob", - "is-fullwidth-code-point", - "is-glob", - "is-number", - "is-obj", - "is-path-cwd", - "is-path-in-cwd", - "is-path-inside", - "is-plain-obj", - "is-plain-object", - "is-resolvable", - "is-ssh", - "is-stream", - "is-text-path", - "is-typedarray", - "isarray", - "isexe", - "isstream", - "issue-parser", - "java-properties", - "js-tokens", - "js-yaml", - "jsbn", - "json-parse-better-errors", - "json-parse-even-better-errors", - "json-schema", - "json-schema-traverse", - "json-stable-stringify-without-jsonify", - "json-stringify-safe", - "json3", - "jsonfile", - "jsonparse", - "JSONStream", - "jsprim", - "kind-of", - "lazy-ass", - "lcid", - "levn", - "lines-and-columns", - "load-json-file", - "local-or-home-npmrc", - "locate-path", - "lodash", - "lodash.capitalize", - "lodash.once", - "mocha", - "npm-utils", - "semantic-release", - "@samverschueren/stream-to-observable", - "@types/sinonjs__fake-timers", - "@types/sizzle", - "ajv", - "ajv-async", - "bluebird", - "brfs", - "browserify", - "chai", - "coveralls", - "del-cli", - "dot", - "eslint", - "fast-deep-equal", - "fast-json-stable-stringify", - "gh-pages-generator", - "glob", - "if-node-version", - "js-beautify", - "jshint", - "json-schema-test", - "json-schema-traverse", - "karma", - "karma-chrome-launcher", - "karma-mocha", - "karma-sauce-launcher", - "mocha", - "nyc", - "pre-commit", - "require-globify", - "typescript", - "uglify-js", - "uri-js", - "watch", - "ansi-escapes", - "@types/node", - "ava", - "tsd", - "type-fest", - "xo", - "ansi-regex", - "ava", - "tsd", - "xo", - "ansi-styles", - "@types/color-convert", - "ava", - "color-convert", - "svg-term-cli", - "tsd", - "xo", - "any-observable", - "arrify", - "ava", - "browserify", - "execa", - "karma", - "karma-browserify", - "karma-chrome-launcher", - "karma-mocha", - "mocha", - "rxjs", - "watchify", - "xo", - "zen-observable", - "arch", - "airtap", - "standard", - "tape", - "asn1", - "eslint", - "eslint-plugin-joyent", - "faucet", - "istanbul", - "safer-buffer", - "tape", - "assert-plus", - "faucet", - "tape", - "async", - "@babel/code-frame", - "@babel/core", - "@babel/generator", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-split-export-declaration", - "@babel/helpers", - "@babel/highlight", - "@babel/parser", - "@babel/template", - "@babel/traverse", - "@babel/types", - "@types/estree", - "@types/node", - "accepts", - "acorn", - "acorn-dynamic-import", - "acorn-jsx", - "acorn-node", - "acorn-walk", - "after", - "ajv", - "ansi-colors", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "anymatch", - "append-transform", - "archy", - "argparse", - "arr-diff", - "arr-flatten", - "arr-union", - "array-filter", - "array-map", - "array-reduce", - "array-unique", - "arraybuffer.slice", - "asn1", - "asn1.js", - "assert", - "assert-plus", - "assertion-error", - "assign-symbols", - "astral-regex", - "async", - "async-each", - "async-limiter", - "asynckit", - "atob", - "aws-sign2", - "aws4", - "babel-code-frame", - "babel-core", - "babel-eslint", - "babel-generator", - "babel-helper-call-delegate", - "babel-helper-define-map", - "babel-helper-evaluate-path", - "babel-helper-flip-expressions", - "babel-helper-function-name", - "babel-helper-get-function-arity", - "babel-helper-hoist-variables", - "babel-helper-is-nodes-equiv", - "babel-helper-is-void-0", - "babel-helper-mark-eval-scopes", - "babel-helper-optimise-call-expression", - "babel-helper-regex", - "babel-helper-remap-async-to-generator", - "babel-helper-remove-or-void", - "babel-helper-replace-supers", - "babel-helper-to-multiple-sequence-expressions", - "babel-helpers", - "babel-messages", - "babel-minify", - "babel-plugin-add-module-exports", - "babel-plugin-check-es2015-constants", - "babel-plugin-istanbul", - "babel-plugin-minify-builtins", - "babel-plugin-minify-constant-folding", - "babel-plugin-minify-dead-code-elimination", - "babel-plugin-minify-flip-comparisons", - "babel-plugin-minify-guarded-expressions", - "babel-plugin-minify-infinity", - "babel-plugin-minify-mangle-names", - "babel-plugin-minify-numeric-literals", - "babel-plugin-minify-replace", - "babel-plugin-minify-simplify", - "babel-plugin-minify-type-constructors", - "babel-plugin-syntax-async-functions", - "babel-plugin-syntax-async-generators", - "babel-plugin-syntax-trailing-function-commas", - "babel-plugin-transform-async-to-generator", - "babel-plugin-transform-es2015-arrow-functions", - "babel-plugin-transform-es2015-block-scoped-functions", - "babel-plugin-transform-es2015-block-scoping", - "babel-plugin-transform-es2015-classes", - "babel-plugin-transform-es2015-computed-properties", - "babel-plugin-transform-es2015-destructuring", - "babel-plugin-transform-es2015-duplicate-keys", - "babel-plugin-transform-es2015-for-of", - "babel-plugin-transform-es2015-function-name", - "babel-plugin-transform-es2015-literals", - "babel-plugin-transform-es2015-modules-amd", - "babel-plugin-transform-es2015-modules-commonjs", - "babel-plugin-transform-es2015-modules-systemjs", - "babel-plugin-transform-es2015-modules-umd", - "babel-plugin-transform-es2015-object-super", - "babel-plugin-transform-es2015-parameters", - "babel-plugin-transform-es2015-shorthand-properties", - "babel-plugin-transform-es2015-spread", - "babel-plugin-transform-es2015-sticky-regex", - "babel-plugin-transform-es2015-template-literals", - "babel-plugin-transform-es2015-typeof-symbol", - "babel-plugin-transform-es2015-unicode-regex", - "babel-plugin-transform-inline-consecutive-adds", - "babel-plugin-transform-member-expression-literals", - "babel-plugin-transform-merge-sibling-variables", - "babel-plugin-transform-minify-booleans", - "babel-plugin-transform-property-literals", - "babel-plugin-transform-regenerator", - "babel-plugin-transform-regexp-constructors", - "babel-plugin-transform-remove-console", - "babel-plugin-transform-remove-debugger", - "babel-plugin-transform-remove-undefined", - "babel-plugin-transform-simplify-comparison-operators", - "babel-plugin-transform-strict-mode", - "babel-plugin-transform-undefined-to-void", - "babel-preset-es2015", - "babel-preset-es2017", - "babel-preset-minify", - "babel-register", - "babel-runtime", - "babel-template", - "babel-traverse", - "babel-types", - "babelify", - "babylon", - "backo2", - "balanced-match", - "base", - "base64-arraybuffer", - "base64-js", - "base64id", - "bcrypt-pbkdf", - "benchmark", - "better-assert", - "binary-extensions", - "blob", - "bluebird", - "bn.js", - "body-parser", - "brace-expansion", - "braces", - "brorand", - "browser-pack", - "browser-resolve", - "browser-stdout", - "browserify", - "browserify-aes", - "browserify-cipher", - "browserify-des", - "browserify-rsa", - "browserify-sign", - "browserify-zlib", - "buffer", - "buffer-alloc", - "buffer-alloc-unsafe", - "buffer-fill", - "buffer-from", - "buffer-xor", - "builtin-modules", - "builtin-status-codes", - "bytes", - "cache-base", - "cached-path-relative", - "caching-transform", - "callsite", - "callsites", - "camelcase", - "caseless", - "catharsis", - "chai", - "chalk", - "chardet", - "charenc", - "check-error", - "cheerio", - "chokidar", - "cipher-base", - "class-utils", - "cli-cursor", - "cli-width", - "cliui", - "code-point-at", - "collection-visit", - "color-convert", - "color-name", - "colors", - "combine-source-map", - "combined-stream", - "commander", - "commondir", - "component-bind", - "component-emitter", - "component-inherit", - "concat-map", - "concat-stream", - "connect", - "console-browserify", - "constants-browserify", - "content-type", - "convert-source-map", - "cookie", - "copy-descriptor", - "core-js", - "core-util-is", - "coveralls", - "cp-file", - "create-ecdh", - "create-hash", - "create-hmac", - "cross-spawn", - "crypt", - "crypto-browserify", - "custom-event", - "dash-ast", - "dashdash", - "date-format", - "date-now", - "debug", - "decamelize", - "decode-uri-component", - "deep-eql", - "deep-is", - "default-require-extensions", - "define-properties", - "define-property", - "defined", - "delayed-stream", - "depd", - "deps-sort", - "des.js", - "detect-indent", - "detective", - "di", - "diff", - "diffie-hellman", - "doctrine", - "dom-serialize", - "es6-promise", - "eslint", - "eslint-plugin-prefer-arrow", - "fs-extra", - "jsdoc", - "karma", - "karma-browserify", - "karma-edge-launcher", - "karma-firefox-launcher", - "karma-junit-reporter", - "karma-mocha", - "karma-mocha-reporter", - "karma-safari-launcher", - "mocha", - "mocha-junit-reporter", - "native-promise-only", - "nyc", - "rimraf", - "rollup", - "rollup-plugin-node-resolve", - "rollup-plugin-npm", - "rsvp", - "semver", - "yargs", - "asynckit", - "browserify", - "browserify-istanbul", - "coveralls", - "eslint", - "istanbul", - "obake", - "phantomjs-prebuilt", - "pre-commit", - "reamde", - "rimraf", - "size-table", - "tap-spec", - "tape", - "aws-sign2", - "aws4", - "mocha", - "should", - "acorn", - "acorn-node", - "acorn-walk", - "asn1.js", - "assert", - "aws4", - "balanced-match", - "base64-js", - "bn.js", - "brace-expansion", - "brorand", - "browser-pack", - "browser-resolve", - "browserify", - "browserify-aes", - "browserify-cipher", - "browserify-des", - "browserify-rsa", - "browserify-sign", - "browserify-zlib", - "buffer", - "buffer-from", - "buffer-xor", - "builtin-status-codes", - "cached-path-relative", - "cipher-base", - "combine-source-map", - "concat-map", - "concat-stream", - "console-browserify", - "constants-browserify", - "convert-source-map", - "core-util-is", - "create-ecdh", - "create-hash", - "create-hmac", - "crypto-browserify", - "dash-ast", - "defined", - "deps-sort", - "des.js", - "detective", - "diffie-hellman", - "domain-browser", - "duplexer2", - "elliptic", - "events", - "evp_bytestokey", - "fast-safe-stringify", - "fs.realpath", - "function-bind", - "get-assigned-identifiers", - "glob", - "has", - "hash-base", - "hash.js", - "hmac-drbg", - "htmlescape", - "https-browserify", - "ieee754", - "inflight", - "inherits", - "inline-source-map", - "insert-module-globals", - "is-buffer", - "isarray", - "json-stable-stringify", - "jsonify", - "jsonparse", - "JSONStream", - "labeled-stream-splicer", - "lodash.memoize", - "md5.js", - "miller-rabin", - "minimalistic-assert", - "minimalistic-crypto-utils", - "minimatch", - "minimist", - "mkdirp-classic", - "module-deps", - "object-assign", - "once", - "os-browserify", - "pako", - "parents", - "parse-asn1", - "path-browserify", - "path-is-absolute", - "path-parse", - "path-platform", - "pbkdf2", - "process", - "process-nextick-args", - "public-encrypt", - "punycode", - "querystring", - "querystring-es3", - "randombytes", - "randomfill", - "read-only-stream", - "readable-stream", - "resolve", - "ripemd160", - "safe-buffer", - "sha.js", - "shasum", - "shasum-object", - "shell-quote", - "simple-concat", - "source-map", - "stream-browserify", - "stream-combiner2", - "stream-http", - "stream-splicer", - "string_decoder", - "subarg", - "syntax-error", - "through", - "through2", - "timers-browserify", - "tty-browserify", - "typedarray", - "umd", - "undeclared-identifiers", - "url", - "util", - "util-deprecate", - "vm-browserify", - "wrappy", - "xtend", - "balanced-match", - "bcrypt-pbkdf", - "tweetnacl", - "bluebird", - "abbrev", - "acorn", - "acorn-dynamic-import", - "acorn-node", - "acorn-walk", - "amdefine", - "ansi-styles", - "argparse", - "asn1", - "asn1.js", - "assert", - "assert-plus", - "astw", - "async", - "aws-sign", - "aws-sign2", - "baconjs", - "balanced-match", - "Base64", - "base64-js", - "bluebird", - "bn.js", - "body-parser", - "boom", - "brace-expansion", - "brorand", - "browser-pack", - "browser-resolve", - "browserify", - "browserify-aes", - "browserify-cipher", - "browserify-des", - "browserify-rsa", - "browserify-sign", - "browserify-zlib", - "buffer", - "buffer-xor", - "builtins", - "buster-core", - "buster-format", - "bytes", - "callsite", - "camelcase", - "chalk", - "cipher-base", - "cli", - "cli-table", - "co", - "colors", - "combine-source-map", - "combined-stream", - "commander", - "commondir", - "concat-map", - "concat-stream", - "console-browserify", - "constants-browserify", - "content-type", - "convert-source-map", - "cookie-jar", - "core-util-is", - "create-ecdh", - "create-hash", - "create-hmac", - "cross-spawn", - "cryptiles", - "crypto-browserify", - "ctype", - "date-now", - "debug", - "decamelize", - "deep-equal", - "deep-is", - "defined", - "delayed-stream", - "depd", - "deps-sort", - "des.js", - "destroy", - "detective", - "diff", - "diffie-hellman", - "dom-serializer", - "domain-browser", - "domelementtype", - "domhandler", - "domutils", - "duplexer2", - "ee-first", - "elliptic", - "encodeurl", - "entities", - "escape-html", - "escape-string-regexp", - "escodegen", - "esprima", - "estraverse", - "esutils", - "etag", - "events", - "evp_bytestokey", - "exit", - "fast-levenshtein", - "fileset", - "forever-agent", - "form-data", - "fresh", - "fs.realpath", - "glob", - "graceful-fs", - "growl", - "grunt-saucelabs", - "handlebars", - "has-color", - "has-flag", - "hash-base", - "hash.js", - "hawk", - "highland", - "hmac-drbg", - "hoek", - "htmlparser2", - "http-browserify", - "http-errors", - "http-signature", - "https-browserify", - "iconv-lite", - "ieee754", - "indexof", - "inflight", - "inherits", - "inline-source-map", - "insert-module-globals", - "ip-regex", - "is-buffer", - "isarray", - "isexe", - "istanbul", - "jade", - "js-yaml", - "jshint", - "jshint-stylish", - "json-stable-stringify", - "json-stringify-safe", - "jsonify", - "jsonparse", - "JSONStream", - "kefir", - "labeled-stream-splicer", - "levn", - "lexical-scope", - "lodash", - "lodash.bind", - "lodash.foreach", - "lodash.forin", - "lodash.forown", - "lodash.identity", - "lodash.isarray", - "lodash.isfunction", - "lodash.isobject", - "lodash.isplainobject", - "lodash.keys", - "lodash.memoize", - "lodash.merge", - "lodash.noop", - "lodash.support", - "lodash._arraypool", - "lodash._basebind", - "lodash._basecreate", - "lodash._basecreatecallback", - "lodash._basecreatewrapper", - "lodash._basemerge", - "lodash._createwrapper", - "lodash._getarray", - "lodash._isnative", - "lodash._maxpoolsize", - "lodash._objecttypes", - "lodash._releasearray", - "lodash._setbinddata", - "lodash._shimisplainobject", - "lodash._shimkeys", - "lodash._slice", - "lru-cache", - "md5.js", - "media-typer", - "miller-rabin", - "mime", - "mime-db", - "mime-types", - "minimalistic-assert", - "minimalistic-crypto-utils", - "minimatch", - "minimist", - "mkdirp", - "mocha", - "module-deps", - "ms", - "neo-async", - "node-uuid", - "nopt", - "oauth-sign", - "on-finished", - "once", - "open", - "optimist", - "optionator", - "os-browserify", - "pako", - "parents", - "parse-asn1", - "parseurl", - "path-browserify", - "path-is-absolute", - "path-parse", - "path-platform", - "pbkdf2", - "prelude-ls", - "process", - "psl", - "public-encrypt", - "punycode", - "q", - "qs", - "querystring", - "querystring-es3", - "randombytes", - "randomfill", - "range-parser", - "raw-body", - "readable-stream", - "readable-wrap", - "request", - "resolve", - "rfile", - "rimraf", - "ripemd160", - "ruglify", - "rx", - "safe-buffer", - "safer-buffer", - "sauce-tunnel", - "saucelabs", - "send", - "serve-static", - "setprototypeof", - "sha.js", - "shallow-copy", - "shasum", - "shell-quote", - "shelljs", - "sinon", - "uglify-js", - "jekyll", - "jekyll-redirect-from", - "pygments.rb", - "redcarpet", - "sanitize", - "ansi-regex", - "asap", - "babel-code-frame", - "babel-generator", - "babel-helper-call-delegate", - "babel-helper-define-map", - "babel-helper-function-name", - "babel-helper-get-function-arity", - "babel-helper-hoist-variables", - "babel-helper-optimise-call-expression", - "babel-helper-regex", - "babel-helper-replace-supers", - "babel-helpers", - "babel-messages", - "babel-plugin-check-es2015-constants", - "babel-plugin-streamline", - "babel-plugin-transform-es2015-arrow-functions", - "babel-plugin-transform-es2015-block-scoped-functions", - "babel-plugin-transform-es2015-block-scoping", - "babel-plugin-transform-es2015-classes", - "babel-plugin-transform-es2015-computed-properties", - "babel-plugin-transform-es2015-destructuring", - "babel-plugin-transform-es2015-duplicate-keys", - "babel-plugin-transform-es2015-for-of", - "babel-plugin-transform-es2015-function-name", - "babel-plugin-transform-es2015-literals", - "babel-plugin-transform-es2015-modules-amd", - "babel-plugin-transform-es2015-modules-commonjs", - "babel-plugin-transform-es2015-modules-systemjs", - "babel-plugin-transform-es2015-modules-umd", - "babel-plugin-transform-es2015-object-super", - "babel-plugin-transform-es2015-parameters", - "babel-plugin-transform-es2015-shorthand-properties", - "babel-plugin-transform-es2015-spread", - "babel-plugin-transform-es2015-sticky-regex", - "babel-plugin-transform-es2015-template-literals", - "babel-plugin-transform-es2015-typeof-symbol", - "babel-plugin-transform-es2015-unicode-regex", - "babel-plugin-transform-regenerator", - "babel-plugin-transform-strict-mode", - "babel-preset-es2015", - "babel-register", - "babel-runtime", - "babel-template", - "babel-traverse", - "babel-types", - "d", - "davy", - "deferred", - "es5-ext", - "es6-iterator", - "es6-symbol", - "event-emitter", - "fibers", - "has-ansi", - "immediate", - "invariant", - "is-finite", - "jsesc", - "kew", - "lie", - "loose-envify", - "next-tick", - "number-is-nan", - "os-homedir", - "os-tmpdir", - "private", - "promise", - "regenerate", - "regenerator-runtime", - "regenerator-transform", - "regexpu-core", - "regjsgen", - "regjsparser", - "rsvp", - "slash", - "streamline", - "streamline-runtime", - "strip-ansi", - "subsequent", - "supports-color", - "text-table", - "timers-ext", - "to-fast-properties", - "trim-right", - "typescript", - "vow", - "when", - "wordwrap", - "brace-expansion", - "balanced-match", - "brace-expansion", - "concat-map", - "deep-equal", - "define-properties", - "defined", - "dotignore", - "drip", - "electron", - "es-abstract", - "es-to-primitive", - "for-each", - "fs.realpath", - "function-bind", - "glob", - "has", - "has-symbols", - "inflight", - "inherits", - "is-arguments", - "is-callable", - "is-date-object", - "is-negative-zero", - "is-regex", - "is-symbol", - "matcha", - "minimatch", - "minimist", - "object-inspect", - "object-is", - "object-keys", - "object.assign", - "once", - "path-is-absolute", - "path-parse", - "regexp.prototype.flags", - "resolve", - "resumer", - "string.prototype.trim", - "string.prototype.trimend", - "string.prototype.trimstart", - "tape", - "tea-concat", - "through", - "v8-argv", - "wrappy", - "buffer-crc32", - "tap", - "buffer-from", - "acorn", - "acorn-jsx", - "ajv", - "ajv-keywords", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "argparse", - "array-includes", - "babel-code-frame", - "balanced-match", - "brace-expansion", - "caller-path", - "callsites", - "chalk", - "chardet", - "circular-json", - "cli-cursor", - "cli-width", - "color-convert", - "color-name", - "concat-map", - "contains-path", - "cross-spawn", - "debug", - "debug-log", - "deep-is", - "define-properties", - "deglob", - "doctrine", - "error-ex", - "es-abstract", - "es-to-primitive", - "escape-string-regexp", - "eslint", - "eslint-config-standard", - "eslint-config-standard-jsx", - "eslint-import-resolver-node", - "eslint-module-utils", - "eslint-plugin-es", - "eslint-plugin-import", - "eslint-plugin-node", - "eslint-plugin-promise", - "eslint-plugin-react", - "eslint-plugin-standard", - "eslint-scope", - "eslint-utils", - "eslint-visitor-keys", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "esutils", - "external-editor", - "fast-deep-equal", - "fast-json-stable-stringify", - "fast-levenshtein", - "figures", - "file-entry-cache", - "find-root", - "find-up", - "flat-cache", - "fs.realpath", - "function-bind", - "functional-red-black-tree", - "get-stdin", - "glob", - "globals", - "graceful-fs", - "has", - "has-ansi", - "has-flag", - "has-symbols", - "hosted-git-info", - "iconv-lite", - "ignore", - "imurmurhash", - "inflight", - "inherits", - "inquirer", - "is-arrayish", - "is-callable", - "is-date-object", - "is-fullwidth-code-point", - "is-promise", - "is-regex", - "is-resolvable", - "is-symbol", - "isarray", - "isexe", - "js-tokens", - "js-yaml", - "json-parse-better-errors", - "json-schema-traverse", - "json-stable-stringify-without-jsonify", - "jsx-ast-utils", - "levn", - "load-json-file", - "locate-path", - "lodash", - "mimic-fn", - "minimatch", - "minimist", - "mkdirp", - "ms", - "mute-stream", - "natural-compare", - "nice-try", - "normalize-package-data", - "object-assign", - "object-keys", - "once", - "onetime", - "optionator", - "os-tmpdir", - "p-limit", - "p-locate", - "p-try", - "parse-json", - "path-exists", - "path-is-absolute", - "path-is-inside", - "path-key", - "path-parse", - "path-type", - "pify", - "pkg-conf", - "pkg-config", - "pkg-dir", - "pluralize", - "prelude-ls", - "progress", - "prop-types", - "punycode", - "react-is", - "read-pkg", - "read-pkg-up", - "regexpp", - "require-uncached", - "resolve", - "resolve-from", - "restore-cursor", - "rimraf", - "run-async", - "run-parallel", - "rxjs", - "safer-buffer", - "semver", - "shebang-command", - "shebang-regex", - "signal-exit", - "slice-ansi", - "spdx-correct", - "spdx-exceptions", - "spdx-expression-parse", - "spdx-license-ids", - "sprintf-js", - "standard", - "standard-engine", - "string-width", - "strip-ansi", - "strip-bom", - "strip-json-comments", - "supports-color", - "symbol-observable", - "table", - "text-table", - "through", - "tmp", - "type-check", - "uniq", - "uri-js", - "validate-npm-package-license", - "which", - "wordwrap", - "wrappy", - "write", - "xtend", - "cachedir", - "mocha", - "proxyquire", - "standard", - "caseless", - "chalk", - "ansi-styles", - "ava", - "coveralls", - "execa", - "import-fresh", - "matcha", - "nyc", - "resolve-from", - "supports-color", - "tsd", - "xo", - "check-more-types", - "@semantic-release/condition-travis", - "condition-node-version", - "coveralls", - "git-issues", - "grunt-cli", - "grunt-contrib-jshint", - "grunt-contrib-uglify", - "grunt-contrib-watch", - "grunt-deps-ok", - "grunt-gt", - "grunt-jshint-solid", - "grunt-mocha-test", - "grunt-nice-package", - "grunt-npm2bower-sync", - "grunt-readme", - "grunt-toc", - "grunt-xplain", - "include-version", - "jshint-summary", - "karma", - "karma-chrome-launcher", - "karma-mocha", - "karma-phantomjs-launcher", - "lazy-ass", - "lazy-ass-helpful", - "lcov-filter", - "lodash", - "matchdep", - "mocha", - "phantomjs-prebuilt", - "pkgfiles", - "pre-git", - "semantic-release", - "standard", - "webpack", - "ci-info", - "clear-module", - "standard", - "tape", - "cli-cursor", - "@types/node", - "ava", - "restore-cursor", - "tsd", - "xo", - "cli-table3", - "ansi-256-colors", - "cli-table", - "eslint-config-prettier", - "eslint-plugin-prettier", - "jest", - "jest-runner-eslint", - "lerna-changelog", - "object-assign", - "prettier", - "string-width", - "@babel/code-frame", - "@babel/core", - "@babel/generator", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-member-expression-to-functions", - "@babel/helper-module-imports", - "@babel/helper-module-transforms", - "@babel/helper-optimise-call-expression", - "@babel/helper-plugin-utils", - "@babel/helper-replace-supers", - "@babel/helper-simple-access", - "@babel/helper-split-export-declaration", - "@babel/helper-validator-identifier", - "@babel/helpers", - "@babel/highlight", - "@babel/parser", - "@babel/plugin-syntax-async-generators", - "@babel/plugin-syntax-bigint", - "@babel/plugin-syntax-class-properties", - "@babel/plugin-syntax-json-strings", - "@babel/plugin-syntax-logical-assignment-operators", - "@babel/plugin-syntax-nullish-coalescing-operator", - "@babel/plugin-syntax-numeric-separator", - "@babel/plugin-syntax-object-rest-spread", - "@babel/plugin-syntax-optional-catch-binding", - "@babel/plugin-syntax-optional-chaining", - "@babel/template", - "@babel/traverse", - "@babel/types", - "@bcoe/v8-coverage", - "@cnakazawa/watch", - "@istanbuljs/load-nyc-config", - "@istanbuljs/schema", - "@jest/console", - "@jest/core", - "@jest/environment", - "@jest/fake-timers", - "@jest/globals", - "@jest/reporters", - "@jest/source-map", - "@jest/test-result", - "@jest/test-sequencer", - "@jest/transform", - "@jest/types", - "@sinonjs/commons", - "@types/babel__core", - "@types/babel__generator", - "@types/babel__template", - "@types/babel__traverse", - "@types/color-name", - "@types/graceful-fs", - "@types/istanbul-lib-coverage", - "@types/istanbul-lib-report", - "@types/istanbul-reports", - "@types/node", - "@types/normalize-package-data", - "@types/prettier", - "@types/stack-utils", - "@types/yargs", - "@types/yargs-parser", - "abab", - "acorn", - "acorn-globals", - "acorn-jsx", - "acorn-walk", - "agent-base", - "agentkeepalive", - "aggregate-error", - "ajv", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "any-promise", - "anymatch", - "aproba", - "argparse", - "arr-diff", - "arr-flatten", - "arr-union", - "array-equal", - "array-unique", - "asn1", - "assert-plus", - "assign-symbols", - "astral-regex", - "asynckit", - "atob", - "aws-sign2", - "aws4", - "babel-jest", - "babel-plugin-istanbul", - "babel-plugin-jest-hoist", - "babel-preset-current-node-syntax", - "babel-preset-jest", - "balanced-match", - "base", - "bcrypt-pbkdf", - "brace-expansion", - "braces", - "browser-process-hrtime", - "browser-resolve", - "bser", - "buffer-from", - "cacache", - "cache-base", - "caller-callsite", - "caller-path", - "callsites", - "camelcase", - "capture-exit", - "caseless", - "chalk", - "chardet", - "chownr", - "ci-info", - "class-utils", - "clean-stack", - "cli-cursor", - "cli-highlight", - "cli-width", - "cliui", - "co", - "collect-v8-coverage", - "collection-visit", - "color-convert", - "color-name", - "colors", - "combined-stream", - "component-emitter", - "concat-map", - "convert-source-map", - "copy-concurrently", - "copy-descriptor", - "core-util-is", - "cosmiconfig", - "create-jest-runner", - "cross-spawn", - "cssom", - "cssstyle", - "dashdash", - "data-urls", - "debug", - "decamelize", - "decode-uri-component", - "deep-is", - "deepmerge", - "define-property", - "delayed-stream", - "depd", - "detect-newline", - "diff-sequences", - "doctrine", - "domexception", - "ecc-jsbn", - "emoji-regex", - "encoding", - "end-of-stream", - "err-code", - "error-ex", - "es6-promise", - "es6-promisify", - "escape-string-regexp", - "escodegen", - "eslint", - "eslint-scope", - "eslint-utils", - "eslint-visitor-keys", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "esutils", - "exec-sh", - "execa", - "exit", - "expand-brackets", - "expect", - "extend", - "extend-shallow", - "external-editor", - "extglob", - "extsprintf", - "fast-deep-equal", - "fast-diff", - "fast-json-stable-stringify", - "fast-levenshtein", - "fb-watchman", - "figgy-pudding", - "figures", - "file-entry-cache", - "fill-range", - "find-up", - "flat-cache", - "flatted", - "for-in", - "forever-agent", - "form-data", - "fragment-cache", - "fs-minipass", - "fs-write-stream-atomic", - "fs.realpath", - "fsevents", - "functional-red-black-tree", - "gensync", - "get-caller-file", - "get-stdin", - "get-stream", - "get-value", - "getpass", - "glob", - "glob-parent", - "globals", - "graceful-fs", - "growly", - "har-schema", - "har-validator", - "has-flag", - "has-value", - "has-values", - "highlight.js", - "hosted-git-info", - "html-encoding-sniffer", - "html-escaper", - "http-cache-semantics", - "http-proxy-agent", - "http-signature", - "https-proxy-agent", - "human-signals", - "humanize-ms", - "iconv-lite", - "iferr", - "ignore", - "import-fresh", - "import-local", - "imurmurhash", - "indent-string", - "infer-owner", - "inflight", - "inherits", - "inquirer", - "ip", - "ip-regex", - "is-accessor-descriptor", - "is-arrayish", - "cli-truncate", - "ava", - "slice-ansi", - "string-width", - "tsd", - "xo", - "code-point-at", - "ava", - "color-convert", - "chalk", - "color-name", - "xo", - "color-name", - "colors", - "@babel/code-frame", - "@babel/highlight", - "acorn", - "acorn-jsx", - "ajv", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "argparse", - "astral-regex", - "balanced-match", - "brace-expansion", - "caller-path", - "callsites", - "chalk", - "chardet", - "circular-json", - "cli-cursor", - "cli-width", - "color-convert", - "color-name", - "concat-map", - "cross-spawn", - "debug", - "deep-is", - "doctrine", - "escape-string-regexp", - "eslint", - "eslint-config-google", - "eslint-scope", - "eslint-utils", - "eslint-visitor-keys", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "esutils", - "external-editor", - "fast-deep-equal", - "fast-json-stable-stringify", - "fast-levenshtein", - "figures", - "file-entry-cache", - "flat-cache", - "fs.realpath", - "functional-red-black-tree", - "glob", - "globals", - "graceful-fs", - "has-flag", - "iconv-lite", - "ignore", - "imurmurhash", - "inflight", - "inherits", - "inquirer", - "is-fullwidth-code-point", - "is-promise", - "isexe", - "js-tokens", - "js-yaml", - "json-schema-traverse", - "json-stable-stringify-without-jsonify", - "levn", - "lodash", - "mimic-fn", - "minimatch", - "minimist", - "mkdirp", - "ms", - "mute-stream", - "natural-compare", - "nice-try", - "object-assign", - "once", - "onetime", - "optionator", - "os-tmpdir", - "path-is-absolute", - "path-is-inside", - "path-key", - "pluralize", - "prelude-ls", - "progress", - "punycode", - "regexpp", - "require-uncached", - "resolve-from", - "restore-cursor", - "rimraf", - "run-async", - "rxjs", - "safer-buffer", - "semver", - "shebang-command", - "shebang-regex", - "signal-exit", - "slice-ansi", - "sprintf-js", - "string-width", - "strip-ansi", - "strip-json-comments", - "supports-color", - "table", - "text-table", - "through", - "tmp", - "tslib", - "type-check", - "uri-js", - "which", - "wordwrap", - "wrappy", - "write", - "combined-stream", - "delayed-stream", - "far", - "commander", - "@babel/code-frame", - "@babel/core", - "@babel/generator", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-member-expression-to-functions", - "@babel/helper-module-imports", - "@babel/helper-module-transforms", - "@babel/helper-optimise-call-expression", - "@babel/helper-plugin-utils", - "@babel/helper-replace-supers", - "@babel/helper-simple-access", - "@babel/helper-split-export-declaration", - "@babel/helper-validator-identifier", - "@babel/helpers", - "@babel/highlight", - "@babel/parser", - "@babel/plugin-syntax-async-generators", - "@babel/plugin-syntax-bigint", - "@babel/plugin-syntax-class-properties", - "@babel/plugin-syntax-import-meta", - "@babel/plugin-syntax-json-strings", - "@babel/plugin-syntax-logical-assignment-operators", - "@babel/plugin-syntax-nullish-coalescing-operator", - "@babel/plugin-syntax-numeric-separator", - "@babel/plugin-syntax-object-rest-spread", - "@babel/plugin-syntax-optional-catch-binding", - "@babel/plugin-syntax-optional-chaining", - "@babel/template", - "@babel/traverse", - "@babel/types", - "@bcoe/v8-coverage", - "@cnakazawa/watch", - "@istanbuljs/load-nyc-config", - "@istanbuljs/schema", - "@jest/console", - "@jest/core", - "@jest/environment", - "@jest/fake-timers", - "@jest/globals", - "@jest/reporters", - "@jest/source-map", - "@jest/test-result", - "@jest/test-sequencer", - "@jest/transform", - "@jest/types", - "@sinonjs/commons", - "@sinonjs/fake-timers", - "@types/babel__core", - "@types/babel__generator", - "@types/babel__template", - "@types/babel__traverse", - "@types/color-name", - "@types/eslint-visitor-keys", - "@types/graceful-fs", - "@types/istanbul-lib-coverage", - "@types/istanbul-lib-report", - "@types/istanbul-reports", - "@types/jest", - "@types/json-schema", - "@types/node", - "@types/normalize-package-data", - "@types/prettier", - "@types/stack-utils", - "@types/yargs", - "@types/yargs-parser", - "@typescript-eslint/eslint-plugin", - "@typescript-eslint/experimental-utils", - "@typescript-eslint/parser", - "@typescript-eslint/typescript-estree", - "abab", - "acorn", - "acorn-globals", - "acorn-jsx", - "acorn-walk", - "ajv", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "anymatch", - "argparse", - "arr-diff", - "arr-flatten", - "arr-union", - "array-includes", - "array-unique", - "asn1", - "assert-plus", - "assign-symbols", - "astral-regex", - "asynckit", - "atob", - "aws-sign2", - "aws4", - "babel-jest", - "babel-plugin-istanbul", - "babel-plugin-jest-hoist", - "babel-preset-current-node-syntax", - "babel-preset-jest", - "balanced-match", - "base", - "bcrypt-pbkdf", - "brace-expansion", - "braces", - "browser-process-hrtime", - "bser", - "buffer-from", - "cache-base", - "callsites", - "camelcase", - "capture-exit", - "caseless", - "chalk", - "char-regex", - "chardet", - "ci-info", - "class-utils", - "cli-cursor", - "cli-width", - "cliui", - "co", - "collect-v8-coverage", - "collection-visit", - "color-convert", - "color-name", - "combined-stream", - "component-emitter", - "concat-map", - "contains-path", - "convert-source-map", - "copy-descriptor", - "core-util-is", - "cross-spawn", - "cssom", - "cssstyle", - "dashdash", - "data-urls", - "debug", - "debug-log", - "decamelize", - "decimal.js", - "decode-uri-component", - "deep-is", - "deepmerge", - "define-properties", - "define-property", - "deglob", - "delayed-stream", - "detect-newline", - "diff-sequences", - "doctrine", - "domexception", - "ecc-jsbn", - "emoji-regex", - "end-of-stream", - "error-ex", - "es-abstract", - "es-to-primitive", - "escape-string-regexp", - "escodegen", - "eslint", - "eslint-config-standard", - "eslint-config-standard-jsx", - "eslint-config-standard-with-typescript", - "eslint-import-resolver-node", - "eslint-module-utils", - "eslint-plugin-es", - "eslint-plugin-import", - "eslint-plugin-jest", - "eslint-plugin-node", - "eslint-plugin-promise", - "eslint-plugin-react", - "eslint-plugin-standard", - "eslint-scope", - "eslint-utils", - "eslint-visitor-keys", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "esutils", - "exec-sh", - "execa", - "exit", - "expand-brackets", - "expect", - "extend", - "extend-shallow", - "external-editor", - "extglob", - "extsprintf", - "fast-deep-equal", - "fast-json-stable-stringify", - "fast-levenshtein", - "fb-watchman", - "figures", - "file-entry-cache", - "fill-range", - "find-root", - "find-up", - "flat-cache", - "flatted", - "for-in", - "forever-agent", - "form-data", - "fragment-cache", - "fs.realpath", - "fsevents", - "function-bind", - "functional-red-black-tree", - "gensync", - "get-caller-file", - "get-package-type", - "get-stdin", - "get-stream", - "get-value", - "getpass", - "glob", - "glob-parent", - "globals", - "graceful-fs", - "growly", - "har-schema", - "har-validator", - "has", - "has-flag", - "has-symbols", - "has-value", - "has-values", - "hosted-git-info", - "html-encoding-sniffer", - "html-escaper", - "http-signature", - "human-signals", - "iconv-lite", - "ignore", - "import-fresh", - "import-local", - "imurmurhash", - "inflight", - "inherits", - "inquirer", - "ip-regex", - "is-accessor-descriptor", - "is-arrayish", - "is-buffer", - "is-callable", - "is-ci", - "is-data-descriptor", - "jest", - "standard", - "typescript", - "common-tags", - "@babel/cli", - "@babel/code-frame", - "@babel/compat-data", - "@babel/core", - "@babel/generator", - "@babel/helper-annotate-as-pure", - "@babel/helper-builder-binary-assignment-operator-visitor", - "@babel/helper-compilation-targets", - "@babel/helper-create-class-features-plugin", - "@babel/helper-create-regexp-features-plugin", - "@babel/helper-define-map", - "@babel/helper-explode-assignable-expression", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-hoist-variables", - "@babel/helper-member-expression-to-functions", - "@babel/helper-module-imports", - "@babel/helper-module-transforms", - "@babel/helper-optimise-call-expression", - "@babel/helper-plugin-utils", - "@babel/helper-regex", - "@babel/helper-remap-async-to-generator", - "@babel/helper-replace-supers", - "@babel/helper-simple-access", - "@babel/helper-split-export-declaration", - "@babel/helper-validator-identifier", - "@babel/helper-wrap-function", - "@babel/helpers", - "@babel/highlight", - "@babel/parser", - "@babel/plugin-proposal-async-generator-functions", - "@babel/plugin-proposal-class-properties", - "@babel/plugin-proposal-dynamic-import", - "@babel/plugin-proposal-export-default-from", - "@babel/plugin-proposal-json-strings", - "@babel/plugin-proposal-nullish-coalescing-operator", - "@babel/plugin-proposal-numeric-separator", - "@babel/plugin-proposal-object-rest-spread", - "@babel/plugin-proposal-optional-catch-binding", - "@babel/plugin-proposal-optional-chaining", - "@babel/plugin-proposal-private-methods", - "@babel/plugin-proposal-unicode-property-regex", - "@babel/plugin-syntax-async-generators", - "@babel/plugin-syntax-bigint", - "@babel/plugin-syntax-class-properties", - "@babel/plugin-syntax-dynamic-import", - "@babel/plugin-syntax-export-default-from", - "@babel/plugin-syntax-json-strings", - "@babel/plugin-syntax-logical-assignment-operators", - "@babel/plugin-syntax-nullish-coalescing-operator", - "@babel/plugin-syntax-numeric-separator", - "@babel/plugin-syntax-object-rest-spread", - "@babel/plugin-syntax-optional-catch-binding", - "@babel/plugin-syntax-optional-chaining", - "@babel/plugin-syntax-top-level-await", - "@babel/plugin-transform-arrow-functions", - "@babel/plugin-transform-async-to-generator", - "@babel/plugin-transform-block-scoped-functions", - "@babel/plugin-transform-block-scoping", - "@babel/plugin-transform-classes", - "@babel/plugin-transform-computed-properties", - "@babel/plugin-transform-destructuring", - "@babel/plugin-transform-dotall-regex", - "@babel/plugin-transform-duplicate-keys", - "@babel/plugin-transform-exponentiation-operator", - "@babel/plugin-transform-for-of", - "@babel/plugin-transform-function-name", - "@babel/plugin-transform-literals", - "@babel/plugin-transform-member-expression-literals", - "@babel/plugin-transform-modules-amd", - "@babel/plugin-transform-modules-commonjs", - "@babel/plugin-transform-modules-systemjs", - "@babel/plugin-transform-modules-umd", - "@babel/plugin-transform-named-capturing-groups-regex", - "@babel/plugin-transform-new-target", - "@babel/plugin-transform-object-super", - "@babel/plugin-transform-parameters", - "@babel/plugin-transform-property-literals", - "@babel/plugin-transform-regenerator", - "@babel/plugin-transform-reserved-words", - "@babel/plugin-transform-shorthand-properties", - "@babel/plugin-transform-spread", - "@babel/plugin-transform-sticky-regex", - "@babel/plugin-transform-template-literals", - "@babel/plugin-transform-typeof-symbol", - "@babel/plugin-transform-unicode-escapes", - "@babel/plugin-transform-unicode-regex", - "@babel/preset-env", - "@babel/preset-modules", - "@babel/runtime", - "@babel/template", - "@babel/traverse", - "@babel/types", - "@bcoe/v8-coverage", - "@cnakazawa/watch", - "@istanbuljs/load-nyc-config", - "@istanbuljs/schema", - "@jest/console", - "@jest/core", - "@jest/environment", - "@jest/fake-timers", - "@jest/globals", - "@jest/reporters", - "@jest/source-map", - "@jest/test-result", - "@jest/test-sequencer", - "@jest/transform", - "@jest/types", - "@rollup/plugin-babel", - "@rollup/plugin-node-resolve", - "@rollup/pluginutils", - "@sinonjs/commons", - "@sinonjs/fake-timers", - "@textlint/ast-node-types", - "@textlint/markdown-to-ast", - "@tootallnate/once", - "@types/babel__core", - "@types/babel__generator", - "@types/babel__template", - "@types/babel__traverse", - "@types/color-name", - "@types/estree", - "@types/graceful-fs", - "@types/istanbul-lib-coverage", - "@types/istanbul-lib-report", - "@types/istanbul-reports", - "@types/node", - "@types/normalize-package-data", - "@types/prettier", - "@types/resolve", - "@types/stack-utils", - "@types/yargs", - "@types/yargs-parser", - "abab", - "acorn", - "acorn-globals", - "acorn-jsx", - "acorn-walk", - "agent-base", - "ajv", - "anchor-markdown-header", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "anymatch", - "argparse", - "argv", - "arr-diff", - "arr-flatten", - "arr-union", - "array-unique", - "asn1", - "assert-plus", - "assign-symbols", - "astral-regex", - "async-each", - "asynckit", - "atob", - "aws-sign2", - "aws4", - "babel-code-frame", - "babel-core", - "babel-eslint", - "babel-generator", - "babel-helpers", - "babel-jest", - "babel-messages", - "babel-plugin-add-module-exports", - "babel-plugin-dynamic-import-node", - "babel-plugin-istanbul", - "babel-plugin-jest-hoist", - "babel-preset-current-node-syntax", - "babel-preset-jest", - "babel-register", - "babel-runtime", - "babel-template", - "babel-traverse", - "babel-types", - "babylon", - "bail", - "balanced-match", - "base", - "bcrypt-pbkdf", - "binary-extensions", - "bindings", - "boundary", - "brace-expansion", - "braces", - "browser-process-hrtime", - "browserslist", - "bser", - "buffer-from", - "builtin-modules", - "cache-base", - "callsites", - "camelcase", - "caniuse-lite", - "capture-exit", - "caseless", - "chalk", - "char-regex", - "character-entities", - "character-entities-legacy", - "character-reference-invalid", - "chardet", - "chokidar", - "ci-info", - "class-utils", - "cli-cursor", - "cli-width", - "cliui", - "co", - "codecov", - "collapse-white-space", - "collect-v8-coverage", - "collection-visit", - "color-convert", - "color-name", - "combined-stream", - "commander", - "component-emitter", - "concat-map", - "convert-source-map", - "copy-descriptor", - "core-js", - "core-js-compat", - "core-util-is", - "cross-env", - "cross-spawn", - "cssom", - "cssstyle", - "dashdash", - "data-urls", - "debug", - "decamelize", - "decimal.js", - "decode-uri-component", - "deep-freeze", - "deep-is", - "deepmerge", - "define-properties", - "define-property", - "delayed-stream", - "detect-indent", - "detect-newline", - "diff-sequences", - "doctoc", - "doctrine", - "dom-serializer", - "domelementtype", - "eslint", - "eslint-config-prettier", - "eslint-plugin-prettier", - "jest", - "micromatch", - "prettier", - "rimraf", - "rollup", - "rollup-plugin-uglify", - "concat-map", - "tape", - "concat-stream", - "buffer-from", - "inherits", - "readable-stream", - "tape", - "typedarray", - "core-util-is", - "cross-spawn", - "@babel/code-frame", - "@babel/core", - "@babel/generator", - "@babel/helper-annotate-as-pure", - "@babel/helper-builder-binary-assignment-operator-visitor", - "@babel/helper-builder-react-jsx", - "@babel/helper-call-delegate", - "@babel/helper-create-class-features-plugin", - "@babel/helper-create-regexp-features-plugin", - "@babel/helper-define-map", - "@babel/helper-explode-assignable-expression", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-hoist-variables", - "@babel/helper-member-expression-to-functions", - "@babel/helper-module-imports", - "@babel/helper-module-transforms", - "@babel/helper-optimise-call-expression", - "@babel/helper-plugin-utils", - "@babel/helper-regex", - "@babel/helper-remap-async-to-generator", - "@babel/helper-replace-supers", - "@babel/helper-simple-access", - "@babel/helper-split-export-declaration", - "@babel/helper-wrap-function", - "@babel/helpers", - "@babel/highlight", - "@babel/parser", - "@babel/plugin-proposal-async-generator-functions", - "@babel/plugin-proposal-class-properties", - "@babel/plugin-proposal-dynamic-import", - "@babel/plugin-proposal-json-strings", - "@babel/plugin-proposal-nullish-coalescing-operator", - "@babel/plugin-proposal-object-rest-spread", - "@babel/plugin-proposal-optional-catch-binding", - "@babel/plugin-proposal-optional-chaining", - "@babel/plugin-proposal-unicode-property-regex", - "@babel/plugin-syntax-async-generators", - "@babel/plugin-syntax-dynamic-import", - "@babel/plugin-syntax-json-strings", - "@babel/plugin-syntax-jsx", - "@babel/plugin-syntax-nullish-coalescing-operator", - "@babel/plugin-syntax-object-rest-spread", - "@babel/plugin-syntax-optional-catch-binding", - "@babel/plugin-syntax-optional-chaining", - "@babel/plugin-syntax-top-level-await", - "@babel/plugin-transform-arrow-functions", - "@babel/plugin-transform-async-to-generator", - "@babel/plugin-transform-block-scoped-functions", - "@babel/plugin-transform-block-scoping", - "@babel/plugin-transform-classes", - "@babel/plugin-transform-computed-properties", - "@babel/plugin-transform-destructuring", - "@babel/plugin-transform-dotall-regex", - "@babel/plugin-transform-duplicate-keys", - "@babel/plugin-transform-exponentiation-operator", - "@babel/plugin-transform-for-of", - "@babel/plugin-transform-function-name", - "@babel/plugin-transform-literals", - "@babel/plugin-transform-member-expression-literals", - "@babel/plugin-transform-modules-amd", - "@babel/plugin-transform-modules-commonjs", - "@babel/plugin-transform-modules-systemjs", - "@babel/plugin-transform-modules-umd", - "@babel/plugin-transform-named-capturing-groups-regex", - "@babel/plugin-transform-new-target", - "@babel/plugin-transform-object-super", - "@babel/plugin-transform-parameters", - "@babel/plugin-transform-property-literals", - "@babel/plugin-transform-react-display-name", - "@babel/plugin-transform-react-jsx", - "@babel/plugin-transform-react-jsx-self", - "@babel/plugin-transform-react-jsx-source", - "@babel/plugin-transform-regenerator", - "@babel/plugin-transform-reserved-words", - "@babel/plugin-transform-runtime", - "@babel/plugin-transform-shorthand-properties", - "@babel/plugin-transform-spread", - "@babel/plugin-transform-sticky-regex", - "@babel/plugin-transform-template-literals", - "@babel/plugin-transform-typeof-symbol", - "@babel/plugin-transform-unicode-regex", - "@babel/preset-env", - "@babel/runtime", - "@babel/template", - "@babel/traverse", - "@babel/types", - "@cnakazawa/watch", - "@commitlint/cli", - "@commitlint/config-conventional", - "@commitlint/ensure", - "@commitlint/execute-rule", - "@commitlint/format", - "@commitlint/is-ignored", - "@commitlint/lint", - "@commitlint/load", - "@commitlint/message", - "@commitlint/parse", - "@commitlint/read", - "@commitlint/resolve-extends", - "@commitlint/rules", - "@commitlint/to-lines", - "@commitlint/top-level", - "@jest/console", - "@jest/core", - "@jest/environment", - "@jest/fake-timers", - "@jest/reporters", - "@jest/source-map", - "@jest/test-result", - "@jest/test-sequencer", - "@jest/transform", - "@jest/types", - "@marionebl/sander", - "@nodelib/fs.scandir", - "@nodelib/fs.stat", - "@nodelib/fs.walk", - "@samverschueren/stream-to-observable", - "@types/babel__core", - "@types/babel__generator", - "@types/babel__template", - "@types/babel__traverse", - "@types/events", - "@types/glob", - "@types/istanbul-lib-coverage", - "@types/istanbul-lib-report", - "@types/istanbul-reports", - "@types/json-schema", - "@types/minimatch", - "@types/minimist", - "@types/node", - "@types/normalize-package-data", - "@types/semver", - "@types/stack-utils", - "@types/yargs", - "@types/yargs-parser", - "@typescript-eslint/experimental-utils", - "@typescript-eslint/typescript-estree", - "abab", - "acorn", - "acorn-globals", - "acorn-jsx", - "acorn-walk", - "add-stream", - "aggregate-error", - "ajv", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "any-observable", - "anymatch", - "argparse", - "arr-diff", - "arr-flatten", - "arr-union", - "array-equal", - "array-find-index", - "array-ify", - "array-includes", - "array-union", - "array-unique", - "arrify", - "asn1", - "assert-plus", - "assign-symbols", - "astral-regex", - "async-each", - "async-limiter", - "asynckit", - "atob", - "aws-sign2", - "aws4", - "babel-code-frame", - "babel-core", - "babel-eslint", - "babel-generator", - "babel-helpers", - "babel-jest", - "babel-messages", - "babel-plugin-add-module-exports", - "babel-plugin-dynamic-import-node", - "babel-plugin-istanbul", - "babel-plugin-jest-hoist", - "babel-plugin-lodash", - "babel-plugin-transform-react-remove-prop-types", - "babel-polyfill", - "babel-preset-jest", - "babel-preset-moxy", - "babel-register", - "babel-runtime", - "babel-template", - "babel-traverse", - "babel-types", - "babylon", - "balanced-match", - "base", - "bcrypt-pbkdf", - "binary-extensions", - "brace-expansion", - "braces", - "browser-process-hrtime", - "browser-resolve", - "browserslist", - "browserslist-config-google", - "bser", - "buffer-from", - "cache-base", - "caller-callsite", - "caller-path", - "callsites", - "camelcase", - "camelcase-keys", - "caniuse-lite", - "capture-exit", - "caseless", - "chalk", - "chardet", - "chokidar", - "ci-info", - "class-utils", - "clean-stack", - "cli-cursor", - "cli-truncate", - "cli-width", - "cliui", - "co", - "code-point-at", - "collection-visit", - "color-convert", - "color-name", - "combined-stream", - "commander", - "comment-parser", - "compare-func", - "component-emitter", - "concat-map", - "concat-stream", - "conventional-changelog", - "conventional-changelog-angular", - "conventional-changelog-atom", - "conventional-changelog-codemirror", - "conventional-changelog-config-spec", - "conventional-changelog-conventionalcommits", - "conventional-changelog-core", - "conventional-changelog-ember", - "conventional-changelog-eslint", - "conventional-changelog-express", - "conventional-changelog-jquery", - "conventional-changelog-jshint", - "conventional-changelog-preset-loader", - "eslint", - "eslint-config-moxy", - "husky", - "jest", - "lint-staged", - "mkdirp", - "path-key", - "rimraf", - "shebang-command", - "standard-version", - "which", - "dashdash", - "@babel/code-frame", - "@babel/generator", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-split-export-declaration", - "@babel/helper-validator-identifier", - "@babel/highlight", - "@babel/parser", - "@babel/template", - "@babel/traverse", - "@babel/types", - "@eslint/eslintrc", - "@types/color-name", - "acorn", - "acorn-jsx", - "ajv", - "ansi-colors", - "ansi-regex", - "ansi-styles", - "anymatch", - "append-transform", - "archy", - "arg", - "argparse", - "asn1", - "assert-plus", - "astral-regex", - "async-hook-domain", - "asynckit", - "aws-sign2", - "aws4", - "balanced-match", - "bcrypt-pbkdf", - "binary-extensions", - "bind-obj-methods", - "brace-expansion", - "braces", - "browser-process-hrtime", - "buffer-from", - "caching-transform", - "callsites", - "camelcase", - "caseless", - "chalk", - "chokidar", - "cliui", - "code-point-at", - "color-convert", - "color-name", - "color-support", - "combined-stream", - "commondir", - "concat-map", - "convert-source-map", - "core-util-is", - "coveralls", - "cp-file", - "cross-spawn", - "dashdash", - "debug", - "decamelize", - "deep-is", - "default-require-extensions", - "delayed-stream", - "diff", - "diff-frag", - "doctrine", - "ecc-jsbn", - "emoji-regex", - "enquirer", - "error-ex", - "es6-error", - "escape-string-regexp", - "eslint", - "eslint-config-prettier", - "eslint-plugin-prettier", - "eslint-scope", - "eslint-utils", - "eslint-visitor-keys", - "esm", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "esutils", - "events-to-array", - "extend", - "extsprintf", - "fast-deep-equal", - "fast-diff", - "fast-json-stable-stringify", - "fast-levenshtein", - "file-entry-cache", - "fill-range", - "find-cache-dir", - "find-up", - "findit", - "flat-cache", - "flatted", - "flow-parser", - "flow-remove-types", - "foreground-child", - "forever-agent", - "form-data", - "fs-exists-cached", - "fs.realpath", - "fsevents", - "function-loop", - "functional-red-black-tree", - "get-caller-file", - "get-stdin", - "getpass", - "glob", - "glob-parent", - "globals", - "graceful-fs", - "har-schema", - "har-validator", - "has-flag", - "hasha", - "hosted-git-info", - "html-escaper", - "http-signature", - "ignore", - "import-fresh", - "imurmurhash", - "inflight", - "inherits", - "is-arrayish", - "is-binary-path", - "is-extglob", - "is-fullwidth-code-point", - "is-glob", - "is-number", - "is-stream", - "is-typedarray", - "isexe", - "isstream", - "istanbul-lib-coverage", - "istanbul-lib-hook", - "istanbul-lib-instrument", - "istanbul-lib-processinfo", - "istanbul-lib-report", - "istanbul-lib-source-maps", - "istanbul-reports", - "jackspeak", - "js-tokens", - "js-yaml", - "jsbn", - "jsesc", - "json-parse-better-errors", - "json-schema", - "json-schema-traverse", - "json-stable-stringify-without-jsonify", - "json-stringify-safe", - "jsprim", - "lcov-parse", - "levn", - "load-json-file", - "locate-path", - "lodash", - "lodash.flattendeep", - "log-driver", - "loose-envify", - "lru-cache", - "make-dir", - "make-error", - "merge-source-map", - "mime-db", - "mime-types", - "minimatch", - "minimist", - "minipass", - "mkdirp", - "ms", - "natural-compare", - "nested-error-stacks", - "nice-try", - "node-modules-regexp", - "normalize-package-data", - "normalize-path", - "number-is-nan", - "nyc", - "oauth-sign", - "object-assign", - "once", - "opener", - "optionator", - "os-homedir", - "own-or", - "own-or-env", - "p-limit", - "p-locate", - "p-try", - "package-hash", - "parent-module", - "parse-json", - "path-exists", - "path-is-absolute", - "path-key", - "path-parse", - "path-type", - "performance-now", - "picomatch", - "pify", - "pirates", - "pkg-dir", - "prelude-ls", - "prettier", - "prettier-linter-helpers", - "progress", - "prop-types", - "pseudomap", - "psl", - "punycode", - "qs", - "react", - "react-is", - "read-pkg", - "read-pkg-up", - "readdirp", - "regexpp", - "release-zalgo", - "request", - "require-directory", - "require-main-filename", - "resolve", - "resolve-from", - "rimraf", - "safe-buffer", - "safer-buffer", - "semver", - "set-blocking", - "shebang-command", - "shebang-regex", - "signal-exit", - "slice-ansi", - "source-map", - "source-map-support", - "spawn-wrap", - "spdx-correct", - "spdx-exceptions", - "spdx-expression-parse", - "spdx-license-ids", - "sprintf-js", - "sshpk", - "stack-utils", - "string-width", - "strip-ansi", - "tap", - "date-fns", - "debug", - "brfs", - "browserify", - "coveralls", - "istanbul", - "karma", - "karma-browserify", - "karma-chrome-launcher", - "karma-mocha", - "mocha", - "mocha-lcov-reporter", - "ms", - "xo", - "delayed-stream", - "fake", - "far", - "ecc-jsbn", - "jsbn", - "elegant-spinner", - "ava", - "tsd", - "xo", - "end-of-stream", - "once", - "tape", - "escape-string-regexp", - "ava", - "tsd", - "xo", - "eventemitter2", - "benchmark", - "bluebird", - "coveralls", - "mocha", - "nodeunit", - "nyc", - "eventemitter3", - "execa", - "@types/node", - "ava", - "coveralls", - "cross-spawn", - "get-node", - "get-stream", - "human-signals", - "is-running", - "is-stream", - "merge-stream", - "npm-run-path", - "nyc", - "onetime", - "p-event", - "signal-exit", - "strip-final-newline", - "tempfile", - "tsd", - "xo", - "executable", - "ava", - "pify", - "xo", - "exit-hook", - "ava", - "execa", - "tsd", - "xo", - "extend", - "extract-zip", - "@typescript-eslint/eslint-plugin", - "@typescript-eslint/parser", - "ava", - "debug", - "eslint", - "eslint-config-standard", - "eslint-plugin-ava", - "eslint-plugin-import", - "eslint-plugin-node", - "eslint-plugin-promise", - "eslint-plugin-standard", - "fs-extra", - "get-stream", - "husky", - "lint-staged", - "nyc", - "tsd", - "typescript", - "yauzl", - "extsprintf", - "fast-deep-equal", - "coveralls", - "dot", - "eslint", - "mocha", - "nyc", - "pre-commit", - "react", - "react-test-renderer", - "sinon", - "typescript", - "benchmark", - "deep-eql", - "deep-equal", - "fast-equals", - "lodash", - "nano-equal", - "ramda", - "shallow-equal-fuzzy", - "underscore", - "fast-json-stable-stringify", - "benchmark", - "coveralls", - "eslint", - "fast-stable-stringify", - "faster-stable-stringify", - "json-stable-stringify", - "nyc", - "pre-commit", - "tape", - "fd-slicer", - "istanbul", - "mocha", - "pend", - "stream-equal", - "streamsink", - "figures", - "ava", - "escape-string-regexp", - "markdown-table", - "tsd", - "xo", - "forever-agent", - "form-data", - "@types/node", - "asynckit", - "browserify", - "browserify-istanbul", - "combined-stream", - "coveralls", - "cross-spawn", - "eslint", - "fake", - "far", - "formidable", - "in-publish", - "is-node-modern", - "istanbul", - "mime-types", - "obake", - "pkgfiles", - "pre-commit", - "puppeteer", - "request", - "rimraf", - "tape", - "typescript", - "fs-extra", - "at-least-node", - "coveralls", - "graceful-fs", - "jsonfile", - "klaw", - "klaw-sync", - "minimist", - "mocha", - "nyc", - "proxyquire", - "read-dir-files", - "standard", - "universalify", - "fs.realpath", - "get-stream", - "@types/node", - "ava", - "into-stream", - "tsd", - "xo", - "getos", - "async", - "cli-color", - "execSync", - "standard", - "tape", - "getpass", - "assert-plus", - "json", - "pty.js", - "tape", - "glob", - "glob", - "ajv", - "ansi-regex", - "argparse", - "asn1", - "assert-plus", - "asynckit", - "aws-sign2", - "aws4", - "balanced-match", - "bcrypt-pbkdf", - "bind-obj-methods", - "bluebird", - "brace-expansion", - "buffer-from", - "byline", - "caseless", - "clean-yaml-object", - "co", - "color-support", - "combined-stream", - "concat-map", - "core-util-is", - "coveralls", - "cross-spawn", - "dashdash", - "debug", - "delayed-stream", - "diff", - "ecc-jsbn", - "escape-string-regexp", - "esprima", - "events-to-array", - "extend", - "extsprintf", - "fast-deep-equal", - "fast-json-stable-stringify", - "foreground-child", - "forever-agent", - "form-data", - "fs-exists-cached", - "fs.realpath", - "function-loop", - "getpass", - "graceful-fs", - "growl", - "har-schema", - "har-validator", - "http-signature", - "imurmurhash", - "inflight", - "inherits", - "is-typedarray", - "isarray", - "isexe", - "isstream", - "js-yaml", - "jsbn", - "json-schema", - "json-schema-traverse", - "json-stringify-safe", - "jsprim", - "lcov-parse", - "log-driver", - "lru-cache", - "mime-db", - "mime-types", - "minimatch", - "minimist", - "minipass", - "mkdirp", - "ms", - "nyc", - "oauth-sign", - "once", - "opener", - "os-homedir", - "own-or", - "own-or-env", - "path-is-absolute", - "performance-now", - "process-nextick-args", - "pseudomap", - "psl", - "punycode", - "qs", - "readable-stream", - "request", - "rimraf", - "safe-buffer", - "safer-buffer", - "signal-exit", - "source-map", - "source-map-support", - "sprintf-js", - "sshpk", - "stack-utils", - "string_decoder", - "strip-ansi", - "tap", - "tap-mocha-reporter", - "tap-parser", - "tick", - "tmatch", - "tough-cookie", - "trivial-deferred", - "tsame", - "tunnel-agent", - "tweetnacl", - "unicode-length", - "util-deprecate", - "uuid", - "verror", - "which", - "wrappy", - "write-file-atomic", - "yallist", - "yapool", - "global-dirs", - "ava", - "execa", - "import-fresh", - "ini", - "tsd", - "xo", - "graceful-fs", - "@babel/code-frame", - "@babel/generator", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-split-export-declaration", - "@babel/highlight", - "@babel/parser", - "@babel/template", - "@babel/traverse", - "@babel/types", - "ajv", - "ansi-regex", - "ansi-styles", - "append-transform", - "archy", - "arg", - "argparse", - "asn1", - "assert-plus", - "asynckit", - "aws-sign2", - "aws4", - "balanced-match", - "bcrypt-pbkdf", - "bind-obj-methods", - "brace-expansion", - "browser-process-hrtime", - "buffer-from", - "caching-transform", - "caller-callsite", - "caller-path", - "callsites", - "camelcase", - "capture-stack-trace", - "caseless", - "chalk", - "clean-yaml-object", - "cliui", - "color-convert", - "color-name", - "color-support", - "combined-stream", - "commander", - "commondir", - "concat-map", - "convert-source-map", - "core-util-is", - "coveralls", - "cp-file", - "cross-spawn", - "dashdash", - "debug", - "decamelize", - "default-require-extensions", - "delayed-stream", - "diff", - "domain-browser", - "ecc-jsbn", - "emoji-regex", - "error-ex", - "es6-error", - "escape-string-regexp", - "esm", - "esprima", - "esutils", - "events-to-array", - "extend", - "extsprintf", - "fast-deep-equal", - "fast-json-stable-stringify", - "find-cache-dir", - "find-up", - "foreground-child", - "forever-agent", - "form-data", - "fs-exists-cached", - "fs.realpath", - "function-loop", - "get-caller-file", - "getpass", - "glob", - "globals", - "graceful-fs", - "growl", - "handlebars", - "har-schema", - "har-validator", - "has-flag", - "hasha", - "hosted-git-info", - "http-signature", - "import-fresh", - "imurmurhash", - "inflight", - "inherits", - "is-arrayish", - "is-fullwidth-code-point", - "is-stream", - "is-typedarray", - "isarray", - "isexe", - "isstream", - "istanbul-lib-coverage", - "istanbul-lib-hook", - "istanbul-lib-instrument", - "istanbul-lib-report", - "istanbul-lib-source-maps", - "istanbul-reports", - "js-tokens", - "js-yaml", - "jsbn", - "jsesc", - "json-parse-better-errors", - "json-schema", - "json-schema-traverse", - "json-stringify-safe", - "jsprim", - "lcov-parse", - "load-json-file", - "locate-path", - "lodash", - "lodash.flattendeep", - "log-driver", - "lru-cache", - "make-dir", - "make-error", - "merge-source-map", - "mime-db", - "mime-types", - "minimatch", - "minimist", - "minipass", - "mkdirp", - "ms", - "neo-async", - "nested-error-stacks", - "normalize-package-data", - "nyc", - "oauth-sign", - "once", - "opener", - "optimist", - "os-homedir", - "own-or", - "own-or-env", - "p-limit", - "p-locate", - "p-try", - "package-hash", - "parse-json", - "path-exists", - "path-is-absolute", - "path-parse", - "path-type", - "performance-now", - "pify", - "pkg-dir", - "process-nextick-args", - "pseudomap", - "psl", - "punycode", - "qs", - "read-pkg", - "read-pkg-up", - "readable-stream", - "release-zalgo", - "request", - "require-directory", - "require-main-filename", - "resolve", - "resolve-from", - "rimraf", - "safe-buffer", - "safer-buffer", - "semver", - "set-blocking", - "signal-exit", - "source-map", - "source-map-support", - "spawn-wrap", - "spdx-correct", - "spdx-exceptions", - "spdx-expression-parse", - "spdx-license-ids", - "sprintf-js", - "sshpk", - "stack-utils", - "string-width", - "string_decoder", - "strip-ansi", - "strip-bom", - "supports-color", - "tap", - "tap-mocha-reporter", - "tap-parser", - "test-exclude", - "tmatch", - "to-fast-properties", - "tough-cookie", - "trim-right", - "trivial-deferred", - "ts-node", - "tsame", - "tunnel-agent", - "tweetnacl", - "typescript", - "uglify-js", - "unicode-length", - "uri-js", - "util-deprecate", - "uuid", - "validate-npm-package-license", - "verror", - "which", - "which-module", - "wordwrap", - "wrap-ansi", - "wrappy", - "write-file-atomic", - "y18n", - "yallist", - "yapool", - "yargs", - "yargs-parser", - "yn", - "har-schema", - "har-validator", - "has-ansi", - "ansi-regex", - "ava", - "xo", - "has-flag", - "ava", - "tsd", - "xo", - "http-signature", - "abbrev", - "asn1", - "assert-plus", - "bcrypt-pbkdf", - "buffer-equal", - "bunker", - "burrito", - "charm", - "core-util-is", - "dashdash", - "deep-equal", - "deep-is", - "difflet", - "ecc-jsbn", - "extsprintf", - "getpass", - "glob", - "inherits", - "jsbn", - "json-schema", - "jsprim", - "lru-cache", - "minimatch", - "mkdirp", - "nopt", - "runforcover", - "safer-buffer", - "sigmund", - "slide", - "sshpk", - "tap", - "tap-consumer", - "tap-results", - "traverse", - "tweetnacl", - "uglify-js", - "uuid", - "verror", - "yamlish", - "indent-string", - "ava", - "tsd", - "xo", - "inflight", - "ajv", - "ansi-regex", - "arg", - "argparse", - "arrify", - "asn1", - "assert-plus", - "asynckit", - "aws-sign2", - "aws4", - "balanced-match", - "bcrypt-pbkdf", - "bind-obj-methods", - "bluebird", - "brace-expansion", - "browser-process-hrtime", - "buffer-from", - "capture-stack-trace", - "caseless", - "clean-yaml-object", - "color-support", - "combined-stream", - "concat-map", - "core-util-is", - "coveralls", - "cross-spawn", - "dashdash", - "debug", - "delayed-stream", - "diff", - "domain-browser", - "ecc-jsbn", - "escape-string-regexp", - "esprima", - "events-to-array", - "extend", - "extsprintf", - "fast-deep-equal", - "fast-json-stable-stringify", - "foreground-child", - "forever-agent", - "form-data", - "fs-exists-cached", - "fs.realpath", - "function-loop", - "getpass", - "glob", - "graceful-fs", - "growl", - "har-schema", - "har-validator", - "http-signature", - "imurmurhash", - "inflight", - "inherits", - "is-typedarray", - "isarray", - "isexe", - "isstream", - "js-yaml", - "jsbn", - "json-schema", - "json-schema-traverse", - "json-stringify-safe", - "jsprim", - "lcov-parse", - "log-driver", - "lru-cache", - "make-error", - "mime-db", - "mime-types", - "minimatch", - "minimist", - "minipass", - "mkdirp", - "ms", - "nyc", - "oauth-sign", - "once", - "opener", - "os-homedir", - "own-or", - "own-or-env", - "path-is-absolute", - "performance-now", - "process-nextick-args", - "pseudomap", - "psl", - "punycode", - "qs", - "readable-stream", - "request", - "rimraf", - "safe-buffer", - "safer-buffer", - "signal-exit", - "source-map", - "source-map-support", - "sprintf-js", - "sshpk", - "stack-utils", - "string_decoder", - "strip-ansi", - "tap", - "tap-mocha-reporter", - "tap-parser", - "tmatch", - "tough-cookie", - "trivial-deferred", - "ts-node", - "tsame", - "tunnel-agent", - "tweetnacl", - "typescript", - "unicode-length", - "uri-js", - "util-deprecate", - "uuid", - "verror", - "which", - "wrappy", - "write-file-atomic", - "yallist", - "yapool", - "yn", - "inherits", - "@babel/code-frame", - "@babel/generator", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-split-export-declaration", - "@babel/highlight", - "@babel/parser", - "@babel/runtime", - "@babel/template", - "@babel/traverse", - "@babel/types", - "ajv", - "ansi-regex", - "ansi-styles", - "anymatch", - "append-transform", - "archy", - "arg", - "argparse", - "asn1", - "assert-plus", - "async-each", - "async-hook-domain", - "asynckit", - "aws-sign2", - "aws4", - "balanced-match", - "bcrypt-pbkdf", - "binary-extensions", - "bind-obj-methods", - "brace-expansion", - "braces", - "browser-process-hrtime", - "buffer-from", - "caching-transform", - "camelcase", - "capture-stack-trace", - "caseless", - "chalk", - "chokidar", - "cliui", - "code-point-at", - "color-convert", - "color-name", - "color-support", - "combined-stream", - "commander", - "commondir", - "concat-map", - "convert-source-map", - "core-util-is", - "coveralls", - "cp-file", - "cross-spawn", - "dashdash", - "debug", - "decamelize", - "default-require-extensions", - "delayed-stream", - "diff", - "ecc-jsbn", - "emoji-regex", - "end-of-stream", - "error-ex", - "es6-error", - "escape-string-regexp", - "esm", - "esprima", - "esutils", - "events-to-array", - "execa", - "extend", - "extsprintf", - "fast-deep-equal", - "fast-json-stable-stringify", - "fill-range", - "find-cache-dir", - "find-up", - "findit", - "flow-parser", - "flow-remove-types", - "foreground-child", - "forever-agent", - "form-data", - "fs-exists-cached", - "fs.realpath", - "fsevents", - "function-loop", - "get-caller-file", - "get-stream", - "getpass", - "glob", - "glob-parent", - "globals", - "graceful-fs", - "growl", - "handlebars", - "har-schema", - "har-validator", - "has-flag", - "hasha", - "hosted-git-info", - "http-signature", - "imurmurhash", - "inflight", - "inherits", - "invert-kv", - "is-arrayish", - "is-binary-path", - "is-extglob", - "is-fullwidth-code-point", - "is-glob", - "is-number", - "is-stream", - "is-typedarray", - "isarray", - "isexe", - "isstream", - "istanbul-lib-coverage", - "istanbul-lib-hook", - "istanbul-lib-instrument", - "istanbul-lib-processinfo", - "istanbul-lib-report", - "istanbul-lib-source-maps", - "istanbul-reports", - "jackspeak", - "js-tokens", - "js-yaml", - "jsbn", - "jsesc", - "json-parse-better-errors", - "json-schema", - "json-schema-traverse", - "json-stringify-safe", - "jsprim", - "lcid", - "lcov-parse", - "load-json-file", - "locate-path", - "lodash", - "lodash.flattendeep", - "log-driver", - "lru-cache", - "make-dir", - "make-error", - "map-age-cleaner", - "mem", - "merge-source-map", - "mime-db", - "mime-types", - "mimic-fn", - "minimatch", - "minimist", - "minipass", - "mkdirp", - "ms", - "neo-async", - "nested-error-stacks", - "nice-try", - "node-modules-regexp", - "normalize-package-data", - "normalize-path", - "npm-run-path", - "number-is-nan", - "nyc", - "oauth-sign", - "once", - "opener", - "optimist", - "os-homedir", - "os-locale", - "own-or", - "own-or-env", - "p-defer", - "p-finally", - "p-is-promise", - "p-limit", - "p-locate", - "p-try", - "package-hash", - "parse-json", - "path-exists", - "path-is-absolute", - "path-key", - "path-parse", - "path-type", - "performance-now", - "picomatch", - "pify", - "pirates", - "pkg-dir", - "process-nextick-args", - "pseudomap", - "psl", - "pump", - "punycode", - "qs", - "read-pkg", - "read-pkg-up", - "readable-stream", - "readdirp", - "regenerator-runtime", - "release-zalgo", - "request", - "require-directory", - "require-main-filename", - "resolve", - "resolve-from", - "rimraf", - "safe-buffer", - "safer-buffer", - "semver", - "set-blocking", - "shebang-command", - "shebang-regex", - "signal-exit", - "source-map", - "source-map-support", - "spawn-wrap", - "spdx-correct", - "spdx-exceptions", - "spdx-expression-parse", - "spdx-license-ids", - "sprintf-js", - "sshpk", - "stack-utils", - "string-width", - "string_decoder", - "strip-ansi", - "strip-bom", - "strip-eof", - "supports-color", - "tap", - "tap-mocha-reporter", - "tap-parser", - "tap-yaml", - "tcompare", - "test-exclude", - "to-fast-properties", - "to-regex-range", - "tough-cookie", - "trim-right", - "trivial-deferred", - "ts-node", - "tunnel-agent", - "tweetnacl", - "typedarray-to-buffer", - "typescript", - "uglify-js", - "unicode-length", - "ini", - "is-ci", - "ci-info", - "clear-module", - "standard", - "is-fullwidth-code-point", - "ava", - "tsd-check", - "xo", - "is-installed-globally", - "ava", - "cpy", - "del", - "execa", - "global-dirs", - "is-path-inside", - "make-dir", - "tsd", - "xo", - "is-installed-globally", - "is-observable", - "ava", - "indefinite-observable", - "most", - "rxjs", - "xo", - "xstream", - "zen-observable", - "is-path-inside", - "ava", - "tsd", - "xo", - "is-promise", - "type-assertions", - "is-stream", - "is-typedarray", - "tape", - "isarray", - "deep-equal", - "defined", - "glob", - "inherits", - "lru-cache", - "minimatch", - "object-inspect", - "resumer", - "sigmund", - "tape", - "through", - "isexe", - "mkdirp", - "rimraf", - "tap", - "isstream", - "core-util-is", - "inherits", - "isarray", - "string_decoder", - "tape", - "jsbn", - "json-schema", - "vows", - "json-schema-traverse", - "coveralls", - "eslint", - "mocha", - "nyc", - "pre-commit", - "json-stringify-safe", - "jsonfile", - "mocha", - "rimraf", - "standard", - "universalify", - "jsprim", - "assert-plus", - "extsprintf", - "json-schema", - "verror", - "lazy-ass", - "@types/jest", - "coveralls", - "git-issues", - "jest", - "mocha", - "pkgfiles", - "pre-git", - "prettier", - "semantic-release", - "simple-commit-message", - "ts-jest", - "typescript", - "listr", - "@samverschueren/stream-to-observable", - "ava", - "clinton", - "codecov", - "delay", - "hook-std", - "is-observable", - "is-promise", - "is-stream", - "lint-staged", - "listr-silent-renderer", - "listr-update-renderer", - "listr-verbose-renderer", - "log-symbols", - "nyc", - "p-map", - "pre-commit", - "rxjs", - "split", - "xo", - "zen-observable", - "listr-silent-renderer", - "xo", - "listr-update-renderer", - "chalk", - "cli-truncate", - "delay", - "elegant-spinner", - "figures", - "indent-string", - "listr", - "log-symbols", - "log-update", - "strip-ansi", - "xo", - "zen-observable", - "listr-verbose-renderer", - "ava", - "chalk", - "cli-cursor", - "date-fns", - "figures", - "hook-std", - "listr", - "strip-ansi", - "xo", - "lodash", - "lodash.once", - "log-symbols", - "ava", - "chalk", - "strip-ansi", - "tsd", - "xo", - "log-update", - "@types/node", - "ansi-escapes", - "ava", - "cli-cursor", - "slice-ansi", - "terminal.js", - "tsd", - "wrap-ansi", - "xo", - "mime-db", - "bluebird", - "co", - "cogent", - "csv-parse", - "eslint", - "eslint-config-standard", - "eslint-plugin-import", - "eslint-plugin-markdown", - "eslint-plugin-node", - "eslint-plugin-promise", - "eslint-plugin-standard", - "gnode", - "mocha", - "nyc", - "raw-body", - "stream-to-array", - "mime-types", - "eslint", - "eslint-config-standard", - "eslint-plugin-import", - "eslint-plugin-markdown", - "eslint-plugin-node", - "eslint-plugin-promise", - "eslint-plugin-standard", - "mime-db", - "mocha", - "nyc", - "mimic-fn", - "ava", - "tsd", - "xo", - "minimatch", - "balanced-match", - "brace-expansion", - "concat-map", - "tap", - "minimist", - "covert", - "tap", - "tape", - "mkdirp", - "minimist", - "mock-fs", - "tap", - "moment", - "oomphinc/composer-installers-extender", - "@babel/code-frame", - "@babel/core", - "@babel/generator", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-member-expression-to-functions", - "@babel/helper-module-imports", - "@babel/helper-module-transforms", - "@babel/helper-optimise-call-expression", - "@babel/helper-replace-supers", - "@babel/helper-simple-access", - "@babel/helper-split-export-declaration", - "@babel/helper-validator-identifier", - "@babel/helpers", - "@babel/highlight", - "@babel/parser", - "@babel/template", - "@babel/traverse", - "@babel/types", - "@istanbuljs/load-nyc-config", - "@istanbuljs/schema", - "@types/color-name", - "@types/minimatch", - "abbrev", - "accepts", - "acorn", - "acorn-jsx", - "adm-zip", - "after", - "agent-base", - "aggregate-error", - "ajv", - "amdefine", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "anymatch", - "append-transform", - "archy", - "argparse", - "argsparser", - "arr-diff", - "arr-flatten", - "arr-union", - "array-differ", - "array-each", - "array-slice", - "array-union", - "array-unique", - "arraybuffer.slice", - "arrify", - "asn1", - "assert-plus", - "assign-symbols", - "astral-regex", - "async", - "async-limiter", - "asynckit", - "atob", - "aws-sign2", - "aws4", - "backo2", - "balanced-match", - "base", - "base64-arraybuffer", - "base64id", - "bcrypt-pbkdf", - "benchmark", - "better-assert", - "binary-extensions", - "blob", - "body", - "body-parser", - "brace-expansion", - "braces", - "bytes", - "cache-base", - "caching-transform", - "callsite", - "callsites", - "camelcase", - "caseless", - "chalk", - "chardet", - "chokidar", - "class-utils", - "clean-stack", - "cli-cursor", - "cli-table", - "cli-width", - "cliui", - "co", - "collection-visit", - "color-convert", - "color-name", - "colors", - "combined-stream", - "commander", - "commondir", - "component-bind", - "component-emitter", - "component-inherit", - "concat-map", - "connect", - "content-type", - "continuable-cache", - "convert-source-map", - "cookie", - "copy-descriptor", - "core-util-is", - "coveralls", - "cross-env", - "cross-spawn", - "custom-event", - "dashdash", - "date-format", - "dateformat", - "debug", - "decamelize", - "decode-uri-component", - "deep-is", - "default-require-extensions", - "define-property", - "delayed-stream", - "depd", - "detect-file", - "di", - "doctrine", - "dom-serialize", - "duplexer", - "ecc-jsbn", - "ee-first", - "emoji-regex", - "encodeurl", - "engine.io", - "engine.io-client", - "engine.io-parser", - "ent", - "error", - "es6-error", - "es6-promise", - "es6-promisify", - "escape-html", - "escape-string-regexp", - "escodegen", - "eslint", - "eslint-scope", - "eslint-utils", - "eslint-visitor-keys", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "esutils", - "eventemitter2", - "eventemitter3", - "exit", - "expand-brackets", - "expand-tilde", - "extend", - "extend-shallow", - "external-editor", - "extglob", - "extsprintf", - "fast-deep-equal", - "fast-json-stable-stringify", - "fast-levenshtein", - "faye-websocket", - "figures", - "file-entry-cache", - "file-sync-cmp", - "fill-range", - "finalhandler", - "find-cache-dir", - "find-up", - "findup-sync", - "fined", - "flagged-respawn", - "flat-cache", - "flatted", - "follow-redirects", - "for-in", - "for-own", - "foreground-child", - "forever-agent", - "form-data", - "fragment-cache", - "fromentries", - "fs-extra", - "fs.realpath", - "fsevents", - "functional-red-black-tree", - "gaze", - "gensync", - "get-caller-file", - "get-package-type", - "get-value", - "getobject", - "getpass", - "glob", - "glob-parent", - "global-modules", - "global-prefix", - "globals", - "globalyzer", - "globrex", - "globule", - "graceful-fs", - "grunt", - "grunt-benchmark", - "grunt-cli", - "grunt-contrib-clean", - "grunt-contrib-concat", - "grunt-contrib-copy", - "grunt-contrib-uglify", - "grunt-contrib-watch", - "grunt-env", - "grunt-exec", - "grunt-karma", - "grunt-known-options", - "grunt-legacy-log", - "grunt-legacy-log-utils", - "grunt-legacy-util", - "grunt-nuget", - "grunt-string-replace", - "gzip-size", - "handlebars", - "har-schema", - "har-validator", - "has-ansi", - "has-binary2", - "has-cors", - "has-flag", - "has-value", - "has-values", - "hasha", - "homedir-polyfill", - "hooker", - "html-escaper", - "http-errors", - "http-parser-js", - "http-proxy", - "http-signature", - "https-proxy-agent", - "iconv-lite", - "ignore", - "immediate", - "import-fresh", - "imurmurhash", - "karma", - "karma-chrome-launcher", - "karma-firefox-launcher", - "karma-qunit", - "karma-sauce-launcher", - "load-grunt-tasks", - "lodash", - "node-qunit", - "nyc", - "prettier", - "qunit", - "rollup", - "typescript", - "typescript3", - "uglify-js", - "ms", - "acorn", - "acorn-jsx", - "ajv", - "ajv-keywords", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "any-observable", - "app-root-path", - "argparse", - "babel-code-frame", - "balanced-match", - "brace-expansion", - "browser-stdout", - "buffer-from", - "caller-path", - "callsites", - "chalk", - "chardet", - "ci-info", - "circular-json", - "cli-cursor", - "cli-spinners", - "cli-truncate", - "cli-width", - "co", - "code-point-at", - "color-convert", - "color-name", - "commander", - "concat-map", - "concat-stream", - "core-util-is", - "cosmiconfig", - "cross-spawn", - "date-fns", - "debug", - "dedent", - "deep-is", - "diff", - "doctrine", - "elegant-spinner", - "error-ex", - "escape-string-regexp", - "eslint", - "eslint-scope", - "eslint-visitor-keys", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "esutils", - "execa", - "exit-hook", - "expect.js", - "external-editor", - "fast-deep-equal", - "fast-json-stable-stringify", - "fast-levenshtein", - "figures", - "file-entry-cache", - "find-parent-dir", - "flat-cache", - "fs.realpath", - "functional-red-black-tree", - "get-own-enumerable-property-symbols", - "get-stream", - "glob", - "globals", - "graceful-fs", - "growl", - "has-ansi", - "has-flag", - "he", - "husky", - "iconv-lite", - "ignore", - "imurmurhash", - "indent-string", - "inflight", - "inherits", - "inquirer", - "is-arrayish", - "is-ci", - "is-directory", - "is-extglob", - "is-finite", - "is-fullwidth-code-point", - "is-glob", - "is-obj", - "is-observable", - "is-promise", - "is-regexp", - "is-resolvable", - "is-stream", - "isarray", - "isexe", - "jest-get-type", - "jest-validate", - "js-tokens", - "js-yaml", - "json-schema-traverse", - "json-stable-stringify-without-jsonify", - "leven", - "levn", - "lint-staged", - "listr", - "listr-silent-renderer", - "listr-update-renderer", - "listr-verbose-renderer", - "lodash", - "log-symbols", - "log-update", - "lru-cache", - "mimic-fn", - "minimatch", - "minimist", - "mkdirp", - "mocha", - "ms", - "mute-stream", - "natural-compare", - "normalize-path", - "npm-path", - "npm-run-path", - "npm-which", - "number-is-nan", - "object-assign", - "once", - "onetime", - "optionator", - "ora", - "os-tmpdir", - "p-finally", - "p-map", - "parse-json", - "path-is-absolute", - "path-is-inside", - "path-key", - "pluralize", - "prelude-ls", - "pretty-format", - "process-nextick-args", - "progress", - "pseudomap", - "readable-stream", - "repeating", - "require-from-string", - "require-uncached", - "resolve-from", - "restore-cursor", - "rimraf", - "run-async", - "rx-lite", - "rx-lite-aggregates", - "rxjs", - "safe-buffer", - "safer-buffer", - "semver", - "shebang-command", - "shebang-regex", - "signal-exit", - "slice-ansi", - "sprintf-js", - "staged-git-files", - "stream-to-observable", - "string-width", - "stringify-object", - "string_decoder", - "strip-ansi", - "strip-eof", - "strip-indent", - "strip-json-comments", - "supports-color", - "symbol-observable", - "table", - "text-table", - "through", - "tmp", - "type-check", - "typedarray", - "util-deprecate", - "which", - "wordwrap", - "wrappy", - "write", - "yallist", - "nice-try", - "chai", - "coveralls", - "mocha", - "nyc", - "npm-run-path", - "ava", - "path-key", - "tsd", - "xo", - "number-is-nan", - "ava", - "oauth-sign", - "object-assign", - "once", - "onetime", - "ava", - "mimic-fn", - "tsd", - "xo", - "ospath", - "lodash.clonedeep", - "mocha", - "proxyquire", - "standard", - "p-finally", - "ava", - "xo", - "p-map", - "aggregate-error", - "ava", - "delay", - "in-range", - "random-int", - "time-span", - "tsd", - "xo", - "path-is-absolute", - "path-key", - "@types/node", - "ava", - "tsd", - "xo", - "pend", - "performance-now", - "pify", - "ava", - "pinkie-promise", - "v8-natives", - "xo", - "pretty-bytes", - "ava", - "tsd", - "xo", - "process-nextick-args", - "tap", - "psl", - "@babel/code-frame", - "@babel/helper-validator-identifier", - "@babel/highlight", - "@types/color-name", - "accepts", - "acorn", - "acorn-jsx", - "acorn-node", - "acorn-walk", - "after", - "ajv", - "ansi-colors", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "anymatch", - "argparse", - "arr-diff", - "arr-flatten", - "arr-union", - "array-unique", - "arraybuffer.slice", - "asn1", - "asn1.js", - "assert", - "assert-plus", - "assign-symbols", - "astral-regex", - "async", - "async-each", - "async-limiter", - "asynckit", - "atob", - "aws-sign2", - "aws4", - "backo2", - "balanced-match", - "base", - "base64-arraybuffer", - "base64-js", - "base64id", - "bcrypt-pbkdf", - "better-assert", - "binary-extensions", - "blob", - "bluebird", - "bn.js", - "body-parser", - "brace-expansion", - "braces", - "brorand", - "browser-pack", - "browser-resolve", - "browser-stdout", - "browserify", - "browserify-aes", - "browserify-cipher", - "browserify-des", - "browserify-rsa", - "browserify-sign", - "browserify-zlib", - "buffer", - "buffer-alloc", - "buffer-alloc-unsafe", - "buffer-crc32", - "buffer-fill", - "buffer-from", - "buffer-xor", - "builtin-status-codes", - "bytes", - "cache-base", - "cached-path-relative", - "callsite", - "callsites", - "camelcase", - "caseless", - "chalk", - "chardet", - "chokidar", - "cipher-base", - "class-utils", - "cli-cursor", - "cli-width", - "cliui", - "collection-visit", - "color-convert", - "color-name", - "colors", - "combine-source-map", - "combined-stream", - "commander", - "commit-and-pr", - "component-bind", - "component-emitter", - "component-inherit", - "concat-map", - "concat-stream", - "connect", - "console-browserify", - "constants-browserify", - "content-type", - "convert-source-map", - "cookie", - "copy-descriptor", - "core-util-is", - "create-ecdh", - "create-hash", - "create-hmac", - "cross-spawn", - "crypto-browserify", - "custom-event", - "dash-ast", - "dashdash", - "date-format", - "debug", - "decamelize", - "decode-uri-component", - "deep-is", - "define-properties", - "define-property", - "defined", - "delayed-stream", - "depd", - "deps-sort", - "des.js", - "detective", - "di", - "diff", - "diffie-hellman", - "doctrine", - "dom-serialize", - "domain-browser", - "duplexer2", - "ecc-jsbn", - "ee-first", - "elliptic", - "emoji-regex", - "encodeurl", - "engine.io", - "engine.io-client", - "engine.io-parser", - "ent", - "es-abstract", - "es-to-primitive", - "es6-promise", - "escape-html", - "escape-string-regexp", - "eslint", - "eslint-config-hapi", - "eslint-plugin-hapi", - "eslint-scope", - "eslint-utils", - "eslint-visitor-keys", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "esutils", - "eventemitter3", - "events", - "evp_bytestokey", - "expand-brackets", - "extend", - "extend-shallow", - "external-editor", - "extglob", - "extract-zip", - "extsprintf", - "fast-deep-equal", - "fast-json-stable-stringify", - "fast-levenshtein", - "fast-safe-stringify", - "fd-slicer", - "figures", - "file-entry-cache", - "fill-range", - "finalhandler", - "find-up", - "flat", - "flat-cache", - "flatted", - "follow-redirects", - "for-in", - "forever-agent", - "form-data", - "fragment-cache", - "fs-extra", - "fs.realpath", - "fsevents", - "function-bind", - "functional-red-black-tree", - "get-assigned-identifiers", - "get-caller-file", - "get-value", - "getpass", - "glob", - "glob-parent", - "globals", - "graceful-fs", - "growl", - "hapi-capitalize-modules", - "hapi-for-you", - "hapi-no-var", - "hapi-scope-start", - "har-schema", - "har-validator", - "has", - "has-binary2", - "has-cors", - "has-flag", - "has-symbols", - "has-value", - "has-values", - "hash-base", - "hash.js", - "hasha", - "hat", - "he", - "hmac-drbg", - "htmlescape", - "http-errors", - "http-proxy", - "http-signature", - "https-browserify", - "iconv-lite", - "ieee754", - "ignore", - "import-fresh", - "imurmurhash", - "indexof", - "inflight", - "inherits", - "inline-source-map", - "inquirer", - "insert-module-globals", - "is-accessor-descriptor", - "is-binary-path", - "is-buffer", - "is-callable", - "is-data-descriptor", - "is-date-object", - "is-descriptor", - "is-extendable", - "is-extglob", - "is-fullwidth-code-point", - "is-glob", - "is-number", - "is-plain-object", - "is-promise", - "JSONStream", - "karma", - "karma-browserify", - "karma-mocha", - "karma-mocha-reporter", - "karma-phantomjs-launcher", - "mocha", - "phantomjs-prebuilt", - "request", - "uglify-js", - "watchify", - "pump", - "punycode", - "qs", - "@ljharb/eslint-config", - "aud", - "browserify", - "covert", - "eclint", - "eslint", - "evalmd", - "for-each", - "has-symbols", - "iconv-lite", - "mkdirp", - "object-inspect", - "qs-iconv", - "safe-publish-latest", - "safer-buffer", - "tape", - "querystring", - "ramda", - "@babel/cli", - "@babel/code-frame", - "@babel/core", - "@babel/generator", - "@babel/helper-annotate-as-pure", - "@babel/helper-builder-binary-assignment-operator-visitor", - "@babel/helper-call-delegate", - "@babel/helper-create-regexp-features-plugin", - "@babel/helper-define-map", - "@babel/helper-explode-assignable-expression", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-hoist-variables", - "@babel/helper-member-expression-to-functions", - "@babel/helper-module-imports", - "@babel/helper-module-transforms", - "@babel/helper-optimise-call-expression", - "@babel/helper-plugin-utils", - "@babel/helper-regex", - "@babel/helper-remap-async-to-generator", - "@babel/helper-replace-supers", - "@babel/helper-simple-access", - "@babel/helper-split-export-declaration", - "@babel/helper-validator-identifier", - "@babel/helper-wrap-function", - "@babel/helpers", - "@babel/highlight", - "@babel/parser", - "@babel/plugin-proposal-async-generator-functions", - "@babel/plugin-proposal-dynamic-import", - "@babel/plugin-proposal-json-strings", - "@babel/plugin-proposal-object-rest-spread", - "@babel/plugin-proposal-optional-catch-binding", - "@babel/plugin-proposal-unicode-property-regex", - "@babel/plugin-syntax-async-generators", - "@babel/plugin-syntax-dynamic-import", - "@babel/plugin-syntax-json-strings", - "@babel/plugin-syntax-object-rest-spread", - "@babel/plugin-syntax-optional-catch-binding", - "@babel/plugin-syntax-top-level-await", - "@babel/plugin-transform-arrow-functions", - "@babel/plugin-transform-async-to-generator", - "@babel/plugin-transform-block-scoped-functions", - "@babel/plugin-transform-block-scoping", - "@babel/plugin-transform-classes", - "@babel/plugin-transform-computed-properties", - "@babel/plugin-transform-destructuring", - "@babel/plugin-transform-dotall-regex", - "@babel/plugin-transform-duplicate-keys", - "@babel/plugin-transform-exponentiation-operator", - "@babel/plugin-transform-for-of", - "@babel/plugin-transform-function-name", - "@babel/plugin-transform-literals", - "@babel/plugin-transform-member-expression-literals", - "@babel/plugin-transform-modules-amd", - "@babel/plugin-transform-modules-commonjs", - "@babel/plugin-transform-modules-systemjs", - "@babel/plugin-transform-modules-umd", - "@babel/plugin-transform-named-capturing-groups-regex", - "@babel/plugin-transform-new-target", - "@babel/plugin-transform-object-super", - "@babel/plugin-transform-parameters", - "@babel/plugin-transform-property-literals", - "@babel/plugin-transform-regenerator", - "@babel/plugin-transform-reserved-words", - "@babel/plugin-transform-shorthand-properties", - "@babel/plugin-transform-spread", - "@babel/plugin-transform-sticky-regex", - "@babel/plugin-transform-template-literals", - "@babel/plugin-transform-typeof-symbol", - "@babel/plugin-transform-unicode-regex", - "@babel/preset-env", - "@babel/register", - "@babel/template", - "@babel/traverse", - "@babel/types", - "@istanbuljs/load-nyc-config", - "@istanbuljs/schema", - "@rollup/plugin-babel", - "@rollup/pluginutils", - "@sinonjs/commons", - "@sinonjs/formatio", - "@sinonjs/samsam", - "@sinonjs/text-encoding", - "@types/color-name", - "@types/estree", - "@types/json5", - "@types/node", - "accepts", - "acorn", - "acorn-dynamic-import", - "acorn-jsx", - "acorn-node", - "acorn-walk", - "after", - "aggregate-error", - "ajv", - "amdefine", - "ansi-colors", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "append-transform", - "aproba", - "archy", - "are-we-there-yet", - "argparse", - "arr-flatten", - "arr-union", - "array-flatten", - "array-from", - "array-includes", - "array.prototype.flat", - "arraybuffer.slice", - "asn1.js", - "assert", - "assign-symbols", - "astral-regex", - "astw", - "async", - "async-each", - "async-limiter", - "atob", - "babel-plugin-annotate-pure-calls", - "babel-plugin-dynamic-import-node", - "babel-plugin-import-export-rename", - "babelify", - "backbone", - "backo2", - "balanced-match", - "base", - "Base64", - "base64-arraybuffer", - "base64-js", - "base64id", - "benchmark", - "better-assert", - "binary-extensions", - "blob", - "bluebird", - "bn.js", - "body-parser", - "brace-expansion", - "brorand", - "browser-pack", - "browser-resolve", - "browser-stdout", - "browserify-aes", - "browserify-cipher", - "browserify-des", - "browserify-rsa", - "browserify-sign", - "browserify-zlib", - "browserslist", - "buffer", - "buffer-from", - "buffer-xor", - "builtins", - "bytes", - "cache-base", - "caching-transform", - "callsite", - "callsites", - "camelcase", - "caniuse-lite", - "chalk", - "chardet", - "charm", - "cipher-base", - "class-utils", - "clean-stack", - "cli-cursor", - "cli-table", - "cli-width", - "cliui", - "code-point-at", - "collection-visit", - "color-convert", - "color-name", - "colors", - "combine-source-map", - "commander", - "commondir", - "component-bind", - "component-emitter", - "component-inherit", - "concat-map", - "concat-stream", - "console-browserify", - "console-control-strings", - "consolidate", - "constants-browserify", - "contains-path", - "content-disposition", - "content-type", - "convert-source-map", - "cookie", - "cookie-signature", - "copy-descriptor", - "core-js", - "core-js-compat", - "core-util-is", - "create-ecdh", - "create-hash", - "create-hmac", - "cross-env", - "cross-spawn", - "crypto-browserify", - "date-now", - "debug", - "decamelize", - "decode-uri-component", - "deep-equal", - "deep-is", - "default-require-extensions", - "define-properties", - "define-property", - "defined", - "delegates", - "depd", - "deps-sort", - "des.js", - "destroy", - "detective", - "diff", - "diffie-hellman", - "doctrine", - "domain-browser", - "dox", - "duplexer2", - "ee-first", - "electron-to-chromium", - "elliptic", - "emoji-regex", - "encodeurl", - "end-of-stream", - "engine.io", - "engine.io-client", - "engine.io-parser", - "entities", - "envvar", - "error-ex", - "es-abstract", - "es-to-primitive", - "es6-error", - "escape-html", - "escape-string-regexp", - "eslint", - "eslint-import-resolver-node", - "eslint-module-utils", - "eslint-plugin-import", - "handlebars", - "js-yaml", - "jsverify", - "mocha", - "nyc", - "rimraf", - "rollup", - "rollup-plugin-uglify", - "sanctuary", - "sinon", - "testem", - "xyz", - "readable-stream", - "@babel/cli", - "@babel/core", - "@babel/polyfill", - "@babel/preset-env", - "airtap", - "airtap-playwright", - "airtap-sauce", - "assert", - "bl", - "deep-strict-equal", - "events.once", - "glob", - "gunzip-maybe", - "hyperquest", - "inherits", - "lolex", - "nyc", - "pump", - "rimraf", - "string_decoder", - "tap", - "tape", - "tar-fs", - "util-deprecate", - "util-promisify", - "request-progress", - "coveralls", - "expect.js", - "istanbul", - "mocha", - "throttleit", - "restore-cursor", - "onetime", - "signal-exit", - "tsd", - "xo", - "rimraf", - "ajv", - "ansi-regex", - "argparse", - "asn1", - "assert-plus", - "asynckit", - "aws-sign2", - "aws4", - "balanced-match", - "bcrypt-pbkdf", - "bind-obj-methods", - "bluebird", - "brace-expansion", - "browser-process-hrtime", - "buffer-from", - "capture-stack-trace", - "caseless", - "clean-yaml-object", - "color-support", - "combined-stream", - "concat-map", - "core-util-is", - "coveralls", - "cross-spawn", - "dashdash", - "debug", - "delayed-stream", - "diff", - "domain-browser", - "ecc-jsbn", - "escape-string-regexp", - "esprima", - "events-to-array", - "extend", - "extsprintf", - "fast-deep-equal", - "fast-json-stable-stringify", - "foreground-child", - "forever-agent", - "form-data", - "fs-exists-cached", - "fs.realpath", - "function-loop", - "getpass", - "glob", - "graceful-fs", - "growl", - "har-schema", - "har-validator", - "http-signature", - "imurmurhash", - "inflight", - "inherits", - "is-typedarray", - "isarray", - "isexe", - "isstream", - "js-yaml", - "jsbn", - "json-schema", - "json-schema-traverse", - "json-stringify-safe", - "jsprim", - "lcov-parse", - "log-driver", - "lru-cache", - "mime-db", - "mime-types", - "minimatch", - "minimist", - "minipass", - "mkdirp", - "ms", - "nyc", - "oauth-sign", - "once", - "opener", - "os-homedir", - "own-or", - "own-or-env", - "path-is-absolute", - "performance-now", - "process-nextick-args", - "pseudomap", - "psl", - "punycode", - "qs", - "readable-stream", - "request", - "rimraf", - "safe-buffer", - "safer-buffer", - "signal-exit", - "source-map", - "source-map-support", - "sprintf-js", - "sshpk", - "stack-utils", - "string_decoder", - "strip-ansi", - "tap", - "tap-mocha-reporter", - "tap-parser", - "tmatch", - "tough-cookie", - "trivial-deferred", - "tsame", - "tunnel-agent", - "tweetnacl", - "unicode-length", - "uri-js", - "util-deprecate", - "uuid", - "verror", - "which", - "wrappy", - "write-file-atomic", - "yallist", - "yapool", - "rxjs", - "@angular-devkit/build-optimizer", - "@angular-devkit/core", - "@angular-devkit/schematics", - "@babel/code-frame", - "@babel/helper-validator-identifier", - "@babel/highlight", - "@eslint/eslintrc", - "@phenomnomnominal/tsquery", - "@sinonjs/commons", - "@sinonjs/formatio", - "@sinonjs/samsam", - "@sinonjs/text-encoding", - "@types/chai", - "@types/color-name", - "@types/estree", - "@types/glob", - "@types/json5", - "@types/lodash", - "@types/minimatch", - "@types/mocha", - "@types/node", - "@types/parse-json", - "@types/resolve", - "@types/shelljs", - "@types/sinon", - "@types/sinon-chai", - "@types/source-map", - "@webassemblyjs/ast", - "@webassemblyjs/floating-point-hex-parser", - "@webassemblyjs/helper-api-error", - "@webassemblyjs/helper-buffer", - "@webassemblyjs/helper-code-frame", - "@webassemblyjs/helper-fsm", - "@webassemblyjs/helper-module-context", - "@webassemblyjs/helper-wasm-bytecode", - "@webassemblyjs/helper-wasm-section", - "@webassemblyjs/ieee754", - "@webassemblyjs/leb128", - "@webassemblyjs/utf8", - "@webassemblyjs/wasm-edit", - "@webassemblyjs/wasm-gen", - "@webassemblyjs/wasm-opt", - "@webassemblyjs/wasm-parser", - "@webassemblyjs/wast-parser", - "@webassemblyjs/wast-printer", - "@xtuc/ieee754", - "@xtuc/long", - "acorn", - "acorn-jsx", - "acorn-loose", - "acorn-walk", - "aggregate-error", - "ajv", - "ajv-errors", - "ajv-keywords", - "amdefine", - "ansi-colors", - "ansi-regex", - "ansi-styles", - "anymatch", - "aproba", - "arg", - "argparse", - "arr-diff", - "arr-flatten", - "arr-union", - "array-find-index", - "array-from", - "array-unique", - "array.prototype.map", - "asap", - "asn1.js", - "assert", - "assertion-error", - "assign-symbols", - "astral-regex", - "async-each", - "asynckit", - "atob", - "babel-polyfill", - "babel-runtime", - "balanced-match", - "base", - "base64-js", - "big.js", - "binary-extensions", - "bindings", - "bluebird", - "bn.js", - "brace-expansion", - "braces", - "brorand", - "browser-resolve", - "browser-stdout", - "browserify-aes", - "browserify-cipher", - "browserify-des", - "browserify-rsa", - "browserify-sign", - "browserify-zlib", - "buffer", - "buffer-from", - "buffer-xor", - "builtin-modules", - "builtin-status-codes", - "cacache", - "cache-base", - "camelcase", - "camelcase-keys", - "chai", - "chalk", - "chardet", - "check-error", - "check-side-effects", - "chokidar", - "chownr", - "chrome-trace-event", - "ci-info", - "cipher-base", - "class-utils", - "clean-stack", - "cli-truncate", - "cliui", - "clone", - "clone-buffer", - "clone-stats", - "cloneable-readable", - "collection-visit", - "color", - "color-convert", - "color-name", - "color-string", - "colors", - "combined-stream", - "commander", - "commondir", - "compare-versions", - "component-emitter", - "concat-map", - "concat-stream", - "console-browserify", - "constants-browserify", - "conventional-commit-types", - "copy-concurrently", - "copy-descriptor", - "core-js", - "core-util-is", - "cosmiconfig", - "create-ecdh", - "create-hash", - "create-hmac", - "cross-env", - "cross-spawn", - "crypto-browserify", - "currently-unhandled", - "cyclist", - "cz-conventional-changelog", - "date-now", - "debug", - "decamelize", - "decode-uri-component", - "dedent", - "deep-eql", - "deep-is", - "define-properties", - "define-property", - "delayed-stream", - "dependency-cruiser", - "des.js", - "diff", - "diffie-hellman", - "doctrine", - "domain-browser", - "duplexer", - "duplexify", - "elliptic", - "emoji-regex", - "emojis-list", - "end-of-stream", - "enhanced-resolve", - "enquirer", - "errno", - "error-ex", - "es-abstract", - "es-array-method-boxes-properly", - "es-get-iterator", - "es-to-primitive", - "es6-object-assign", - "escape-string-regexp", - "eslint", - "eslint-plugin-jasmine", - "eslint-scope", - "eslint-utils", - "eslint-visitor-keys", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "estree-walker", - "esutils", - "event-stream", - "events", - "evp_bytestokey", - "execa", - "expand-brackets", - "extend-shallow", - "external-editor", - "extglob", - "fast-deep-equal", - "fast-json-stable-stringify", - "fast-levenshtein", - "figgy-pudding", - "file-entry-cache", - "file-type", - "file-uri-to-path", - "fill-range", - "find-cache-dir", - "find-parent-dir", - "find-up", - "find-versions", - "findup", - "flat", - "flat-cache", - "flatted", - "flush-write-stream", - "for-in", - "form-data", - "fragment-cache", - "from", - "from2", - "fs-extra", - "fs-write-stream-atomic", - "fs.realpath", - "fsevents", - "function-bind", - "functional-red-black-tree", - "get-caller-file", - "get-func-name", - "get-own-enumerable-property-symbols", - "get-stdin", - "get-stream", - "get-value", - "glob", - "glob-parent", - "globals", - "google-closure-compiler-js", - "graceful-fs", - "growl", - "handlebars", - "husky", - "klaw-sync", - "lint-staged", - "lodash", - "minimist", - "mkdirp", - "mocha", - "npm-run-all", - "opn-cli", - "platform", - "prettier", - "promise", - "rollup", - "rollup-plugin-alias", - "rollup-plugin-inject", - "rollup-plugin-node-resolve", - "shelljs", - "shx", - "sinon", - "sinon-chai", - "source-map-support", - "systemjs", - "ts-api-guardian", - "ts-node", - "tslib", - "tslint", - "tslint-config-prettier", - "tslint-etc", - "tslint-no-toplevel-property-access", - "tslint-no-unused-expression-chai", - "typedoc", - "typescript", - "validate-commit-msg", - "webpack", - "@angular-devkit/build-angular", - "@angular/animations", - "@angular/cdk", - "@angular/cli", - "@angular/common", - "@angular/compiler", - "@angular/compiler-cli", - "@angular/core", - "@angular/elements", - "@angular/forms", - "@angular/material", - "@angular/platform-browser", - "@angular/platform-browser-dynamic", - "@angular/router", - "@angular/service-worker", - "@jsdevtools/rehype-inline-svg", - "@stackblitz/sdk", - "@types/jasmine", - "@types/jasminewd2", - "@types/svgo", - "@webcomponents/custom-elements", - "archiver", - "canonical-path", - "cjson", - "classlist.js", - "codelyzer", - "concurrently", - "css-selector-parser", - "dgeni", - "dgeni-packages", - "entities", - "eyes.selenium", - "firebase-tools", - "globby", - "hast-util-is-element", - "hast-util-to-string", - "html", - "http-server", - "ignore", - "image-size", - "jasmine", - "jasmine-core", - "jasmine-marbles", - "jasmine-spec-reporter", - "jasmine-ts", - "jsdom", - "karma", - "karma-chrome-launcher", - "karma-cli", - "karma-coverage-istanbul-reporter", - "karma-jasmine", - "karma-jasmine-html-reporter", - "lighthouse", - "lunr", - "protractor", - "rehype", - "rehype-slug", - "remark", - "remark-html", - "rimraf", - "rxjs", - "semver", - "svgo", - "svgson", - "swirly-parser", - "swirly-renderer-node", - "swirly-types", - "tree-kill", - "uglify-js", - "unist-util-filter", - "unist-util-source", - "unist-util-visit", - "unist-util-visit-parents", - "vrsource-tslint-rules", - "watchr", - "web-animations-js", - "webpack-cli", - "xregexp", - "yamljs", - "yargs", - "zone.js", - "@babel/core", - "@babel/generator", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-member-expression-to-functions", - "@babel/helper-module-imports", - "@babel/helper-module-transforms", - "@babel/helper-optimise-call-expression", - "@babel/helper-plugin-utils", - "@babel/helper-replace-supers", - "@babel/helper-simple-access", - "@babel/helper-split-export-declaration", - "@babel/helpers", - "@babel/parser", - "@babel/plugin-syntax-async-generators", - "@babel/plugin-syntax-bigint", - "@babel/plugin-syntax-class-properties", - "@babel/plugin-syntax-import-meta", - "@babel/plugin-syntax-json-strings", - "@babel/plugin-syntax-logical-assignment-operators", - "@babel/plugin-syntax-nullish-coalescing-operator", - "@babel/plugin-syntax-numeric-separator", - "@babel/plugin-syntax-object-rest-spread", - "@babel/plugin-syntax-optional-catch-binding", - "@babel/plugin-syntax-optional-chaining", - "@babel/template", - "@babel/traverse", - "@babel/types", - "@bcoe/v8-coverage", - "@cnakazawa/watch", - "@istanbuljs/load-nyc-config", - "@istanbuljs/schema", - "@jest/console", - "@jest/core", - "@jest/environment", - "@jest/fake-timers", - "@jest/globals", - "@jest/reporters", - "@jest/source-map", - "@jest/test-result", - "@jest/test-sequencer", - "@jest/transform", - "@jest/types", - "@sindresorhus/is", - "@sinonjs/fake-timers", - "@szmarczak/http-timer", - "@types/babel__core", - "@types/babel__generator", - "@types/babel__template", - "@types/babel__traverse", - "@types/graceful-fs", - "@types/istanbul-lib-coverage", - "@types/istanbul-lib-report", - "@types/istanbul-reports", - "@types/jest", - "@types/normalize-package-data", - "@types/prettier", - "@types/stack-utils", - "@types/yargs", - "@types/yargs-parser", - "abab", - "abbrev", - "acorn-globals", - "ansi-align", - "ansi-escapes", - "arrify", - "asn1", - "assert-plus", - "aws-sign2", - "aws4", - "babel-jest", - "babel-plugin-istanbul", - "babel-plugin-jest-hoist", - "babel-preset-current-node-syntax", - "babel-preset-jest", - "bcrypt-pbkdf", - "boxen", - "browser-process-hrtime", - "bs-logger", - "bser", - "cacheable-request", - "callsites", - "capture-exit", - "caseless", - "char-regex", - "cli-boxes", - "clone-response", - "co", - "collect-v8-coverage", - "configstore", - "convert-source-map", - "crypto-random-string", - "cssom", - "cssstyle", - "dashdash", - "data-urls", - "decimal.js", - "decompress-response", - "deep-extend", - "deepmerge", - "defer-to-connect", - "detect-newline", - "diff-sequences", - "domexception", - "dot-prop", - "duplexer3", - "ecc-jsbn", - "emittery", - "escape-goat", - "escodegen", - "exec-sh", - "exit", - "expect", - "extend", - "extsprintf", - "fb-watchman", - "forever-agent", - "gensync", - "get-package-type", - "getpass", - "global-dirs", - "got", - "growly", - "har-schema", - "har-validator", - "has-flag", - "has-value", - "has-values", - "has-yarn", - "hosted-git-info", - "html-encoding-sniffer", - "html-escaper", - "http-cache-semantics", - "http-signature", - "human-signals", - "iconv-lite", - "ignore-by-default", - "import-lazy", - "import-local", - "imurmurhash", - "inflight", - "inherits", - "ini", - "ip-regex", - "is-accessor-descriptor", - "is-arrayish", - "is-binary-path", - "is-buffer", - "is-ci", - "is-data-descriptor", - "is-descriptor", - "is-docker", - "is-extendable", - "is-extglob", - "is-fullwidth-code-point", - "is-generator-fn", - "is-glob", - "is-installed-globally", - "is-npm", - "is-number", - "is-obj", - "is-path-inside", - "is-plain-object", - "is-potential-custom-element-name", - "is-stream", - "is-typedarray", - "is-windows", - "is-wsl", - "is-yarn-global", - "isarray", - "isexe", - "isobject", - "isstream", - "jest", - "nodemon", - "ts-jest", - "safe-buffer", - "standard", - "tape", - "safer-buffer", - "standard", - "tape", - "semver", - "@babel/code-frame", - "@babel/generator", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-split-export-declaration", - "@babel/helper-validator-identifier", - "@babel/highlight", - "@babel/parser", - "@babel/runtime", - "@babel/template", - "@babel/traverse", - "@babel/types", - "ajv", - "ansi-regex", - "ansi-styles", - "anymatch", - "append-transform", - "archy", - "arg", - "argparse", - "asn1", - "assert-plus", - "async-hook-domain", - "asynckit", - "aws-sign2", - "aws4", - "balanced-match", - "bcrypt-pbkdf", - "binary-extensions", - "bind-obj-methods", - "brace-expansion", - "braces", - "browser-process-hrtime", - "buffer-from", - "caching-transform", - "camelcase", - "caseless", - "chalk", - "chokidar", - "cliui", - "code-point-at", - "color-convert", - "color-name", - "color-support", - "combined-stream", - "commondir", - "concat-map", - "convert-source-map", - "core-util-is", - "coveralls", - "cp-file", - "cross-spawn", - "dashdash", - "debug", - "decamelize", - "default-require-extensions", - "delayed-stream", - "diff", - "diff-frag", - "ecc-jsbn", - "emoji-regex", - "error-ex", - "es6-error", - "escape-string-regexp", - "esm", - "esprima", - "events-to-array", - "extend", - "extsprintf", - "fast-deep-equal", - "fast-json-stable-stringify", - "fill-range", - "find-cache-dir", - "find-up", - "findit", - "flow-parser", - "flow-remove-types", - "foreground-child", - "forever-agent", - "form-data", - "fs-exists-cached", - "fs.realpath", - "fsevents", - "function-loop", - "get-caller-file", - "getpass", - "glob", - "glob-parent", - "globals", - "graceful-fs", - "har-schema", - "har-validator", - "has-flag", - "hasha", - "hosted-git-info", - "html-escaper", - "http-signature", - "imurmurhash", - "inflight", - "inherits", - "is-arrayish", - "is-binary-path", - "is-extglob", - "is-fullwidth-code-point", - "is-glob", - "is-number", - "is-stream", - "is-typedarray", - "isexe", - "isstream", - "istanbul-lib-coverage", - "istanbul-lib-hook", - "istanbul-lib-instrument", - "istanbul-lib-processinfo", - "istanbul-lib-report", - "istanbul-lib-source-maps", - "istanbul-reports", - "jackspeak", - "js-tokens", - "js-yaml", - "jsbn", - "jsesc", - "json-parse-better-errors", - "json-schema", - "json-schema-traverse", - "json-stringify-safe", - "jsprim", - "lcov-parse", - "load-json-file", - "locate-path", - "lodash", - "lodash.flattendeep", - "log-driver", - "loose-envify", - "lru-cache", - "make-dir", - "make-error", - "merge-source-map", - "mime-db", - "mime-types", - "minimatch", - "minimist", - "minipass", - "mkdirp", - "ms", - "nested-error-stacks", - "nice-try", - "node-modules-regexp", - "normalize-package-data", - "normalize-path", - "number-is-nan", - "nyc", - "oauth-sign", - "object-assign", - "once", - "opener", - "os-homedir", - "own-or", - "own-or-env", - "p-limit", - "p-locate", - "p-try", - "package-hash", - "parse-json", - "path-exists", - "path-is-absolute", - "path-key", - "path-parse", - "path-type", - "performance-now", - "picomatch", - "pify", - "pirates", - "pkg-dir", - "prop-types", - "pseudomap", - "psl", - "punycode", - "qs", - "react", - "react-is", - "read-pkg", - "read-pkg-up", - "readdirp", - "regenerator-runtime", - "release-zalgo", - "request", - "require-directory", - "require-main-filename", - "resolve", - "resolve-from", - "rimraf", - "safe-buffer", - "safer-buffer", - "semver", - "set-blocking", - "shebang-command", - "shebang-regex", - "signal-exit", - "source-map", - "source-map-support", - "spawn-wrap", - "spdx-correct", - "spdx-exceptions", - "spdx-expression-parse", - "spdx-license-ids", - "sprintf-js", - "sshpk", - "stack-utils", - "string-width", - "strip-ansi", - "strip-bom", - "supports-color", - "tap", - "tap-mocha-reporter", - "tap-parser", - "tap-yaml", - "tcompare", - "test-exclude", - "to-fast-properties", - "to-regex-range", - "tough-cookie", - "trivial-deferred", - "ts-node", - "tunnel-agent", - "tweetnacl", - "typedarray-to-buffer", - "typescript", - "unicode-length", - "uri-js", - "uuid", - "validate-npm-package-license", - "verror", - "vlq", - "which", - "which-module", - "wrap-ansi", - "wrappy", - "write-file-atomic", - "y18n", - "yallist", - "yaml", - "yapool", - "yargs", - "yargs-parser", - "yn", - "shebang-command", - "ava", - "shebang-regex", - "tsd", - "xo", - "shebang-regex", - "ava", - "tsd", - "xo", - "signal-exit", - "acorn", - "acorn-jsx", - "ajv", - "ajv-keywords", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "argparse", - "array-find-index", - "array-ify", - "arrify", - "asn1", - "assert-plus", - "assertion-error", - "asynckit", - "aws-sign2", - "aws4", - "babel-code-frame", - "balanced-match", - "bcrypt-pbkdf", - "bluebird", - "boom", - "brace-expansion", - "buffer-from", - "caller-path", - "callsites", - "camelcase", - "camelcase-keys", - "caseless", - "chai", - "chalk", - "circular-json", - "clean-yaml-object", - "cli-cursor", - "cli-width", - "cliui", - "co", - "code-point-at", - "color-support", - "combined-stream", - "commander", - "compare-func", - "concat-map", - "concat-stream", - "conventional-changelog", - "conventional-changelog-angular", - "conventional-changelog-atom", - "conventional-changelog-codemirror", - "conventional-changelog-core", - "conventional-changelog-ember", - "conventional-changelog-eslint", - "conventional-changelog-express", - "conventional-changelog-jquery", - "conventional-changelog-jscs", - "conventional-changelog-jshint", - "conventional-changelog-preset-loader", - "conventional-changelog-writer", - "conventional-commits-filter", - "conventional-commits-parser", - "conventional-recommended-bump", - "core-util-is", - "coveralls", - "cross-spawn", - "cryptiles", - "currently-unhandled", - "d", - "dargs", - "dashdash", - "dateformat", - "debug", - "debug-log", - "decamelize", - "decamelize-keys", - "deep-eql", - "deep-is", - "deeper", - "deglob", - "delayed-stream", - "diff", - "doctrine", - "dot-prop", - "ecc-jsbn", - "error-ex", - "es5-ext", - "es6-iterator", - "es6-map", - "es6-set", - "es6-symbol", - "es6-weak-map", - "escape-string-regexp", - "escope", - "eslint", - "eslint-config-standard", - "eslint-config-standard-jsx", - "eslint-plugin-promise", - "eslint-plugin-react", - "eslint-plugin-standard", - "espree", - "esprima", - "esrecurse", - "estraverse", - "esutils", - "event-emitter", - "events-to-array", - "exit-hook", - "ext", - "extend", - "extsprintf", - "fast-levenshtein", - "figures", - "file-entry-cache", - "find-root", - "find-up", - "flat-cache", - "foreground-child", - "forever-agent", - "form-data", - "fs-access", - "fs.realpath", - "generate-function", - "generate-object-property", - "get-caller-file", - "get-pkg-repo", - "get-stdin", - "getpass", - "git-latest-semver-tag", - "git-raw-commits", - "git-remote-origin-url", - "git-semver-tags", - "gitconfiglocal", - "glob", - "globals", - "graceful-fs", - "handlebars", - "har-validator", - "has-ansi", - "hawk", - "hoek", - "home-or-tmp", - "hosted-git-info", - "http-signature", - "ignore", - "imurmurhash", - "indent-string", - "inflight", - "inherits", - "ini", - "inquirer", - "interpret", - "invert-kv", - "is-arrayish", - "is-finite", - "is-fullwidth-code-point", - "is-my-ip-valid", - "is-my-json-valid", - "is-obj", - "is-plain-obj", - "is-property", - "is-resolvable", - "is-subset", - "is-text-path", - "is-typedarray", - "is-utf8", - "isarray", - "isexe", - "isstream", - "js-tokens", - "js-yaml", - "jsbn", - "json-parse-better-errors", - "json-schema", - "json-stable-stringify", - "json-stringify-safe", - "jsonify", - "jsonparse", - "jsonpointer", - "JSONStream", - "jsprim", - "jsx-ast-utils", - "lcid", - "lcov-parse", - "levn", - "load-json-file", - "locate-path", - "lodash", - "lodash.assign", - "lodash.template", - "lodash.templatesettings", - "lodash._reinterpolate", - "log-driver", - "loud-rejection", - "lru-cache", - "map-obj", - "meow", - "mime-db", - "mime-types", - "minimatch", - "minimist", - "minimist-options", - "mkdirp", - "modify-values", - "ms", - "mute-stream", - "natural-compare", - "neo-async", - "next-tick", - "normalize-package-data", - "null-check", - "number-is-nan", - "nyc", - "oauth-sign", - "object-assign", - "once", - "onetime", - "only-shallow", - "opener", - "optimist", - "optionator", - "os-homedir", - "os-locale", - "os-tmpdir", - "p-limit", - "p-locate", - "p-try", - "parse-github-repo-url", - "parse-json", - "path-exists", - "path-is-absolute", - "path-is-inside", - "path-parse", - "path-type", - "pify", - "pinkie", - "pinkie-promise", - "pkg-config", - "pluralize", - "prelude-ls", - "process-nextick-args", - "progress", - "pseudomap", - "punycode", - "q", - "qs", - "quick-lru", - "read-pkg", - "read-pkg-up", - "readable-stream", - "readline2", - "rechoir", - "redent", - "slice-ansi", - "ansi-styles", - "astral-regex", - "ava", - "chalk", - "is-fullwidth-code-point", - "random-item", - "strip-ansi", - "xo", - "sshpk", - "asn1", - "assert-plus", - "bcrypt-pbkdf", - "benchmark", - "dashdash", - "ecc-jsbn", - "getpass", - "jsbn", - "safer-buffer", - "sinon", - "tape", - "temp", - "tweetnacl", - "string-width", - "ava", - "emoji-regex", - "is-fullwidth-code-point", - "strip-ansi", - "tsd", - "xo", - "string_decoder", - "babel-polyfill", - "core-util-is", - "inherits", - "safe-buffer", - "tap", - "babel-core", - "babel-plugin-transform-es2015-arrow-functions", - "babel-plugin-transform-es2015-block-scoping", - "babel-plugin-transform-es2015-classes", - "babel-plugin-transform-es2015-computed-properties", - "babel-plugin-transform-es2015-destructuring", - "babel-plugin-transform-es2015-for-of", - "babel-plugin-transform-es2015-parameters", - "babel-plugin-transform-es2015-shorthand-properties", - "babel-plugin-transform-es2015-spread", - "babel-plugin-transform-es2015-template-literals", - "bl", - "glob", - "gunzip-maybe", - "hyperquest", - "pump", - "rimraf", - "tar-fs", - "strip-ansi", - "ansi-regex", - "ava", - "tsd", - "xo", - "strip-eof", - "ava", - "xo", - "supports-color", - "ava", - "has-flag", - "import-fresh", - "xo", - "symbol-observable", - "acorn", - "amdefine", - "ansi-regex", - "ansi-styles", - "anymatch", - "arr-diff", - "arr-flatten", - "array-unique", - "assertion-error", - "ast-types", - "async-each", - "babel-cli", - "babel-code-frame", - "babel-core", - "babel-generator", - "babel-helper-call-delegate", - "babel-helper-define-map", - "babel-helper-function-name", - "babel-helper-get-function-arity", - "babel-helper-hoist-variables", - "babel-helper-optimise-call-expression", - "babel-helper-regex", - "babel-helper-replace-supers", - "babel-helpers", - "babel-messages", - "babel-plugin-check-es2015-constants", - "babel-plugin-transform-es2015-arrow-functions", - "babel-plugin-transform-es2015-block-scoped-functions", - "babel-plugin-transform-es2015-block-scoping", - "babel-plugin-transform-es2015-classes", - "babel-plugin-transform-es2015-computed-properties", - "babel-plugin-transform-es2015-destructuring", - "babel-plugin-transform-es2015-duplicate-keys", - "babel-plugin-transform-es2015-for-of", - "babel-plugin-transform-es2015-function-name", - "babel-plugin-transform-es2015-literals", - "babel-plugin-transform-es2015-modules-amd", - "babel-plugin-transform-es2015-modules-commonjs", - "babel-plugin-transform-es2015-modules-systemjs", - "babel-plugin-transform-es2015-modules-umd", - "babel-plugin-transform-es2015-object-super", - "babel-plugin-transform-es2015-parameters", - "babel-plugin-transform-es2015-shorthand-properties", - "babel-plugin-transform-es2015-spread", - "babel-plugin-transform-es2015-sticky-regex", - "babel-plugin-transform-es2015-template-literals", - "babel-plugin-transform-es2015-typeof-symbol", - "babel-plugin-transform-es2015-unicode-regex", - "babel-plugin-transform-es3-member-expression-literals", - "babel-plugin-transform-es3-property-literals", - "babel-plugin-transform-regenerator", - "babel-plugin-transform-strict-mode", - "babel-polyfill", - "babel-preset-es2015", - "babel-preset-es3", - "babel-register", - "babel-runtime", - "babel-template", - "babel-traverse", - "babel-types", - "babylon", - "balanced-match", - "base62", - "binary-extensions", - "bluebird", - "brace-expansion", - "braces", - "builtin-modules", - "camelcase", - "chai", - "chalk", - "check-es3-syntax", - "check-es3-syntax-cli", - "chokidar", - "cliui", - "code-point-at", - "commander", - "commoner", - "concat-map", - "convert-source-map", - "core-js", - "core-util-is", - "debug", - "decamelize", - "deep-eql", - "defined", - "detect-indent", - "detective", - "diff", - "error-ex", - "es3ify", - "escape-string-regexp", - "esprima", - "esutils", - "expand-brackets", - "expand-range", - "extglob", - "filename-regex", - "fill-range", - "find-up", - "for-in", - "for-own", - "fs-readdir-recursive", - "fs.realpath", - "get-caller-file", - "glob", - "glob-base", - "glob-parent", - "globals", - "graceful-fs", - "growl", - "has-ansi", - "home-or-tmp", - "hosted-git-info", - "iconv-lite", - "inflight", - "inherits", - "invariant", - "invert-kv", - "is-arrayish", - "is-binary-path", - "is-buffer", - "is-builtin-module", - "is-dotfile", - "is-equal-shallow", - "is-extendable", - "is-extglob", - "is-finite", - "is-fullwidth-code-point", - "is-glob", - "is-number", - "is-posix-bracket", - "is-primitive", - "is-utf8", - "isarray", - "isobject", - "jade", - "js-tokens", - "jsesc", - "json5", - "jstransform", - "kind-of", - "lcid", - "load-json-file", - "lodash", - "lodash.flatten", - "loose-envify", - "lru-cache", - "micromatch", - "minimatch", - "minimist", - "mkdirp", - "mocha", - "ms", - "normalize-package-data", - "normalize-path", - "number-is-nan", - "object-assign", - "object.omit", - "once", - "os-homedir", - "os-locale", - "os-tmpdir", - "output-file-sync", - "parse-glob", - "parse-json", - "path-exists", - "path-is-absolute", - "path-type", - "pify", - "pinkie", - "pinkie-promise", - "preserve", - "private", - "process-nextick-args", - "q", - "randomatic", - "read-pkg", - "read-pkg-up", - "readable-stream", - "readdirp", - "recast", - "regenerate", - "regenerator-runtime", - "regenerator-transform", - "regex-cache", - "regexpu-core", - "regjsgen", - "regjsparser", - "remove-trailing-separator", - "repeat-element", - "repeat-string", - "repeating", - "require-directory", - "require-main-filename", - "safe-buffer", - "semver", - "set-blocking", - "set-immediate-shim", - "sigmund", - "slash", - "source-map", - "source-map-support", - "spdx-correct", - "spdx-expression-parse", - "spdx-license-ids", - "string-width", - "string_decoder", - "strip-ansi", - "strip-bom", - "supports-color", - "through", - "to-fast-properties", - "to-iso-string", - "trim-right", - "type-detect", - "typescript", - "user-home", - "util-deprecate", - "v8flags", - "validate-npm-package-license", - "which-module", - "wrap-ansi", - "wrappy", - "y18n", - "yargs", - "yargs-parser", - "throttleit", - "mocha", - "tmp", - "eslint", - "eslint-plugin-mocha", - "istanbul", - "lerna-changelog", - "mocha", - "rimraf", - "tough-cookie", - "async", - "eslint", - "eslint-config-prettier", - "eslint-plugin-prettier", - "genversion", - "nyc", - "prettier", - "psl", - "punycode", - "universalify", - "vows", - "tslib", - "tunnel-agent", - "tweetnacl", - "browserify", - "eslint", - "faucet", - "tap-browser-color", - "tape", - "tweetnacl-util", - "uglify-js", - "@babel/code-frame", - "@babel/highlight", - "acorn", - "acorn-jsx", - "acorn-node", - "acorn-walk", - "ajv", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "argparse", - "asn1.js", - "assert", - "astral-regex", - "balanced-match", - "base64-js", - "bn.js", - "brace-expansion", - "brorand", - "browser-pack", - "browser-resolve", - "browserify-aes", - "browserify-cipher", - "browserify-des", - "browserify-rsa", - "browserify-sign", - "browserify-zlib", - "buffer", - "buffer-from", - "buffer-xor", - "builtin-status-codes", - "cached-path-relative", - "callsites", - "chalk", - "chardet", - "cipher-base", - "cli-cursor", - "cli-width", - "color-convert", - "color-name", - "combine-source-map", - "commander", - "concat-map", - "concat-stream", - "console-browserify", - "constants-browserify", - "convert-source-map", - "core-util-is", - "create-ecdh", - "create-hash", - "create-hmac", - "cross-spawn", - "crypto-browserify", - "dash-ast", - "date-now", - "debug", - "deep-equal", - "deep-is", - "define-properties", - "defined", - "deps-sort", - "des.js", - "detective", - "diffie-hellman", - "doctrine", - "domain-browser", - "dotignore", - "duplexer", - "duplexer2", - "elliptic", - "emoji-regex", - "es-abstract", - "es-to-primitive", - "escape-string-regexp", - "eslint-scope", - "eslint-utils", - "eslint-visitor-keys", - "espree", - "esprima", - "esquery", - "esrecurse", - "estraverse", - "esutils", - "events", - "evp_bytestokey", - "external-editor", - "fast-deep-equal", - "fast-json-stable-stringify", - "fast-levenshtein", - "figures", - "file-entry-cache", - "flat-cache", - "flatted", - "for-each", - "fs.realpath", - "function-bind", - "functional-red-black-tree", - "get-assigned-identifiers", - "glob", - "glob-parent", - "globals", - "has", - "has-flag", - "has-symbols", - "hash-base", - "hash.js", - "hmac-drbg", - "htmlescape", - "https-browserify", - "iconv-lite", - "ieee754", - "ignore", - "import-fresh", - "imurmurhash", - "inflight", - "inherits", - "inline-source-map", - "inquirer", - "insert-module-globals", - "is-arguments", - "is-buffer", - "is-callable", - "is-date-object", - "is-extglob", - "is-fullwidth-code-point", - "is-glob", - "is-promise", - "is-regex", - "is-symbol", - "isarray", - "isexe", - "js-tokens", - "js-yaml", - "json-schema-traverse", - "json-stable-stringify", - "json-stable-stringify-without-jsonify", - "jsonify", - "jsonparse", - "JSONStream", - "labeled-stream-splicer", - "levn", - "lodash", - "lodash.memoize", - "md5.js", - "miller-rabin", - "mimic-fn", - "minimalistic-assert", - "minimalistic-crypto-utils", - "minimatch", - "minimist", - "mkdirp", - "module-deps", - "ms", - "mute-stream", - "natural-compare", - "nice-try", - "object-assign", - "object-inspect", - "object-is", - "object-keys", - "object.assign", - "once", - "onetime", - "optionator", - "os-browserify", - "os-tmpdir", - "pako", - "parent-module", - "parents", - "parse-asn1", - "path-browserify", - "path-is-absolute", - "path-key", - "path-parse", - "path-platform", - "pbkdf2", - "prelude-ls", - "process", - "process-nextick-args", - "progress", - "public-encrypt", - "punycode", - "querystring", - "querystring-es3", - "randombytes", - "randomfill", - "read-only-stream", - "readable-stream", - "regexp.prototype.flags", - "regexpp", - "resolve", - "resolve-from", - "restore-cursor", - "resumer", - "rimraf", - "ripemd160", - "run-async", - "rxjs", - "safe-buffer", - "safer-buffer", - "semver", - "sha.js", - "shasum", - "shebang-command", - "shebang-regex", - "shell-quote", - "signal-exit", - "simple-concat", - "slice-ansi", - "source-map", - "sprintf", - "sprintf-js", - "stream-browserify", - "stream-combiner2", - "stream-http", - "stream-splicer", - "string-width", - "string.prototype.trim", - "string.prototype.trimleft", - "string.prototype.trimright", - "string_decoder", - "strip-ansi", - "strip-json-comments", - "subarg", - "supports-color", - "syntax-error", - "table", - "tap-parser", - "text-table", - "through", - "through2", - "timers-browserify", - "tmp", - "tslib", - "tty-browserify", - "type-check", - "type-fest", - "typedarray", - "umd", - "undeclared-identifiers", - "uri-js", - "url", - "util", - "typedarray", - "tape", - "universalify", - "colortape", - "coveralls", - "nyc", - "standard", - "tape", - "untildify", - "uri-js", - "babel-cli", - "babel-plugin-external-helpers", - "babel-preset-latest", - "mocha", - "mocha-qunit-ui", - "punycode", - "rollup", - "rollup-plugin-babel", - "rollup-plugin-node-resolve", - "sorcery", - "typescript", - "uglify-js", - "abbrev", - "ajv", - "align-text", - "ansi-regex", - "ansi-styles", - "anymatch", - "aproba", - "are-we-there-yet", - "arr-diff", - "arr-flatten", - "array-unique", - "asn1", - "assert-plus", - "async-each", - "asynckit", - "aws-sign2", - "aws4", - "babel-code-frame", - "babel-core", - "babel-generator", - "babel-helper-builder-binary-assignment-operator-visitor", - "babel-helper-call-delegate", - "babel-helper-define-map", - "babel-helper-explode-assignable-expression", - "babel-helper-function-name", - "babel-helper-get-function-arity", - "babel-helper-hoist-variables", - "babel-helper-optimise-call-expression", - "babel-helper-regex", - "babel-helper-remap-async-to-generator", - "babel-helper-replace-supers", - "babel-helpers", - "babel-messages", - "babel-plugin-check-es2015-constants", - "babel-plugin-syntax-async-functions", - "babel-plugin-syntax-exponentiation-operator", - "babel-plugin-syntax-trailing-function-commas", - "babel-plugin-transform-async-to-generator", - "babel-plugin-transform-es2015-arrow-functions", - "babel-plugin-transform-es2015-block-scoped-functions", - "babel-plugin-transform-es2015-block-scoping", - "babel-plugin-transform-es2015-classes", - "babel-plugin-transform-es2015-computed-properties", - "babel-plugin-transform-es2015-destructuring", - "babel-plugin-transform-es2015-duplicate-keys", - "babel-plugin-transform-es2015-for-of", - "babel-plugin-transform-es2015-function-name", - "babel-plugin-transform-es2015-literals", - "babel-plugin-transform-es2015-modules-amd", - "babel-plugin-transform-es2015-modules-commonjs", - "babel-plugin-transform-es2015-modules-systemjs", - "babel-plugin-transform-es2015-modules-umd", - "babel-plugin-transform-es2015-object-super", - "babel-plugin-transform-es2015-parameters", - "babel-plugin-transform-es2015-shorthand-properties", - "babel-plugin-transform-es2015-spread", - "babel-plugin-transform-es2015-sticky-regex", - "babel-plugin-transform-es2015-template-literals", - "babel-plugin-transform-es2015-typeof-symbol", - "babel-plugin-transform-es2015-unicode-regex", - "babel-plugin-transform-exponentiation-operator", - "babel-plugin-transform-regenerator", - "babel-plugin-transform-strict-mode", - "babel-polyfill", - "babel-preset-es2015", - "babel-preset-es2016", - "babel-preset-es2017", - "babel-register", - "babel-runtime", - "babel-template", - "babel-traverse", - "babel-types", - "babylon", - "balanced-match", - "bcrypt-pbkdf", - "binary-extensions", - "block-stream", - "boom", - "brace-expansion", - "braces", - "browser-resolve", - "browser-stdout", - "buffer-crc32", - "builtin-modules", - "camelcase", - "caseless", - "center-align", - "chalk", - "chokidar", - "cliui", - "co", - "code-point-at", - "combined-stream", - "commander", - "concat-map", - "console-control-strings", - "convert-source-map", - "core-js", - "core-util-is", - "cryptiles", - "dashdash", - "debug", - "decamelize", - "deep-extend", - "delayed-stream", - "delegates", - "detect-indent", - "detect-libc", - "diff", - "ecc-jsbn", - "es6-promise", - "escape-string-regexp", - "estree-walker", - "esutils", - "expand-brackets", - "expand-range", - "extend", - "extglob", - "extsprintf", - "filename-regex", - "fill-range", - "for-in", - "for-own", - "forever-agent", - "form-data", - "fs-readdir-recursive", - "fs.realpath", - "fsevents", - "fstream", - "fstream-ignore", - "gauge", - "getpass", - "glob", - "glob-base", - "glob-parent", - "globals", - "graceful-fs", - "graceful-readlink", - "growl", - "har-schema", - "har-validator", - "has-ansi", - "has-flag", - "has-unicode", - "hawk", - "he", - "hoek", - "home-or-tmp", - "http-signature", - "inflight", - "inherits", - "ini", - "invariant", - "is-binary-path", - "is-buffer", - "is-dotfile", - "is-equal-shallow", - "is-extendable", - "is-extglob", - "is-finite", - "is-fullwidth-code-point", - "is-glob", - "is-number", - "is-posix-bracket", - "is-primitive", - "is-typedarray", - "isarray", - "isobject", - "isstream", - "js-tokens", - "jsbn", - "jsesc", - "json-schema", - "json-stable-stringify", - "json-stringify-safe", - "json3", - "json5", - "jsonify", - "jsprim", - "kind-of", - "lazy-cache", - "lodash", - "lodash.create", - "lodash.isarguments", - "lodash.isarray", - "lodash.keys", - "lodash._baseassign", - "lodash._basecopy", - "lodash._basecreate", - "lodash._getnative", - "lodash._isiterateecall", - "longest", - "loose-envify", - "micromatch", - "mime-db", - "mime-types", - "minimatch", - "minimist", - "mkdirp", - "ms", - "nan", - "node-pre-gyp", - "nopt", - "normalize-path", - "npmlog", - "number-is-nan", - "oauth-sign", - "object-assign", - "object.omit", - "once", - "os-homedir", - "os-tmpdir", - "osenv", - "output-file-sync", - "parse-glob", - "path-is-absolute", - "path-parse", - "performance-now", - "preserve", - "private", - "process-nextick-args", - "qs", - "randomatic", - "rc", - "readable-stream", - "readdirp", - "regenerate", - "regenerator-runtime", - "regenerator-transform", - "regex-cache", - "regexpu-core", - "regjsgen", - "regjsparser", - "remove-trailing-separator", - "repeat-element", - "repeat-string", - "repeating", - "request", - "resolve", - "right-align", - "rimraf", - "url", - "util-deprecate", - "uuid", - "@babel/cli", - "@babel/code-frame", - "@babel/compat-data", - "@babel/core", - "@babel/generator", - "@babel/helper-annotate-as-pure", - "@babel/helper-builder-binary-assignment-operator-visitor", - "@babel/helper-call-delegate", - "@babel/helper-compilation-targets", - "@babel/helper-create-regexp-features-plugin", - "@babel/helper-define-map", - "@babel/helper-explode-assignable-expression", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-hoist-variables", - "@babel/helper-member-expression-to-functions", - "@babel/helper-module-imports", - "@babel/helper-module-transforms", - "@babel/helper-optimise-call-expression", - "@babel/helper-plugin-utils", - "@babel/helper-regex", - "@babel/helper-remap-async-to-generator", - "@babel/helper-replace-supers", - "@babel/helper-simple-access", - "@babel/helper-split-export-declaration", - "@babel/helper-wrap-function", - "@babel/helpers", - "@babel/highlight", - "@babel/parser", - "@babel/plugin-proposal-async-generator-functions", - "@babel/plugin-proposal-dynamic-import", - "@babel/plugin-proposal-json-strings", - "@babel/plugin-proposal-nullish-coalescing-operator", - "@babel/plugin-proposal-object-rest-spread", - "@babel/plugin-proposal-optional-catch-binding", - "@babel/plugin-proposal-optional-chaining", - "@babel/plugin-proposal-unicode-property-regex", - "@babel/plugin-syntax-async-generators", - "@babel/plugin-syntax-bigint", - "@babel/plugin-syntax-dynamic-import", - "@babel/plugin-syntax-json-strings", - "@babel/plugin-syntax-nullish-coalescing-operator", - "@babel/plugin-syntax-object-rest-spread", - "@babel/plugin-syntax-optional-catch-binding", - "@babel/plugin-syntax-optional-chaining", - "@babel/plugin-syntax-top-level-await", - "@babel/plugin-transform-arrow-functions", - "@babel/plugin-transform-async-to-generator", - "@babel/plugin-transform-block-scoped-functions", - "@babel/plugin-transform-block-scoping", - "@babel/plugin-transform-classes", - "@babel/plugin-transform-computed-properties", - "@babel/plugin-transform-destructuring", - "@babel/plugin-transform-dotall-regex", - "@babel/plugin-transform-duplicate-keys", - "@babel/plugin-transform-exponentiation-operator", - "@babel/plugin-transform-for-of", - "@babel/plugin-transform-function-name", - "@babel/plugin-transform-literals", - "@babel/plugin-transform-member-expression-literals", - "@babel/plugin-transform-modules-amd", - "@babel/plugin-transform-modules-commonjs", - "@babel/plugin-transform-modules-systemjs", - "@babel/plugin-transform-modules-umd", - "@babel/plugin-transform-named-capturing-groups-regex", - "@babel/plugin-transform-new-target", - "@babel/plugin-transform-object-super", - "@babel/plugin-transform-parameters", - "@babel/plugin-transform-property-literals", - "@babel/plugin-transform-regenerator", - "@babel/plugin-transform-reserved-words", - "@babel/plugin-transform-shorthand-properties", - "@babel/plugin-transform-spread", - "@babel/plugin-transform-sticky-regex", - "@babel/plugin-transform-template-literals", - "@babel/plugin-transform-typeof-symbol", - "@babel/plugin-transform-unicode-regex", - "@babel/preset-env", - "@babel/runtime", - "@babel/template", - "@babel/traverse", - "@babel/types", - "@bcoe/v8-coverage", - "@cnakazawa/watch", - "@commitlint/cli", - "@commitlint/config-conventional", - "@commitlint/ensure", - "@commitlint/execute-rule", - "@commitlint/format", - "@commitlint/is-ignored", - "@commitlint/lint", - "@commitlint/load", - "@commitlint/message", - "@commitlint/parse", - "@commitlint/read", - "@commitlint/resolve-extends", - "@commitlint/rules", - "@commitlint/to-lines", - "@commitlint/top-level", - "@istanbuljs/load-nyc-config", - "@istanbuljs/schema", - "@jest/console", - "@jest/core", - "@jest/environment", - "@jest/fake-timers", - "@jest/reporters", - "@jest/source-map", - "@jest/test-result", - "@jest/test-sequencer", - "@jest/transform", - "@jest/types", - "@marionebl/sander", - "@rollup/plugin-node-resolve", - "@rollup/pluginutils", - "@samverschueren/stream-to-observable", - "@sinonjs/commons", - "@types/babel__core", - "@types/babel__generator", - "@types/babel__template", - "@types/babel__traverse", - "@types/color-name", - "@types/estree", - "@types/istanbul-lib-coverage", - "@types/istanbul-lib-report", - "@types/istanbul-reports", - "@types/node", - "@types/normalize-package-data", - "@types/parse-json", - "@types/resolve", - "@types/stack-utils", - "@types/yargs", - "@types/yargs-parser", - "abab", - "acorn", - "acorn-globals", - "acorn-jsx", - "acorn-walk", - "add-stream", - "agent-base", - "ajv", - "ansi-escapes", - "ansi-regex", - "ansi-styles", - "any-observable", - "anymatch", - "argparse", - "arr-diff", - "arr-flatten", - "arr-union", - "array-equal", - "array-find-index", - "array-ify", - "array-unique", - "arrify", - "asn1", - "assert-plus", - "assign-symbols", - "astral-regex", - "async", - "async-each", - "asynckit", - "atob", - "aws-sign2", - "aws4", - "axios", - "babel-eslint", - "babel-jest", - "babel-plugin-add-module-exports", - "babel-plugin-dynamic-import-node", - "babel-plugin-istanbul", - "babel-plugin-jest-hoist", - "babel-polyfill", - "babel-preset-jest", - "babel-runtime", - "balanced-match", - "base", - "basic-auth", - "bcrypt-pbkdf", - "binary-extensions", - "brace-expansion", - "braces", - "browser-process-hrtime", - "browser-resolve", - "browserslist", - "browserstack-local", - "bser", - "buffer-from", - "builtin-modules", - "bundlewatch", - "bytes", - "cache-base", - "caller-callsite", - "caller-path", - "callsites", - "camelcase", - "camelcase-keys", - "caniuse-lite", - "capture-exit", - "caseless", - "chalk", - "chardet", - "chokidar", - "ci-info", - "class-utils", - "cli-cursor", - "cli-truncate", - "cli-width", - "cliui", - "co", - "code-point-at", - "collect-v8-coverage", - "collection-visit", - "color-convert", - "color-name", - "colors", - "combined-stream", - "commander", - "compare-func", - "component-emitter", - "concat-map", - "concat-stream", - "conventional-changelog", - "conventional-changelog-angular", - "conventional-changelog-atom", - "conventional-changelog-codemirror", - "conventional-changelog-config-spec", - "conventional-changelog-conventionalcommits", - "conventional-changelog-core", - "conventional-changelog-ember", - "conventional-changelog-eslint", - "conventional-changelog-express", - "conventional-changelog-jquery", - "conventional-changelog-jshint", - "conventional-changelog-preset-loader", - "conventional-changelog-writer", - "conventional-commits-filter", - "conventional-commits-parser", - "conventional-recommended-bump", - "convert-source-map", - "copy-descriptor", - "core-js", - "core-js-compat", - "core-util-is", - "corser", - "cosmiconfig", - "cross-spawn", - "cssom", - "cssstyle", - "currently-unhandled", - "dargs", - "eslint", - "eslint-config-prettier", - "eslint-config-standard", - "eslint-plugin-import", - "eslint-plugin-node", - "eslint-plugin-prettier", - "eslint-plugin-promise", - "eslint-plugin-standard", - "husky", - "jest", - "lint-staged", - "npm-run-all", - "optional-dev-dependency", - "prettier", - "random-seed", - "rollup", - "rollup-plugin-terser", - "runmd", - "standard-version", - "benchmark", - "lodash", - "platform", - "@npmcli/move-file", - "@types/eslint", - "@types/eslint-scope", - "@types/json-schema", - "@webassemblyjs/ast", - "@webassemblyjs/floating-point-hex-parser", - "@webassemblyjs/helper-api-error", - "@webassemblyjs/helper-buffer", - "@webassemblyjs/helper-code-frame", - "@webassemblyjs/helper-fsm", - "@webassemblyjs/helper-module-context", - "@webassemblyjs/helper-wasm-bytecode", - "@webassemblyjs/helper-wasm-section", - "@webassemblyjs/ieee754", - "@webassemblyjs/leb128", - "@webassemblyjs/utf8", - "@webassemblyjs/wasm-edit", - "@webassemblyjs/wasm-gen", - "@webassemblyjs/wasm-opt", - "@webassemblyjs/wasm-parser", - "@webassemblyjs/wast-parser", - "@webassemblyjs/wast-printer", - "@xtuc/ieee754", - "@xtuc/long", - "aggregate-error", - "ajv-keywords", - "big.js", - "cacache", - "chownr", - "chrome-trace-event", - "clean-stack", - "commondir", - "debug", - "decamelize", - "decode-uri-component", - "define-property", - "detect-file", - "electron-to-chromium", - "emoji-regex", - "emojis-list", - "enhanced-resolve", - "errno", - "escalade", - "escape-string-regexp", - "eslint-scope", - "esrecurse", - "estraverse", - "events", - "expand-brackets", - "expand-tilde", - "extend-shallow", - "extglob", - "fast-deep-equal", - "fast-json-stable-stringify", - "fill-range", - "find-cache-dir", - "find-up", - "findup-sync", - "for-in", - "fragment-cache", - "fs-minipass", - "fs.realpath", - "get-caller-file", - "get-value", - "glob", - "glob-to-regexp", - "global-modules", - "global-prefix", - "graceful-fs", - "has-flag", - "has-value", - "has-values", - "homedir-polyfill", - "import-local", - "imurmurhash", - "indent-string", - "infer-owner", - "inflight", - "inherits", - "ini", - "interpret", - "is-accessor-descriptor", - "is-buffer", - "is-data-descriptor", - "is-descriptor", - "is-extendable", - "is-extglob", - "is-fullwidth-code-point", - "is-glob", - "is-number", - "is-plain-object", - "is-windows", - "isarray", - "isexe", - "isobject", - "jest-worker", - "json-parse-better-errors", - "json-schema-traverse", - "json5", - "kind-of", - "loader-runner", - "loader-utils", - "locate-path", - "lru-cache", - "make-dir", - "map-cache", - "map-visit", - "memory-fs", - "merge-stream", - "micromatch", - "mime-db", - "mime-types", - "minimatch", - "minimist", - "minipass", - "minipass-collect", - "minipass-flush", - "minipass-pipeline", - "minizlib", - "mixin-deep", - "mkdirp", - "ms", - "nanomatch", - "neo-async", - "nice-try", - "node-releases", - "object-copy", - "object-visit", - "object.pick", - "once", - "p-limit", - "p-locate", - "p-map", - "p-try", - "parse-passwd", - "pascalcase", - "path-exists", - "path-is-absolute", - "path-key", - "pkg-dir", - "posix-character-classes", - "process-nextick-args", - "promise-inflight", - "prr", - "punycode", - "randombytes", - "readable-stream", - "regex-not", - "repeat-element", - "repeat-string", - "require-directory", - "require-main-filename", - "resolve-cwd", - "resolve-dir", - "resolve-from", - "resolve-url", - "ret", - "rimraf", - "safe-buffer", - "safe-regex", - "schema-utils", - "semver", - "serialize-javascript", - "set-blocking", - "set-value", - "shebang-command", - "shebang-regex", - "snapdragon", - "snapdragon-node", - "snapdragon-util", - "source-list-map", - "source-map", - "source-map-resolve", - "source-map-support", - "source-map-url", - "split-string", - "ssri", - "static-extend", - "string-width", - "string_decoder", - "strip-ansi", - "supports-color", - "tapable", - "tar", - "terser", - "terser-webpack-plugin", - "to-object-path", - "to-regex", - "to-regex-range", - "tslib", - "union-value", - "unique-filename", - "unique-slug", - "unset-value", - "uri-js", - "urix", - "use", - "util-deprecate", - "v8-compile-cache", - "watchpack", - "webpack", - "webpack-cli", - "webpack-sources", - "which", - "which-module", - "wrap-ansi", - "wrappy", - "y18n", - "yallist", - "yargs", - "yargs-parser", - "@babel/helper-validator-identifier", - "deepmerge", - "estree-walker", - "fsevents", - "is-module", - "js-tokens", - "path-parse", - "picomatch", - "resolve", - "verror", - "assert-plus", - "core-util-is", - "extsprintf", - "which", - "@babel/code-frame", - "@babel/generator", - "@babel/helper-function-name", - "@babel/helper-get-function-arity", - "@babel/helper-split-export-declaration", - "@babel/highlight", - "@babel/parser", - "@babel/runtime", - "@babel/template", - "@babel/traverse", - "@babel/types", - "ajv", - "ansi-regex", - "ansi-styles", - "anymatch", - "append-transform", - "archy", - "arg", - "argparse", - "asn1", - "assert-plus", - "async-hook-domain", - "asynckit", - "aws-sign2", - "aws4", - "balanced-match", - "bcrypt-pbkdf", - "binary-extensions", - "bind-obj-methods", - "brace-expansion", - "braces", - "browser-process-hrtime", - "buffer-from", - "caching-transform", - "camelcase", - "capture-stack-trace", - "caseless", - "chalk", - "chokidar", - "cliui", - "code-point-at", - "color-convert", - "color-name", - "color-support", - "combined-stream", - "commander", - "commondir", - "concat-map", - "convert-source-map", - "core-util-is", - "coveralls", - "cp-file", - "cross-spawn", - "dashdash", - "debug", - "decamelize", - "default-require-extensions", - "delayed-stream", - "diff", - "ecc-jsbn", - "emoji-regex", - "error-ex", - "es6-error", - "escape-string-regexp", - "esm", - "esprima", - "esutils", - "events-to-array", - "extend", - "extsprintf", - "fast-deep-equal", - "fast-json-stable-stringify", - "fill-range", - "find-cache-dir", - "find-up", - "findit", - "flow-parser", - "flow-remove-types", - "foreground-child", - "forever-agent", - "form-data", - "fs-exists-cached", - "fs.realpath", - "fsevents", - "function-loop", - "get-caller-file", - "getpass", - "glob", - "glob-parent", - "globals", - "graceful-fs", - "growl", - "handlebars", - "har-schema", - "har-validator", - "has-flag", - "hasha", - "hosted-git-info", - "http-signature", - "imurmurhash", - "inflight", - "inherits", - "is-arrayish", - "is-binary-path", - "is-extglob", - "is-fullwidth-code-point", - "is-glob", - "is-number", - "is-stream", - "is-typedarray", - "isarray", - "isexe", - "isstream", - "istanbul-lib-coverage", - "istanbul-lib-hook", - "istanbul-lib-instrument", - "istanbul-lib-processinfo", - "istanbul-lib-report", - "istanbul-lib-source-maps", - "istanbul-reports", - "jackspeak", - "js-tokens", - "js-yaml", - "jsbn", - "jsesc", - "json-parse-better-errors", - "json-schema", - "json-schema-traverse", - "json-stringify-safe", - "jsprim", - "lcov-parse", - "load-json-file", - "locate-path", - "lodash", - "lodash.flattendeep", - "log-driver", - "lru-cache", - "make-dir", - "make-error", - "merge-source-map", - "mime-db", - "mime-types", - "minimatch", - "minimist", - "minipass", - "mkdirp", - "ms", - "neo-async", - "nested-error-stacks", - "nice-try", - "node-modules-regexp", - "normalize-package-data", - "normalize-path", - "number-is-nan", - "nyc", - "oauth-sign", - "once", - "opener", - "optimist", - "os-homedir", - "own-or", - "own-or-env", - "p-limit", - "p-locate", - "p-try", - "package-hash", - "parse-json", - "path-exists", - "path-is-absolute", - "path-key", - "path-parse", - "path-type", - "performance-now", - "picomatch", - "pify", - "pirates", - "pkg-dir", - "process-nextick-args", - "pseudomap", - "psl", - "punycode", - "qs", - "read-pkg", - "read-pkg-up", - "readable-stream", - "readdirp", - "regenerator-runtime", - "release-zalgo", - "request", - "require-directory", - "require-main-filename", - "resolve", - "resolve-from", - "rimraf", - "safe-buffer", - "safer-buffer", - "semver", - "set-blocking", - "shebang-command", - "shebang-regex", - "signal-exit", - "source-map", - "source-map-support", - "spawn-wrap", - "spdx-correct", - "spdx-exceptions", - "spdx-expression-parse", - "spdx-license-ids", - "sprintf-js", - "sshpk", - "stack-utils", - "string-width", - "string_decoder", - "strip-ansi", - "strip-bom", - "supports-color", - "tap", - "tap-mocha-reporter", - "tap-parser", - "tap-yaml", - "tcompare", - "test-exclude", - "to-fast-properties", - "to-regex-range", - "tough-cookie", - "trivial-deferred", - "ts-node", - "tunnel-agent", - "tweetnacl", - "typedarray-to-buffer", - "typescript", - "uglify-js", - "unicode-length", - "uri-js", - "util-deprecate", - "uuid", - "validate-npm-package-license", - "verror", - "vlq", - "which", - "which-module", - "wordwrap", - "wrap-ansi", - "wrappy", - "write-file-atomic", - "y18n", - "yallist", - "yaml", - "yapool", - "yargs", - "wrap-ansi", - "ansi-styles", - "ava", - "chalk", - "coveralls", - "has-ansi", - "nyc", - "string-width", - "strip-ansi", - "xo", - "wrappy", - "tap", - "yauzl", - "bl", - "buffer-crc32", - "fd-slicer", - "istanbul", - "pend", - "pymedphys_databases", - "pymedphys_dicom", - "pymedphys_fileformats", - "pymedphys_utilities", - "pymedphys_mudensity", - "csv-compare", - "ipython", - "docrepr", - "ipykernel", - "matplotlib", - "setuptools", - "sphinx", - "sphinx-rtd-theme", - "stack-data", - "jinja2", - "markupsafe", - "appdirs", - "attrs", - "cfgv", - "click", - "distlib", - "filelock", - "identify", - "iniconfig", - "nodeenv", - "packaging", - "pluggy", - "py", - "pyparsing", - "pyyaml", - "six", - "toml", - "virtualenv", - "alabaster", - "babel", - "certifi", - "chardet", - "docutils", - "idna", - "imagesize", - "jinja2", - "pygments", - "pytz", - "requests", - "snowballstemmer", - "sphinxcontrib-applehelp", - "sphinxcontrib-devhelp", - "sphinxcontrib-htmlhelp", - "sphinxcontrib-jsmath", - "sphinxcontrib-qthelp", - "sphinxcontrib-serializinghtml", - "urllib3", - "mosaiq-connection", - "mosaiq-field-export", - "notebook", - "bower", - "less", - "onchange", - "po2json", - "requirejs", - "argon2-cffi", - "ipykernel", - "ipython-genutils", - "jinja2", - "jupyter-client", - "jupyter-core", - "nbconvert", - "nbformat", - "prometheus-client", - "pyzmq", - "send2trash", - "terminado", - "tornado", - "traitlets", - "nbsphinx", - "sphinx", - "sphinx-rtd-theme", - "sphinxcontrib-github-alt", - "numpy", - "pandas", - "asv", - "beautifulsoup4", - "black", - "blosc", - "boto3", - "botocore", - "bottleneck", - "cftime", - "cloudpickle", - "cpplint", - "cython", - "dask", - "fastparquet", - "feedparser", - "flake8", - "flake8-comprehensions", - "flask", - "fsspec", - "gcsfs", - "gitdb", - "gitpython", - "html5lib", - "hypothesis", - "ipykernel", - "ipython", - "ipywidgets", - "isort", - "jinja2", - "lxml", - "markdown", - "matplotlib", - "moto", - "mypy", - "natsort", - "nbconvert", - "nbformat", - "nbsphinx", - "notebook", - "numba", - "numexpr", - "numpy", - "odfpy", - "openpyxl", - "pandoc", - "partd", - "pip", - "pre-commit", - "pyarrow", - "pycodestyle", - "pyqt5", - "pyreadstat", - "pytest", - "pytest-asyncio", - "pytest-cov", - "pytest-instafail", - "pytest-xdist", - "python-dateutil", - "python-snappy", - "pytz", - "pyupgrade", - "pyyaml", - "requests", - "s3fs", - "scipy", - "seaborn", - "sphinx", - "sqlalchemy", - "statsmodels", - "tables", - "tabulate", - "toolz", - "xarray", - "xlrd", - "xlsxwriter", - "xlwt" - ] -} \ No newline at end of file diff --git a/test/test_extractor_depend.ipynb b/test/test_extractor_depend.ipynb deleted file mode 100644 index 2bf032c..0000000 --- a/test/test_extractor_depend.ipynb +++ /dev/null @@ -1,126 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - " 16%|████████████▌ | 230/1440 [03:09<43:06, 2.14s/it]" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "timeout SciTools/iris\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - " 87%|███████████████████████████████████████████████████████████████████▉ | 1254/1440 [17:09<06:59, 2.25s/it]" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "timeout liminoid/liminoid-js\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - " 92%|███████████████████████████████████████████████████████████████████████▌ | 1321/1440 [18:12<04:12, 2.12s/it]" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "timeout cemac/SWIFTDB\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - " 99%|█████████████████████████████████████████████████████████████████████████████▌| 1431/1440 [20:03<00:21, 2.44s/it]" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "timeout sbalci/clinicopathological\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "100%|██████████████████████████████████████████████████████████████████████████████| 1440/1440 [20:09<00:00, 1.19it/s]\n", - ".\n", - "----------------------------------------------------------------------\n", - "Ran 1 test in 1209.650s\n", - "\n", - "OK\n" - ] - } - ], - "source": [ - "import unittest\n", - "import extractor_depend\n", - "#import extractor_depend_1 repo\n", - "import os\n", - "\n", - "class Testextract(unittest.TestCase):\n", - " def test_extractor(self):\n", - " input_file = '../xkcd2347/3k_valid_repos'\n", - " output_file = '3k_repodata_test'\n", - " git_hub_key = '44406061d90ca56e84711ccb72149de99ecb1c53'\n", - " hop = 1\n", - " extractor_depend.getDependencies(input_file, output_file, git_hub_key, hop)\n", - "\n", - "if __name__ == \"__main__\":\n", - " unittest.main(argv=['first-arg-is-ignored'], exit=False)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/test/test_extractor_depend_mutlihop.ipynb b/test/test_extractor_depend_1repo_1hop.ipynb similarity index 76% rename from test/test_extractor_depend_mutlihop.ipynb rename to test/test_extractor_depend_1repo_1hop.ipynb index 1d79e42..6fc62b0 100644 --- a/test/test_extractor_depend_mutlihop.ipynb +++ b/test/test_extractor_depend_1repo_1hop.ipynb @@ -2,25 +2,18 @@ "cells": [ { "cell_type": "code", - "execution_count": 2, + "execution_count": 1, "metadata": { "scrolled": true }, "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "timeout date-fns/date-fns\n" - ] - }, { "name": "stderr", "output_type": "stream", "text": [ ".\n", "----------------------------------------------------------------------\n", - "Ran 1 test in 147.302s\n", + "Ran 1 test in 2.403s\n", "\n", "OK\n" ] @@ -28,21 +21,27 @@ ], "source": [ "import unittest\n", - "#import extractor_depend\n", "import extractor_depend_1repo\n", "import os\n", "\n", "class Testextract(unittest.TestCase):\n", " def test_extractor(self):\n", " input_file = '../xkcd2347/3k_valid_repos'\n", - " output_file = '3k_valid_repos_test_2hop'\n", - " git_hub_key = '44406061d90ca56e84711ccb72149de99ecb1c53'\n", - " hop = 2\n", + " output_file = '1_repodata_1hop'\n", + " git_hub_key = 'a4ff939e41a1843bb116b30b045ce8999f8a2d1e'\n", + " hop = 1\n", " extractor_depend_1repo.getDependencies(input_file, output_file, git_hub_key, hop)\n", "\n", "if __name__ == \"__main__\":\n", " unittest.main(argv=['first-arg-is-ignored'], exit=False)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { diff --git a/test/test_extractor_depend_1repo_2hop.ipynb b/test/test_extractor_depend_1repo_2hop.ipynb new file mode 100644 index 0000000..8d2100e --- /dev/null +++ b/test/test_extractor_depend_1repo_2hop.ipynb @@ -0,0 +1,85 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout mithrandi/argon2_cffi\n", + "timeout davidhalter/parso\n", + "timeout pydicom/pylibjpeg-libjpeg\n", + "timeout PyWavelets/pywt\n", + "timeout kvesteri/validators\n", + "timeout jprichardson/node-fs-extra\n", + "timeout retrohacker/getos\n", + "timeout sindresorhus/is-observable\n", + "timeout SamVerschueren/listr\n", + "timeout raszi/node-tmp\n", + "timeout RyanZim/universalify\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + ".\n", + "----------------------------------------------------------------------\n", + "Ran 1 test in 196.357s\n", + "\n", + "OK\n" + ] + } + ], + "source": [ + "import unittest\n", + "import extractor_depend_1repo\n", + "import os\n", + "\n", + "class Testextract(unittest.TestCase):\n", + " def test_extractor(self):\n", + " input_file = '../xkcd2347/3k_valid_repos'\n", + " output_file = '1_repodata_2hop'\n", + " git_hub_key = 'a4ff939e41a1843bb116b30b045ce8999f8a2d1e'\n", + " hop = 2\n", + " extractor_depend_1repo.getDependencies(input_file, output_file, git_hub_key, hop)\n", + "\n", + "if __name__ == \"__main__\":\n", + " unittest.main(argv=['first-arg-is-ignored'], exit=False)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/test/test_extractor_depend_3k_1hop.ipynb b/test/test_extractor_depend_3k_1hop.ipynb new file mode 100644 index 0000000..417f063 --- /dev/null +++ b/test/test_extractor_depend_3k_1hop.ipynb @@ -0,0 +1,279 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 68%|█████████████████████████████████████████████████████▍ | 975/1440 [13:01<05:08, 1.51it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout callat-qcd/espressodb\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 68%|█████████████████████████████████████████████████████▌ | 976/1440 [13:01<05:04, 1.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout longavailable/adaptive-curvefitting\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 72%|████████████████████████████████████████████████████████▎ | 1039/1440 [13:52<04:58, 1.34it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout abhi1693/yii2-enum\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 73%|████████████████████████████████████████████████████████▌ | 1045/1440 [13:57<04:19, 1.52it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout rjw57/videosequence\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 73%|████████████████████████████████████████████████████████▋ | 1047/1440 [13:58<03:57, 1.66it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout luphysics/PyMODA\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 74%|██████████████████████████████████████████████████████████ | 1072/1440 [14:14<04:17, 1.43it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout rasbt/mlxtend\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 76%|███████████████████████████████████████████████████████████ | 1091/1440 [14:29<03:52, 1.50it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout hibernator11/notebook-texts-metadata\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|████████████████████████████████████████████████████████████▍ | 1116/1440 [14:48<03:57, 1.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout geoschem/gcpy\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 78%|████████████████████████████████████████████████████████████▌ | 1118/1440 [14:49<03:28, 1.55it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout dhimmel/gene-ontology\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 83%|████████████████████████████████████████████████████████████████▉ | 1199/1440 [15:46<02:32, 1.58it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout cgat-developers/cgat-core\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 93%|████████████████████████████████████████████████████████████████████████▊ | 1345/1440 [17:42<01:21, 1.17it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout digicademy/AskMoreXtension\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 95%|██████████████████████████████████████████████████████████████████████████▎ | 1373/1440 [18:06<00:56, 1.19it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout DiamondLightSource/Opt-ID\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 95%|██████████████████████████████████████████████████████████████████████████▍ | 1374/1440 [18:06<00:48, 1.36it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout salvadorgarciamunoz/kipet\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 97%|███████████████████████████████████████████████████████████████████████████▉ | 1403/1440 [18:34<00:34, 1.08it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout harnesscloud/irm-nova\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " 98%|████████████████████████████████████████████████████████████████████████████▋ | 1416/1440 [18:49<00:17, 1.40it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "timeout yogo/sapphire\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████████████████████████████████████████████████████████████████████████| 1440/1440 [19:06<00:00, 1.26it/s]\n", + ".\n", + "----------------------------------------------------------------------\n", + "Ran 1 test in 1146.397s\n", + "\n", + "OK\n" + ] + } + ], + "source": [ + "import unittest\n", + "import extractor_depend\n", + "import os\n", + "\n", + "class Testextract(unittest.TestCase):\n", + " def test_extractor(self):\n", + " input_file = '../xkcd2347/3k_valid_repos'\n", + " output_file = '3k_repodata_1hop'\n", + " git_hub_key = 'a4ff939e41a1843bb116b30b045ce8999f8a2d1e'\n", + " hop = 1\n", + " extractor_depend.getDependencies(input_file, output_file, git_hub_key, hop)\n", + "\n", + "if __name__ == \"__main__\":\n", + " unittest.main(argv=['first-arg-is-ignored'], exit=False)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +}