Skip to content

Commit

Permalink
Fixed package issues, added links to project in pyproject and readded…
Browse files Browse the repository at this point in the history
… errors to default exports
  • Loading branch information
marcusfrdk committed Feb 4, 2025
1 parent be33616 commit a904349
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tomlval"
version = "1.0.1"
version = "1.0.2"
description = "A simple and easy to use TOML validator for Python."
authors = [
{ name = "Marcus Fredriksson", email = "[email protected]" },
Expand Down Expand Up @@ -31,7 +31,7 @@ requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages = ["tomlval"]
packages = ["tomlval", "tomlval.errors", "tomlval.types", "tomlval.utils"]

[tool.black]
line-length = 80
Expand All @@ -40,3 +40,8 @@ target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 80

[project.urls]
Homepage = "https://github.com/marcusfrdk/tomlval"
Repository = "https://github.com/marcusfrdk/tomlval"
Issues = "https://github.com/marcusfrdk/tomlval/issues"
1 change: 1 addition & 0 deletions tomlval/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" toml_parser package """

from .errors import *
from .toml_schema import TOMLSchema
from .toml_validator import TOMLValidator

0 comments on commit a904349

Please sign in to comment.