Metadata-Version: 2.4
Name: scenic
Version: 3.1.0
Summary: The Scenic scenario description language.
Author: Daniel Fremont, Eric Vin, Shun Kashiwa, Edward Kim, Tommaso Dreossi, Shromona Ghosh, Xiangyu Yue, Alberto L. Sangiovanni-Vincentelli, Sanjit A. Seshia
Maintainer-email: Daniel Fremont <dfremont@ucsc.edu>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
License-File: LICENSE
Requires-Dist: antlr4-python3-runtime ~= 4.11
Requires-Dist: attrs >= 19.3.0
Requires-Dist: dotmap ~= 1.3
Requires-Dist: mapbox_earcut >= 0.12.10
Requires-Dist: matplotlib ~= 3.2
Requires-Dist: manifold3d >= 2.5.1
Requires-Dist: networkx >= 2.6
Requires-Dist: numpy >= 1.24
Requires-Dist: opencv-python ~= 4.5
Requires-Dist: pegen >= 0.3.0
Requires-Dist: pillow >= 9.1
Requires-Dist: pygame >= 2.1.3.dev8, <3; python_version >= "3.11"
Requires-Dist: pygame ~= 2.0; python_version < "3.11"
Requires-Dist: pyglet >= 1.5, <= 1.5.26
Requires-Dist: python-fcl >= 0.7
Requires-Dist: Rtree ~= 1.0
Requires-Dist: rv-ltl ~= 0.1
Requires-Dist: scikit-image ~= 0.21
Requires-Dist: scipy ~= 1.7
Requires-Dist: shapely ~= 2.0
Requires-Dist: trimesh >=4.6.0, <5
Requires-Dist: scenic[test-full] ; extra == "dev"
Requires-Dist: black ~= 25.1.0 ; extra == "dev"
Requires-Dist: isort ~= 5.12.0 ; extra == "dev"
Requires-Dist: pre-commit ~= 3.0 ; extra == "dev"
Requires-Dist: pytest-cov >= 3.0.0 ; extra == "dev"
Requires-Dist: tox ~= 4.0 ; extra == "dev"
Requires-Dist: pyproj ~= 3.0 ; extra == "guideways" and ( python_version < "3.10")
Requires-Dist: pyproj ~= 3.3 ; extra == "guideways" and ( python_version >= "3.10")
Requires-Dist: metadrive-simulator >= 0.4.3 ; extra == "metadrive"
Requires-Dist: sumolib >= 1.21.0 ; extra == "metadrive"
Requires-Dist: pytest >= 7.0.0, <9 ; extra == "test"
Requires-Dist: pytest-cov >= 3.0.0 ; extra == "test"
Requires-Dist: pytest-randomly ~= 3.2 ; extra == "test"
Requires-Dist: scenic[test] ; extra == "test-full"
Requires-Dist: scenic[guideways] ; extra == "test-full"
Requires-Dist: scenic[metadrive] ; extra == "test-full" and ( python_version < "3.12")
Requires-Dist: astor >= 0.8.1 ; extra == "test-full"
Requires-Dist: carla >= 0.9.12 ; extra == "test-full" and ( python_version <= "3.10" and (platform_system == "Linux" or platform_system == "Windows"))
Requires-Dist: dill ; extra == "test-full"
Requires-Dist: exceptiongroup ; extra == "test-full"
Requires-Dist: inflect ~= 5.5 ; extra == "test-full"
Requires-Dist: pygments ~= 2.11 ; extra == "test-full"
Requires-Dist: sphinx >= 6.2.0, <7.2.0 ; extra == "test-full"
Requires-Dist: sphinx_rtd_theme >= 0.5.2 ; extra == "test-full"
Requires-Dist: sphinx-tabs ~= 3.4.1 ; extra == "test-full"
Requires-Dist: verifai >= 2.1.0b1 ; extra == "test-full"
Project-URL: Documentation, https://docs.scenic-lang.org
Project-URL: Homepage, https://scenic-lang.org/
Project-URL: Repository, https://github.com/BerkeleyLearnVerify/Scenic
Provides-Extra: dev
Provides-Extra: guideways
Provides-Extra: metadrive
Provides-Extra: test
Provides-Extra: test-full

[<img src="https://docs.scenic-lang.org/en/latest/_static/logo-full.svg" alt="Scenic Logo" height="100">](https://scenic-lang.org/)

[![Documentation Status](https://readthedocs.org/projects/scenic-lang/badge/?version=latest)](https://docs.scenic-lang.org/en/latest/?badge=latest)
[![Tests Status](https://github.com/BerkeleyLearnVerify/Scenic/actions/workflows/run-tests.yml/badge.svg)](https://github.com/BerkeleyLearnVerify/Scenic/actions/workflows/run-tests.yml)
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)

A compiler and scenario generator for Scenic, a domain-specific probabilistic programming language for modeling the environments of cyber-physical systems.
Please see the [documentation](https://docs.scenic-lang.org/) for installation instructions, as well as tutorials and other information about the Scenic language, its implementation, and its interfaces to various simulators.

For an overview of the language and some of its applications, see our [2022 journal paper](https://link.springer.com/article/10.1007/s10994-021-06120-5) on Scenic 2, which extends our [PLDI 2019 paper](https://arxiv.org/abs/1809.09310) on Scenic 1.
The new syntax and features of Scenic 3 are described in our [CAV 2023 paper](https://arxiv.org/abs/2307.03325).
Our [Publications](https://docs.scenic-lang.org/en/latest/publications.html) page lists additional relevant publications.

Scenic was initially designed and implemented at UC Berkeley by Daniel J. Fremont, Tommaso Dreossi, Shromona Ghosh, Xiangyu Yue, Alberto L. Sangiovanni-Vincentelli, and Sanjit A. Seshia.
Subsequent work has been done primarily at UC Berkeley and UC Santa Cruz: in particular, Edward Kim made major contributions to Scenic 2, and Eric Vin, Shun Kashiwa, Matthew Rhea, and Ellen Kalvan to Scenic 3.
Please see our [Credits](https://docs.scenic-lang.org/en/latest/credits.html) page for details and more contributors.

If you have any problems using Scenic, please submit an issue to [our GitHub repository](https://github.com/BerkeleyLearnVerify/Scenic) or start a conversation on our [community forum](https://forum.scenic-lang.org/).

The repository is organized as follows:

* the _src/scenic_ directory contains the package proper;
* the _examples_ directory has many examples of Scenic programs;
* the _assets_ directory contains meshes and other resources used by the examples and tests;
* the _docs_ directory contains the sources for the documentation;
* the _tests_ directory contains tests for the Scenic tool.

