-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added setuptools to required packages, removed readthedocs yml and en…
…v variable
- Loading branch information
Showing
4 changed files
with
3 additions
and
9 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ scipy | |
networkx | ||
pandas | ||
matplotlib | ||
setuptools | ||
|
||
# Optional | ||
plotly<=5.11.0 | ||
|
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 |
---|---|---|
|
@@ -7,12 +7,9 @@ | |
use_swig = False | ||
build = True | ||
|
||
# BUILD_WNTR_EXTENSIONS is defined as an environment variable for the project at readthedocs.org | ||
if '--no-build' in sys.argv: | ||
build = False | ||
sys.argv.remove('--no-build') | ||
elif 'BUILD_WNTR_EXTENSIONS' in os.environ and os.environ['BUILD_WNTR_EXTENSIONS'].lower() == 'false': | ||
build = False | ||
|
||
extension_modules = list() | ||
if build: | ||
|
@@ -75,7 +72,7 @@ | |
MAINTAINER_EMAIL = '[email protected]' | ||
LICENSE = 'Revised BSD' | ||
URL = 'https://github.com/USEPA/WNTR' | ||
DEPENDENCIES = ['numpy>=1.21', 'scipy', 'networkx', 'pandas', 'matplotlib'] | ||
DEPENDENCIES = ['numpy>=1.21', 'scipy', 'networkx', 'pandas', 'matplotlib', 'setuptools'] | ||
|
||
# use README file as the long description | ||
file_dir = os.path.abspath(os.path.dirname(__file__)) | ||
|