Skip to content

Commit

Permalink
Added lightning package to setup file and updated version for re… (#69)
Browse files Browse the repository at this point in the history
* Added lightning subdirectory to setup file and updated version for release

* Modified packages to instead exclude the testing packages

* Exclude top level package

* Added back in package_dir field to setup.py

* Added back in package_dir field to setup.py

* Attempting import fix

* Reverted it to working, whitelist build- Will open a bug to address a blacklist/exclude package import style in setup.py

* Typo
  • Loading branch information
divrawal authored Aug 2, 2024
1 parent 58cc1b4 commit d9824cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "gcs-torch-dataflux"
version = "1.2.0"
version = "1.3.0"
description = "A GCS data loading integration for PyTorch"
requires-python = ">=3.8,<3.13"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
]
setup(
name="dataflux-pytorch",
packages=["dataflux_core", "dataflux_pytorch"],
packages=["dataflux_core", "dataflux_pytorch", "dataflux_pytorch.lightning"],
package_dir={"dataflux_core": "dataflux_client_python/dataflux_core"},
install_requires=dependencies,
)

0 comments on commit d9824cb

Please sign in to comment.