-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.67 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
#########################
# Project Configuration #
#########################
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "hdx-analysis-scripts"
description = "HPC HNO Scraper"
authors = [{ name = "Michael Rans", email = "rans@email.com" }]
license = { text = "MIT" }
keywords = ["HDX", "analysis"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
requires-python = ">=3.10"
dependencies = [
"hdx-python-api>= 6.6.7",
"hdx-python-country>= 4.1.1",
"hdx-python-utilities>= 4.0.8",
"mixpanel-utils",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/OCHA-DAP/hdx-analysis-scripts"
[project.optional-dependencies]
test = ["pytest", "pytest-check", "pytest-cov", "cydifflib"]
dev = ["pre-commit"]
[project.scripts]
run_dataset = "hdx.analysis_scripts.datasets.__main__:main"
run_org = "hdx.analysis_scripts.orgs.__main__:main"