-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (31 loc) · 989 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: Copyright © 2023 Idiap Research Institute, EPFL
#
# SPDX-FileContributor: Roberto Boghetti <[email protected]>
# SPDX-FileContributor: Giuseppe Peronato <[email protected]>
#
# SPDX-License-Identifier: AGPL-3.0-only
"""Setup script"""
from setuptools import setup
setup(
name="pydhn",
version="0.1.3",
description="A library for the simulation of district heating networks.",
url="https://www.github.com/idiap/pydhn",
author="Roberto Boghetti, Giuseppe Peronato",
author_email="[email protected], [email protected]",
license="AGPL v3",
packages=["pydhn"],
python_requires=">=3.9,<3.13",
install_requires=[
"numpy>=1.25",
"scipy>=1.11",
"networkx>=2.6,<3",
"matplotlib",
"pandas",
"geopandas>=0.13.2,<0.14",
"plotly",
],
extras_require={"dev": ["coverage", "openpyxl"]},
)