From 8c0644bf99344ba10faddc4e7fc37096d204a5df Mon Sep 17 00:00:00 2001 From: Juan Gallego-Calderon <75748913+jgallegocalderon@users.noreply.github.com> Date: Fri, 10 Apr 2026 15:13:06 -0600 Subject: [PATCH] Deleting setup.py to avoid issues with the deployment --- setup.py | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100755 setup.py diff --git a/setup.py b/setup.py deleted file mode 100755 index a1694ec..0000000 --- a/setup.py +++ /dev/null @@ -1,39 +0,0 @@ -''' -Copyright 2021, Battelle Energy Alliance, LLC -''' - -import os -import sys - -from setuptools import setup, find_packages - -with open(file="README.md", mode="r", encoding='utf-8') as readme_handle: - long_description = readme_handle.read() - -REQUIRED = [ - "requests", - "numpy", - "pandas", - "scipy", - "matplotlib", - "shapely" -] - -setup( - name='HydroGenerate', - # Read this as - # - MAJOR VERSION 1 - # - MINOR VERSION 0 - # - MAINTENANCE VERSION 0 - version='1.4.0', - description='', - long_description=open('README.md').read(), - long_description_content_type='text/markdown', - url='https://github.com/IdahoLabResearch/HydroGenerate', - author='Juan Gallego-Calderon', - author_email='juan.gallegocalderon@inl.gov', - license='BSD 3-Clause License', - install_requires=REQUIRED, - packages=find_packages(), - python_requires='>=3.10' -)