-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
94 lines (85 loc) · 2.17 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = [
"setuptools>=42",
"setuptools-antlr",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "isla-solver"
authors = [
{ name = "Dominic Steinhoefel", email = "[email protected]" },
]
description = "The ISLa Input Specification Language and its solver."
license = { file = "COPYING" }
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Security",
"Topic :: Software Development :: Testing",
]
dynamic = ["version", "readme"]
dependencies = [
"antlr4-python3-runtime>=4.13",
"datrie>=0.8.2",
"grammar_to_regex>=0.0.4",
"grammar_graph>=0.1.15",
"ijson>=3.1.4",
"packaging>=21.3",
"pathos>=0.2.9",
"proxyorderedset>=0.3.5",
"returns>=0.21.0",
"toml>=0.10.2",
"wheel>=0.37.1",
"z3-solver>=4.8.17.0,<=4.11.2.0",
]
[project.urls]
"Homepage" = "https://github.com/rindPHI/isla/"
"Bug Tracker" = "https://github.com/rindPHI/isla/issues"
[project.optional-dependencies]
test = [
"docutils>=0.18.1",
"matplotlib>=3.5.3",
"pytest-cov>=3.0.0",
"pytest-html>=3.1.1",
"pytest-profiling>=1.7.0",
"pytest-pycharm>=0.7.0",
"pytest-randomly>=3.12.0",
"pytest-rerunfailures>=10.2",
"pytest-xdist>=2.4.0",
"pytest>=7.1.2",
"tox>=3.25.0",
]
dev = [
"black>=22.8.0",
"build>=0.8.0",
"flake8>=5.0.4",
"setuptools-antlr>=0.4.0",
"sphinx>=6.1.3",
"sphinx-book-theme>=1.0.0",
"twine>=4.0.1",
]
[project.scripts]
isla = "isla.cli:main"
[tool.setuptools]
include-package-data = true # `true` is the default value
[tool.setuptools.dynamic]
version = {attr = "isla.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.black]
line-length = 88
target-version = ['py310']
extend-exclude = '''
(
^/src/isla/bnf/*
| ^/src/isla/isla_language/*
| ^/src/isla/mexpr_lexer/*
| ^/src/isla/mexpr_parser/*
)
'''
[tool.mypy]
plugins = ["returns.contrib.mypy.returns_plugin"]