forked from malwarefrank/dnfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 847 Bytes
/
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
[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",
]
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"]}