captest 0.11.2__tar.gz → 0.13.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.
- {captest-0.11.2/src/captest.egg-info → captest-0.13.0}/PKG-INFO +59 -3
- {captest-0.11.2 → captest-0.13.0}/setup.cfg +1 -1
- {captest-0.11.2 → captest-0.13.0}/setup.py +11 -9
- {captest-0.11.2 → captest-0.13.0}/src/captest/__init__.py +1 -0
- {captest-0.11.2 → captest-0.13.0}/src/captest/_version.py +3 -3
- {captest-0.11.2 → captest-0.13.0}/src/captest/capdata.py +275 -339
- {captest-0.11.2 → captest-0.13.0}/src/captest/io.py +150 -64
- captest-0.13.0/src/captest/plotting.py +492 -0
- {captest-0.11.2 → captest-0.13.0}/src/captest/prtest.py +1 -1
- {captest-0.11.2 → captest-0.13.0}/src/captest/util.py +14 -6
- {captest-0.11.2 → captest-0.13.0/src/captest.egg-info}/PKG-INFO +59 -3
- {captest-0.11.2 → captest-0.13.0}/src/captest.egg-info/SOURCES.txt +1 -0
- {captest-0.11.2 → captest-0.13.0}/src/captest.egg-info/requires.txt +11 -11
- {captest-0.11.2 → captest-0.13.0}/tests/test_CapData.py +435 -52
- {captest-0.11.2 → captest-0.13.0}/tests/test_io.py +213 -7
- {captest-0.11.2 → captest-0.13.0}/tests/test_util.py +3 -34
- {captest-0.11.2 → captest-0.13.0}/LICENSE.txt +0 -0
- {captest-0.11.2 → captest-0.13.0}/MANIFEST.in +0 -0
- {captest-0.11.2 → captest-0.13.0}/README.rst +0 -0
- {captest-0.11.2 → captest-0.13.0}/pyproject.toml +0 -0
- {captest-0.11.2 → captest-0.13.0}/src/captest/columngroups.py +0 -0
- {captest-0.11.2 → captest-0.13.0}/src/captest.egg-info/dependency_links.txt +0 -0
- {captest-0.11.2 → captest-0.13.0}/src/captest.egg-info/top_level.txt +0 -0
- {captest-0.11.2 → captest-0.13.0}/tests/test_columngroups.py +0 -0
- {captest-0.11.2 → captest-0.13.0}/tests/test_prtest.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: captest
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.13.0
|
|
4
4
|
Summary: Framework and methods to facilitate photovoltaic facility capacity testing following ASTM E2848.
|
|
5
5
|
Home-page: http://github.com/bt-/pvcaptest
|
|
6
6
|
Author: Ben Taylor
|
|
@@ -14,13 +14,69 @@ Classifier: Intended Audience :: Science/Research
|
|
|
14
14
|
Classifier: License :: OSI Approved :: MIT License
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
16
|
Classifier: Topic :: Scientific/Engineering
|
|
17
|
-
Requires-Python: >=3.
|
|
17
|
+
Requires-Python: >=3.8
|
|
18
|
+
Description-Content-Type: text/x-rst
|
|
19
|
+
License-File: LICENSE.txt
|
|
20
|
+
Requires-Dist: pandas>=1
|
|
21
|
+
Requires-Dist: numpy>=1.13.0
|
|
22
|
+
Requires-Dist: python-dateutil>=2.5
|
|
23
|
+
Requires-Dist: matplotlib>=2
|
|
24
|
+
Requires-Dist: statsmodels>=0.8
|
|
25
|
+
Requires-Dist: scikit-learn>=0.19
|
|
26
|
+
Requires-Dist: bokeh>=3.0.0
|
|
27
|
+
Requires-Dist: colorcet
|
|
28
|
+
Requires-Dist: param
|
|
18
29
|
Provides-Extra: optional
|
|
30
|
+
Requires-Dist: holoviews>=1.14.8; extra == "optional"
|
|
31
|
+
Requires-Dist: panel; extra == "optional"
|
|
32
|
+
Requires-Dist: pvlib>=0.9.0; extra == "optional"
|
|
33
|
+
Requires-Dist: openpyxl; extra == "optional"
|
|
19
34
|
Provides-Extra: test
|
|
35
|
+
Requires-Dist: holoviews>=1.14.8; extra == "test"
|
|
36
|
+
Requires-Dist: panel; extra == "test"
|
|
37
|
+
Requires-Dist: pvlib>=0.9.0; extra == "test"
|
|
38
|
+
Requires-Dist: openpyxl; extra == "test"
|
|
39
|
+
Requires-Dist: coveralls; extra == "test"
|
|
40
|
+
Requires-Dist: pytest; extra == "test"
|
|
41
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
42
|
+
Requires-Dist: pytest-mock; extra == "test"
|
|
43
|
+
Requires-Dist: pytest-timeout; extra == "test"
|
|
20
44
|
Provides-Extra: build
|
|
45
|
+
Requires-Dist: holoviews>=1.14.8; extra == "build"
|
|
46
|
+
Requires-Dist: panel; extra == "build"
|
|
47
|
+
Requires-Dist: pvlib>=0.9.0; extra == "build"
|
|
48
|
+
Requires-Dist: openpyxl; extra == "build"
|
|
49
|
+
Requires-Dist: build; extra == "build"
|
|
50
|
+
Requires-Dist: twine; extra == "build"
|
|
21
51
|
Provides-Extra: docs
|
|
52
|
+
Requires-Dist: holoviews>=1.14.8; extra == "docs"
|
|
53
|
+
Requires-Dist: panel; extra == "docs"
|
|
54
|
+
Requires-Dist: pvlib>=0.9.0; extra == "docs"
|
|
55
|
+
Requires-Dist: openpyxl; extra == "docs"
|
|
56
|
+
Requires-Dist: docutils==0.18.1; extra == "docs"
|
|
57
|
+
Requires-Dist: nbsphinx==0.9.1; extra == "docs"
|
|
58
|
+
Requires-Dist: notebook; extra == "docs"
|
|
59
|
+
Requires-Dist: recommonmark==0.7.1; extra == "docs"
|
|
60
|
+
Requires-Dist: sphinx==6.1.3; extra == "docs"
|
|
61
|
+
Requires-Dist: sphinx_rtd_theme==1.2.0; extra == "docs"
|
|
22
62
|
Provides-Extra: all
|
|
23
|
-
|
|
63
|
+
Requires-Dist: build; extra == "all"
|
|
64
|
+
Requires-Dist: coveralls; extra == "all"
|
|
65
|
+
Requires-Dist: docutils==0.18.1; extra == "all"
|
|
66
|
+
Requires-Dist: holoviews>=1.14.8; extra == "all"
|
|
67
|
+
Requires-Dist: nbsphinx==0.9.1; extra == "all"
|
|
68
|
+
Requires-Dist: notebook; extra == "all"
|
|
69
|
+
Requires-Dist: openpyxl; extra == "all"
|
|
70
|
+
Requires-Dist: panel; extra == "all"
|
|
71
|
+
Requires-Dist: pvlib>=0.9.0; extra == "all"
|
|
72
|
+
Requires-Dist: pytest; extra == "all"
|
|
73
|
+
Requires-Dist: pytest-cov; extra == "all"
|
|
74
|
+
Requires-Dist: pytest-mock; extra == "all"
|
|
75
|
+
Requires-Dist: pytest-timeout; extra == "all"
|
|
76
|
+
Requires-Dist: recommonmark==0.7.1; extra == "all"
|
|
77
|
+
Requires-Dist: sphinx==6.1.3; extra == "all"
|
|
78
|
+
Requires-Dist: sphinx_rtd_theme==1.2.0; extra == "all"
|
|
79
|
+
Requires-Dist: twine; extra == "all"
|
|
24
80
|
|
|
25
81
|
pvcaptest
|
|
26
82
|
==================
|
|
@@ -20,7 +20,7 @@ INSTALL_REQUIRES=[
|
|
|
20
20
|
'matplotlib>=2',
|
|
21
21
|
'statsmodels>=0.8',
|
|
22
22
|
'scikit-learn>=0.19',
|
|
23
|
-
'bokeh>=
|
|
23
|
+
'bokeh>=3.0.0',
|
|
24
24
|
'colorcet',
|
|
25
25
|
'param',
|
|
26
26
|
]
|
|
@@ -40,12 +40,12 @@ EXTRAS_REQUIRE['build'] = EXTRAS_REQUIRE['optional'] + [
|
|
|
40
40
|
'twine',
|
|
41
41
|
]
|
|
42
42
|
EXTRAS_REQUIRE['docs'] = EXTRAS_REQUIRE['optional'] + [
|
|
43
|
-
'docutils',
|
|
44
|
-
'nbsphinx',
|
|
43
|
+
'docutils==0.18.1',
|
|
44
|
+
'nbsphinx==0.9.1',
|
|
45
45
|
'notebook',
|
|
46
|
-
'recommonmark',
|
|
47
|
-
'sphinx',
|
|
48
|
-
'sphinx_rtd_theme',
|
|
46
|
+
'recommonmark==0.7.1',
|
|
47
|
+
'sphinx==6.1.3',
|
|
48
|
+
'sphinx_rtd_theme==1.2.0',
|
|
49
49
|
]
|
|
50
50
|
EXTRAS_REQUIRE['all'] = sorted(set(sum(EXTRAS_REQUIRE.values(), [])))
|
|
51
51
|
|
|
@@ -56,13 +56,15 @@ setup(
|
|
|
56
56
|
url='http://github.com/bt-/pvcaptest',
|
|
57
57
|
license='MIT',
|
|
58
58
|
author='Ben Taylor',
|
|
59
|
-
python_requires='>=3.
|
|
59
|
+
python_requires='>=3.8',
|
|
60
60
|
install_requires=INSTALL_REQUIRES,
|
|
61
61
|
extras_require=EXTRAS_REQUIRE,
|
|
62
62
|
author_email='benjaming.taylor@gmail.com',
|
|
63
|
-
description=(
|
|
64
|
-
|
|
63
|
+
description=(
|
|
64
|
+
'Framework and methods to facilitate photovoltaic '
|
|
65
|
+
'facility capacity testing following ASTM E2848.'),
|
|
65
66
|
long_description=long_description,
|
|
67
|
+
long_description_content_type='text/x-rst',
|
|
66
68
|
packages=find_packages(where="src"),
|
|
67
69
|
package_dir={"": "src"},
|
|
68
70
|
include_package_data=True,
|
|
@@ -8,11 +8,11 @@ import json
|
|
|
8
8
|
|
|
9
9
|
version_json = '''
|
|
10
10
|
{
|
|
11
|
-
"date": "
|
|
11
|
+
"date": "2024-05-05T21:46:58-0500",
|
|
12
12
|
"dirty": false,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "0.
|
|
14
|
+
"full-revisionid": "003e2a96d2972e7b247c802790262dac044aa853",
|
|
15
|
+
"version": "0.13.0"
|
|
16
16
|
}
|
|
17
17
|
''' # END VERSION_JSON
|
|
18
18
|
|