Metadata-Version: 2.4
Name: pyfrc
Version: 2026.0.1b1
Summary: Development tools library for python interpreter used for the FIRST Robotics Competition
Project-URL: Source code, https://github.com/robotpy/pyfrc
Author-email: Dustin Spicuzza <robotpy@googlegroups.com>
License: Copyright © 2012 Dustin Spicuzza and contributors
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in
        all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        THE SOFTWARE.
        
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.10
Requires-Dist: pint>=0.24.4
Requires-Dist: pytest-reraise
Requires-Dist: pytest>=3.9
Requires-Dist: robotpy-cli~=2026.0.1b1
Requires-Dist: tomli
Requires-Dist: wpilib<2027,>=2026.1.1b1
Description-Content-Type: text/markdown

pyfrc - RobotPy simulation and testing support
==============================================

pyfrc provides simulation and testing support for RobotPy projects.

This library contains a few primary parts:

* Integration with the pytest testing tool to allow you to easily write unit
  tests for your robot code.
* Various support for robot simulation
  
Documentation
=============

* RobotPy documentation: https://robotpy.readthedocs.io
* Installation: https://robotpy.readthedocs.io/en/stable/install/pyfrc.html

Contributing new changes
========================

pyfrc is intended to be a project that all members of the FIRST community can
quickly and easily contribute to. If you find a bug, or have an idea that you
think others can use:

1. [Fork this git repository](https://github.com/robotpy/robotpy/fork) to your github account
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push -u origin my-new-feature`)
5. Create new Pull Request on github


Authors
=======

Dustin Spicuzza (dustin@virtualroadside.com)

Contributors:

* Sam Rosenblum
* James Ward
* Christian Balcom
* Others

pyfrc is originally derived from (and supercedes) fake_wpilib, which was
developed with contributions from Sam Rosenblum and Team 2423. 
