-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
315 changed files
with
12,127 additions
and
16,601 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ omit = | |
*/site-packages/nose/* | ||
*/tests/* | ||
*.pyi | ||
PyPWA/libs/logger.py | ||
|
||
exclude_lines = | ||
raise NotImplementedError |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
# Contributors to PyPWA (in Chronological Order) | ||
|
||
## PyPWA Staff: | ||
### Current PyPWA Staff: | ||
- Carlos Salgado <https://github.com/cwsalgado> | ||
- Will Phelps <https://github.com/wphelps> | ||
- Mark Jones <[email protected]> <https://github.com/Markjonestx> | ||
|
||
### Previous PyPWA Staff: | ||
- Brandon DeMello <https://github.com/bdell> | ||
- Stephanie Bramlett <https://github.com/skbramlett> | ||
- Josh Pond <https://github.com/JTPond> | ||
- Mark Jones <[email protected]> <https://github.com/Markjonestx> | ||
- LaRay Hare <https://github.com/lmhare> | ||
- Christopher Banks <https://github.com/cjbanks> | ||
|
||
High School Interns: | ||
|
||
### High School Interns: | ||
- Ryan Wright <https://github.com/painballking> | ||
- Ran Amplitude benchmarks on the XeonPhi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,18 +38,18 @@ | |
- PyIntensities - Just the calculation half of PySimulate. | ||
- PyRejection - Just the rejection-method half of PySimulate. | ||
For information about how to use each of the programs, look in the docs folder | ||
included with the source code, or check the user docs at ReadTheDocs.io. | ||
Developer Docs | ||
============== | ||
To attempt to achieve a flexible fitter that could be quickly adapted to | ||
changing needs, we actually built the entire package around a generalized | ||
plugin loader. The "main" objects ore defined as plugins, along with each | ||
task that needed to be solved. This means that fitting, data loading, | ||
the processing module, simulation, optimizers, etc are all defined as | ||
changing needs, we actually built the entire package around a generalized | ||
plugin loader. The "main" objects ore defined as plugins, along with each | ||
task that needed to be solved. This means that fitting, data loading, | ||
the processing module, simulation, optimizers, etc are all defined as | ||
plugins internally. | ||
Package purposes | ||
|
@@ -77,18 +77,14 @@ | |
respectively. | ||
""" | ||
|
||
|
||
__author__ = "PyPWA Team and Contributors" | ||
__credits__ = ["Mark Jones"] | ||
__version__ = "2.2.0" | ||
__version__ = "3.0.0.dev" | ||
|
||
|
||
EMAIL = "[email protected]" | ||
LICENSE = "GPLv3" | ||
STATUS = "stable" | ||
STATUS = "development" | ||
MAINTAINER = "Mark Jones" | ||
AUTHOR = __author__ | ||
VERSION = __version__ | ||
|
||
|
||
from PyPWA.builtin_plugins.data.iterator import Iterator | ||
from PyPWA.builtin_plugins.data.memory import Memory |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.