-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
47 lines (40 loc) · 1.56 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "fluid-pysdk"
authors = [
{ name = "Fluid Authors", email = "[email protected]" },
]
description = "Python SDK for fluid-cloudnative fluid to manage datasets"
license = { file = "LICENSE" }
requires-python = ">=3.7"
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
keywords = ["fluid", "kubernetes", "data-abstraction", "data-pipeline", "distributed-cache"]
dynamic = ["version", "dependencies"]
[project.urls]
Homepage = "https://github.com/fluid-cloudnative/fluid-client-python"
Issues = "https://github.com/fluid-cloudnative/fluid-client-python/issues"
[tool.setuptools]
packages = ["fluid"]
[tool.setuptools.dynamic]
#version = { attr = "fluid.__version__" }
dependencies = { file = "requirements.txt" }
[tool.setuptools_scm]