-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (89 loc) · 2.59 KB
/
pyproject.toml
File metadata and controls
98 lines (89 loc) · 2.59 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["setuptools>=80.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "atomlib"
version = "0.4"
authors = [
{name = "Colin Gilgenbach", email = "hexane@mit.edu"},
]
description = "A modern, extensible library for creating atomic structures"
readme = "README.md"
keywords = ["science", "atoms", "materials", "chemistry"]
license = "MPL-2.0"
license-files = ["LICENSE.txt"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Typing :: Typed",
]
requires-python = ">=3.9"
dependencies = [
"click~=8.1", # for cli
"numpy>=1.22,<2.6.0", # tested on 2.3.1
"scipy~=1.8", # tested on 1.16.0
"polars~=1.31.0",
"matplotlib~=3.5",
"requests~=2.28",
"lxml~=5.0",
"typing-extensions~=4.4",
"importlib_resources>=5.0", # importlib.resources backport
]
[project.optional-dependencies]
dev = [
"pytest>=6.2.4",
"pytest-cov>=3.0.0",
"coveragepy-lcov>=0.1.1",
"nbmake>=1.4.1",
]
docs = [
"mkdocs==1.6.1",
"mkdocs-material==9.5.40",
"mkdocstrings[python]==0.26.1",
"markdown-include==0.8.1",
"mike==2.1.3",
"black>=24.3.0",
]
[project.urls]
Repository = "https://github.com/hexane360/atomlib.git"
Documentation = "https://hexane360.github.io/atomlib/"
[project.scripts]
atom = "atomlib.cli:cli"
[tool.setuptools.packages.find]
include = ["atomlib", "atomlib.*"]
[tool.pytest.ini_options]
markers = [
"expected_filename: Filename to compare test result to",
]
[tool.flake8]
ignore = "W191,E101,E117,E741"
max-line-length = 99
[tool.pyright]
include = ['atomlib']
ignore = []
exclude = ['**/test_*.py']
typeCheckingMode = "strict"
reportUnknownParameterType = "none"
reportUnknownArgumentType = "none"
reportUnknownLambdaType = "none"
reportUnknownVariableType = "none"
reportUnknownMemberType = "none"
reportMissingTypeArgument = "none"
reportMissingTypeStubs = "information"
reportUnusedImport = "warning"
reportImportCycles = "information"
reportUnusedVariable = "warning"
reportPrivateUsage = "none"
reportUnnecessaryIsInstance = "none"
reportUnnecessaryComparison = "information"
reportUnnecessaryCast = "information"
reportUntypedBaseClass = "information"
reportConstantRedefinition = "none"