-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (60 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
72 lines (60 loc) · 1.7 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
[project]
name = "gpudb"
version = "7.2.3.7"
dependencies = [
'future',
'pyzmq' ,
'sqlparse',
'urllib3>=2.0.0',
'requests',
]
authors = [
{name = "Kinetica DB, Inc.", email = "support@kinetica.com"}
]
maintainers = [
{name = "Kyle Sutton", email = "ksutton@kinetica.com"},
{name = "Anindya Mukherjee", email = "amukherjee@kinetica.com"}
]
description = "Python client for Kinetica DB"
readme = "README.md"
license = { text = "MIT License" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Database",
]
keywords = [ "kinetica", "gpudb" ]
# add support for `pip install gpudb[dataframe]`
[project.optional-dependencies]
dataframe = [
"pandas",
"tqdm",
"typeguard",
]
[project.urls]
Homepage = "https://www.kinetica.com"
Documentation = "https://docs.kinetica.com/7.2/api/python/"
# Repository = "https://github.com/me/spam.git"
# Issues = "https://github.com/me/spam/issues"
# Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[tool.setuptools.packages.find]
# All the following settings are optional:
where = ["."] # ["."] by default
include = ["gpudb*"] # ["*"] by default
#exclude = ["*"] # empty by default
namespaces = false # true by default
[tool.setuptools.package-data]
"gpudb.packages.avro.avro_py3" = ["*.txt", "*.avsc"]
[build-system]
requires = ["setuptools>=61"] # minimum version of setuptools for toml support
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"test/pytests",
]
log_cli = true
log_cli_level = "INFO"
#log_format ="%(levelname)s [%(name)s] %(message)s"
log_cli_format = "%(levelname)s [%(name)s] %(message)s"