-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (50 loc) · 1.17 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
50
51
52
53
54
55
56
57
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "pgm-service"
version = "0.0.1"
authors = [{name = "Collaboration team of RWTH, Alliander, PSI"}]
description = "PGM service"
readme = "README.md"
license = {text = "Apache"}
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.20",
"power_grid_model>=1.6",
"fastapi",
"uvicorn",
"cimpy",
"requests"
]
[project.optional-dependencies]
dev = [
"isort",
"black",
]
[project.scripts]
pgm-service = "pgm_service.main:run"
[project.urls]
GitHub = "https://github.com/sogno-platform/pgm-service"
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.black]
line-length = 120
target-version = ["py312"]
[tool.isort]
profile = "black"
line_length = 120