-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.28 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
45
46
47
[project]
name = "cgiar-climate-change-synthesis"
version = "0.0.1"
description = "Code to generate the data used for the 2024 CGIAR Climate Change Synthesis dataset."
authors = [
{ name = "Alan Orth", email = "[email protected]" }
]
license= { file = "LICENSE.txt" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"csvkit~=2.0.1",
"packaging>=24.1",
"pandas[feather,performance]~=2.2",
"requests-cache~=1.2.1",
"tqdm~=4.66.0",
"country-converter~=1.2",
"pyalex~=0.15.1",
]
# See: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#classifiers
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
repository = "https://github.com/ilri/cgiar-climate-change-synthesis"
homepage = "https://github.com/ilri/cgiar-climate-change-synthesis"
[tool.uv]
dev-dependencies = [
"ipython~=8.18.1",
"isort~=5.13.2",
"black~=24.8.0",
]
[tool.isort]
profile = "black"
line_length=88