質問編集履歴

1

tomlファイルのコードを追記させていただきました。

2020/03/05 11:39

投稿

AJ_sk_show
AJ_sk_show

スコア6

test CHANGED
File without changes
test CHANGED
@@ -59,3 +59,57 @@
59
59
  Python3.7.6
60
60
 
61
61
  poetry1.0.3
62
+
63
+
64
+
65
+ 03/05補足追加
66
+
67
+ tomlファイルを記載させていただきます。
68
+
69
+ ```pyproject.toml
70
+
71
+ [tool.poetry]
72
+
73
+ name = "sandboxtest"
74
+
75
+ version = "0.1.0"
76
+
77
+ description = ""
78
+
79
+ authors = ["Your Name <you@example.com>"]
80
+
81
+
82
+
83
+ [tool.poetry.dependencies]
84
+
85
+ python = "^3.7"
86
+
87
+ flask = "^1.1.1"
88
+
89
+ pylint = "^2.4.4"
90
+
91
+ app = "^0.0.1"
92
+
93
+ pip = "^20.0.2"
94
+
95
+ models = "^0.9.3"
96
+
97
+ sqlalchemy = "^1.3.13"
98
+
99
+
100
+
101
+ [tool.poetry.dev-dependencies]
102
+
103
+ pytest = "^5.2"
104
+
105
+
106
+
107
+ [build-system]
108
+
109
+ requires = ["poetry>=0.12"]
110
+
111
+ build-backend = "poetry.masonry.api"
112
+
113
+
114
+
115
+ ```