forked from BTrDB/btrdb-python
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (76 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
80 lines (76 loc) · 1.85 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "btrdb"
version = "5.34.2"
authors = [
{name="PingThingsIO", email="support@pingthings.io"},
]
maintainers = [
{name="PingThingsIO", email="support@pingthings.io"},
]
description = "Bindings to interact with the Berkeley Tree Database using gRPC."
readme = "README.md"
license = {file="LICENSE.txt"}
requires-python = ">=3.7,<=3.12"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
]
keywords = [
'btrdb', 'berkeley', 'timeseries', 'database', 'bindings', 'gRPC',
]
dependencies = [
"grpcio",
"grpcio-tools",
"pytz",
"pyyaml",
"certifi",
]
[project.optional-dependencies]
data = [
"pyarrow",
"pandas>=2.0",
"polars",
"numpy",
"tabulate",
]
ray = [
"btrdb[data]",
"ray"
]
testing = [
"btrdb[data]",
"pytest",
"freezegun",
"pytest-cov",
"pytest-flake8"
]
all = [
"btrdb[data]",
"btrdb[ray]",
"btrdb[testing]",
]
[project.urls]
"Docs" = "https://btrdb-python.readthedocs.io/"
"Repository" = "https://github.com/pingthingsio/btrdb-python.git"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.exclude-package-data]
drop = [
"tests",
"docs"
]