-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
80 lines (72 loc) · 2.36 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatch==1.14.0", "hatchling==1.27.0"]
build-backend = "hatchling.build"
[project]
authors = [
{ name = "Idan Morad", email = "[email protected]" },
]
name = "data_science_utils"
dynamic = ["version"]
description = "Data Science Utils extends the Scikit-Learn API and Matplotlib API to provide simple methods that simplify tasks and visualizations for data science projects."
license = { text = "MIT" }
requires-python = ">=3.9"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: tox",
"Framework :: Matplotlib",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Utilities"
]
keywords = ["data-science", "utilities", "python", "machine-learning", "scikit-learn", "matplotlib", "plotly"]
dependencies = [
"numpy>=1.26.3",
"scipy>=1.11.4",
"pandas>=2.1.4",
"matplotlib>=3.8.4",
"seaborn>=0.12.2",
"scikit-learn>=1.2.2",
"pydotplus>=2.0.2",
"joblib>=1.2.0",
"plotly>=5.24.1"
]
[project.urls]
Homepage = "https://github.com./idanmoradarthas/DataScienceUtils"
Documentation = "https://datascienceutils.readthedocs.io/en/latest/"
Issues = "https://github.com./idanmoradarthas/DataScienceUtils/issues"
Repository = "https://github.com./idanmoradarthas/DataScienceUtils.git"
Changelog = "https://github.com./idanmoradarthas/DataScienceUtils/blob/master/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["ds_utils"]
[tool.hatch.version]
path = "ds_utils/__init__.py"
[tool.hatch.envs.test]
dependencies = [
"pyarrow==19.0.1",
"pytest==8.3.5",
"pytest-mock==3.14.0",
"pytest-cov==6.0.0",
"pytest-xdist==3.6.1",
"pytest-mpl==0.17.0",
"kaleido==0.4.1"
]
[tool.hatch.envs.test.env-vars]
PYTHONPATH = "."
OMP_NUM_THREADS = "1"
DISPLAY = ":99"
[tool.hatch.envs.test.scripts]
run = "pytest {args:--mpl --cov-config=.coveragerc --cov=ds_utils --cov-report=xml -n auto}"
[tool.hatch.envs.dev]
dependencies = [
"build==1.2.2",
"twine==6.1.0",
]