forked from winpython/winpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.ini
More file actions
924 lines (639 loc) · 24.6 KB
/
packages.ini
File metadata and controls
924 lines (639 loc) · 24.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
[adodbapi]
description=A pure Python package implementing PEP 249 DB-API using Microsoft ADO.
[aiohttp]
description=http client/server for asyncio
[alabaster]
description=A configurable sidebar-enabled Sphinx theme
[astroid]
description=Rebuild a new abstract syntax tree from Python's ast (required for pylint)
[astroml]
description=tools for machine learning and data mining in Astronomy
[babel]
description=Internationalization utilities
[backports_abc]
description=A backport of recent additions to the 'collections.abc' module.
[backports.ssl_match_hostname]
description=The ssl.match_hostname() function from Python 3.4
[baresql]
description=playing SQL directly on Python datas
[bcolz]
description=columnar and compressed data containers.
[beautifulsoup4]
description=Screen-scraping library
[blaze]
description=Blaze
[blosc]
description=Blosc data compressor
[bloscpack]
description=Command line interface to and serialization format for Blosc
[bokeh]
description=Statistical and novel interactive HTML plots for Python
[bottle]
description=Fast and simple WSGI-framework for small web-applications.
[bottleneck]
description=Fast NumPy array functions written in Cython
[bqplot]
description=Interactive plotting for the Jupyter notebook, using d3.js and ipywidgets.
[brewer2mpl]
description=Connect colorbrewer2.org color maps to Python and matplotlib
[castra]
description=On-disk partitioned store
[cchardet]
description=Universal encoding detector. This library is faster than chardet.
[certifi]
description=Python package for providing Mozilla's CA Bundle.
[cffi]
description=Foreign Function Interface for Python calling C code.
[chardet]
description=Universal encoding detector for Python 2 and 3
[click]
description=A simple wrapper around optparse for powerful command line utilities.
[cloudpickle]
description=Extended pickling support for Python objects
[colorama]
description=Cross-platform colored terminal text
[configparser]
description=This library brings the updated configparser from Python 3.5 to Python 2.6-3.5.
[corner]
description=Make some beautiful corner plots of samples.
[coverage]
description=Code coverage measurement for Python
[cvxopt]
description=Convex optimization library
url=http://abel.ee.ucla.edu/cvxopt
category=scientific
[cx_freeze]
description=Deployment tool which converts Python scripts into stand-alone Windows executables (i.e. target machine does not require Python or any other library to be installed)
url=http://cx-freeze.sourceforge.net
category=deploy
[cycler]
description=Composable style cycles
[cyordereddict]
description=Cython implementation of Python's collections.OrderedDict
[cython]
description=Cython is a language that makes writing C extensions for the Python language as easy as Python
url=http://www.cython.org
category=util
[cytoolz]
description=Cython implementation of Toolz: High performance functional utilities
[datashape]
description=A data description language
[db.py]
description=a db package that doesn't suck
[dask]
description=Minimal task scheduling abstraction
[dill]
description=serialize all of python (almost)
[distribute]
description=Download, build, install, upgrade, and uninstall Python packages - easily
category=deploy
[distributed]
description=Distributed computing
[decorator]
description=Better living through Python with decorators
[docopt]
description=Pythonic argument parser, that will make you smile
[docutils]
description=Text processing system for processing plaintext documentation into useful formats, such as HTML or LaTeX (includes reStructuredText)
url=http://docutils.sourceforge.net
category=docgen
[egenix-mx-base]
description=eGenix.com mx Base Distribution: mxDateTime, mxTextTools, mxProxy, mxBeeBase, mxURL, mxUID, mxStack, mxQueue and mxTools
url=http://www.egenix.com/products/python/mxBase
category=util
[emcee]
description=Kick ass affine-invariant ensemble MCMC sampling
[enum34]
description=Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7, 2.6, 2.5, and 2.4
[flask]
description=A microframework based on Werkzeug, Jinja2 and good intentions
[flask-cors]
description=A Flask extension adding a decorator for CORS support
[flexx]
description=Pure Python toolkit for creating GUI's using web technology.
[fonttools]
description=Tools to manipulate font files
[formlayout]
description=Module for creating form dialogs/widgets to edit various type of parameters without having to write any GUI code
url=http://formlayout.googlecode.com
category=gui
[funcsigs]
description=Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+
[functools32]
description=Backport of the functools module from Python 3.2.3 for use on 2.7 and PyPy.
[gensim]
description=Python framework for fast Vector Space Modelling
[geopy]
description=Python Geocoding Toolbox
[ggplot]
description=ggplot for python
url=https://github.com/yhat/ggplot
category=plot
[ghost.py]
description=Webkit based webclient.
[gr]
description=Python visualization framework
[graphviz]
description=Simple Python interface for Graphviz
[greenlet]
description=Lightweight in-process concurrent programming
[gridmap]
description=Easily map Python functions onto a cluster using a DRMAA-compatible grid engine like Sun Grid Engine (SGE).
[guidata]
description=Automatically generated graphical user interfaces for easy data set edition and display
url=http://packages.python.org/guidata
category=gui
[guiqwt]
description=Efficient curve/image plotting and other GUI tools for scientific data processing software development
url=http://packages.python.org/guiqwt
category=plot
[holoviews]
description=Composable, declarative data structures for building complex visualizations easily.
[husl]
description=Human-friendly HSL (Hue-Saturation-Lightness)
[html5lib]
description=HTML parser based on the WHATWG HTML specification
[h5py]
description=General-purpose Python interface to HDF5 files (unlike PyTables, h5py provides direct access to the full HDF5 C library)
[ipykernel]
description=IPython Kernel for Jupyter
[idlex]
description=IDLE Extensions for Python
[ipyparallel]
description=Interactive Parallel Computing with IPython
[ipython]
description=Enhanced Python shell
[ipython-genutils]
description=Vestigial utilities from IPython
[ipython-sql]
description=RDBMS access via IPython
[ipywidgets]
description=IPython HTML widgets for Jupyter
[itsdangerous]
description=Various helpers to pass trusted data to untrusted environments and back.
[jedi]
description=An autocompletion tool for Python that can be used for text editors
[jinja2]
description=Sandboxed template engine (provides a Django-like non-XML syntax and compiles templates into executable python code)
[joblib]
description=Lightweight pipelining: using Python functions as pipeline jobs.
[jsonschema]
description=An implementation of JSON Schema validation for Python
[julia]
description=Python interface to the Julia language
[jupyter]
description=Jupyter metapackage. Install all the Jupyter components in one go.
[jupyter_client]
description=Jupyter protocol implementation and client libraries
[jupyter_console]
description=Jupyter terminal console
[jupyter_core]
description=Jupyter core package. A base package on which Jupyter projects rely.
[keras]
description=Theano-based Deep Learning library
[kivy]
description=A software library for rapid development of hardware-accelerated multitouch applications.
[lasagne]
description=neural network tools for Theano
[lazy-object-proxy]
description=A fast and thorough lazy object proxy.
[libpython]
description=The MinGW import library for Python
[lightning-python]
description=A Python client library for the Lightning data visualization server
[llvmlite]
description=lightweight wrapper around basic LLVM functionality
[llvmpy]
description=Python bindings for LLVM
[lmfit]
description=Least-Squares Minimization with Bounds and Constraints
[lock]
description=spyder lock
[locket]
description=File-based locks for Python for Linux and Windows
[locket.py]
description=File-based locks for Python for Linux and Windows
[logilab-astng]
description=Rebuild a new abstract syntax tree from Python's ast (required for pylint)
[logilab-common]
description=Collection of low-level Python packages and modules used by Logilab projects (required for pylint)
[logutils]
description=Logging utilities
[lxml]
description=Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
[mahotas]
description=Computer Vision library
category=improc
[markdown]
description=Python implementation of Markdown.
[markdown2]
description=A fast and complete Python implementation of Markdown
[markupsafe]
description=Implements a XML/HTML/XHTML Markup safe string for Python
[matplotlib]
description=2D plotting library (embeddable in GUIs created with PyQt)
[mingwpy]
description=the python friendly windows compiler toolchain
url=https://anaconda.org/carlkl/mingwpy
[mistune]
description=The fastest markdown parser in pure Python, inspired by marked.
[mpldatacursor]
description=Interactive data cursors for Matplotlib
[mpld3]
description=D3 Viewer for Matplotlib
[multipledispatch]
description=A relatively sane approach to multiple dispatch in Python
[mxbase]
description=eGenix.com mx Base Distribution: mxDateTime, mxTextTools, mxProxy, mxBeeBase, mxURL, mxUID, mxStack, mxQueue and mxTools
url=http://www.egenix.com/products/python/mxBase
category=util
[mysql-connector-python]
description=MySQL driver written in Python
[nbbrowserpdf]
description=LaTeX-free PDF generation from Jupyter Notebooks
[nbconvert]
description=Converting Jupyter Notebooks
[nbformat]
description=The Jupyter Notebook format
[nbgrader]
description=A system for assigning and grading notebooks.
[nbpresent]
description=Next generation slides from Jupyter Notebooks
[netcdf4]
description=python/numpy interface to netCDF library (versions 3 and 4)
[networkx]
description=Python package for creating and manipulating graphs and networks
category=dataproc
[nltk]
description=The Natural Language Toolkit (NLTK) is a Python package for natural language processing.
[nose]
description=nose is a discovery-based unittest extension (e.g. NumPy test module is using nose)
url=http://somethingaboutorange.com/mrl/projects/nose
[notebook]
description=# Jupyter Notebook
[numba]
description=compiling Python code using LLVM
[numexpr]
description=Fast evaluation of array expressions elementwise by using a vector-based virtual machine
[numpy]
description=NumPy: multidimensional array processing for numbers, strings, records and objects (SciPy''s core module)
url=http://numpy.scipy.org/
category=scientific
[numpydoc]
description=Sphinx extension to support docstrings in Numpy format
[oct2py]
description=Python to GNU Octave bridge --> run m-files from python.
[odo]
description=Data migration in Python
[openpyxl]
description=A Python library to read/write Excel 2007 xlsx/xlsm files
[palladium]
description=Framework for setting up predictive analytics services
[pandas]
description=Powerful data structures for data analysis, time series and statistics
category=dataproc
[pandasql]
description=sqldf for pandas
[pandas-datareader]
description=Data readers extracted from the pandas codebase,should be compatible with recent pandas versions
[pandas-ply]
description=functional data manipulation for pandas
[param]
description=Declarative Python programming using Parameters.
[paramiko]
description=SSH2 protocol library
[partd]
description=Appendable key-value storage
[path.py]
description=A module wrapper for os.path
[patsy]
description=Describing statistical models using symbolic formulas
category=dataoric
[pep8]
description=Python style guide checker
[pg8000]
description=PostgreSQL interface library
[pkginfo]
description=Query metadatdata from sdists / bdists / installed packages.
[pickleshare]
description=Tiny 'shelve'-like database with concurrency support
[pil]
description=Python Imaging Library - (basic) Image processing library
[pillow]
description=Python Imaging Library (fork)
category=improc
[pip]
description=A tool for installing and managing Python packages
category=deploy
[ply]
description=Python Lex & Yacc
[polygon2]
description=Polygon2 is a Python-2 package that handles polygonal shapes in 2D
[polygon3]
description=Polygon3 is a Python-3 package that handles polygonal shapes in 2D
[prettytable]
description=A simple Python library for easily displaying tabular data in a visually appealing ASCII table format.
[prompt_toolkit]
description=Library for building powerful interactive command lines in Python
[psutil]
description=Provides an interface for retrieving information on all running processes and system utilization (CPU, disk, memory, network) in a portable way
url=http://code.google.com/p/psutil
category=util
[psycopg2]
description=Python-PostgreSQL Database Adapter
[ptpython]
description=Python REPL build on top of prompt_toolkit
[ptyprocess]
description=Run a subprocess in a pseudo terminal
[pulp]
description=PuLP is an LP modeler written in python. PuLP can generate MPS or LP files and call GLPK, COIN CLP/CBC, CPLEX, and GUROBI to solve linear problems
[py]
description=library with cross-python path, ini-parsing, io, code, log facilities
[pyaudio]
description=Bindings for PortAudio v19, the cross-platform audio input/output stream library.
[pybars3]
description=Handlebars.js templating for Python 3 and 2
[pycairo]
description=Python bindings for the cairo library
[pycosat]
description=bindings to picosat (a SAT solver)
[pycparser]
description=C parser in Python
[pydicom]
description=Pure python package for working with DICOM files (medical imaging)
url=http://code.google.com/p/pydicom
category=improc
[pyeda]
description=PyEDA is a Python library for electronic design automation.
[pyflakes]
description=passive checker of Python programs
[pygame]
description=Pygame gives multimedia to python.
[pygments]
description=Generic syntax highlighter for general use in all kinds of software
url=http://pygments.org
[pygraphviz]
description=Python interface to Graphviz graph drawing package
https://github.com/pygraphviz/pygraphviz
[pyhdf]
description=Python interface to HDF4 files (Hierarchical Data Format version 4)
category=dataproc
[PyHive]
description=PyHive is a collection of Python DB-API and SQLAlchemy interfaces for Presto and Hive.
[pylearn2]
description=A Machine Learning library based on Theano
[pylint]
description=Logilab code analysis module: analyzes Python source code looking for bugs and signs of poor quality
url=http://www.logilab.org/project/pylint
category=util
[pymc]
description=Markov Chain Monte Carlo sampling toolkit.
[pymeta3]
description=Pattern-matching language based on Meta for Python 3 and 2
[pymongo]
description=Python driver for MongoDB <http://www.mongodb.org>
[pyodbc]
description=DB API Module for ODBC
[pyopengl]
description=Cross platform Python binding to OpenGL and related APIs
url=http://pyopengl.sourceforge.net
category=visu3d
[pypdf2]
description=PDF toolkitPDF toolkit
[pyparsing]
description=A Python Parsing Module
url=http://pyparsing.wikispaces.com/
category=util
[pyqt]
description=Cross-platform Application Framework: GUI, widgets, SQL, OpenGL, XML, Unicode...
url=http://www.riverbankcomputing.co.uk/software/pyqt/intro
category=gui
[pyqtgraph]
description=Scientific Graphics and GUI Library for Python
[pyqt4]
description=Python bindings for the Qt cross platform GUI toolkit
url=http://www.riverbankcomputing.co.uk/software/pyqt/intro
category=gui
[pyqt5]
description=Python bindings for the Qt cross platform GUI toolkit
url=http://www.riverbankcomputing.co.uk/software/pyqt/intro
category=gui
[pyqtdoc]
description=PyQtdoc installs Qt documentation for PyQt4
[pyqtdesignerplugins]
description=PyQtdesignerplugins installs Python Qt designer plugins (Matplotlib, guiqwt, etc.) for PyQt4
[pyqwt]
description=2D plotting library (set of Python bindings for the Qwt library featuring fast plotting)
[pyreadline]
description=IPython needs this module to display color text in Windows command window
[pyserial]
description=Library encapsulating the access for the serial port
[pyside]
description=Python binding of the cross-platform GUI toolkit Qt
[pystache]
description=Mustache for Python
[pytest]
description=pytest: simple powerful testing with Python
[python-crfsuite]
description=Python binding for CRFsuite
[python-dateutil]
description=Powerful extensions to the standard datetime module
url=http://labix.org/python-dateutil
category=util
[python-hdf4]
description=Python-HDF4: Python interface to the NCSA HDF4 library
[python-igraph]
description=High performance graph data structures and algorithms
[python-qwt]
description=Qt plotting widgets for Python
[pythonqwt]
description=Qt plotting widgets for Python
[python-twitter]
description=A Python wrapper around the Twitter API
[pytz]
description=World Timezone Definitions for Python
[pyvisa]
description=Control all kinds of measurement equipment through various busses (GPIB, RS232, USB)
[pywavelets]
description=Wavelet transforms module
[pywin32]
description=Python library for Windows
[pyyaml]
description=YAML parser and emitter for Python
[pyzmq]
description=Lightweight and super-fast messaging based on ZeroMQ library (required for IPython Qt console)
[qtawesome]
description=FontAwesome icons in PyQt and PySide applications
[qtconsole]
description=Jupyter Qt console
[qtpy]
description=Provides an abstraction layer on top of the various Qt bindings (PyQt5, PyQt4 and PySide) and additional custom QWidgets.
[redis]
description=Python client for Redis key-value store
[reportlab]
description=The PDF generation library
url=http://www.reportlab.org
category=docgen
[requests]
description=Requests is an Apache2 Licensed HTTP library, written in Python, for human beings.
[requests_toolbelt]
description=A utility belt for advanced users of python-requests
[requests_oauthlib]
description=OAuthlib authentication support for Requests.
[rodeo]
description=an ide for data analysis in python
[rope]
description=a python refactoring library...
[rope_py3k]
description=a python refactoring library...
[rpy2]
description=Python interface to the R language (embedded R)
[rst2pdf]
description=Tool for transforming reStructuredText to PDF using ReportLab
[runipy]
description=Run IPython notebooks from the command line
[rx]
description=Reactive Extensions (Rx) for Python
[scidoc]
description=Scidoc installs scientific libraries documentation (NumPy, SciPy, ...)
[scikit-learn]
description=A set of Python modules for machine learning and data mining
category=scientific
[scikits.audiolab]
description=Audio file I/O using NumPy arrays
category=dataproc
[scikits.timeseries]
description=Time series manipulation
category=dataproc
[scikit-image]
description=Image processing toolbox for SciPy
category=improc
[scilab2py]
description=Python to Scilab bridge
[scilab_kernel]
description=A Scilab kernel for IPython
[scipy]
description=SciPy: Scientific Library for Python (advanced math, signal processing, optimization, statistics, ...)
url=http://www.scipy.org
category=scientific
[scrapy]
description=A high-level Python Screen Scraping framework
[seaborn]
description=statistical data visualization
[setuptools]
description=Download, build, install, upgrade, and uninstall Python packages - easily
category=deploy
[sframe]
description=SFrame is an scalable, out-of-core dataframe, which allows you to work with datasets that are larger than the amount of RAM on your system.
[simplegeneric]
description=Simple generic functions (similar to Python's own len(), pickle.dump(), etc.)
[simplejson]
description=Simple, fast, extensible JSON (JavaScript Object Notation) encoder/decoder
[singledispatch]
description=This library brings functools.singledispatch from Python 3.4 to Python 2.6-3.3
[six]
description=Python 2 and 3 compatibility utilities
category=util
[sklearn-theano]
description=Scikit-learn compatible tools using theano
[skll]
description=SciKit-Learn Laboratory makes it easier to run machinelearning experiments with scikit-learn.
[snowballstemmer]
description=This package provides 16 stemmer algorithms (15 + Poerter English stemmer) generated from Snowball algorithms.
[sphinx]
description=Tool for generating documentation which uses reStructuredText as its markup language
[sphinx_rtd_theme]
description=ReadTheDocs.org theme for Sphinx, 2013 version.
[sqlalchemy]
description=SQL Toolkit and Object Relational Mapper
url=http://www.sqlalchemy.org
[sqlparse]
description=Non-validating SQL parser
[spyder]
description=Scientific PYthon Development EnviRonment: designed for interactive computing and data visualisation with a simple and intuitive user interface
[spyder.line_profiler]
description=a plugin to run the python line profiler from within the spyder editor
[spyder.memory_profiler]
description=a plugin to run the python memory_profiler from within the spyder editor.
[spyder.autopep8]
description=A plugin to run the autopep8 python linter from within the spyder editor
[sqlite_bro]
description=a graphic SQLite Client in 1 Python file
[statsmodels]
description=Statistical computations and models for use with SciPy
[supersmoother]
description=Python implementation of Friedman's Supersmoother
[sympy]
description=Symbolic Mathematics Library
[tables]
description=Package based on HDF5 library for managing hierarchical datasets (extremely large amounts of data)
url=http://www.pytables.org
category=dataproc
[terminado]
description=Terminals served to term.js using Tornado websockets
[theano]
description=Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs.
[toolz]
description=List processing tools and functional utilities
[tornado]
description=Scalable, non-blocking web server and tools (required for IPython notebook)
[tqdm]
description=A Simple Python Progress Meter
[traitlets]
description=Traitlets Python config system
[ttfquery]
description=FontTools-based package for querying system fonts
[tweepy]
description=Twitter library for python
[twine]
description=Collection of utilities for interacting with PyPI
[twitter]
description=An API and command-line toolset for Twitter (twitter.com)
[twython]
description=Actively maintained, pure Python wrapper for the Twitter API. Supports both normal and streaming Twitter APIs
[usjon]
description=Ultra fast JSON encoder and decoder for Python
[vispy]
description=Interactive visualization in Python
[vitables]
description=Graphical tool for browsing and editing files in both HDF5 and PyTables formats
[vpython]
description=A free, open-source module for producing real-time 3D scenes with Python
url=http://www.vpython.org
[vtk]
description=Open-source software system for visualization, 3D graphics, volume rendering and image processing
[wcwidth]
description=Measures number of Terminal column cells of wide-character codes
[werkzeug]
description=The Swiss Army knife of Python web development
[wheel]
description=A built-package format for Python.
[wheelhouse-uploader]
description=Upload wheels to any cloud storage supported by Libcloud
[whoosh]
description=Fast, pure-Python full text indexing, search, and spell checking library.
[winpython]
description=WinPython distribution tools, including WPPM (package manager)
url=http://winpython.github.io/
[wordcloud]
description=A little word cloud generator
[wpca]
description=Weighted Principal Component Analysis
[wrapt]
description=A Python module for decorators, wrappers and monkey patching.
[wsgiref]
description=WSGI (PEP 333) Reference Library
[xarray]
description=N-D labeled arrays and datasets in Python
[xlrd]
description=Extract data from Microsoft Excel spreadsheet files
category=dataproc
[xlsxwriter]
description=A Python module for creating Excel XLSX files.
[xlwt]
description=Create spreadsheet files compatible with Microsoft Excel 97/2000/XP/2003 files, OpenOffice.org Calc, and Gnumeric
category=dataproc
[xonsh]
description=an exotic, usable shell
[xray]
description=N-D labeled arrays and datasets in Python