-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 637 Bytes
/
pyproject.toml
File metadata and controls
27 lines (23 loc) · 637 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
[tool.poetry]
name = "form_auto_fill_in"
version = "0.1.0"
description = "Answer Form Automatically"
authors = ["iwasakishuto <cabernet.rock@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
selenium = "^3.141.0"
[tool.poetry.dev-dependencies]
black = "^21.6b0"
flake8 = "^3.9.2"
flake8-mypy = "^17.8.0"
isort = "^5.8.0"
pytest = "^6.2.4"
ipykernel = "^6.5.1"
ipython = "^8.2.0"
[tool.poetry.scripts]
answer-form = "form_auto_fill_in.cli.answer_form:answer_form_cli"
show-forms = "form_auto_fill_in.cli.show:show_forms"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"