-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 880 Bytes
/
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
[tool.poetry]
name = "llama2inference"
version = "0.1.0"
description = "Pythonized version of llama2.c"
authors = ["Christophe <[email protected]>"]
readme = "README.md"
repository = "https://github.com/chris-ch/llama2-py-inference"
keywords = ["llama2"]
classifiers = [
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Development Status :: 4 - Beta"
]
packages = [
{ include = "llama2", from="src" },
{ include = "scripts" }
]
include = [
{ path = "tests", format = "sdist" },
{ path = "scripts/*.py" },
"README.md",
"LICENSE"
]
[tool.poetry.dependencies]
python = "^3.11"
numpy = "^1.26.2"
[tool.poetry.dev-dependencies]
pytest = "^7.4.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
llama2 = "scripts.llama2_run:main"