-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 915 Bytes
/
pyproject.toml
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
38
# test using "pytest"
# build using "hatch build"
# publish using "hatch publish"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = 'powerplantsim'
version = '0.1.2'
requires-python = '>=3.10'
dependencies = [
'Dickens>=2.0',
'matplotlib>=3.7',
'networkx>=2.7',
'numpy>=1.22',
'pandas>=1.4',
'pyomo>=6.6',
'scikit-learn>=1.1',
'tqdm>=4.7'
]
description = 'PowerPlantSim: a power plant simulator'
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = 'Luca Giuliani', email = '[email protected]' },
{ name = 'University of Bologna - DISI' }
]
maintainers = [
{ name = 'Luca Giuliani', email = '[email protected]' }
]
license = { file = "LICENSE" }
[tool.hatch.build.targets.wheel]
packages = ["powerplantsim"]
[project.urls]
Repository = "https://github.com/giuluck/powerplantsim/"