-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.1 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
[tool.poetry]
name = "async-weather-sdk"
version = "0.1.1"
description = "Async weather API wrapper for fetching weather and forecast data"
authors = ["DecentFoX <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/decentfox/async-weather-sdk"
repository = "https://github.com/decentfox/async-weather-sdk"
keywords = ["weather", "forecast", "asyncio", "python3"]
classifiers = [
"Development Status :: 1 - Planning",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
[tool.poetry.dependencies]
python = "^3.6"
aiohttp = {extras = ["speedups"], version = "^3.6.2"}
[tool.poetry.dev-dependencies]
pytest = "^5.4.2"
pytest-asyncio = "^0.12.0"
pytest-cov = "^2.9.0"
pytest-mock = "^3.1.0"
black = "^19.10b0"
aresponses = "^2.0.0"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"