From c3ecb86697b540746a668092d8df59eab888819b Mon Sep 17 00:00:00 2001 From: Will Epperson Date: Mon, 6 May 2024 17:27:24 -0400 Subject: [PATCH] finalize package name --- README.md | 10 ++++++++-- pyproject.toml | 3 ++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 75aeb6a..a388e7c 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,15 @@ Texture is a system for exploring and creating structured insights with your tex ![screenshot of Texture interface](.github/screenshots/texture_sc.png) -## Installation +## Install and run -Pip installation coming soon! +Install texture with pip: + +```bash +pip install texture-viz +``` + +Then you can run in a python script or notebook. The run command takes in a pandas dataframe with a text column and optional metadata columns: ```python import texture diff --git a/pyproject.toml b/pyproject.toml index dc706b7..32a1871 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "texture" +name = "texture-viz" version = "0.0.1" description = "Process and profile text datasets interactively" authors = ["Will Epperson "] @@ -8,6 +8,7 @@ repository = "https://github.com/cmudig/Texture" homepage = "https://github.com/cmudig/Texture" keywords = ["text", "nlp", "data profiling", "llm"] packages = [{ include = "texture" }] +include = ["texture/frontend/**/*"] [tool.poetry.dependencies] python = "3.10.*"