-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
39 lines (36 loc) · 1.34 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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "deephaven-riptable"
authors = [
{name = "Deephaven Data Labs", email = "[email protected]"},
]
description = "The Deephaven/Riptable Integration Package"
requires-python = ">=3.8"
keywords = ["Deephaven", "Riptable", "Integration"]
license = {text = "Apache 2.0"}
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
dependencies = [
"deephaven-core>=0.25.2",
"riptable>=1.9.0",
]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
version = {attr = "deephaven_riptable.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["deephaven_riptable*"] # package names should match these glob patterns (["*"] by default)
exclude = ["deephaven_riptable.tests*"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)