arrowshader 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: arrowshader
3
+ Version: 0.1.0
4
+ Summary: Visualize large arrow tables
5
+ Maintainer-email: Christopher Akiki <christopher.akiki@gmail.com>
6
+ License-Expression: BSD-3-Clause
7
+ Requires-Python: >=3.10
8
+ Requires-Dist: matplotlib
9
+ Requires-Dist: numpy
10
+ Requires-Dist: pyarrow
11
+ Provides-Extra: dev
12
+ Requires-Dist: pytest; extra == 'dev'
13
+ Requires-Dist: ruff; extra == 'dev'
14
+ Description-Content-Type: text/markdown
15
+
16
+ # Arrowshader
17
+
@@ -0,0 +1,2 @@
1
+ # Arrowshader
2
+
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["hatchling >= 1.27"]
3
+ build-backend = "hatchling.build"
4
+ [project]
5
+ name = "arrowshader"
6
+ version = "0.1.0"
7
+ requires-python = ">=3.10"
8
+ maintainers = [
9
+ {name = "Christopher Akiki", email = "christopher.akiki@gmail.com"}
10
+ ]
11
+ description = "Visualize large arrow tables"
12
+ readme = "README.md"
13
+ license = "BSD-3-Clause"
14
+ dependencies = [
15
+ "pyarrow",
16
+ "numpy",
17
+ "matplotlib",
18
+ ]
19
+ [project.optional-dependencies]
20
+ dev = ["pytest", "ruff"]
21
+ [tool.hatch.build.targets.wheel]
22
+ packages = ["src/arrowshader"]
23
+ [tool.ruff]
24
+ line-length = 120
25
+