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.
Files changed (25) hide show
  1. {captest-0.11.2/src/captest.egg-info → captest-0.13.0}/PKG-INFO +59 -3
  2. {captest-0.11.2 → captest-0.13.0}/setup.cfg +1 -1
  3. {captest-0.11.2 → captest-0.13.0}/setup.py +11 -9
  4. {captest-0.11.2 → captest-0.13.0}/src/captest/__init__.py +1 -0
  5. {captest-0.11.2 → captest-0.13.0}/src/captest/_version.py +3 -3
  6. {captest-0.11.2 → captest-0.13.0}/src/captest/capdata.py +275 -339
  7. {captest-0.11.2 → captest-0.13.0}/src/captest/io.py +150 -64
  8. captest-0.13.0/src/captest/plotting.py +492 -0
  9. {captest-0.11.2 → captest-0.13.0}/src/captest/prtest.py +1 -1
  10. {captest-0.11.2 → captest-0.13.0}/src/captest/util.py +14 -6
  11. {captest-0.11.2 → captest-0.13.0/src/captest.egg-info}/PKG-INFO +59 -3
  12. {captest-0.11.2 → captest-0.13.0}/src/captest.egg-info/SOURCES.txt +1 -0
  13. {captest-0.11.2 → captest-0.13.0}/src/captest.egg-info/requires.txt +11 -11
  14. {captest-0.11.2 → captest-0.13.0}/tests/test_CapData.py +435 -52
  15. {captest-0.11.2 → captest-0.13.0}/tests/test_io.py +213 -7
  16. {captest-0.11.2 → captest-0.13.0}/tests/test_util.py +3 -34
  17. {captest-0.11.2 → captest-0.13.0}/LICENSE.txt +0 -0
  18. {captest-0.11.2 → captest-0.13.0}/MANIFEST.in +0 -0
  19. {captest-0.11.2 → captest-0.13.0}/README.rst +0 -0
  20. {captest-0.11.2 → captest-0.13.0}/pyproject.toml +0 -0
  21. {captest-0.11.2 → captest-0.13.0}/src/captest/columngroups.py +0 -0
  22. {captest-0.11.2 → captest-0.13.0}/src/captest.egg-info/dependency_links.txt +0 -0
  23. {captest-0.11.2 → captest-0.13.0}/src/captest.egg-info/top_level.txt +0 -0
  24. {captest-0.11.2 → captest-0.13.0}/tests/test_columngroups.py +0 -0
  25. {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.11.2
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.7
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
- License-File: LICENSE.txt
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
  ==================
@@ -2,7 +2,7 @@
2
2
  universal = 1
3
3
 
4
4
  [metadata]
5
- license_file = LICENSE.txt
5
+ license_files = LICENSE.txt
6
6
 
7
7
  [flake8]
8
8
  max-line-length = 88
@@ -20,7 +20,7 @@ INSTALL_REQUIRES=[
20
20
  'matplotlib>=2',
21
21
  'statsmodels>=0.8',
22
22
  'scikit-learn>=0.19',
23
- 'bokeh>=1',
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.7',
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=('Framework and methods to facilitate photovoltaic '
64
- 'facility capacity testing following ASTM E2848.'),
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,
@@ -4,6 +4,7 @@ from captest import (
4
4
  prtest,
5
5
  columngroups,
6
6
  io,
7
+ plotting,
7
8
  )
8
9
 
9
10
  from captest.io import (
@@ -8,11 +8,11 @@ import json
8
8
 
9
9
  version_json = '''
10
10
  {
11
- "date": "2023-04-21T14:55:01-0500",
11
+ "date": "2024-05-05T21:46:58-0500",
12
12
  "dirty": false,
13
13
  "error": null,
14
- "full-revisionid": "8ec7b7e11888d0eec6dec52db5e309322ac1445d",
15
- "version": "0.11.2"
14
+ "full-revisionid": "003e2a96d2972e7b247c802790262dac044aa853",
15
+ "version": "0.13.0"
16
16
  }
17
17
  ''' # END VERSION_JSON
18
18