-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
74 lines (65 loc) · 1.81 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
74
[tool.poetry]
name = "shipengine"
version = "1.0.1"
description = "The official Python library for ShipEngine API."
readme = "README.md"
authors = ["ShipEngine <[email protected]>"]
homepage = "https://www.shipengine.com/"
license = "Apache-2.0"
repository = "https://github.com/ShipEngine/shipengine-python"
include = ["CHANGELOG.md"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
format = "{base}"
bump = true
[tool.poetry-dynamic-versioning.substitution]
files = ["*.py", "*/__init__.py", "*/__version__.py", "*/version.py"]
[tool.poetry.dependencies]
python = "^3.7"
aiohttp = "^3.7.4"
requests = "^2.25.1"
python-dotenv = "^0.15.0"
dataclasses-json = "^0.5.3"
fuuid = "^0.1.0"
poetry-dynamic-versioning = "^0.13.0"
[tool.poetry.dev-dependencies]
pytest = ">=5.0"
pytest-cov = "^2.11.1"
pytest-mock = "^3.6.1"
black = "^20.8b1"
flake8 = "^3.8.4"
Sphinx = "^3.5.2"
tox = "^3.23.0"
coverage = "^5.5"
isort = "^5.8.0"
coveralls = "^3.1.0"
pre-commit = "2.13.0"
pytest-watch = "^4.2.0"
responses = "^0.13.3"
[tool.black]
line-length = 100
target-verstion = ["py37"]
safe = true
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.coverage.run]
relative_files = true
[tool.poetry.scripts]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"