Skip to content

Commit

Permalink
updates to toml
Browse files Browse the repository at this point in the history
  • Loading branch information
btr1975 committed Mar 25, 2023
1 parent 46e9b0f commit a8bf9dc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
17 changes: 10 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ build-backend = "setuptools.build_meta"
[project]
name = "zapish-logger"
dynamic = ["version", "readme", "dependencies"]
# version = "1.0.2"
requires-python = ">=3.8"
description = "A simple logger that logs in a JSON format inspired by go zap"
keywords = [
Expand All @@ -23,8 +22,6 @@ maintainers = [
{name = "Benjamin P. Trachtenberg", email = "e_ben_75-python@yahoo.com"},
]
license = {file = "LICENSE"}
# dependencies = [
# ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
Expand All @@ -48,10 +45,16 @@ Documentation = "https://zapish-logger.readthedocs.io/en/latest/"
Source = "https://github.com/btr1975/zapish-logger"
Tracker = "https://github.com/btr1975/zapish-logger/issues"

[tool.setuptools]
packages = [
"zapish_logger",
[tool.setuptools.packages.find]
include = [
"zapish_logger*",
]

# Add or remove file extensions to include the data
[tool.setuptools.package-data]
"*" = ["*.txt", "*.rst"]

[tool.setuptools]
zip-safe = false

[tool.setuptools.dynamic]
Expand All @@ -65,7 +68,7 @@ universal = true
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
{ place_holder = "marks tests as place_holder (deselect with -m 'not place_holder')" },
"place_holder: marks tests as place_holder (deselect with -m 'not place_holder')",
]

[tool.coverage.run]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# These are the libraries required to run your app
# They DO NOT inculde libraries needed to develop or test our app
# They DO NOT include libraries needed to develop or test our app
#
2 changes: 1 addition & 1 deletion zapish_logger/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"""
__copyright__ = 'Copyright (c) 2023 Benjamin P. Trachtenberg'
__status__ = 'prod'
__version_info__ = (1, 0, 2)
__version_info__ = (1, 0, 3)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit a8bf9dc

Please sign in to comment.