-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.23 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
[build-system]
requires = ["setuptools >= 35.0.2", "wheel >= 0.29.0", "poetry>=0.12"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
combine_as_imports = true
default_section = "THIRDPARTY"
force_grid_wrap = 0
force_sort_within_sections = true
forced_separate = "tests"
include_trailing_comma = true
indent = " "
known_first_party = "examples,pyworldtidesinfo,tests"
line_length = 88
multi_line_output = 3
not_skip = "__init__.py"
sections = "FUTURE,STDLIB,INBETWEENS,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
use_parentheses = true
[tool.poetry]
name = "pyworldtidesinfo"
version = "3.0.1"
description = "A simple API for world tides info server"
readme = "README.md"
authors = ["jugla"]
license = "MIT"
repository = "https://github.com/jugla/pyWorldtidesinfo"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.poetry.dependencies]
requests = "^2.22.0"
python = ">=3.7.0,<3.20"
[tool.poetry.dev-dependencies]
responses = "^0.10.6"
pre-commit = "^2.0.1"
pytest = "^6.2.5"
pytest-aiohttp = "^0.3.0"
pytest-cov = "^2.8.1"