-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (39 loc) · 1.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
[tool.poetry]
name = "autofff"
version = "0.5"
description = "Auto-generate FFF fake definitions for C API header files"
authors = ["Andreas Baulig <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ChiefGokhlayeh/autofff"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: C",
"Programming Language :: C++",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Testing",
]
[tool.poetry.dependencies]
python = "^3.10"
pycparser = "^2.21"
overrides = ">=6.5,<8.0"
configobj = "^5.0.8"
validator = "^0.7.1"
phmutest = ">=0.0.3,<0.0.5"
[tool.poetry.dev-dependencies]
black = "^24.10.0"
flake8 = "^7.1.1"
pre-commit = "^4.0.1"
[tool.poetry.scripts]
autofff = "autofff.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"