diff --git a/docs/source/conf.py b/docs/source/conf.py index 4864370..7e9868a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,8 @@ author = 'Jelena Tosovic, Domagoj Fijan, Marko Jukic, Urban Bren' # The full version, including alpha/beta/rc tags -release = '0.0.1' +version = "0.0.1" +release = "0.0.1" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index a7faa0d..c0a6535 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( # Self-descriptive entries which should always be present name="WaterNetworkAnalysis", - # version=0.0.1, + version="0.0.1", author="Domagoj Fijan, Jelena Tosovic, Marko Jukic, Urban Bren", author_email="jecat_90@live.com", description=short_description[0], @@ -72,10 +72,11 @@ "nglview", "wget", ], # Required packages, pulls from pip if needed; do not use for Conda deployment - # platforms=['Linux', - # 'Mac OS-X', - # 'Unix', - # 'Windows'], # Valid platforms your code works on, adjust to your flavor + platforms=['Linux', + 'Mac OS-X', + 'Unix', + 'Windows' + ], # Valid platforms your code works on, adjust to your flavor # Manual control if final package is compressible or not, set False to prevent the .egg from being made zip_safe=False, )