-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 794 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 794 Bytes
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
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
[tool.flake8]
max-line-length = 88
extend-ignore = "E203" # Ignore whitespace before ':' (conflicts with Black)
per-file-ignores = []
exclude = [
".git",
"__pycache__",
"build",
"dist",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "probity"
version = "0.1.0"
description = "A library for probing neural networks"
requires-python = ">=3.7"
dependencies = [
"torch>=2.0.0",
"transformers>=4.30.0",
"numpy>=1.24.0",
"matplotlib>=3.7.0",
"transformer_lens>=1.0.0",
"scikit-learn>=1.3.0",
"datasets>=2.12.0",
"tqdm>=4.65.0",
"tabulate>=0.9.0",
"neuronpedia",
]
[tool.setuptools]
packages = ["probity"]