-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
51 lines (46 loc) · 1.37 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "pokeapi-ditto"
version = "1.0.3"
description = "Ditto is a command line tool for performing meta operations over PokéAPI data."
license = "Apache-2.0"
authors = ["Sargun Vohra <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/PokeAPI/ditto"
repository = "https://github.com/PokeAPI/ditto.git"
documentation = "https://github.com/PokeAPI/ditto"
keywords = ["pokeapi", "ditto", "pokemon"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.scripts]
ditto = "pokeapi_ditto.main:main"
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31"
genson = "^1.2"
tqdm = "^4.66"
odictliteral = "^1.0"
yarl = "^1.9"
[tool.poetry.dev-dependencies]
pytest = "^8.2"
flake8 = "^7.0"
black = "^24.4"
isort = "^5.13"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
skip = [".venv", "venv", ".git", "__pycache__", "dist", "data"]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
line_length = 88