-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1020 Bytes
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1020 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ezplotly"
version = "0.1.3.0.8.1"
authors = [
{ name="Prateek Tandon", email="prateek1.tandon@gmail.com" },
]
description = "An easy wrapper for making Plotly plots in Jupyter notebooks"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11.4"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"hatch",
"plotly",
"numpy",
"scipy",
"pandas",
"scikit-learn",
"kaleido",
"jupyter",
"black[jupyter]",
]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/.gitignore",
]
[tool.hatch.build.targets.wheel.force-include]
# include ezplotly_bio and yayrocs python packages
"ezplotly_bio" = "ezplotly_bio"
"yayrocs" = "yayrocs"
[project.urls]
"Homepage" = "https://github.com/prateekt/ezplotly"
"Bug Tracker" = "https://github.com/prateekt/ezplotly/issues"