-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
60 lines (55 loc) · 1.93 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
[project]
name = "pyquery-core"
version = "5.0.0b7"
description = "Enterprise-grade Headless ETL Engine with Interactive UI"
authors = [
{ name="Shan", email="tksudharshan@gmail.com" },
]
readme = "README.md"
requires-python = ">=3.9"
keywords = ["PyQuery", "Polars", "ETL", "Big Data", "Excel", "Power BI", "Automation", "Analytics", "Audit"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Topic :: Office/Business :: Financial :: Spreadsheet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Natural Language :: English"
]
dependencies = [
"polars>=1.0.0",
"pydantic>=2.5.0",
"xlsxwriter>=3.1.0",
"openpyxl>=3.1.0",
"pyarrow>=14.0.0",
"connectorx>=0.3.3",
"fastexcel>=0.16.0",
"statsmodels>=0.14.6",
"scikit-learn>=1.6.1",
"scipy>=1.13.1",
"chardet>=5.2.0",
"sqlalchemy>=2.0.45",
]
[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
build-backend = "uv_build"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*", "README.md", "LICENSE", "pyproject.toml", "CHANGELOG.md"]
[tool.uv.build-backend]
source-include = ["README.md", "LICENSE", "pyproject.toml", "CHANGELOG.md"]
[project.urls]
Homepage = "https://github.com/tks18/pyquery"
Documentation = "https://github.com/tks18/pyquery#readme"
Repository = "https://github.com/tks18/pyquery"
Issues = "https://github.com/tks18/pyquery/issues"
Changelog = "https://github.com/tks18/pyquery/releases"