forked from MicroStrategy/mstrio-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject-backend.toml
42 lines (36 loc) · 1.14 KB
/
pyproject-backend.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
[build-system]
requires = ["hatchling >= 1.14.0", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "mstrio/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/code_snippets",
"/script-templates",
"/mstrio",
"/workflows",
"/NEWS.md",
"/README.md",
"/USAGE.md",
"/requirements.txt",
"/setup.cfg",
]
[tool.hatch.build.targets.wheel]
packages = ["mstrio"]
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[project]
name = "mstrio-py"
description = "Python interface for the MicroStrategy REST API"
authors = [
{ name = "MicroStrategy", email = "[email protected]" }
]
requires-python = ">=3.10"
license = {text = "Apache License 2.0"}
readme = "README.md"
dynamic = ["version", "dependencies"]
[project.urls]
"Bug Tracker" = "https://github.com/MicroStrategy/mstrio-py/issues"
"Documentation" = "https://www2.microstrategy.com/producthelp/Current/mstrio-py/"
"Source Code" = "https://github.com/MicroStrategy/mstrio-py"
"Quick Manual" = "https://www2.microstrategy.com/producthelp/current/FederatedAnalytics/en-us/Content/mstr_for_jupyter.htm"