forked from kyuridenamida/atcoder-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 938 Bytes
/
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
[tool.poetry]
name = "atcoder-tools"
packages = [
{include = "atcodertools"}
]
version = "2.14.0"
description = "Convenient modules & tools for AtCoder users, written in Python 3.6"
authors = ["kyuridenamida <[email protected]>"]
license = "MIT"
repository="https://github.com/kyuridenamida/atcoder-tools"
documentation="https://github.com/kyuridenamida/atcoder-tools"
readme="README.md"
include = ["atcodertools/tools/templates/*", "atcodertools/tools/atcodertools-default.toml"]
[tool.poetry.dependencies]
python = "^3.6"
beautifulsoup4 = "^4.9.3"
requests = "^2.25.1"
colorama = "^0.4.4"
toml = "^0.10.2"
Jinja2 = "^2.11.3"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
twine = "^3.4.1"
flake8 = "^3.9.1"
autopep8 = "^1.5.6"
codecov = "^2.1.11"
pynose = "^1.4.8"
[tool.poetry.scripts]
atcoder-tools = 'atcodertools.atcoder_tools:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"