-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
67 lines (58 loc) · 1.26 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "metapal"
version = "0.0.0"
authors = [
{ name="Vivien Cabannes", email="[email protected]" },
]
description = "Experiments regarding LLM components"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
# essential
"scikit-learn",
"numpy",
"torch",
# argument parsing
"fire",
# transformer libraries
"sentencepiece",
"tiktoken",
"transformers",
# visualization
"ipykernel",
"ipywidgets",
"matplotlib",
"moviepy",
"networkx",
"seaborn",
# formatting
"black",
"flake8",
"flake8-pyproject",
"isort",
]
[project.urls]
"Homepage" = "https://github.com/facebookresearch/pal"
"Bug Tracker" = "https://github.com/facebookresearch/pal/issues"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 120
ignore = [
"E203", # whitespace before ':'
"E722", # do not use bare 'except'
"W503", # line break before binary operator
]
per-file-ignores = [
'__init__.py:F401',
]