-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 900 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "elc-snow-util"
version = "1.0.0"
authors = [
{ name="Dan Davis", email="daniel.davis@wipro.com" },
]
description = "Python CLI including reports and backend scripts for the Employee Center"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"openpyxl",
"requests",
"pandas",
"pydantic",
"progress",
"pyaml",
"python-magic; sys_platform != 'win32'",
"python-magic-bin; sys_platform == 'win32'",
]
[project.scripts]
elc-snow-util = "snowboard.cli:main"
[project.urls]
"Homepage" = "https://github.com/buildit/elc-snow-util"
"Bug Tracker" = "https://github.com/buildid/elc-snow-util/elc-snow-util"