-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 1.81 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "gemspy"
version = "0.0.6"
description = "Python interpreter for GEMS: modelling and simulation of complex energy systems under uncertainty"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "a-zakir" },
{ name = "aalzoobi" },
{ name = "aoustry" },
{ name = "ChouaneLouis" },
{ name = "dusanparipovic" },
{ name = "flomnes" },
{ name = "ianmnz" },
{ name = "Juliette-Gerbaux" },
{ name = "killian-scalian" },
{ name = "klorel" },
{ name = "MartinBelthle" },
{ name = "pet-mit" },
{ name = "sylvlecl" },
{ name = "tbittar" },
{ name = "thibaulttoujouse" },
{ name = "vargastat" },
{ name = "Yann-Temudjin" },
{ name = "YassineAbdelouadoud" },
]
requires-python = ">=3.10"
dependencies = [
"numpy",
"ortools",
"scipy>=1.10",
"antlr4-python3-runtime>=4.13",
"PyYAML>=6.0",
"pydantic>=2.0",
"antares_craft>=0.3",
"anytree>=2.12",
]
classifiers = [
# Classifiers here: https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.scripts]
gemspy = "gems.main.main:main_cli"
[project.urls]
Repository = "https://github.com/AntaresSimulatorTeam/GemsPy"
"Bug Tracker" = "https://github.com/AntaresSimulatorTeam/GemsPy/issues"
[tool.setuptools.packages.find]
# All the following settings are optional:
where = ["src"]
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
^(?!(src)).*
)/
'''
[tool.isort]
profile = "black"