-
Notifications
You must be signed in to change notification settings - Fork 55
/
pyproject.toml
53 lines (45 loc) · 1.23 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
50
51
52
53
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name="semantic-link-labs"
authors = [
{ name = "Microsoft Corporation" },
]
version="0.8.11"
description="Semantic Link Labs for Microsoft Fabric"
readme="README.md"
requires-python=">=3.10,<3.12"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Framework :: Jupyter"
]
license= { text = "MIT License" }
dependencies = [
"semantic-link-sempy>=0.8.3",
"anytree",
"powerbiclient",
"polib",
"azure.mgmt.resource",
"jsonpath_ng",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.*"]
[project.optional-dependencies]
test = [
"pytest>=8.2.1",
]
[project.urls]
Repository = "https://github.com/microsoft/semantic-link-labs.git"
[[tool.mypy.overrides]]
module = "sempy.*,Microsoft.*,System.*,anytree.*,powerbiclient.*,synapse.ml.services.*,polib.*,azure.mgmt.resource.*,jsonpath_ng.*"
ignore_missing_imports = true
[tool.flake8]
max-line-length = 200