-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
49 lines (39 loc) · 1.19 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sparglim"
description = "sparglim"
keywords = ["sparglim", "pyspark", "magic", "ipython", "spark"]
requires-python = ">=3.8"
dependencies = ["loguru", "click", "findspark", "psutil", "kubernetes"]
dynamic = ["version"]
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
[project.optional-dependencies]
pyspark = ["pyspark[pandas_on_spark,sql,connect]"]
magic = ["sparglim[pyspark]", "ipython"]
all = ["sparglim[pyspark]", "sparglim[magic]"]
test = ["sparglim[all]", "pytest", "pytest-cov", "pytype", "pytest-timeout"]
dev = ["sparglim[test]"]
[project.scripts]
sparglim-server = "sparglim.server.cli:cli"
[[project.authors]]
name = "wh1isper"
email = "9573586@qq.com"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "BSD license"
[project.urls]
Source = "https://github.com/wh1isper/sparglim"
[tool.check-manifest]
ignore = [".*"]
[tool.hatch.version]
path = "sparglim/__init__.py"