From be45ba76acb1f3c3c9a8e53b33012689d717110a Mon Sep 17 00:00:00 2001 From: Mojtaba Sardarmehni Date: Mon, 10 May 2021 14:22:51 -0400 Subject: [PATCH] V 0.1.4 --- HISTORY.rst | 7 +++++++ README.rst | 6 ++++-- setup.py | 3 ++- swolfpy_processmodels/__init__.py | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index f576aa4..a24dbed 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,13 @@ History ======= +0.1.4 (2021-05-10) +------------------ + +* New Life-cyle model: TS +* Add Cost calculations + + 0.1.0 (2020-05-06) ------------------ diff --git a/README.rst b/README.rst index 153d8e7..c51a6ba 100644 --- a/README.rst +++ b/README.rst @@ -32,7 +32,7 @@ Life-Cylce Process Models for swolfpy (swolfpy_processmodels) * https://go.ncsu.edu/swolfpy * https://jwlevis.wixsite.com/swolf -| + Features -------- * Life-cycle process models for solid waste management (SWM) processes. @@ -55,11 +55,13 @@ Features - Calculates emissions, mass flows, and resource use and recovery for anaerobic digestion process and final use of compost. * - Single-Stream Material Recovery facility (**SS_MRF**) - Calculates cost, emissions, and energy use associated with material recovery facilities. + * - Transfer Station (**TS**) + - Calculates cost, emissions, and energy use associated with Transfer Stations. * - Single Family Collection (**SF_Col**) - Calculates cost, emissions, and fossil fuel use associated with MSW collection. -| + .. Installation Installation diff --git a/setup.py b/setup.py index 43420f4..d9d4d0a 100644 --- a/setup.py +++ b/setup.py @@ -49,6 +49,7 @@ install_requires=requirements, license="GNU GENERAL PUBLIC LICENSE V2", long_description=readme + '\n\n' + history, + long_description_content_type= 'text/x-rst', include_package_data=True, keywords='swolfpy_processmodels', name='swolfpy_processmodels', @@ -59,6 +60,6 @@ test_suite='tests', tests_require=test_requirements, url='https://bitbucket.org/msm_sardar/swolfpy-processmodels', - version='0.1.3', + version='0.1.4', zip_safe=False, ) diff --git a/swolfpy_processmodels/__init__.py b/swolfpy_processmodels/__init__.py index ea51db8..a38ec45 100644 --- a/swolfpy_processmodels/__init__.py +++ b/swolfpy_processmodels/__init__.py @@ -27,4 +27,4 @@ 'SF_Col', 'TS'] -__version__ = '0.1.3' +__version__ = '0.1.4'