-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
53 lines (44 loc) · 1.18 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"build",
"packaging>=21.3",
"setuptools>=60",
"setuptools-scm>=8.0",
"twine",
"vermin",
]
[project]
name = "edq-lms-toolkit"
description = "A suite of CLI tools and Python library interfacing with Learning Management Systems (LMSs)."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Eriq Augustine", email = "eriq@edulinq.org"},
]
keywords = ['education', 'lms', 'canvas', 'api']
classifiers = [
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
]
dynamic = [
"version",
"dependencies",
"optional-dependencies",
]
[tool.setuptools.dynamic]
version = {attr = "lms.__version__"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = {file = ["requirements-dev.txt"]}}
[project.urls]
Homepage = "https://github.com/edulinq/lms-toolkit"
Repository = "https://github.com/edulinq/lms-toolkit"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*"]
[tool.setuptools.packages.find]
where = ["."]
include = ["lms*"]