-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
103 lines (96 loc) · 2.8 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "osc-data-extraction"
version = "v0.9.9"
description = "OS-Climate data extraction toolkit."
authors = [
{ name = "David Besslich", email = "[email protected]" },
]
requires-python = ">=3.9,<3.12"
readme = "README.md"
license = { text = "Apache-2.0" }
keywords = ["Climate", "Finance"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
dependencies = [
"Flask==2.3.2",
"MarkupSafe==2.1.1",
"Pillow==10.2.0",
"Werkzeug",
"boto3~=1.28.8",
"cryptography==41.0.4",
"farm>=0.5.0",
"flask",
"fuzzywuzzy==0.18.0",
"gdown==3.11.1",
"ipython==8.10.0",
"jinja2==3.0",
"jsonpickle>=1.5.0",
"jupyter",
"numpy==1.23.5",
"requests~=2.31.0",
"openpyxl~=3.1.2",
"optuna==2.0.0",
"traitlets==5.4",
"pandas~=2.0.3",
"pdf2image==1.13.1",
"pdfminer.six==20221105",
"protobuf==3.20.2",
"pyOpenSSL==23.2.0",
"pyspellchecker==0.5.5",
"python-Levenshtein==0.12.0",
"pyyaml~=6.0.1",
"requests~=2.31.0",
"fuzzywuzzy==0.18.0",
"scikit-learn==1.0.1",
"scipy==1.10.0",
"spacy==2.3.2",
"tabula-py==2.1.1",
"tqdm",
"traitlets==5.4",
"urllib3==1.26.18",
"xlrd==1.2.0",
]
[project.urls]
Homepage = "https://github.com/os-climate/data-extraction"
Repository = "https://github.com/os-climate/data-extraction"
Downloads = "https://github.com/os-climate/data-extraction/releases"
"Bug Tracker" = "https://github.com/os-climate/data-extraction/issues"
Documentation = "https://github.com/os-climate/data-extraction/tree/main/docs"
"Source Code" = "https://github.com/os-climate/data-extraction"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.scripts]
pre_release = "scripts/dev-versioning.sh"
release = "scripts/release-versioning.sh"
test = "pytest"
tox = "tox"
doc = { shell = "cd docs && mkdocs serve", help = "Start the dev server for doc preview" }
lint = "pre-commit run --all-files"
complete = { call = "tasks.complete:main", help = "Create autocomplete files for bash and fish" }
[tool.pdm.dev-dependencies]
test = ["pdm", "pdm[pytest]", "pytest-cov"]
tox = ["tox", "tox-pdm>=0.7.0"]
doc = ["sphinx"]
dev = ["tox>=4.11.3", "tox-pdm>=0.7.0"]
[tool.pytest.ini_options]
testpaths = ["test/"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"