-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
70 lines (63 loc) · 2.22 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 = "py_trees_js"
version = "0.6.6"
# version needs to be updated in several places
# package.xml
# pyproject.toml
# py_trees-<version>.js (and version variable therein)
# py_trees-<version.css>
# py_trees_js/viewer/html/index.html
# py_trees_js/resources.qrc
# setup.py
description = "javascript libraries for visualising behaviour trees"
authors = ["Daniel Stonier"]
maintainers = ["Daniel Stonier <[email protected]>"]
readme = "README.md"
license = "BSD"
homepage = "https://github.com/splintered-reality/py_trees_js"
repository = "https://github.com/splintered-reality/py_trees_js"
documentation = "https://github.com/splintered-reality/py_trees_js"
packages = [
{ include = "py_trees_js" },
]
include = [
"py_trees_js/viewer/*.ui",
"py_trees_js/viewer/html/*",
"py_trees_js/viewer/images/*"
]
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries'
]
keywords=["py_trees", "py-trees", "behaviour-trees"]
[tool.poetry.dependencies]
python = "^3.8"
pyqt5 = "~5.14"
pyqtwebengine = "~5.14"
[tool.poetry.group.dev.dependencies]
tox = ">=3.26"
tox-poetry-installer = {extras = ["poetry"], version = ">=0.9.0"}
pytest = [
{ version = ">=7.1", python = "^3.7" }
]
pytest-console-scripts = ">=1.3"
pytest-cov = ">=3.0.0" # transitively depends on coverage[toml]
[tool.poetry.group.format.dependencies]
ufmt = ">=2.0" # black (style) + usort (import order)
[tool.poetry.group.static.dependencies]
mypy = ">=0.991"
[tool.poetry.group.lint.dependencies]
# strongly recommended
flake8 = ">=5.0" # combines pyflakes (errors) & pycodestyle (pep8 style)
flake8-docstrings = ">=1.6" # docstrings (integrates pydocstyle)
darglint = ">=1.8" # checks docstrings match implementation
# optional, these go above and beyond
flake8-bugbear = ">=22.9" # bugs & design not strictly pep8
[tool.poetry.scripts]
py-trees-demo-viewer = "py_trees_js.viewer.viewer:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"