-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
40 lines (35 loc) · 1.02 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
[tool.poetry]
name = "kittengroomer"
version = "2.2.0"
description = "Standalone CIRCLean/KittenGroomer code."
authors = ["Raphaël Vinot <[email protected]>"]
license = "BSD-3-Clause"
repository = "https://github.com/CIRCL/PyCIRCLean"
readme = "README.md"
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Topic :: Communications :: File Sharing',
'Topic :: Security',
]
[tool.poetry.dependencies]
python = "^3.8"
lxml = "^5.0.0"
exifread = "^3.0.0"
pillow = "^10.2.0"
olefile = "^0.47"
oletools = "^0.60.1"
python-magic = "^0.4.27"
officedissector = {git = "https://github.com/Rafiot/officedissector.git"}
[tool.poetry.dev-dependencies]
tox = "^4.11.4"
pytest-cov = "^4.1.0"
PyYAML = "^6.0.1"
mypy = "^1.8.0"
types-PyYAML = "^6.0.12.12"
[build-system]
requires = ["poetry_core>=1.2", "setuptools"]
build-backend = "poetry.core.masonry.api"