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.
Files changed (38) hide show
  1. peebee-1.0.0/.readthedocs.yaml +23 -0
  2. peebee-1.0.0/LICENSE +674 -0
  3. peebee-1.0.0/MANIFEST.in +1 -0
  4. peebee-1.0.0/PKG-INFO +100 -0
  5. peebee-1.0.0/README.md +79 -0
  6. peebee-1.0.0/changelog.txt +59 -0
  7. peebee-1.0.0/docs/Makefile +20 -0
  8. peebee-1.0.0/docs/conf.py +83 -0
  9. peebee-1.0.0/docs/convenience.rst +2 -0
  10. peebee-1.0.0/docs/fitter.rst +2 -0
  11. peebee-1.0.0/docs/index.rst +36 -0
  12. peebee-1.0.0/docs/make.bat +35 -0
  13. peebee-1.0.0/docs/models.rst +2 -0
  14. peebee-1.0.0/docs/requirements.txt +13 -0
  15. peebee-1.0.0/docs/sampler.rst +2 -0
  16. peebee-1.0.0/docs/transforms.rst +2 -0
  17. peebee-1.0.0/peebee/__init__.py +0 -0
  18. peebee-1.0.0/peebee/__pycache__/__init__.cpython-310.pyc +0 -0
  19. peebee-1.0.0/peebee/__pycache__/convenience.cpython-310.pyc +0 -0
  20. peebee-1.0.0/peebee/__pycache__/decorators.cpython-310.pyc +0 -0
  21. peebee-1.0.0/peebee/__pycache__/fitter.cpython-310.pyc +0 -0
  22. peebee-1.0.0/peebee/__pycache__/glob.cpython-310.pyc +0 -0
  23. peebee-1.0.0/peebee/__pycache__/models.cpython-310.pyc +0 -0
  24. peebee-1.0.0/peebee/__pycache__/sampler.cpython-310.pyc +0 -0
  25. peebee-1.0.0/peebee/__pycache__/transforms.cpython-310.pyc +0 -0
  26. peebee-1.0.0/peebee/convenience.py +236 -0
  27. peebee-1.0.0/peebee/fitter.py +202 -0
  28. peebee-1.0.0/peebee/glob.py +65 -0
  29. peebee-1.0.0/peebee/models.py +782 -0
  30. peebee-1.0.0/peebee/sampler.py +48 -0
  31. peebee-1.0.0/peebee/transforms.py +137 -0
  32. peebee-1.0.0/peebee.egg-info/PKG-INFO +100 -0
  33. peebee-1.0.0/peebee.egg-info/SOURCES.txt +36 -0
  34. peebee-1.0.0/peebee.egg-info/dependency_links.txt +1 -0
  35. peebee-1.0.0/peebee.egg-info/requires.txt +7 -0
  36. peebee-1.0.0/peebee.egg-info/top_level.txt +1 -0
  37. peebee-1.0.0/setup.cfg +4 -0
  38. 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