-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 1.08 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
39
40
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plotmind"
version = "0.1.0"
description = "Convert any CSV into meaningful graphs automatically."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
keywords = ["csv", "visualization", "charts", "graphs", "data", "plotly", "matplotlib"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
]
dependencies = [
"pandas>=1.3.0",
"plotly>=5.0.0",
"matplotlib>=3.4.0",
"kaleido>=0.2.1",
]
[project.optional-dependencies]
seaborn = ["seaborn>=0.11.0"]
dev = ["pytest>=7.0", "pytest-cov", "black", "flake8"]
[project.scripts]
plotmind = "plotmind.cli:main"
[project.urls]
Homepage = "https://github.com/git-rohan7/plotmind"
Issues = "https://github.com/git-rohan7/plotmind/issues"
[tool.setuptools.packages.find]
where = ["."]