-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.12 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
[tool.poetry]
name = "pypokedex"
version = "1.6.0"
description = "A minimal pokedex library"
authors = ["Arnav Borborah <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/arnavb/pypokedex#readme"
repository = "https://github.com/arnavb/pypokedex"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries",
]
include = ["README.md", "LICENSE"]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.21.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.267"
pytest = "^7.3.1"
pytest-cov = "^2.8.1"
responses = "^0.10.9"
pylint = "^2.4.4"
black = "^23.3.0"
twine = "^3.1.1"
rope = "^0.17.0"
pyright = "^1.1.309"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py38"
[tool.ruff.per-file-ignores]
"tests/test_pypokedex.py" = ["F811"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-v"
testpaths = "tests"