frankford 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.
- frankford-0.1/.gitignore +28 -0
- frankford-0.1/.readthedocs.yaml +26 -0
- frankford-0.1/LICENSE +674 -0
- frankford-0.1/PKG-INFO +47 -0
- frankford-0.1/README.md +37 -0
- frankford-0.1/README_pypi.md +25 -0
- frankford-0.1/docs/Makefile +20 -0
- frankford-0.1/docs/make.bat +35 -0
- frankford-0.1/docs/requirements.txt +21 -0
- frankford-0.1/docs/source/basic_example.rst +149 -0
- frankford-0.1/docs/source/conf.py +58 -0
- frankford-0.1/docs/source/datasets.rst +52 -0
- frankford-0.1/docs/source/fit_data.rst +75 -0
- frankford-0.1/docs/source/index.rst +36 -0
- frankford-0.1/docs/source/introduction.rst +81 -0
- frankford-0.1/docs/source/overview.rst +47 -0
- frankford-0.1/docs/source/parameters.rst +77 -0
- frankford-0.1/docs/source/plot.png +0 -0
- frankford-0.1/pyproject.toml +47 -0
- frankford-0.1/src/frankford/__init__.py +21 -0
- frankford-0.1/src/frankford/_frankford.py +1709 -0
- frankford-0.1/src/frankford/gpu_code.cu +1222 -0
frankford-0.1/.gitignore
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Copyright (C) 2024 Edward F. Behn, Jr.
|
|
2
|
+
|
|
3
|
+
# This program is free software: you can redistribute it and/or modify
|
|
4
|
+
# it under the terms of the GNU General Public License as published by
|
|
5
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
6
|
+
# (at your option) any later version.
|
|
7
|
+
|
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11
|
+
# GNU General Public License for more details.
|
|
12
|
+
|
|
13
|
+
# You should have received a copy of the GNU General Public License
|
|
14
|
+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
15
|
+
|
|
16
|
+
bin
|
|
17
|
+
include
|
|
18
|
+
lib
|
|
19
|
+
lib64
|
|
20
|
+
pyvenv.cfg
|
|
21
|
+
|
|
22
|
+
__pycache__
|
|
23
|
+
|
|
24
|
+
dist
|
|
25
|
+
|
|
26
|
+
docs/build
|
|
27
|
+
|
|
28
|
+
.vscode
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Read the Docs configuration file for Sphinx projects
|
|
2
|
+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
3
|
+
|
|
4
|
+
# Required
|
|
5
|
+
version: 2
|
|
6
|
+
|
|
7
|
+
# Set the OS, Python version and other tools you might need
|
|
8
|
+
build:
|
|
9
|
+
os: ubuntu-22.04
|
|
10
|
+
tools:
|
|
11
|
+
python: "3.12"
|
|
12
|
+
# You can also specify other tool versions:
|
|
13
|
+
# nodejs: "20"
|
|
14
|
+
# rust: "1.70"
|
|
15
|
+
# golang: "1.20"
|
|
16
|
+
|
|
17
|
+
# Build documentation in the "docs/" directory with Sphinx
|
|
18
|
+
sphinx:
|
|
19
|
+
configuration: docs/source/conf.py
|
|
20
|
+
|
|
21
|
+
# Optional but recommended, declare the Python requirements required
|
|
22
|
+
# to build your documentation
|
|
23
|
+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
|
|
24
|
+
python:
|
|
25
|
+
install:
|
|
26
|
+
- requirements: docs/requirements.txt
|