forked from nyuoss/gradescope-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (57 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (57 loc) · 1.46 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
52
53
54
55
56
57
58
59
60
61
[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling",
]
[dependency-groups]
dev = [
"coverage>=7.6.10",
"mdformat-footnote>=0.1.1",
"mdformat-frontmatter>=2.0.8",
"mdformat-gfm-alerts>=1.0.1",
"mdformat>=0.7.21",
"mypy>=1.8.0",
"pre-commit>=3.7.0",
"ruff>=0.4.3",
"rust-just>=1.39.0",
]
[project]
authors = [
{ name = "Berry Liu" },
{ name = "Calvin Tian" },
{ name = "Kevin Zheng" },
{ name = "Margaret Jagger" },
{ name = "Susmitha Kusuma" },
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"beautifulsoup4>=4.12.3",
"fastapi>=0.111.0",
"pytest>=8.2.0",
"python-dateutil>=2.9.0.post0",
"python-dotenv>=1.0.1",
"requests-toolbelt>=1.0.0",
"requests>=2.31.0",
"tzdata>=2024.2",
]
description = "Library for programmatically interacting with Gradescope."
maintainers = [
{ name = "Calvin Tian" },
]
name = "gradescopeapi"
readme = "README.md"
requires-python = ">=3.10"
version = "1.8.1"
[project.license]
text = "MIT"
[project.urls]
Homepage = "https://github.com/nyuoss/gradescope-api"
Issues = "https://github.com/nyuoss/gradescope-api/issues"
Repository = "https://github.com/nyuoss/gradescope-api"