-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
73 lines (67 loc) · 2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "shipstation-client"
version = "0.1.0"
description = 'Python bindings for the ShipStation API'
license = "MIT"
authors = ["AgriTheory <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/agritheory/shipstation-client"
repository = "https://github.com/agritheory/shipstation-client"
keywords = ['shipstation', 'client', 'api', 'python', 'orders', 'shipments']
packages = [{ include = "shipstation" }]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
attrs = "^23.2.0"
cattrs = "^23.2.3"
httpx = "^0.27.0"
python-dateutil = "^2.8.1"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.8"
black = "^24.4.2"
darglint = "^1.8.1"
isort = "^5.13.2"
mypy = "^1.10.0"
pre-commit = "^3.7.1"
pydocstyle = "^5.0.2"
pytest = "^8.2.1"
pytest-asyncio = "^0.23.7"
pytest-cov = "^5.0.0"
pytest-httpx = "^0.30.0"
pytest-mypy = "^0.10.3"
python-dotenv = "^0.13.0"
pyupgrade = "^3.15.2"
respx = "^0.21.1"
safety = "^3.2.0"
[tool.pytest.ini_options]
addopts = "--cov=shipstation --cov-report term"
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.isort]
default_section = "FIRSTPARTY"
force_grid_wrap = 0
include_trailing_comma = true
known_typing = "typing,types,typing_extensions,mypy,mypy_extensions"
line_length = 80
multi_line_output = 3
sections = "TYPING,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
use_parentheses = true