Metadata-Version: 2.1
Name: robotpy
Version: 2020.1.3
Summary: Meta package to make installing robotpy easier
Home-page: https://github.com/robotpy/robotpy-meta
Author: RobotPy Development Team
Author-email: robotpy@googlegroups.com
License: BSD-3-Clause
Description: RobotPy meta package
        ====================
        
        Easy to remember desktop installation for RobotPy! For more information
        about RobotPy, see the [documentation](https://robotpy.readthedocs.io).
        
        The instructions below work on a normal computer. For RoboRIO instructions,
        see [the documentatation](https://robotpy.readthedocs.io/en/stable/install/robot.html#install-robotpy).
        
        
        Install core RobotPy components
        -------------------------------
        
        On Windows:
        
        ```
        py -3 -m pip install -U robotpy
        ```
        
        On Linux/OSX:
        
        ```
        pip3 install -U robotpy
        ```
        
        Install optional RobotPy components
        -----------------------------------
        
        There are several categories of optional components that you can install. This
        uses the standard pip 'extras' installation functionality. The available
        categories are:
        
        * adi
        * commands
        * ctre
        * navx
        * rev
        
        Let's say that you wanted to install the latest version of the NavX software
        along with command based programming. You would do this:
        
        On Windows:
        
        ```
        py -3 -m pip install -U robotpy[navx,commands]
        ```
        
        On Linux/OSX:
        
        ```
        pip3 install -U robotpy[navx,commands]
        ```
        
        Install all optional components
        -------------------------------
        
        There is a special 'all' category which will install the core components
        and all of the optional categories.
        
        On Windows:
        
        ```
        py -3 -m pip install -U robotpy[all]
        ```
        
        On Linux/OSX:
        
        ```
        pip3 install -U robotpy[all]
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Testing
Provides-Extra: commands
Provides-Extra: rev
Provides-Extra: ctre
Provides-Extra: navx
Provides-Extra: adi
Provides-Extra: all
