-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (51 loc) · 1.54 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
[project]
name = "SNulk"
version = "1.0.1"
description = "SNulk provides a means to submit a large number of templated records to a table on a ServiceNow instance based on provided data. The table, instance, template, and data are all customizable and intended to be modified to fit the situation."
authors = [
{ name = "sigmund.gorski", email = "[email protected]" }
]
maintainers = [
{ name = "sigmund.gorski", email = "[email protected]" }
]
dependencies = [
"pysnc>=1.1.5",
"ruamel.yaml>=0.18.6",
"jsonpickle>=3.0.3",
"pandas>=2.2.0",
"openpyxl>=3.1.2",
"xlsxwriter>=3.2.0",
"selenium>=4.18.1"
]
readme = "README.md"
requires-python = ">= 3.11"
classifiers = [
"Development Status :: 4 - Beta",
'Intended Audience :: Developers',
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {file = "LICENSE"}
keywords = ["SNulk", "ServiceNow", "pysnc"]
[project.urls]
Homepage = "https://github.com/ServiceNow/SNulk"
Repository = "https://github.com/ServiceNow/SNulk"
[project.scripts]
"snulk" = "snulk:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
universal = true
generate-hashes = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/snulk"]
exclude = ["submit_table"]
[tool.hatch.build.targets.sdist]
exclude = ["submit_table"]