-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (35 loc) · 1.16 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "exploralytics"
version = "1.0.1" # Updated version
authors = [
{ name = "John Paul Curada", email = "johncurada.work@gmail.com" },
]
description = "A plotly-based toolkit for data exploration and visualization"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["data", "visualization", "plotly", "analytics", "eda", "subplot"]
license = { text = "BSD License" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"pandas>=1.3.0",
"plotly>=5.0.0",
"numpy>=1.20.0",
"plotly-express>=0.4.0", # Added for px
]
[project.urls]
"Bug Tracker" = "https://github.com/jpcurada/exploralytics/issues"
"Source Code" = "https://github.com/jpcurada/exploralytics"
"Documentation" = "https://exploralytics.readthedocs.io"
[tool.setuptools.packages.find]
where = ["src"]