peebee 1.0.0__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.
- peebee-1.0.0/.readthedocs.yaml +23 -0
- peebee-1.0.0/LICENSE +674 -0
- peebee-1.0.0/MANIFEST.in +1 -0
- peebee-1.0.0/PKG-INFO +100 -0
- peebee-1.0.0/README.md +79 -0
- peebee-1.0.0/changelog.txt +59 -0
- peebee-1.0.0/docs/Makefile +20 -0
- peebee-1.0.0/docs/conf.py +83 -0
- peebee-1.0.0/docs/convenience.rst +2 -0
- peebee-1.0.0/docs/fitter.rst +2 -0
- peebee-1.0.0/docs/index.rst +36 -0
- peebee-1.0.0/docs/make.bat +35 -0
- peebee-1.0.0/docs/models.rst +2 -0
- peebee-1.0.0/docs/requirements.txt +13 -0
- peebee-1.0.0/docs/sampler.rst +2 -0
- peebee-1.0.0/docs/transforms.rst +2 -0
- peebee-1.0.0/peebee/__init__.py +0 -0
- peebee-1.0.0/peebee/__pycache__/__init__.cpython-310.pyc +0 -0
- peebee-1.0.0/peebee/__pycache__/convenience.cpython-310.pyc +0 -0
- peebee-1.0.0/peebee/__pycache__/decorators.cpython-310.pyc +0 -0
- peebee-1.0.0/peebee/__pycache__/fitter.cpython-310.pyc +0 -0
- peebee-1.0.0/peebee/__pycache__/glob.cpython-310.pyc +0 -0
- peebee-1.0.0/peebee/__pycache__/models.cpython-310.pyc +0 -0
- peebee-1.0.0/peebee/__pycache__/sampler.cpython-310.pyc +0 -0
- peebee-1.0.0/peebee/__pycache__/transforms.cpython-310.pyc +0 -0
- peebee-1.0.0/peebee/convenience.py +236 -0
- peebee-1.0.0/peebee/fitter.py +202 -0
- peebee-1.0.0/peebee/glob.py +65 -0
- peebee-1.0.0/peebee/models.py +782 -0
- peebee-1.0.0/peebee/sampler.py +48 -0
- peebee-1.0.0/peebee/transforms.py +137 -0
- peebee-1.0.0/peebee.egg-info/PKG-INFO +100 -0
- peebee-1.0.0/peebee.egg-info/SOURCES.txt +36 -0
- peebee-1.0.0/peebee.egg-info/dependency_links.txt +1 -0
- peebee-1.0.0/peebee.egg-info/requires.txt +7 -0
- peebee-1.0.0/peebee.egg-info/top_level.txt +1 -0
- peebee-1.0.0/setup.cfg +4 -0
- peebee-1.0.0/setup.py +32 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# .readthedocs.yaml
|
|
2
|
+
# Read the Docs configuration file
|
|
3
|
+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
4
|
+
|
|
5
|
+
# Required
|
|
6
|
+
version: 2
|
|
7
|
+
|
|
8
|
+
# Set the OS, Python version and other tools you might need
|
|
9
|
+
build:
|
|
10
|
+
os: ubuntu-22.04
|
|
11
|
+
tools:
|
|
12
|
+
python: "3.10"
|
|
13
|
+
|
|
14
|
+
# Build documentation in the "docs/" directory with Sphinx
|
|
15
|
+
sphinx:
|
|
16
|
+
configuration: docs/conf.py
|
|
17
|
+
|
|
18
|
+
# Optional but recommended, declare the Python requirements required
|
|
19
|
+
# to build your documentation
|
|
20
|
+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
|
|
21
|
+
python:
|
|
22
|
+
install:
|
|
23
|
+
- requirements: docs/requirements.txt
|