-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (37 loc) · 952 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
37
38
39
40
41
[tool.poetry]
name = "pybigbuy"
version = "3.20.1"
description = "BigBuy API client in Python"
authors = ["Bixoto <tech@bixoto.com>"]
license = "MIT"
include = ["bigbuy/py.typed"]
readme = "README.md"
# https://github.com/python-poetry/poetry/issues/705#issuecomment-444742697
packages = [
{include = "bigbuy"}
]
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.25.1"
api-session = "^1.4.1"
[tool.poetry.dev-dependencies]
mypy = "^1"
types-requests = "^2.25.0"
pytest = "^7.1.0"
pytest-coverage = "^0.0"
responses = "^0.21.0"
[tool.coverage.report]
omit = ["tests/*", "conftest.py"]
exclude_lines = [
"pragma: nocover",
"raise NotImplementedError",
"except ImportError:",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"