forked from alexkahn/iterable-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (28 loc) · 847 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
[tool.poetry]
name = "iterable-api"
version = "0.1.5"
description = "Iterable API wrapper"
readme = "README.md"
authors = ["Alex Kahn <[email protected]>"]
license = "GPL-3.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
homepage = "https://github.com/alexkahn/iterable-api"
repository = "https://github.com/alexkahn/iterable-api"
packages = [
{include = "iterable", from = "src"}
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/alexkahn/iterable-api/issues"
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.26.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"