Metadata-Version: 2.1
Name: robotpy
Version: 2020.1
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
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
Requires-Dist: robotpy-wpiutil (<2021.0.0.0,>=2020.3.2.1)
Requires-Dist: pyntcore (<2021.0.0.0,>=2020.3.2.1)
Requires-Dist: robotpy-hal (<2021.0.0.0,>=2020.3.2.5)
Requires-Dist: wpilib (<2021.0.0.0,>=2020.3.2.4)
Requires-Dist: robotpy-wpilib-utilities (<2021.0.0.0,>=2020.2.0)
Requires-Dist: pyfrc (<2021.0.0.0,>=2020.1.5) ; platform_machine != "armv7l"
Provides-Extra: adi
Requires-Dist: robotpy-adi (<2021.0.0,>=2020.0.0) ; extra == 'adi'
Provides-Extra: all
Requires-Dist: robotpy-wpiutil (<2021.0.0.0,>=2020.3.2.1) ; extra == 'all'
Requires-Dist: robotpy-commands-v1 (<2021.0.0,>=2020.3.2.0) ; extra == 'all'
Requires-Dist: robotpy-adi (<2021.0.0,>=2020.0.0) ; extra == 'all'
Requires-Dist: robotpy-rev (<2021.0.0,>=2020.1.1) ; extra == 'all'
Requires-Dist: robotpy-hal (<2021.0.0.0,>=2020.3.2.5) ; extra == 'all'
Requires-Dist: wpilib (<2021.0.0.0,>=2020.3.2.4) ; extra == 'all'
Requires-Dist: robotpy-wpilib-utilities (<2021.0.0.0,>=2020.2.0) ; extra == 'all'
Requires-Dist: robotpy-navx (<2021.0.0,>=2020.2.3) ; extra == 'all'
Requires-Dist: pyntcore (<2021.0.0.0,>=2020.3.2.1) ; extra == 'all'
Requires-Dist: robotpy-ctre (<2021.0.0,>=2020.3.1) ; extra == 'all'
Requires-Dist: robotpy-rev-color (<2021.0.0,>=2020.1.2.0) ; extra == 'all'
Requires-Dist: pyfrc (<2021.0.0.0,>=2020.1.5) ; (platform_machine != "armv7l") and extra == 'all'
Provides-Extra: commands
Requires-Dist: robotpy-commands-v1 (<2021.0.0,>=2020.3.2.0) ; extra == 'commands'
Provides-Extra: ctre
Requires-Dist: robotpy-ctre (<2021.0.0,>=2020.3.1) ; extra == 'ctre'
Provides-Extra: navx
Requires-Dist: robotpy-navx (<2021.0.0,>=2020.2.3) ; extra == 'navx'
Provides-Extra: rev
Requires-Dist: robotpy-rev (<2021.0.0,>=2020.1.1) ; extra == 'rev'
Requires-Dist: robotpy-rev-color (<2021.0.0,>=2020.1.2.0) ; extra == 'rev'

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]
```


