-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (35 loc) · 1.03 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
[project]
name = "ipython-ollama"
version = "0.0.3"
description = "IPython magics for running Ollama models within the shell"
authors = [{ name = "Augusto Goulart", email = "[email protected]" }]
maintainers = [{ name = "Augusto Goulart", email = "[email protected]" }]
license = "MIT"
license-files = ["LICEN[CS]E*"]
classifiers = [
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Terminals",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed"
]
dependencies = [
"ipython>=8.32.0",
"ollama>=0.4.7",
]
[dependency-groups]
dev = [
"ipdb>=0.13.13",
"pytest>=8.3.4",
"ruff>=0.9.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"