| [build-system] |
| requires = ["setuptools>=61.0", "wheel"] |
| build-backend = "setuptools.build_meta" |
|
|
| [project] |
| name = "morl4water" |
| version = "0.1.3" |
| description = "Multi-Objective Reinforcement Learning environments of water management problems" |
| readme = "README.md" |
| requires-python = ">=3.11" |
| license = { text = "MIT" } |
|
|
| authors = [ |
| { name = "Zuzanna Osika", email = "z.osika@tudelft.nl" } |
| ] |
|
|
| dependencies = [ |
| "mo-gymnasium==1.1.0", |
| "gymnasium", |
| "h5py", |
| "opencv-python==4.8.0.76", |
| "numpy==1.26.4", |
| "dill==0.3.5.1", |
| "pymoo==0.6.1.1", |
| "pytest==7.4.0", |
| "numba" |
| ] |
|
|
| classifiers = [ |
| "Programming Language :: Python :: 3", |
| "License :: OSI Approved :: MIT License" |
| ] |
|
|
| [project.urls] |
| Homepage = "https://osikazuzanna.github.io/morl4water" |
|
|
|
|
| |
| [tool.setuptools.packages.find] |
| where = ["."] |
| include = ["morl4water*"] |
|
|
| |
| [tool.setuptools] |
| include-package-data = true |
|
|
| [tool.setuptools.package-data] |
| "morl4water.examples.data.nile_river.catchments" = ["*.txt"] |
| "morl4water.examples.data.nile_river.irrigation" = ["*.txt"] |
| "morl4water.examples.data.nile_river.reservoirs" = ["*.txt"] |
|
|
| "morl4water.examples.data.omo_river.catchments" = ["*.txt"] |
| "morl4water.examples.data.omo_river.irrigation" = ["*.txt"] |
| "morl4water.examples.data.omo_river.reservoirs" = ["*.txt"] |
|
|
| "morl4water.examples.data.susquehanna_river.demands" = ["*.txt"] |
| "morl4water.examples.data.susquehanna_river.inflows" = ["*.txt"] |
| "morl4water.examples.data.susquehanna_river.reservoirs" = ["*.txt"] |
|
|