This repository has been archived by the owner on Feb 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (74 loc) · 1.85 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyservicenow"
authors = [{name = "michaeldcanady"}]
readme = "Readme.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
requires-python = ">3.8.0"
dependencies = [
"black==22.12.0",
"bleach==6.0.0",
"certifi==2022.12.7",
"cffi==1.15.1",
"charset-normalizer==3.0.1",
"click==8.1.3",
"colorama==0.4.6",
"commonmark==0.9.1",
"cryptography==38.0.4",
"docutils==0.19",
"idna==3.4",
"importlib-metadata==6.0.0",
"jaraco.classes==3.2.3",
"keyring==23.13.1",
"markdown-it-py==2.2.0",
"mdurl==0.1.2",
"more-itertools==9.1.0",
"multipledispatch==0.6.0",
"mypy-extensions==0.4.3",
"packaging==23.0",
"pathspec==0.10.3",
"pkginfo==1.9.6",
"platformdirs==2.6.0",
"pycparser==2.21",
"Pygments==2.14.0",
"pyrestsdk==0.4.0",
"pyspnego==0.7.0",
"pywin32-ctypes==0.2.0",
"readme-renderer==37.3",
"requests==2.28.2",
"requests-kerberos==0.14.0",
"requests-toolbelt==0.10.1",
"rfc3986==2.0.0",
"rich==13.3.1",
"simplejson==3.18.3",
"six==1.16.0",
"StrEnum==0.4.9",
"tomli==2.0.1",
"twine==4.0.2",
"typing_extensions==4.5.0",
"urllib3==1.26.14",
"webencodings==0.5.1",
"zipp==3.15.0",
]
[project.urls]
homepage = "https://github.com/michaeldcanady/pyservicenow#readme"
repository = "https://github.com/michaeldcanady/pyservicenow"
[tool.flit.module]
name = "pyservicenow"
[tool.mypy]
warn_unused_configs = true
files = "pyservicenow"
ignore_missing_imports = true
[tool.yapf]
based_on_style = "pep8"
dedent_closing_brackets = true
each_dict_entry_on_separate_line = true
column_limit = 100
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]