forked from tvp-freeports/analysis_finance_reports
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (59 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
72 lines (59 loc) · 1.52 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "freeports_analysis"
description = "Script for dumping a csv from different finance reports about ethical aspects"
readme = "README.md"
requires-python = ">=3.8"
license = "GPL-3.0"
license-files = [
"LICENSE"
]
authors = [
{name = "Oreste Sciacqualegni", email = "orestesciacqualegni@tutanota.com"},
]
maintainers = [
{name = "Oreste Sciacqualegni", email = "orestesciacqualegni@tutanota.com"},
]
dynamic = ["version"]
dependencies = [
"PyXDG",
"importlib_resources",
"rapidfuzz",
"dotenv",
"pyyaml",
"pandas",
"requests",
"PyMuPDF",
"lxml"
]
keywords = [
"finance",
"pdf",
"ethic",
"economy",
"datascience"
]
[project.urls]
github = "https://github.com/GVoreste/analysis_finance_reports"
documentation = "https://docs.freeports.org"
homepage = "https://www.freeports.org"
[project.scripts]
freeports = "freeports_analysis.cmd:cmd"
[build-system]
requires = [
"setuptools >= 77.0.3",
"setuptools-scm>=8"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
freeports_analysis = ["data/*","locales/*/*/*.mo"]
[tool.pytest.ini_options]
pythonpath = "src/"
markers = [
"integration_tests: mark test as an integration test (supposingly slow) to avoid running on each commit",
"online_tests: mark test as an test that requires an internet conncetion to avoid running on each commit"
]
[tool.pylint."TYPECHECK"]
extension-pkg-allow-list = ["lxml.etree"]