-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# -*- coding: utf-8 -*- | ||
__author__ = """Marios S. Kyriakou""" | ||
__email__ = "[email protected]" | ||
__version__ = "1.0.8" | ||
__version__ = "1.0.9" | ||
__copyright__ = """Copyright 2022, KIOS Research and Innovation Center of Excellence (KIOS CoE), | ||
University of Cyprus (www.kios.org.cy).""" | ||
__license__ = "EUPL License, Version 1.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from setuptools import setup | ||
from epyt import __version__ | ||
import os | ||
|
||
# python setup.py bdist_wheel | ||
|
@@ -25,7 +26,7 @@ | |
|
||
setup( | ||
name=module_name, | ||
version="1.0.8", | ||
version=f"{__version__}", | ||
author="Marios S. Kyriakou", | ||
author_email="[email protected]", | ||
description='EPyT: An EPANET-Python Toolkit for Smart Water Network Simulations. The EPyT is inspired by the ' | ||
|