Skip to content

Commit 31d82f3

Browse files
Merge pull request #30 from martinkilbinger/toml
Toml file
2 parents 48f1cf4 + 73097ca commit 31d82f3

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

cs_util/tests/test_logging.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def tearDown(self):
3636
"""Unset test parameter values."""
3737
self._argv = None
3838
os.remove(self._log_file_path)
39+
os.remove(self._log_file_path_default)
3940
self._log_file_path = None
4041

4142
def test_log_command(self):

pyproject.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@ dependencies = [
3131
"vos>=3.3",
3232
]
3333

34+
[build-system]
35+
requires = [
36+
"setuptools",
37+
"wheel",
38+
]
39+
build-backend = "setuptools.build_meta"
40+
41+
3442
[project.optional-dependencies]
3543
lint = [
3644
"black",
@@ -39,6 +47,7 @@ lint = [
3947
release = [
4048
"build",
4149
"twine",
50+
"sdist",
4251
]
4352
test = [
4453
"pytest",
@@ -68,3 +77,6 @@ testpaths = ["cs_util"]
6877

6978
[tool.setuptools.dynamic]
7079
version = {attr = "cs_util.__version__"}
80+
81+
[tools.setuptools]
82+
packages = ["cs_util"]

0 commit comments

Comments
 (0)