Skip to content

Commit

Permalink
Update pip version number and pip building logic
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 342749036
  • Loading branch information
jameswex authored and LIT team committed Nov 17, 2020
1 parent c13fc09 commit 140f257
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pip_package/build_pip_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ mkdir -p "$dest"

source_dir="$PWD/.."

pushd ../lit_nlp/client
pushd ../lit_nlp
yarn && yarn build
popd

Expand Down
9 changes: 7 additions & 2 deletions pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

setuptools.setup(
name="lit-nlp",
version="0.1.1",
version="0.2",
description="Language Interpretability Tool.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -47,5 +47,10 @@
packages=setuptools.find_packages(),
license="Apache 2.0",
install_requires=REQUIRED_PACKAGES,
package_data={"lit_nlp": ["client/build/*", "client/build/static/*"]},
package_data={
"lit_nlp": [
"client/build/*", "client/build/default/*",
"client/build/default/static/*"
]
},
)

0 comments on commit 140f257

Please sign in to comment.