mirror of
https://github.com/malwarefrank/dnfile
synced 2026-06-08 15:39:09 +00:00
34 lines
940 B
TOML
34 lines
940 B
TOML
[project]
|
|
name = "dnfile"
|
|
authors = [{ name = "MalwareFrank" }]
|
|
description = "Parse .NET executable files."
|
|
license = { text = "MIT License" }
|
|
keywords = ["dnfile"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Natural Language :: English",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
]
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"pefile>=2019.4.18",
|
|
]
|
|
dynamic = ["version", "readme"]
|
|
|
|
[project.urls]
|
|
repository = "https://github.com/malwarefrank/dnfile"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=42"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "dnfile.__version__"}
|
|
readme = {file = ["README.rst", "HISTORY.rst"]}
|