generated from worldbank/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (41 loc) · 1.35 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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "datalab"
dynamic = ["version"]
description = "An Python exampe package from the World Bank Data Lab"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
keywords = ["world bank", "template", "reproducible research"]
authors = [
{name="World Bank Development Data Group", email="[email protected]"},
]
maintainers = [
{name="Gabriel Stefanini Vicente", email="[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
dependencies = [
"requests>=2.28.1",
"pycountry>=22.3.5",
]
[project.optional-dependencies]
notebook = ["notebook>=6.5.2"]
[project.urls]
"Homepage" = "https://github.com/worldbank/template"
"Bug Reports" = "https://github.com/worldbank/template/issues"
"Source" = "https://github.com/worldbank/template"
[tool.setuptools.dynamic]
version = {attr = "datalab.__version__"}