-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 754 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 754 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "igf_toolbox"
version = "0.1"
description = "Utilitaires python"
authors = [{name="Pôle Science des données de l'IGF", email="igf.science-donnees@igf.finances.gouv.fr"}]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
'numpy',
'pandas',
'numba',
'boto3',
's3fs',
'urllib3',
'geopandas',
'matplotlib',
'openpyxl',
'scikit-learn',
'statsmodels',
'linearmodels',
'xlsxwriter',
'ibis-framework>=8.0.0',
'duckdb>=0.10.0'
]
[project.optional-dependencies]
polars = ['polars>=0.20.0']
[tool.setuptools.packages.find]
include = ["igf_toolbox"]