-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (59 loc) · 1.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[project]
version = "0.22.1"
requires-python = ">=3.11"
name = "memorymarker"
description = "memorymarker"
dependencies = [
"beautifulsoup4>=4.12.3",
"instructor>=0.6.2",
"iterpy>=1.6.0",
"joblib>=1.3.2",
"omnivoreql>=0.3.3",
"openai>=1.13.3",
"pydantic>=2.6.2",
"python-dotenv>=1.0.1",
"pytz>=2024.1",
"questionary>=2.0.1",
"typer>=0.9.0",
"coloredlogs>=15.0.1",
"anthropic>=0.21.3",
]
authors = [{ name = "Martin Bernstorff", email = "martinbernstorff@gmail.com" }]
classifiers = ["Programming Language :: Python :: 3.11"]
[project.license]
file = "LICENSE"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool]
rye = { dev-dependencies = [
"diff-cover==8.0.3",
"pyright>=1.1.368",
"pytest>=7.4.0",
"pytest-cov==4.1.0",
"pytest-xdist==3.5.0",
"pytest-sugar==1.0.0",
"ruff==0.2.2",
"pytest-asyncio>=0.23.5",
"pytest-testmon>=2.1.0",
"syrupy>=4.6.1",
"pytest-dotenv>=0.5.2",
"pyairtable>=2.3.0.post1",
"pyinstrument>=4.6.2",
] }
[project.urls]
homepage = "https://github.com/MartinBernstorff/memorymarker"
repository = "https://github.com/MartinBernstorff/memorymarker"
documentation = "https://MartinBernstorff.github.io/memorymarker/"
[project.scripts]
memorymarker = "memorymarker.__main__:app"
mm = "memorymarker.__main__:app"
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["py.typed", "*.pyi"]
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]