-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (37 loc) · 1.04 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
[tool.poetry]
name = "linear-relational"
version = "0.6.2"
description = "A Python library for working with Linear Relational Embeddings (LREs) and Linear Relational Concepts (LRCs) for LLMs"
authors = ["David Chanin <[email protected]>"]
readme = "README.md"
repository = "https://github.com/chanind/linear-relational"
homepage = "https://chanind.github.io/linear-relational"
[tool.poetry.dependencies]
python = "^3.10"
transformers = "^4.42.0"
tqdm = ">=4.0.0"
dataclasses-json = "^0.6.2"
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
flake8 = "^6.1.0"
mypy = "^1.7.0"
isort = "^5.12.0"
pytest = "^7.4.3"
torch = "^2.1.1"
sentencepiece = "^0.1.99"
protobuf = "^4.25.1"
furo = "^2023.9.10"
pygments = "^2.17.2"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.semantic_release]
version_variables = [
"linear_relational/__init__.py:__version__",
"pyproject.toml:version",
]
branch = "main"
build_command = "pip install poetry && poetry build"