-
Notifications
You must be signed in to change notification settings - Fork 277
/
Copy pathpyproject.toml
74 lines (69 loc) · 1.89 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["sweetviz"]
[project]
name = "sweetviz"
version = "2.3.1"
authors = [
{ name = "Francois Bertrand", email = "[email protected]" },
]
description = "A pandas-based library to visualize and compare datasets."
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords=[
"pandas",
"data-science",
"data-analysis",
"python",
"eda",
]
dependencies = [
'pandas>=0.25.3,!=1.0.0,!=1.0.1,!=1.0.2',
'numpy>=1.16.0',
'matplotlib>=3.1.3',
'tqdm>=4.43.0',
'scipy>=1.3.2',
'jinja2>=2.11.1',
'importlib_resources>=1.2.0',
'importlib_metadata;python_version<"3.8"',
]
[project.optional-dependencies]
test = [
"pytest >=6",
"pytest-cov >=3",
]
dev = [
"pytest >=6",
"pytest-cov >=3",
]
docs = [
"sphinx>=4.0",
"myst_parser>=0.13",
"sphinx_book_theme>=0.1.0",
"sphinx_copybutton",
"sphinx_autodoc_typehints",
"furo",
]
[project.urls]
Homepage = "https://github.com/fbdesignpro/sweetviz"
"Bug Tracker" = "https://github.com/fbdesignpro/sweetviz/issues"
Discussions = "https://github.com/fbdesignpro/sweetviz/discussions"
Changelog = "https://github.com/fbdesignpro/sweetviz/releases"