-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
49 lines (40 loc) · 1.33 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
[tool.poetry]
name = "gvol"
version = "0.6.2"
description = "GVol is a Python library to access the GVol API"
authors = ["Denys Halenok <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/genesis-volatility/gvol-py"
repository = "https://github.com/genesis-volatility/gvol-py"
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
[tool.poetry.dependencies]
python = "^3.7"
gql = {extras = ["requests"], version = "^3.4.0"}
typing-extensions = {version = "^4.0.1", python = "~3.7"}
sphinx = {version = "^4.3.2", optional = true}
sphinx-rtd-theme = {version = "^1.0.0", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^21.12b0"
isort = "^5.10.1"
flake8 = "^4.0.1"
mypy = "^0.930"
[tool.isort]
profile = "black"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-rtd-theme"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/genesis-volatility/gvol-py/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"