-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 1.05 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "akutils"
version = "1.0.3"
description = """
A utility library providing generic methods for performing recurrent data manipulation \
in Pandas and Python.
"""
authors = [{name = "Alex0x4b", email = "alex0x4b.git.su1b4@slmail.me"}]
readme = "README.md"
requires-python = ">=3.10, <3.12"
dependencies = [
"pandas >= 2.2",
"pyarrow >= 14.0.0",
"xlrd >= 2.0.1",
"openpyxl >= 3.1.0",
"pyxlsb >= 1.0.10",
"numpy >= 1.26.0",
"universal-pathlib == 0.1.4", # extend pathlib with azure, aws...
"azure-core == 1.32.0",
"fsspec == 2023.12.2",
"PyYAML >= 6.0",
"rich >= 13.6.0",
"flake8 >= 5.0.4",
"pytest >= 7.2.2",
"pytest-cov >= 4.0.0",
"mypy >= 1.9.0", # typing
"types-setuptools>=69.2.0,<70.0.0",
"pandas_stubs >= 2.2.0.24", # typing
]
[project.urls]
Homepage = "https://github.com/Alex0x4b/akutils"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
akutils = ["**/_fixtures/**"]