-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 746 Bytes
/
pyproject.toml
File metadata and controls
30 lines (25 loc) · 746 Bytes
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
[tool.poetry]
name = "crelm"
version = "0.0.36"
description = "Utility that automates turning simple C classes into Python objects"
authors = [
"WideOpenTech <foss@wideopentech.co.uk>",
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
repository = "https://github.com/wideopensource/crelm"
[project.urls]
"Homepage" = "https://github.com/wideopentech-public/crelm"
"Bug Tracker" = "https://github.com/wideopentech-public/crelm/issues"
[tool.poetry.dependencies]
python = "^3.8"
cffi = "^1.15.1"
pexpect = "^4.8.0"
john = "^0.1.1a2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"