-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
86 lines (71 loc) · 2.44 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "flipjump"
version = "1.2.2"
description = "The single instruction language - Flip a bit, then Jump"
authors = ["Tom Herman <[email protected]>"]
license = "BSD-2-Clause-Simplified"
readme = "README.md"
include = [
{ path = "flipjump/stl", format = "sdist" }
]
homepage = "https://esolangs.org/wiki/FlipJump"
repository = "https://github.com/tomhea/flip-jump"
documentation = "https://github.com/tomhea/flip-jump/wiki"
keywords = ["esolang", "oisc", "assembly"]
classifiers = [
"Topic :: Education",
"Topic :: Software Development :: Assemblers",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Interpreters",
"Topic :: Software Development :: Libraries",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Other",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
]
[tool.poetry.dependencies]
python = "^3.8.1"
sly = "^0.4"
easygui = "^0.98.3"
# statistics
plotly = { version = "^5.16.1", optional = true }
# developement
pytest = { version = "^7.4.0", optional = true }
pytest-ordering = { version = "^0.6", optional = true }
pytest-xdist = { version = "^3.3.1", optional = true }
mypy = { version = "^1.7.1", optional = true }
flake8 = { version = "^6.1.0", optional = true }
tox = { version = "^4.11.4", optional = true }
bandit = { version = "^1.7.6", optional = true }
black = { version = "^24.8.0", optional = true }
[tool.poetry.extras]
tests = [
"pytest", "pytest-ordering", "pytest-xdist",
"mypy", "flake8", "tox", "bandit", "black"
]
stats = ["plotly"]
#docs = [sphinx, sphinx_rtd_theme]
[tool.poetry.scripts]
fj = 'flipjump.flipjump_cli:main'
[tool.mypy]
files = ["flipjump", "tests"]
strict = true
disable_error_code = ["import-untyped"]
[[tool.mypy.overrides]]
module = "flipjump.assembler.fj_parser"
disable_error_code = ["name-defined", "no-redef", "index", "no-any-return", "misc"]
[tool.black]
line-length = 120
target-version = ["py38", "py39", "py310", "py311", "py312"]
safe = true
skip-string-normalization = true