benefits 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.
- benefits-1.0.0/PKG-INFO +22 -0
- benefits-1.0.0/README.md +3 -0
- benefits-1.0.0/benefits.egg-info/PKG-INFO +22 -0
- benefits-1.0.0/benefits.egg-info/SOURCES.txt +8 -0
- benefits-1.0.0/benefits.egg-info/dependency_links.txt +1 -0
- benefits-1.0.0/benefits.egg-info/requires.txt +2 -0
- benefits-1.0.0/benefits.egg-info/top_level.txt +1 -0
- benefits-1.0.0/setup.cfg +4 -0
- benefits-1.0.0/setup.py +30 -0
- benefits-1.0.0/src/__init__.py +1 -0
benefits-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: benefits
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Scripts to compute benefit metrics
|
|
5
|
+
Home-page: https://gitlab.com/sesit/Transmission-Cost-Benefits
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: pandas>=1.5.3
|
|
11
|
+
Requires-Dist: openpyxl
|
|
12
|
+
Dynamic: classifier
|
|
13
|
+
Dynamic: description
|
|
14
|
+
Dynamic: description-content-type
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: requires-dist
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
The Transmission Cost-Benefits Framework
|
|
21
|
+
Sustainable Energy Systems Integration and Transitions (SESIT) Group
|
|
22
|
+
University of Victoria, 2026
|
benefits-1.0.0/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: benefits
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Scripts to compute benefit metrics
|
|
5
|
+
Home-page: https://gitlab.com/sesit/Transmission-Cost-Benefits
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: pandas>=1.5.3
|
|
11
|
+
Requires-Dist: openpyxl
|
|
12
|
+
Dynamic: classifier
|
|
13
|
+
Dynamic: description
|
|
14
|
+
Dynamic: description-content-type
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: requires-dist
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
The Transmission Cost-Benefits Framework
|
|
21
|
+
Sustainable Energy Systems Integration and Transitions (SESIT) Group
|
|
22
|
+
University of Victoria, 2026
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
benefits-1.0.0/setup.cfg
ADDED
benefits-1.0.0/setup.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# coders-to-iamc/setup.py
|
|
2
|
+
|
|
3
|
+
from os.path import abspath, dirname, join
|
|
4
|
+
|
|
5
|
+
from setuptools import find_packages, setup
|
|
6
|
+
|
|
7
|
+
# Define the directory containing this file
|
|
8
|
+
this_dir = abspath(dirname(__file__))
|
|
9
|
+
|
|
10
|
+
# Read the long description from README.md
|
|
11
|
+
with open(join(this_dir, "README.md"), encoding="utf-8") as f:
|
|
12
|
+
long_description = f.read()
|
|
13
|
+
|
|
14
|
+
setup(
|
|
15
|
+
name="benefits",
|
|
16
|
+
version="1.0.0",
|
|
17
|
+
description="Scripts to compute benefit metrics",
|
|
18
|
+
long_description=long_description,
|
|
19
|
+
long_description_content_type="text/markdown",
|
|
20
|
+
url="https://gitlab.com/sesit/Transmission-Cost-Benefits",
|
|
21
|
+
install_requires=["pandas>=1.5.3", "openpyxl"],
|
|
22
|
+
packages=find_packages(include=["src/benefits"]),
|
|
23
|
+
include_package_data=True,
|
|
24
|
+
classifiers=[
|
|
25
|
+
"Programming Language :: Python :: 3",
|
|
26
|
+
"Operating System :: OS Independent",
|
|
27
|
+
],
|
|
28
|
+
python_requires=">=3.9", # Specify the Python versions you support
|
|
29
|
+
package_data={"": ["*.yaml"]},
|
|
30
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# src package
|