-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (36 loc) · 1.02 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
[tool.poetry]
name = "plotly_chartstudio_tutorial"
version = "0.1.0"
description = "Create Cloud-hosted Charts with Plotly Chart Studio."
authors = ["Todd Birchard <[email protected]>"]
maintainers = ["Todd Birchard <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://hackersandslackers.com/plotly-chart-studio/"
repository = "https://github.com/hackersandslackers/plotly-chartstudio-tutorial/"
documentation = "https://hackersandslackers.com/plotly-chart-studio/"
keywords = [
"Plotly",
"Plotly Chart Studio",
"Data Visualization",
"Data Analysis",
"Data Science"
]
[tool.poetry.dependencies]
Python = "^3.8"
requests = "*"
pandas = "*"
plotly = "*"
chart-studio = "*"
loguru = "*"
python-dotenv = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
mypy = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
run = "main:script"
[tool.poetry.urls]
issues = "https://github.com/hackersandslackers/plotly-chartstudio-tutorial/issues"