Skip to content

Commit

Permalink
Merge branch 'main' into dew_thick_doc
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusHolly committed May 5, 2023
2 parents 94ac7c6 + ee8c8e0 commit a19904a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# WaterTAP

This is the WaterTAP development repository.

WaterTAP is developed as part of the [National Alliance for Water Innovation](https://nawihub.org/) project.
Expand Down
23 changes: 5 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,10 @@

# Always prefer setuptools over distutils
from setuptools import setup, find_namespace_packages
import pathlib

cwd = pathlib.Path(__file__).parent.resolve() # this will come in handy, probably

long_description = """WaterTAP is an open-source, integrated suite of predictive multi-scale models
for design and optimization of water treatment processes and systems. Specifically, WaterTAP is a new
library of water treatment-specific property, process unit, and network models that depend on the IDAES Platform,
an open source, next generation process systems engineering platform developed at the National Energy Technology
Laboratory with other partners. The WaterTAP project is funded by the NAWI as a part of U.S. Department of
Energy’s Energy-Water Desalination Hub. The goal of WaterTAP is to assist the hub and the broader water R&D
community in assessing existing and emerging water treatment technologies by 1) providing predictive capabilities
involving the design, optimization, and performance of water treatment systems that will lead to improved energy
efficiency and lower cost, 2) advancing the state of the art for the design of water treatment components, systems
and networks to be comparable with, or even surpass, that in the chemical industry, and 3) disseminating these tools
for active use by water treatment researchers and engineers.""".replace(
"\n", " "
).strip()
from pathlib import Path

cwd = Path(__file__).parent
long_description = (cwd / "README.md").read_text()

SPECIAL_DEPENDENCIES_FOR_RELEASE = [
"idaes-pse==2.0.*", # from PyPI
Expand All @@ -54,7 +40,7 @@
version="0.9.dev0",
description="WaterTAP modeling library",
long_description=long_description,
long_description_content_type="text/plain",
long_description_content_type="text/markdown",
author="NAWI team",
license="BSD",
# Classifiers help users find your project by categorizing it.
Expand Down Expand Up @@ -123,6 +109,7 @@
"jinja2<3.1.0", # see watertap-org/watertap#449
"Sphinx", # docs
"sphinx_rtd_theme", # docs
"urllib3 < 2", # see watertap-org/watertap#1021,
# other requirements
"linkify-it-py",
"json-schema-for-humans", # pretty JSON schema in HTML
Expand Down

0 comments on commit a19904a

Please sign in to comment.