-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (39 loc) · 1.22 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "antares_craft"
version = "0.1.7"
description = """Antares Craft python library under construction. It will allow to create, update and read antares studies."""
readme = "CONCATENATED_README.md"
license = {file = "LICENSE"}
authors = [
{name="Sylvain Leclerc"},
{name="Tatiana Vargas"},
{name="Martin Belthle"},
{name="Sigurd Borge"}
]
requires-python = ">=3.9"
dependencies = [
"configparser~=5.0.2",
"numpy~=1.26.4",
"pandas~=2.2.2",
"pydantic~=2.7.1",
"requests~=2.32.0"
]
classifiers = [
# Classifiers here: https://pypi.org/classifiers/
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Repository = "https://github.com/AntaresSimulatorTeam/antares_craft"
"Bug Tracker" = "https://github.com/AntaresSimulatorTeam/antares_craft/issues"
# Setuptools
[tool.setuptools.packages.find]
## All the following settings are optional:
where = ["src"]