Skip to content

Commit

Permalink
Added pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Laplusdestiny committed Oct 7, 2023
1 parent ab6409c commit e53b875
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,4 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
pyproject.toml
poetry.lock
26 changes: 26 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[tool.poetry]
name = "plotly-extend-wrapper"
version = "0.1.0"
description = ""
authors = ["Toru Sumi <prayonshootingstars@gmail.com>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.9"
plotly = ">=5.0.0"
kaleido = "0.2.1"
pandas = ">=1.1.5"


[tool.poetry.group.test.dependencies]
pytest = "*"
pytest-cov = "*"
scikit-learn = "*"


[tool.poetry.group.dev.dependencies]
twine = "*"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit e53b875

Please sign in to comment.