-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 984 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 984 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", "wheel", "tomli>=2.0; python_version < '3.11'"]
build-backend = "setuptools.build_meta"
[project]
name = "moi-python-sdk"
version = "0.1.1.dev"
description = "Python client SDK for the MatrixOrigin MOI Platform"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache-2.0" }
authors = [{ name = "MatrixOrigin" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = ["requests>=2.31.0"]
[dependency-groups]
dev = ["pytest>=7.0.0"]
[tool.pytest.ini_options]
markers = ["integration: integration tests"]
[project.urls]
Homepage = "https://github.com/matrixorigin/moi-python-sdk"
Repository = "https://github.com/matrixorigin/moi-python-sdk"
Issues = "https://github.com/matrixorigin/moi-python-sdk/issues"
[tool.setuptools]
packages = ["moi"]
[tool.setuptools.package-data]
"*" = ["*.txt", "*.md"]