Skip to content

Commit

Permalink
Merge pull request #30 from martinkilbinger/toml
Browse files Browse the repository at this point in the history
 Toml file
  • Loading branch information
martinkilbinger authored Aug 24, 2023
2 parents 48f1cf4 + 73097ca commit 31d82f3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions cs_util/tests/test_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def tearDown(self):
"""Unset test parameter values."""
self._argv = None
os.remove(self._log_file_path)
os.remove(self._log_file_path_default)
self._log_file_path = None

def test_log_command(self):
Expand Down
12 changes: 12 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ dependencies = [
"vos>=3.3",
]

[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"


[project.optional-dependencies]
lint = [
"black",
Expand All @@ -39,6 +47,7 @@ lint = [
release = [
"build",
"twine",
"sdist",
]
test = [
"pytest",
Expand Down Expand Up @@ -68,3 +77,6 @@ testpaths = ["cs_util"]

[tool.setuptools.dynamic]
version = {attr = "cs_util.__version__"}

[tools.setuptools]
packages = ["cs_util"]

0 comments on commit 31d82f3

Please sign in to comment.