Skip to content

Commit

Permalink
Divide xpk package into core and parser packages, rename xpk.py to ma…
Browse files Browse the repository at this point in the history
…in.py, move parser from main.py to parser package (#168)
  • Loading branch information
PBundyra authored Aug 12, 2024
1 parent aa7c98f commit 53355d8
Show file tree
Hide file tree
Showing 11 changed files with 9,543 additions and 8,118 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ dev = [
]

[tool.setuptools.dynamic]
version = {attr = "xpk.main.__version__"}
version = {attr = "xpk.core.core.__version__"}

[tool.setuptools]
packages = ["xpk"]
packages = ["xpk", "xpk.parser", "xpk.core"]
package-dir = {"" = "src"}

[tool.pyink]
Expand Down
2 changes: 1 addition & 1 deletion __init__.py → src/xpk/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright 2023 Google LLC
Copyright 2024 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Loading

0 comments on commit 53355d8

Please sign in to comment.