-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 703 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 703 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
[tool.poetry]
name = "cloudia"
version = "0.0.1"
description = "Tools to easily create a word cloud"
authors = ["vaaaaanquish <6syun9@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/vaaaaanquish/cloudia"
repository = "https://github.com/vaaaaanquish/cloudia"
documentation = ""
keywords = ["wordcloud", "matplotlib"]
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
[tool.poetry.dependencies]
python = "^3.6"
nagisa = "*"
wordcloud = "*"
pandas = "*"
matplotlib = "*"
wurlitzer = "*"
joblib = "*"
japanize_matplotlib = "^1.1.1"
[tool.poetry.scripts]
my-script = 'cloudia:main'
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"