-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.05 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "py-unhcr"
version = "0.1.2"
authors = [
{ name="Luis Alfredo Chaparro Gomez", email="luis@chapi.dev" },
]
description = "Wrapper for the public UNHCR API, with built-in functions to make things easier"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = ["unhcr", "api", "refugee", "asylum", "humanitarian"]
dependencies = [
"requests>=2.25.0",
"pandas>=1.0.0"
]
[project.urls]
"Homepage" = "https://github.com/chapig/py-unhcr"
"Bug Tracker" = "https://github.com/chapig/py-unhcr/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["py_unhcr*"]
namespaces = false
[tool.setuptools]
package-dir = {"" = "src"}