forked from graingert/python-clamd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 859 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 859 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
[project]
name = "clamd"
version = "0.1.0"
description = "It is a fork of https://github.com/graingert/python-clamd. It was forked to cleanup some deprecated code."
readme = "README.md"
requires-python = ">=3.10"
dependencies = []
keywords = ["python", "clamav", "antivirus", "scanner", "virus", "libclamav", "clamd"]
classifiers = [
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/userlike/python-clamd"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/clamd"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
]