-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (32 loc) · 943 Bytes
/
pyproject.toml
File metadata and controls
32 lines (32 loc) · 943 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
31
32
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "ineapipy"
version = "0.1.4"
authors = [
{ name="VanceVisarisTenenbaum", email="144833048+VanceVisarisTenenbaum@users.noreply.github.com" },
]
description = "INE API Wrapper, provides classes to make requests to the INE API, both sync and async."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
dependencies = [
"requests >= 2.32.4",
"aiohttp >= 3.12.14",
"yarl >= 1.20.1",
"pydantic >= 2.11.5"
]
keywords = [
"INE", "Instituto", "Nacional", "API",
"Statistics", "Estadisticas", "Stats",
"INEAPI"
]
[project.urls]
Repository = "https://github.com/VanceVisarisTenenbaum/INEAPIpy"
Issues = "https://github.com/VanceVisarisTenenbaum/INEAPIpy/issues"