atomery 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
atomery-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.3
2
+ Name: atomery
3
+ Version: 0.0.1
4
+ Summary: `atomery` is a simple and lightweight package to perform atomistic simulations.
5
+ Keywords: Computational Chemistry,Atomistic Simulation
6
+ Author: Tom Demeyere
7
+ Author-email: Tom Demeyere <tom.dmre@gmail.com>
8
+ License: BSD-3
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Programming Language :: Python :: 3.14
15
+ Classifier: Topic :: Scientific/Engineering
16
+ Classifier: Operating System :: Microsoft :: Windows
17
+ Classifier: Operating System :: Unix
18
+ Classifier: Operating System :: MacOS
19
+ Requires-Dist: ruff ; extra == 'dev'
20
+ Requires-Dist: black ; extra == 'dev'
21
+ Requires-Dist: docformatter ; extra == 'dev'
22
+ Requires-Dist: pyright ; extra == 'dev'
23
+ Requires-Dist: pre-commit ; extra == 'dev'
24
+ Requires-Dist: mkdocs-material>=9.4.0 ; extra == 'docs'
25
+ Requires-Dist: mkdocstrings-python>=2.0.0 ; extra == 'docs'
26
+ Requires-Dist: mkdocs-gen-files>=0.5.0 ; extra == 'docs'
27
+ Requires-Dist: mkdocs-literate-nav>=0.6.0 ; extra == 'docs'
28
+ Requires-Dist: pillow>=10.0.0 ; extra == 'docs'
29
+ Requires-Dist: cairosvg>=2.7.1 ; extra == 'docs'
30
+ Requires-Dist: pytest ; extra == 'tests'
31
+ Requires-Dist: pytest-cov ; extra == 'tests'
32
+ Requires-Python: >=3.12, <=3.14
33
+ Provides-Extra: dev
34
+ Provides-Extra: docs
35
+ Provides-Extra: tests
36
+ Description-Content-Type: text/markdown
37
+
File without changes
@@ -0,0 +1,129 @@
1
+ [build-system]
2
+ requires = ["uv_build"] # Specify build system requirements
3
+ build-backend = "uv_build" # Explicitly use uv_build as build backend
4
+
5
+ [project]
6
+ name = "atomery"
7
+ description="`atomery` is a simple and lightweight package to perform atomistic simulations."
8
+ version = "0.0.1"
9
+ readme = "README.md"
10
+ license = { text = "BSD-3" }
11
+ authors = [{ name = "Tom Demeyere", email = "tom.dmre@gmail.com" }]
12
+ keywords = ["Computational Chemistry", "Atomistic Simulation"]
13
+ classifiers = [
14
+ "Development Status :: 4 - Beta",
15
+ "Intended Audience :: Science/Research",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.12",
18
+ "Programming Language :: Python :: 3.13",
19
+ "Programming Language :: Python :: 3.14",
20
+ "Topic :: Scientific/Engineering",
21
+ "Operating System :: Microsoft :: Windows",
22
+ "Operating System :: Unix",
23
+ "Operating System :: MacOS",
24
+ ]
25
+ requires-python = ">=3.12, <=3.14"
26
+ dependencies = [] # Add runtime dependencies here
27
+
28
+ [tool.uv]
29
+ package = true # Indicate that this is a package
30
+
31
+ [project.optional-dependencies]
32
+ docs = [
33
+ "mkdocs-material>=9.4.0",
34
+ "mkdocstrings-python>=2.0.0",
35
+ "mkdocs-gen-files>=0.5.0",
36
+ "mkdocs-literate-nav>=0.6.0",
37
+ "pillow>=10.0.0",
38
+ "cairosvg>=2.7.1"
39
+ ]
40
+ tests = ["pytest", "pytest-cov"]
41
+ dev = ["ruff", "black", "docformatter", "pyright", "pre-commit"] # Development dependencies
42
+
43
+ [tool.pyright]
44
+ enableExperimentalFeatures = true # Enable experimental features in Pyright
45
+ include = ["src", "tests"] # Directories to include in type checking
46
+ exclude = ["**/__pycache__"] # Exclude cache directories
47
+
48
+ [tool.pytest.ini_options]
49
+ minversion = "6.0" # Minimum pytest version required
50
+ pythonpath = "src" # Specify the source directory for pytest to find modules
51
+ testpaths = ["tests"] # Directory containing test files
52
+ addopts = ["-p no:warnings", "--import-mode=importlib"] # Additional command-line options for pytest
53
+ xfail_strict = true # Treat unexpected passes as failures
54
+
55
+ [tool.black]
56
+ extend-exclude = ''' # Extend the default exclude pattern to ignore virtual environments and build artifacts
57
+ /(
58
+ \.venv
59
+ | venv
60
+ | \.egg-info
61
+ | build
62
+ | dist
63
+ )/
64
+ '''
65
+ skip-magic-trailing-comma = true # Disable skipping of magic trailing commas
66
+
67
+ [tool.ruff]
68
+ src = ["src", "tests"] # Source directory to lint
69
+ lint.select = [
70
+ "A",
71
+ "ARG",
72
+ "ASYNC",
73
+ "ASYNC1",
74
+ "B",
75
+ "C4",
76
+ "DTZ",
77
+ "E",
78
+ "EXE",
79
+ "F",
80
+ "FA",
81
+ "FLY",
82
+ "I",
83
+ "ICN",
84
+ "INT",
85
+ "ISC",
86
+ "LOG",
87
+ "NPY",
88
+ "PD",
89
+ "PERF",
90
+ "PIE",
91
+ "PL",
92
+ "PT",
93
+ "PTH",
94
+ "PYI",
95
+ "Q",
96
+ "RET",
97
+ "RSE",
98
+ "RUF",
99
+ "SIM",
100
+ "SLOT",
101
+ "T20",
102
+ "TCH",
103
+ "TID",
104
+ "UP",
105
+ "W",
106
+ "YTT",
107
+ ]
108
+ lint.ignore = [
109
+ "E501",
110
+ "ISC001",
111
+ "PLR",
112
+ "PERF203",
113
+ ]
114
+ lint.unfixable = [
115
+ "T20",
116
+ "F841",
117
+ ]
118
+ lint.pydocstyle.convention = "numpy" # Use NumPy docstring style for pydocstyle checks
119
+ lint.isort.known-first-party = ["atomery"] # First-party import for isort
120
+ lint.isort.required-imports = ["from __future__ import annotations"] # Ensure future annotations import for python <= 3.14
121
+ lint.isort.split-on-trailing-comma=false # Disable splitting on trailing commas for isort
122
+
123
+ [tool.ruff.lint.per-file-ignores] # Per-file ignores for Ruff linting
124
+ "__init__.py" = ["F401"] # Ignore unused imports in __init__.py files
125
+ "tests/**" = ["ANN", "ARG", "D", "E402", "PTH", "S101"] # Ignore specific rules in test files
126
+
127
+ [tool.docformatter] # Configuration for docformatter
128
+ pre-summary-newline = true # Ensure a newline before the summary line
129
+ black = true # Use Black-compatible formatting
@@ -0,0 +1,7 @@
1
+ """Initialize the `atomery` package."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from importlib.metadata import version
6
+
7
+ __version__ = version("atomery")
@@ -0,0 +1 @@
1
+ """Examples for the `atomery` package."""
@@ -0,0 +1,6 @@
1
+ from __future__ import annotations
2
+
3
+
4
+ def example_function() -> str:
5
+ """An example function that returns a greeting."""
6
+ return "Hello from `atomery`!"
File without changes