-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.3 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", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "eda_toolkit"
version = "0.0.14"
description = "A Python library for EDA, including visualizations, directory management, data preprocessing, reporting, and more."
readme = { file = "README_min.md", content-type = "text/markdown" }
authors = [
{ name = "Leonid Shpaner, Oscar Gil", email = "[email protected]" }
]
requires-python = ">=3.7.4"
dependencies = [
"jinja2==3.1.4",
"matplotlib>=3.5.3, <=3.9.2",
"nbformat>=4.2.0, <=5.10.4",
"numpy>=1.21.6, <=2.1.2",
"pandas>=1.3.5, <=2.2.3",
"plotly>=5.18.0, <=5.24.1",
"scikit-learn>=1.0.2, <=1.5.2",
"seaborn>=0.12.2, <=0.13.2",
"tqdm>=4.66.4, <=4.67.1",
"xlsxwriter==3.2.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
# Correct place for URLs under [project.urls]
[project.urls]
"Documentation" = "https://lshpaner.github.io/eda_toolkit/"
"Source Code" = "https://github.com/lshpaner/eda_toolkit/"
"Leonid Shpaner's Website" = "https://www.leonshpaner.com"
"Oscar Gil's Website" = "https://www.oscargildata.com"
"Zenodo Archive" = "https://zenodo.org/records/13162633"
[tool.setuptools.packages.find]
where = ["src"]