-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
38 lines (35 loc) · 941 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
[tool.poetry]
name = "aiosnow"
version = "0.6.0"
description = "Asynchronous Python ServiceNow library"
authors = ["Robert Wikman <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/rbw/aiosnow"
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries"
]
[tool.poetry.dependencies]
python = "^3.7"
aiohttp = "^3.6.2"
marshmallow = "^3.6.1"
[tool.poetry.dev-dependencies]
twine = "^1.13"
mypy = "^0.770"
isort = "^5.1.4"
sphinx = "^2.1.1"
sphinxcontrib-napoleon = "^0.7"
pytest = "^4.4.0"
pytest-cov = "^2.7.1"
pytest-asyncio = "^0.10.0"
pytest-aiohttp = "^0.3.0"
autoflake = "^1.3"
codecov = "^2.0.15"
docutils = { version = "0.15" }
black = { version = "^19.3b0", allow-prereleases = true }
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"