-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
58 lines (50 loc) · 1.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
[tool.poetry]
name = "xstate"
version = "0.0.1"
description = "XState for Python"
readme = "README.md"
authors = ["David Khourshid <davidkpiano@gmail.com>"]
license = "MIT"
keywords = ["Answer Set Programming", "wrapper", "clingo"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
packages = [
{ include = "xstate" },
]
[tool.poetry.urls]
docs = "https://github.com/davidkpiano/xstate-python"
[tool.poetry.dependencies]
python = "^3.6.2"
Js2Py = "^0.71"
[tool.poetry.dev-dependencies]
pytest-cov = "^2.12.0"
black = "^21.5b1"
isort = "^5.8.0"
flake8 = "^3.9.2"
mypy = "^0.812"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.coverage.run]
source = ["xstate"]
branch = true
[tool.coverage.report]
exclude_lines = [
"raise NotImplementedError"
]
fail_under = 50
show_missing = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"