-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (56 loc) · 1.58 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
[project]
name = "atomic-datasets"
description = "Datasets for the Atomic Architects!"
authors = [
{ name = "Ameya Daigavane" },
]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Database",
]
dynamic = ["version", "readme", "dependencies", "optional-dependencies"]
requires-python = ">=3.10"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.in"]}
optional-dependencies = {"dev" = {file = ["requirements-dev.in"]}, "visualization" = {file = ["requirements-visualization.in"]}}
readme = {file = "README.md"}
[project.urls]
Homepage = "https://github.com/atomicarchitects/datasets"
Repository = "https://github.com/atomicarchitects/datasets.git"
[tool.ruff]
target-version = "py38"
line-length = 88
fix = true
unsafe-fixes = false
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"B", # flake8-bugbear
"I", # isort
"UP", # pyupgrade
"N", # pep8-naming
"RUF", # ruff-specific rules
"D", # pydocstring
]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-ra -q"
[tool.setuptools.packages.find]
where = ["."]
include = ["atomic_datasets*"]
exclude = ["tests*"]
[tool.uv]
cache-keys = [{file = "requirements.in"}]