-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (28 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
36 lines (28 loc) · 1.01 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gradescope-tool"
version = "0.1.4"
description = "A Python wrapper for Gradescope to easily retrieve data from your Gradescope Courses."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.7"
authors = [
{ name = "HyunJun Park", email = "hyunjup4@uci.edu" },
{ name = "Daniel Song", email = "djsong1@uci.edu" }
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/Teaching-and-Learning-in-Computing/Gradescope"
Repository = "https://github.com/Teaching-and-Learning-in-Computing/Gradescope"
Issues = "https://github.com/Teaching-and-Learning-in-Computing/Gradescope/issues"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.packages.find]
include = ["gradescope*"]