Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Commit

Permalink
chore: update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
doomspec committed Oct 9, 2023
1 parent 2ac17d4 commit 76b6d80
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
- name: Install dependencies 📦
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install .
- name: build project tree📦
Expand Down
32 changes: 32 additions & 0 deletions evonote/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "EvoNote"
description = "Knowledge-centered AI system"
version = "0.1.0"
authors = [
{ name = "Zijian Zhang" }
]

dependencies = [
{ name = "plotly", version = "5.16.1" },
{ name = "numpy", version = "1.25.2" },
{ name = "pyyaml", version = "6.0.1" },
{ name = "openai", version = "0.28.0" },
{ name = "pyhyphen", version = "4.0.3" },
{ name = "dill", version = "0.3.7" },
{ name = "html2text", version = "2020.1.16" },
{ name = "markdownify", version = "0.11.6" },
{ name = "bidict", version = "0.22.1" },
{ name = "tenacity", version = "8.2.2" }
]

[project.optional-dependencies]
dev = [
{name = "pytest"}
]

[tool.setuptools]
packages = ["evonote", "doc_in_py"]

0 comments on commit 76b6d80

Please sign in to comment.