We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6acd28 commit 0b5ddd8Copy full SHA for 0b5ddd8
2 files changed
.gitignore
@@ -66,3 +66,5 @@ target/
66
travis_pypi_setup.py
67
Pipfile
68
Pipfile.lock
69
+
70
+.DS_Store
pyproject.toml
@@ -1,6 +1,6 @@
1
[build-system]
2
-requires = ["setuptools>=69", "wheel"]
3
-build-backend = "setuptools.build_meta"
+requires = ["hatchling"]
+build-backend = "hatchling.build"
4
5
[project]
6
name = "ioc_finder"
@@ -81,11 +81,11 @@ dev = [
81
"ruff>=0.11.0,<0.12.0",
82
]
83
84
-[tool.setuptools]
85
-include-package-data = true
+[tool.hatch.build.targets.sdist]
+exclude = ["venv", ".venv"]
86
87
-[tool.setuptools.packages.find]
88
-exclude = ["tests", "docs"]
+[tool.hatch.build.targets.wheel]
+packages = ["ioc_finder"]
89
90
[tool.ruff]
91
line-length = 120
0 commit comments