Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tchaton committed Feb 16, 2024
1 parent 50529dd commit f1c4c4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def _load_requirements(path_dir: str = _PATH_ROOT, file_name: str = "requirement
readme = fopen.read()


def _prepare_extras(requirements_dir: str = _PATH_REQUIRES, skip_files: tuple = ("devel.txt", "docs.txt")) -> dict:
def _prepare_extras(requirements_dir: str = _PATH_REQUIRES, skip_files: tuple = ("devel.txt", "docs.txt", "test.txt")) -> dict:
# https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-extras
# Define package extras. These are only installed if you specify them.
# From remote, use like `pip install pytorch-lightning[dev, docs]`
Expand Down Expand Up @@ -59,8 +59,8 @@ def _prepare_extras(requirements_dir: str = _PATH_REQUIRES, skip_files: tuple =
url=about.__homepage__,
download_url="https://github.com/Lightning-AI/lit-data",
license=about.__license__,
packages=find_packages(where="src"),
package_dir={"": "src"},
packages=find_packages(where="lit_data"),
package_dir={"": "lit_data"},
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
Expand Down

0 comments on commit f1c4c4a

Please sign in to comment.