-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·69 lines (59 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
executable file
·69 lines (59 loc) · 1.62 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
# To submit:
# cd openesef_repo
# rm -rf dist
# python -m build
# twine upload dist/*
# twine upload --repository testpypi --skip-existing dist/*
# pip install --index-url https://test.pypi.org/simple openesef
[build-system]
requires = ["setuptools>=61.0", "wheel", "Cython>=3.0.0", "tomli>=2.0.1"]
build-backend = "setuptools.build_meta"
[project]
name = "openesef"
version = "0.3.8.29"
description = "An open-source Python library for ESEF XBRL filings"
authors = [
{name = "Reeyarn Zhiyang Li", email = "reeyarn@gmail.com"},
]
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GPL-3.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"thefuzz>=0.22.1",
"pandas>=2.2.0",
"fs>=2.4.16",
"python-dateutil>=2.9.0",
"requests>=2.32.3",
"beautifulsoup4>=4.13.3",
"lxml>=5.3.0",
"psutil>=5.8.0",
"pyarrow>=19.0.0",
"fastparquet>=2024.11.0",
"numpy>=2.2.0",
"cython>=3.0.0",
"tomli>=2.0.1",
"tqdm>=4.60.0",
"requests>=2.32.0",
]
[project.urls]
Homepage = "https://github.com/reeyarn/openesef"
Author = "https://reeyarn.li"
[tool.setuptools]
include-package-data = true
packages = ["openesef"]
[tool.setuptools.dynamic]
version = {attr = "openesef.version.__version__"}
[tool.cython]
language_level = "3"
boundscheck = false
wraparound = false
[[tool.setuptools.ext-modules]]
name = "openesef.engines.tax_pres"
sources = ["openesef/engines/tax_pres.pyx"]
[tool.setuptools.cmdclass]
build_ext = "openesef.build.CustomBuildExt"