-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.01 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
42
43
44
45
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"packaging>=21.3",
"twine",
"vermin",
]
[project]
name = "autograder-py"
description = "The Python interface for the autograding server."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Eriq Augustine", email = "[email protected]"},
]
keywords = ['education', 'grading']
classifiers = [
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
]
dynamic = [
"version",
"dependencies",
"optional-dependencies",
]
[tool.setuptools.dynamic]
version = {attr = "autograder.__version__"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = {file = ["requirements-dev.txt"]}}
[project.urls]
Homepage = "https://github.com/edulinq/autograder-py"
Repository = "https://github.com/edulinq/autograder-py"
[tool.setuptools.packages.find]
where = ["."]
include = ["autograder*"]