-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.94 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling >= 1.14.0"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "strqa/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/strqa",
"/code_snippets",
"README.md",
"NEWS.md",
]
[tool.hatch.build.targets.wheel]
packages = ["strqa"]
[project]
name = "strqa-py"
authors = [{ name = "Strategy One", email = "bkaczynski@strategy.com" }]
requires-python = ">=3.10,<3.14"
license = { text = "Apache License 2.0" }
license-files = ["LICENSE"]
readme = "README.md"
dynamic = ["version"]
classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: System Administrators",
"Intended Audience :: End Users/Desktop",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
]
dependencies = [
"mstrio-py >= 11.5.3.101"
]
[project.optional-dependencies]
dev = [
"ruff == 0.11.1",
"coverage == 7.7.0",
"pytest == 8.3.5",
"pytest-cov == 6.0.0",
"python-dotenv[cli] == 1.0.1",
"pre-commit == 4.2.0",
"flaky == 3.8.1",
"python-decouple == 3.8",
"notebook == 6.5.7",
"setuptools==78.1.0", # required by notebook <7
"tox == 4.24.2", # if you change this version, update Dockerfile as well
]
[project.urls]
"Bug Tracker" = "https://github.com/MicroStrategy/strqa-py/issues"
"Documentation" = "https://www2.microstrategy.com/producthelp/Current/strqa-py/"
"Source Code" = "https://github.com/MicroStrategy/strqa-py"
# TODO Replace with the correct link
"Quick Manual" = "https://www2.microstrategy.com/producthelp/current/FederatedAnalytics/en-us/Content/mstr_for_jupyter.htm"