-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (41 loc) · 977 Bytes
/
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
[project]
name = "easyxtb"
version = "0.10.0"
description = "A Python API for xtb (and CREST)."
readme = "README.md"
requires-python = ">=3.10"
dependencies = []
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Chemistry",
]
[project.optional-dependencies]
docs = [
"mkdocs-material>=9.5.49",
"mkdocs>=1.6.1",
"mkdocstrings[python]>=0.27.0",
]
[project.urls]
Homepage = "https://github.com/matterhorn103/easyxtb"
Issues = "https://github.com/matterhorn103/easyxtb/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.3.3",
"ruff>=0.7.2",
]
[tool.ruff]
line-length = 100
indent-width = 4
target-version = "py310"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]