Skip to content

Commit d9824cb

Browse files
authored
Added lightning package to setup file and updated version for re… (#69)
* 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
1 parent 58cc1b4 commit d9824cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gcs-torch-dataflux"
7-
version = "1.2.0"
7+
version = "1.3.0"
88
description = "A GCS data loading integration for PyTorch"
99
requires-python = ">=3.8,<3.13"
1010
readme = "README.md"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
]
1111
setup(
1212
name="dataflux-pytorch",
13-
packages=["dataflux_core", "dataflux_pytorch"],
13+
packages=["dataflux_core", "dataflux_pytorch", "dataflux_pytorch.lightning"],
1414
package_dir={"dataflux_core": "dataflux_client_python/dataflux_core"},
1515
install_requires=dependencies,
1616
)

0 commit comments

Comments
 (0)