-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.cfg
43 lines (39 loc) · 1.25 KB
/
setup.cfg
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
[metadata]
name = pyfrc
description = Development tools library for python interpreter used for the FIRST Robotics Competition
long_description = file: README.md
long_description_content_type = text/markdown
author = Dustin Spicuzza
author_email = robotpy@googlegroups.com
url = https://github.com/robotpy/pyfrc
license = BSD-3-Clause
# Include the license file in wheels.
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
Topic :: Software Development :: Testing
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
pytest>=3.9
pytest-reraise
pint>=0.11.0
wpilib>=2025.0.0b1,<2026
robotpy-cli~=2024.0
setup_requires =
setuptools_scm > 6
python_requires = >=3.8
[options.entry_points]
robotpy =
add-tests = pyfrc.mains.cli_add_tests:PyFrcAddTests
coverage = pyfrc.mains.cli_coverage:PyFrcCoverage
create-physics = pyfrc.mains.cli_create_physics:PyFrcCreatePhysics
profiler = pyfrc.mains.cli_profiler:PyFrcProfiler
sim = pyfrc.mains.cli_sim:PyFrcSim
test = pyfrc.mains.cli_test:PyFrcTest