Skip to content

Commit adc5987

Browse files
committed
chore: update TOML configuration and .gitignore
1 parent 2c52cdc commit adc5987

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,4 @@ cython_debug/
159159
*.swp
160160
*.swo
161161
**/.DS_Store
162+
.python-version

pyproject.toml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,8 @@ dynamic = ["version"]
88
description = "Package for reading of .xyz files and constructing of molecular graphs from atomic coordinates."
99
readme = "README.md"
1010
requires-python = ">=3.8"
11-
license = {file = "LICENSE" }
12-
authors = [
13-
{ name = "Mykola Zotko", email = "dev.zotko@outlook.de" }
14-
]
11+
license = { file = "LICENSE" }
12+
authors = [{ name = "Mykola Zotko", email = "dev.zotko@outlook.de" }]
1513
keywords = ["chemistry", "molecular-graphs", "xyz-files", "visualization"]
1614
classifiers = [
1715
"Development Status :: 5 - Production/Stable",
@@ -27,11 +25,7 @@ classifiers = [
2725
"Topic :: Scientific/Engineering :: Chemistry",
2826
"Topic :: Scientific/Engineering :: Visualization",
2927
]
30-
dependencies = [
31-
"numpy>=1.21.0",
32-
"plotly>=5.0.0",
33-
"networkx>=2.6.0",
34-
]
28+
dependencies = ["numpy>=1.21.0", "plotly>=5.0.0", "networkx>=2.6.0"]
3529

3630
[tool.hatch.version]
3731
source = "vcs"
@@ -46,7 +40,8 @@ Documentation = "https://zotko.github.io/xyz2graph"
4640
docs = [
4741
"mkdocs>=1.6.0",
4842
"mkdocs-material>=9.5.0",
49-
"mkdocstrings[python]>=1.12.0"
43+
"mkdocstrings[python]>=0.18",
44+
"mkdocs-include-markdown-plugin",
5045
]
5146
dev = [
5247
"pytest>=7.0.0,<8.0.0",
@@ -55,6 +50,7 @@ dev = [
5550
"mypy>=1.0.0,<2.0.0",
5651
"build>=1.0.0,<2.0.0",
5752
"twine>=4.0.0,<5.0.0",
53+
"pre-commit>=3.5.0",
5854
]
5955

6056
[tool.ruff]

0 commit comments

Comments
 (0)