forked from scenic4RL/scenic4rl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (61 loc) · 1.6 KB
/
pyproject.toml
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "scenic"
version = "2.0.0"
description = "The Scenic scenario description language."
authors = [
"Daniel Fremont <[email protected]>",
"Edward Kim",
"Tommaso Dreossi",
"Shromona Ghosh",
"Xiangyu Yue",
"Alberto L. Sangiovanni-Vincentelli",
"Sanjit A. Seshia"
]
maintainers = ["Daniel Fremont <[email protected]>"]
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/BerkeleyLearnVerify/Scenic"
documentation = "https://scenic-lang.readthedocs.io"
classifiers = [
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
]
[tool.poetry.dependencies]
python = "^3.7"
dotmap = "^1.3.13"
shapely = "^1.7.0"
mapbox_earcut = "^0.12.10"
matplotlib = "^3.2.1"
scipy = "^1.4.1"
antlr4-python3-runtime = "~4.8"
numpy = "^1.18.2"
pynverse = "^0.1.4"
attrs = "^19.3.0"
wrapt = "^1.12.1"
pyproj = {version = "^2.6.0", optional = true}
pytest-randomly = {version = "^3.2.1", optional = true}
pytest = {version = "^6.0.0", optional = true}
sphinx = {version = "^3.1.0", optional = true}
tox = {version = "^3.14.0", optional = true}
sphinx_rtd_theme = {version = "^0.4.3", optional = true}
astor = {version = "^0.8.1", optional = true}
tqdm = "^4.59.0"
[tool.poetry.extras]
guideways = ["pyproj"]
dev = [
"pytest-randomly",
"pytest",
"sphinx",
"sphinx_rtd_theme",
"tox",
"pygments",
"astor",
"pyproj", # for running guideways modules
]
[tool.poetry.scripts]
scenic = 'scenic.__main__:dummy'
[tool.poetry.plugins."pygments.lexers"]
scenic = "scenic.syntax.pygment:ScenicLexer"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"