Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
authors=[{name="Neel Nanda", email="77788841+TransformerLensOrg@users.noreply.github.com"}]
dependencies=[
"accelerate>=0.23.0", # Needed for Llama Models
"accelerate>=0.23.0", # Needed for Llama Models
"beartype>=0.14.1",
"better-abc>=0.0.3",
"datasets>=2.7.1",
Expand All @@ -26,6 +26,7 @@
description="An implementation of transformers tailored for mechanistic interpretability."
license={text="MIT"}
name="transformer-lens"
packages=[{include="transformer_lens"}, {include="transformer_lens/py.typed"}]
readme="README.md"
requires-python=">=3.10,<4.0"
version="0.0.0"
Expand Down Expand Up @@ -85,13 +86,11 @@
"-W ignore::beartype.roar.BeartypeDecorHintPep585DeprecationWarning",
]
doctest_optionflags="NORMALIZE_WHITESPACE ELLIPSIS FLOAT_CMP"
markers=[
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
filterwarnings=[
"ignore:pkg_resources is deprecated as an API:DeprecationWarning",
"ignore:distutils Version classes are deprecated:DeprecationWarning",
"ignore:pkg_resources is deprecated as an API:DeprecationWarning",
]
markers=["slow: marks tests as slow (deselect with '-m \"not slow\"')"]
pythonpath=["."]
testpaths=["tests", "transformer_lens"] # Only test these directories

Expand Down
Empty file added transformer_lens/py.typed
Empty file.
Loading