forked from tiet-uta027/tiet-uta027.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.08 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
[build-system]
requires = ["hatchling","hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "tiet-uta027.github.io"
version = "0.0.11"
authors = [
{ name="Raghav B. Venkataramaiyer", email="[email protected]" },
]
# maintainers = [
# { name="Raghav B. Venkataramaiyer",
# email="[email protected]" },
# ]
description = "UTA027 Course Website"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
# See: https://pypi.org/classifiers/
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Programming Language :: Unix Shell",
]
dependencies = ["click"]
[project.urls]
Homepage = "https://tiet-uta027.github.io/"
Issues = "https://github.com/tiet-uta027/tiet-uta027.github.io/issues"
# Adapted from https://stackoverflow.com/a/50156706
[tool.pytest.ini_options]
pythonpath = [
"src"
]
# THE END -------------------------------------------