Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaponti5 committed Mar 21, 2024
1 parent b7196f5 commit 207ba8c
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
from codecs import open
from os import path

from setuptools import setup

ROOT = path.abspath(path.dirname(__file__))

with open(path.join(ROOT, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name="waco",
version="0.1.0",
description="Simulate the diffusion of contaminants in water networks.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Andrea Ponti",
author_email="[email protected]",
license="MIT",
url="https://andreaponti5.github.io/waco",
project_urls={
"Documentation": "https://andreaponti5.github.io/waco",
"Source": "https://github.com/andreaponti5/waco",
},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Operating System :: OS Independent"
],
packages=["waco"],
include_package_data=True,
install_requires=["wntr"]
)

0 comments on commit 207ba8c

Please sign in to comment.