Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ec972ce

Browse files
committed
Merge pull request #308 from stonebig/master
package names and renamings
2 parents 6cbed07 + 8ae773b commit ec972ce

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

winpython/data/packages.ini

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ description=columnar and compressed data containers.
3434
[beautifulsoup4]
3535
description=Screen-scraping library
3636
37+
[bitarray]
38+
description=efficient arrays of booleans -- C extension
39+
3740
[blaze]
3841
description=Blaze
3942
@@ -127,6 +130,9 @@ description=a db package that doesn't suck
127130
[dask]
128131
description=Minimal task scheduling abstraction
129132

133+
[datafabric]
134+
description=Distributed In-Memory system for analytics
135+
130136
[dill]
131137
description=serialize all of python (almost)
132138

@@ -151,12 +157,14 @@ description=Text processing system for processing plaintext documentation into u
151157
url=http://docutils.sourceforge.net
152158
category=docgen
153159

160+
[dynd]
161+
description=Python exposure of DyND
162+
154163
[egenix-mx-base]
155164
description=eGenix.com mx Base Distribution: mxDateTime, mxTextTools, mxProxy, mxBeeBase, mxURL, mxUID, mxStack, mxQueue and mxTools
156165
url=http://www.egenix.com/products/python/mxBase
157166
category=util
158167

159-
160168
[emcee]
161169
description=Kick ass affine-invariant ensemble MCMC sampling
162170

@@ -222,6 +230,9 @@ description=Efficient curve/image plotting and other GUI tools for scientific da
222230
url=http://packages.python.org/guiqwt
223231
category=plot
224232
233+
[hdfs]
234+
description=HdfsCLI: API and command line interface for HDFS.
235+
225236
[holoviews]
226237
description=Composable, declarative data structures for building complex visualizations easily.
227238
@@ -234,6 +245,9 @@ description=HTML parser based on the WHATWG HTML specification
234245
[h5py]
235246
description=General-purpose Python interface to HDF5 files (unlike PyTables, h5py provides direct access to the full HDF5 C library)
236247
248+
[ibis-framework]
249+
description=Productivity-centric Python Big Data Framework
250+
237251
[ipykernel]
238252
description=IPython Kernel for Jupyter
239253
@@ -362,7 +376,7 @@ url=https://anaconda.org/carlkl/mingwpy
362376
[mistune]
363377
description=The fastest markdown parser in pure Python, inspired by marked.
364378

365-
[MKL-service]
379+
[mkl-service]
366380
description=Python bindings to some MKL service functions
367381
url=https://github.com/ContinuumIO/mkl-service
368382

@@ -595,6 +609,9 @@ category=util
595609
[pymc]
596610
description=Markov Chain Monte Carlo sampling toolkit.
597611

612+
[pymc3]
613+
description=Markov Chain Monte Carlo sampling toolkit.
614+
598615
[pymeta3]
599616
description=Pattern-matching language based on Meta for Python 3 and 2
600617

@@ -756,6 +773,9 @@ description=Run IPython notebooks from the command line
756773
[rx]
757774
description=Reactive Extensions (Rx) for Python
758775

776+
[sasl]
777+
description=Cyrus-SASL bindings for Python
778+
759779
[scidoc]
760780
description=Scidoc installs scientific libraries documentation (NumPy, SciPy, ...)
761781

@@ -775,6 +795,9 @@ category=dataproc
775795
description=Image processing toolbox for SciPy
776796
category=improc
777797

798+
[scikit-neuralnetwork]
799+
description=Deep neural networks without the learning cliff! A wrapper library compatible with scikit-learn.
800+
778801
[scilab2py]
779802
description=Python to Scilab bridge
780803

@@ -824,6 +847,9 @@ description=SciKit-Learn Laboratory makes it easier to run machinelearning exper
824847
[snowballstemmer]
825848
description=This package provides 16 stemmer algorithms (15 + Poerter English stemmer) generated from Snowball algorithms.
826849
850+
[spacy]
851+
description=Industrial-strength NLP
852+
827853
[sphinx]
828854
description=Tool for generating documentation which uses reStructuredText as its markup language
829855
@@ -872,6 +898,12 @@ description=Terminals served to term.js using Tornado websockets
872898
[theano]
873899
description=Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs.
874900

901+
[thriftpy]
902+
description=Pure python implementation of Apache Thrift.
903+
904+
[thrift-sasl]
905+
description=hrift SASL Python module that implements SASL transports for Thrift
906+
875907
[toolz]
876908
description=List processing tools and functional utilities
877909

winpython/wppm.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,11 @@ def patch_standard_packages(self, package_name='', to_movable=True):
498498
r"\Lib\site-packages\spyderlib\config\main.py"),
499499
"'check_updates_on_startup': True,",
500500
"'check_updates_on_startup': False,")
501+
utils.patch_sourcefile(
502+
self.target + (
503+
r"\Lib\site-packages\spyder\config\main.py"),
504+
"'check_updates_on_startup': True,",
505+
"'check_updates_on_startup': False,")
501506

502507
# workaround bad installers
503508
if package_name.lower() == "numba":

0 commit comments

Comments
 (0)