-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
64 lines (59 loc) · 1.74 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
[build-system]
requires = ["setuptools>65.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mocasin"
version = "0.1.0"
authors = [
{name = "Christian Menard", email = "[email protected]"},
{name = "Andrés Goens", email = "[email protected]"},
{name = "Robert Khasanov", email = "[email protected]"},
{name = "Julian Robledo", email = "[email protected]"},
]
description = "A framework for modeling dataflow applications and their execution on MPSoC platforms."
readme = "README.md"
requires-python = ">=3.7"
license = {text = "ISC"}
dependencies = [
"arpeggio",
"cloudpickle",
"cvxopt",
"cvxpy!=1.1.8",
"deap",
"h5py",
"hydra-core>=1.2,<1.3",
"scipy",
"lxml",
"matplotlib",
"more_itertools",
"mpsym",
"numba>=0.53.0rc1,<0.58",
"numpy",
"pint",
"pydot",
# pynauty is not binary compatible to some systems including Ubuntu 22.10
# this forces an installation from source
"pynauty @ git+https://github.com/pdobsan/[email protected]",
# this fork includes a fix needed for Python 3.10,
# see https://github.com/pabigot/pyxb/pull/111
"pyxb @ git+https://github.com/nightglass/pyxb.git@fix-collections-warning#egg=pyxb", # noqa
"simpy",
"sortedcontainers",
"termcolor",
"tqdm",
]
[project.scripts]
mocasin = "mocasin.__main__:main"
[project.optional-dependencies]
dev = [
"pytest",
"pytest_mock",
"pytest_raises",
]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["test", "*.test"]
namespaces = true
[tool.black]
line-length = 80
exclude = "doc|mocasin/sdf3/_sdf_parser.py|mocasin/maps/mapping/mapsmapping.py|mocasin/maps/mapping/_mapsplatform.py|mocasin/maps/platform/parse.py"