-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (50 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "score_models"
version = "0.0.1"
authors = [
{ name="Robert Samoilescu", email="[email protected]" },
]
description = "Simple score based models repo."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"torch==2.0.0",
"torchvision",
"numpy",
"matplotlib",
"tqdm",
"datasets",
"imageio",
]
[project.optional-dependencies]
dev = [
"black>=23.3.0",
"mypy>=1.0",
"ruff>=0.0.261",
"isort>=5.0.0",
]
[project.urls]
Homepage = "https://github.com/RobertSamoilescu/score_models"
Issues = "https://github.com/RobertSamoilescu/score_models/issues"
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
show_error_codes = true
[tool.ruff]
line-length = 120
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
]
[tool.black]
line-length = 120