-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 815 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (32 loc) · 815 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "malta"
version = "0.0.2"
authors = [
{ name="Corey Hu", email="contact@coreyhu.com" }
]
description = "Datastreaming Server for Kaptik Client"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
]
dependencies = [
'pyarrow >= 11.0.0',
'python-dotenv>=0.21.1',
'msgpack >= 1.0.4',
'kaptik >= 0.0.1'
]
[project.urls]
homepage = "https://github.com/coreyhu/malta"
repository = "https://github.com/coreyhu/malta"
[project.optional-dependencies]
dev = [
'pre-commit>=3.0.0',
'yapf>=0.32.0'
]