-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (48 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
51 lines (48 loc) · 1.44 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
[build-system]
requires = ["setuptools>=42", "calver"]
build-backend = "setuptools.build_meta"
[project]
name = "rcapptests"
authors = [
{name = "Sohaib Syed", email = "sohaibuddinsyed@ufl.edu"},
{name = "Oleksandr Moskalenko", email = "moskalenko@ufl.edu"},
]
description = "RC Application Testing Tools"
readme = "README.md"
keywords = ["rc", "apps", "tests"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Customer Service",
"Intended Audience :: System Administrators",
"Topic :: System :: Systems Administration",
]
requires-python = ">=3.8"
dependencies = [
"build >= 1.2.1",
"calver >= 2022.6.26",
"colorama >= 0.4.6",
"loguru >= 0.7.2",
"markdown-it-py >= 3.0.0",
"mdurl >= 0.1.2",
"packaging >= 24.1",
"pygments >= 2.17.2",
"pyproject-hooks >= 1.1.0",
"pyyaml >= 6.0.1",
"rich >= 13.7.1",
"tomli >= 2.0.1",
"tqdm >= 4.66.4",
"typing_extensions >= 4.10.0",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://www.rc.ufl.edu"
"Documentation" = "https://github.com/UFResearchComputing/rcapptests/docs"
"Issues" = "https://github.com/UFResearchComputing/rcapptests/issues"
"Repository" = "https://github.com/UFResearchComputing/rcapptests"
[tool.setuptools.packages.find]
where = ["src"]