-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
79 lines (71 loc) · 2.41 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
[build-system]
requires = ["poetry>=1.0.0",
"wheel"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "xact"
version = "0.0.3dev0"
description = "Model based design for developers"
keywords = ["modelling",
"simulation",
"message",
"actor",
"framework"]
homepage = "http://xplain.systems"
repository = "https://github.com/xplain-systems/xact"
documentation = "https://github.com/xplain-systems/xact/wiki"
license = "AGPL-3.0-only"
authors = ["William Payne <[email protected]>"]
maintainers = ["William Payne <[email protected]>"]
readme = "README.rst"
classifiers = ["Development Status :: 1 - Planning",
"Natural Language :: English",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: System :: Distributed Computing"]
packages = [{include = "xact", from = "src"}]
include = ["README.rst"]
exclude = ["*/_spec/**/*"]
[tool.poetry.dependencies]
click = "*"
cryptography = "*"
jsonschema = "*"
loguru = "*"
numpy = "*"
paramiko = "*"
psutil = ">=5.0"
python = ">=3.6.1"
pyyaml = "*"
pyzmq = "*"
setproctitle = "*"
toml = "*"
xmltodict = "*"
dill = "*"
pytest = ">=5.2"
[tool.poetry.dev-dependencies]
pytest = ">=5.2"
tox = ">=3.4"
[tool.poetry.scripts]
xact = "xact.cli.command:grp_main"
[tool.poetry.plugins]
[tool.poetry.urls]
Documentation = "https://github.com/xplain-systems/xact/wiki"
Releases = "https://github.com/xplain-systems/xact/releases"
Issues = "https://github.com/xplain-systems/xact/issues"
Source = "https://github.com/xplain-systems/xact"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py36, py37, py38
isolated_build = True
[testenv]
deps = pytest
commands = python3 -m pytest .
"""