-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 832 Bytes
/
pyproject.toml
File metadata and controls
30 lines (28 loc) · 832 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "knoema"
version = "1.3.1"
authors = [
{ name="Knoema", email="info@knoema.com" },
]
description = "Official Python package for Knoema's API"
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
]
dependencies = [
"pandas>=2.0.0",
"pytest-shutil==1.7.0"
]
keywords = ["API", "knoema"]
[project.urls]
Homepage = "https://github.com/Knoema/knoema-python-driver"
Repository = "https://github.com/Knoema/knoema-python-driver.git"
Issues = "https://github.com/Knoema/knoema-python-driver/issues"