-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (44 loc) · 1.52 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "c2fj"
version = "1.0.0"
description = "A C to flipjump compiler"
authors = ["Tom Herman <[email protected]>"]
license = "BSD-2-Clause-Simplified"
readme = "README.md"
homepage = "https://esolangs.org/wiki/FlipJump"
repository = "https://github.com/tomhea/c2fj"
keywords = ["esolang", "oisc", "assembly", "compiler"]
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 :: C",
"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 :: Python :: 3.13",
"Programming Language :: Other",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
]
[tool.poetry.dependencies]
python = "^3.8.1"
flipjump = ">=1.3.0"
pyelftools = ">=0.31"
# developement
pytest = { version = "^7.4.0", optional = true }
pytest-xdist = { version = "^3.3.1", optional = true }
[tool.poetry.extras]
tests = ["pytest", "pytest-xdist"]
[tool.poetry.scripts]
c2fj = 'c2fj.c2fj_main:main'