-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
39 lines (35 loc) · 1.02 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 = "wbpy"
version = "3.0.0"
description = "Wrapper interface for the World Bank Indicators and Climate APIs"
authors = ["Matt Duck"]
repository = "https://github.com/mattduck/wbpy"
include = ["wbpy/non_ISO_region_codes.json"]
license = "MIT"
keywords = ["wbpy", "world bank", "api", "climate"]
readme = "README.rst"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering'
]
[tool.poetry.dependencies]
# TODO: put python2 back here if I can confirm it works.
python = ">=3.6"
six = ">=1.15.0"
pycountry = "*"
[tool.poetry.dev-dependencies]
pytest = "^5.4.3"
tox = "^3.16.1"
ddt = "^1.4.1"
mock = "^4.0.2"
[tool.poetry.extras]
test = ["pytest"]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"