trying without explicit package_data

This commit is contained in:
Jong Wook Kim 2021-01-30 03:00:32 +09:00
parent 3a6e8d0034
commit 72af33ae08
1 changed files with 0 additions and 3 deletions

View File

@ -2,8 +2,6 @@ import os
import pkg_resources
from setuptools import setup, find_packages
from pathlib import Path
setup(
name="clip",
@ -12,7 +10,6 @@ setup(
description="",
author="OpenAI",
packages=find_packages(exclude=["tests*"]),
package_data={'clip': [str(x) for x in list(Path('clip').rglob("*.gz"))]},
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(