Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions swmm-toolkit/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

Michael Tryby <[email protected]> (public domain)

Michael Tryby <[email protected]>
Jennifer Wu <[email protected]>
Caleb Buahin <[email protected]>
Laurent Courty <[email protected]>
Expand Down
11 changes: 5 additions & 6 deletions swmm-toolkit/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# setup.py - Setup script for swmm-toolkit python package
#
# Created: Jul 2, 2018
# Updated: Jun 7, 2021
# Updated: Sep 4, 2025
#
# Author: See AUTHORS
#
Expand Down Expand Up @@ -112,13 +112,13 @@ def exclude_files(cmake_manifest):

setup(
name = "swmm-toolkit",
version = "0.15.5",
version = "0.16.0",

packages = ["swmm_toolkit", "swmm.toolkit"],
package_dir = package_dir,

zip_safe = False,
install_requires = ["aenum==3.1.11"],
install_requires = ["aenum>=3.1.11"],

cmdclass = {"clean": CleanCommand},
cmake_args = cmake_args,
Expand All @@ -130,7 +130,7 @@ def exclude_files(cmake_manifest):
url='https://github.com/pyswmm/swmm-python',

author='See AUTHORS',
maintainer_email='bemcdonnell@gmail.com',
maintainer_email='michael.tryby@gmail.com',
license='CC0',
license_files=license_files,
keywords="swmm5, swmm, stormwater, hydraulics, hydrology",
Expand All @@ -140,12 +140,11 @@ def exclude_files(cmake_manifest):
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: C",
"Development Status :: 5 - Production/Stable",
]
Expand Down
13 changes: 6 additions & 7 deletions swmm-toolkit/src/swmm/toolkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# __init__.py - SWMM toolkit package
#
# Created: Aug 9, 2018
# Updated: July 2, 2022
# Updated: September 4, 2025
#
# Author: See AUTHORS
#
Expand All @@ -15,16 +15,15 @@


__author__ = "See AUTHORS"
__copyright__ = "None"
__credits__ = "Colleen Barr, Sam Hatchett"
__credits__ = "Colleen Barr"
__license__ = "CC0 1.0 Universal"

__version__ = "0.15.5"
__date__ = "June 7, 2021"
__version__ = "0.16.0"
__date__ = "September 4, 2025"

__maintainer__ = "Michael Tryby"
__email__ = "tryby.michael@epa.gov"
__status__ = "Beta"
__email__ = "michael[email protected]"
__status__ = "Production/Stable"


import os
Expand Down
Loading