-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
108 lines (96 loc) · 2.18 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[project]
name = "Pacti"
description = "A package for compositional system analysis and design"
authors = [{name = "Pacti developers", email = "[email protected]"}]
license = "BSD-3-Clause"
readme = "docs/dist-README.md"
classifiers = [
"Topic :: Scientific/Engineering"
]
keywords = ["system design", "contracts", "compositional"]
dynamic = ["version"]
# version = "1.0.0-alpha"
dependencies = [
"scipy>=1.10.0",
"sympy>=1.11.1",
"numpy>=1.24.1",
"matplotlib>=3.6.2",
"typing-extensions>=4.5.0",
"pyparsing>=3.0.9",
]
requires-python = ">=3.8, <3.12"
[project.urls]
repository = "https://github.com/pacti-org/pacti"
documentation = "https://www.pacti.org"
"Bug Tracker" = "https://github.com/pacti-org/pacti/issues"
[project.scripts]
#pacti = "pacti.cli:main"
[project.optional-dependencies]
[tool.pdm]
package-dir = "src"
version = { source = "file", path = "src/pacti/__version__.py" }
[tool.pdm.build]
package-dir = "src"
editable-backend = "editables"
[tool.pdm.dev-dependencies]
duty = ["duty>=0.7"]
format = [
"autoflake>=1.4",
"black>=21.10b0",
"isort>=5.10",
]
maintain = [
"git-changelog>=0.4",
"urlopen>=1.0.0",
]
quality = [
"darglint>=1.8",
"flake8>=5.0.0",
"flake8-bandit",
"flake8-black",
"flake8-bugbear",
"flake8-builtins",
"flake8-comprehensions",
"flake8-docstrings",
"flake8-pytest-style",
"flake8-string-format",
"flake8-tidy-imports",
"flake8-variables-names",
"pep8-naming",
"wps-light",
"nbqa>=1.6.3",
]
tests = [
"pytest>=6.2",
"pytest-cov>=3.0",
"pytest-randomly>=3.10",
"pytest-xdist>=2.4",
]
typing = [
"mypy>=0.910",
"types-markdown>=3.3",
"types-toml>=0.10",
]
security = ["safety>=2"]
dev = [
"certifi>=2022.9.24",
"tox>=4.4.7",
"editables>=0.3",
"ipykernel"
]
[tool.black]
line-length = 120
exclude = "tests/fixtures"
[tool.isort]
line_length = 120
skip = ["__init__.py"]
#not_skip = "__init__.py"
multi_line_output = 3
force_single_line = false
balanced_wrapping = true
default_section = "THIRDPARTY"
known_first_party = "pacti"
include_trailing_comma = true