|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools >= 77.0.3"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "gradescope-tool" |
| 7 | +version = "0.1.3" |
| 8 | +description = "A Python wrapper for Gradescope to easily retrieve data from your Gradescope Courses." |
| 9 | +readme = { file = "README.md", content-type = "text/markdown" } |
| 10 | +requires-python = ">=3.7" |
| 11 | + |
| 12 | +authors = [ |
| 13 | + { name = "HyunJun Park", email = "[email protected]" }, |
| 14 | + { name = "Daniel Song", email = "[email protected]" }, |
| 15 | +] |
| 16 | + |
| 17 | +# SPDX-style license (PEP 639) |
| 18 | +license = "MIT" |
| 19 | +# Make sure the license file is included in the sdist/wheel |
| 20 | +license-files = ["LICEN[CS]E*"] |
| 21 | + |
| 22 | +classifiers = [ |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "License :: OSI Approved :: MIT License", |
| 25 | + "Operating System :: OS Independent", |
| 26 | +] |
| 27 | + |
| 28 | +# Pull dependencies from requirements.txt (same behavior as your setup.py) |
| 29 | +dynamic = ["dependencies"] |
| 30 | + |
| 31 | +[project.urls] |
| 32 | +Homepage = "https://github.com/Teaching-and-Learning-in-Computing/Gradescope" |
| 33 | +Repository = "https://github.com/Teaching-and-Learning-in-Computing/Gradescope" |
| 34 | +Issues = "https://github.com/Teaching-and-Learning-in-Computing/Gradescope/issues" |
| 35 | + |
| 36 | +[tool.setuptools.dynamic] |
| 37 | +dependencies = { file = ["requirements.txt"] } |
| 38 | + |
| 39 | +# Discover your top-level package (and any subpackages) in a flat layout |
| 40 | +[tool.setuptools.packages.find] |
| 41 | +include = ["gradescope*"] |
0 commit comments