-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (49 loc) · 1.55 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme="no-local-version"
version_file = "parquetdb/_version.py"
[project]
name = "parquetdb"
authors = [
{name = "Logan Lang", email = "[email protected]"},
{name = "Aldo Romero", email = "[email protected]"},
{name = "Kamal Choudhary", email = "[email protected]"},
{name = "Eduardo Hernandez", email = "[email protected]"}
]
description = "ParquetDB is a lightweight database-like system built on top of Apache Parquet files using PyArrow."
readme = {file = "README.md", content-type = "text/markdown"} # Ensure this matches the file used
requires-python = ">=3.8"
keywords = ["parquet", "pyarrow", "data",
"storage", "schema evolution", "nested and complex data types",
"scalable", "database", "python"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
dependencies = [
"python-dotenv",
"pyarrow",
"pandas",
"variconfig",
"matplotlib",
"beautifulsoup4",
"requests"
]
[project.optional-dependencies]
dev = [
"sphinx",
"sphinx_rtd_theme",
"pymongo",
"pymatgen"
]
[project.urls]
Repository = "https://github.com/romerogroup/ParquetDB"
Issues = "https://github.com/romerogroup/ParquetDB/issues"
Changelog = "https://github.com/romerogroup/ParquetDB/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["parquetdb*"]
exclude = ["parquetdb.tests*"]