forked from robotpy/pyfrc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
54 lines (49 loc) · 1.65 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
44
45
46
47
48
49
50
51
52
53
54
[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 = [email protected]
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
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development
Topic :: Software Development :: Testing
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
pytest>=3.9
pynetconsole>=2.0.2
pint>=0.11.0
importlib-metadata; python_version < '3.8'
robotpy-wpiutil>=2021,<2022
pyntcore>=2021,<2022
robotpy-hal>=2021,<2022
wpilib>=2021,<2022
robotpy-installer>=2021,<2022
setup_requires =
setuptools_scm == 5.0.*
python_requires = >=3.6
[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
deploy = pyfrc.mains.cli_deploy:PyFrcDeploy
profiler = pyfrc.mains.cli_profiler:PyFrcProfiler
sim = pyfrc.mains.cli_sim:PyFrcSim
test = pyfrc.mains.cli_test:PyFrcTest
undeploy = pyfrc.mains.cli_undeploy:PyFrcUndeploy