-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to tox4 and pure pyproject packaging (#11)
(DIS-1750)
- Loading branch information
Showing
5 changed files
with
60 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
exclude .gitignore | ||
exclude .github | ||
recursive-exclude .github/ * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,29 @@ | ||
[build-system] | ||
requires = ["setuptools>=43.0.0", "wheel", "setuptools_scm[toml]>=3.4.1"] | ||
requires = ["setuptools>=65.5.0", "setuptools_scm[toml]>=6.4.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
[project] | ||
name = "dissect.vmfs" | ||
description = "A Dissect module implementing a parser for the VMFS file system, used by VMware virtualization software" | ||
readme = "README.md" | ||
requires-python = "~=3.9" | ||
license.text = "Affero General Public License v3" | ||
authors = [ | ||
{name = "Dissect Team", email = "[email protected]"} | ||
] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
] | ||
dependencies = [ | ||
"dissect.cstruct>=3.0.dev,<4.0.dev", | ||
"dissect.util>=3.0.dev,<4.0.dev", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
homepage = "https://dissect.tools" | ||
documentation = "https://docs.dissect.tools/en/latest/projects/dissect.vmfs" | ||
repository = "https://github.com/fox-it/dissect.vmfs" | ||
|
||
[tool.black] | ||
line-length = 120 | ||
|
@@ -11,3 +32,11 @@ line-length = 120 | |
profile = "black" | ||
known_first_party = ["dissect.vmfs"] | ||
known_third_party = ["dissect"] | ||
|
||
[tool.setuptools] | ||
license-files = ["LICENSE", "COPYRIGHT"] | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["dissect.*"] | ||
|
||
[tool.setuptools_scm] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters