-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
68 lines (62 loc) · 1.81 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nanocube"
description = "Lightning fast OLAP-style point queries on Pandas DataFrames."
keywords = ['python', 'pandas', 'numpy', 'spark', 'data analysis', 'OLAP', 'cube', 'dataframe', ]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
readme = "README.md"
dynamic = ["version"]
license = {file = "LICENSE"}
requires-python = ">= 3.9"
authors = [
{name = "Thomas Zeutschler"},
{email = "[email protected]"},
]
maintainers = [
{name = "Thomas Zeutschler", email="[email protected]"},
]
dependencies = [
"numpy",
"pandas",
"pyroaring",
"pyarrow",
"lz4",
"zstandard",
"tabulate",
"duckdb",
"polars",
"matplotlib",
# for deployment
"build",
"wheel",
"twine",
"pytest",
]
[project.urls]
Homepage = "https://github.com/Zeutschler/nanocube"
Documentation = "https://github.com/Zeutschler/nanocube"
Repository = "https://github.com/Zeutschler/nanocube.git"
Issues = "https://github.com/Zeutschler/nanocube/issues"
pypi = "https://pypi.org/project/nanocube/"
[tool.setuptools]
packages = ["nanocube", "tests"]
[tool.setuptools.dynamic]
version = {attr = "nanocube.__version__"}