forked from crvernon/paige
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.05 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "highlight"
description = "Generate publication highlights using AI"
readme = "README.md"
version = "0.1.1"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Chris Vernon", email = "[email protected]"},
]
maintainers = [
{name = "Chris Vernon", email = "[email protected]"},
]
dependencies = [
'docxtpl>=0.16.7',
'python-pptx>=0.6.23',
'openai>=1.35.14',
'streamlit>=1.36.0',
'pypdf>=3.0.1',
'tiktoken>=0.7.0',
'tqdm>=4.66.1',
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-cov>=2.12.1",
]
deploy = [
"twine>=4.0.1",
]
[project.urls]
Repository = "https://github.com/crvernon/highlight"
[tool.hatch.build]
packages = ["highlight"] # set importable package name to "cerf"
include = [
"highlight",
"highlight/data/**",
]