-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.08 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pyPowerSystemsInvestmentPortofolios"
description = "Data Model for Power Systems Invesments Optimization"
authors = [
{name = "José Daniel Lara", email = "[email protected]"},
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dynamic = ["version"]
requires-python = ">=3.11"
license = {file = "LICENSE"}
readme = "README.md"
dependencies = [
"pydantic",
"infrasys",
]
[tool.hatch.version]
path = "pyPowerSystemsInvestmentsPortfolios/__init__.py"
[tool.hatch.metadata]
allow-direct-references = true
[project.optional-dependencies]
dev = [
"ruff",
"pre-commit",
"pylint",
"pytest",
"pytest-cov",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra"
testpaths = [
"tests",
]