forked from davidfokkema/canvas-course-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.13 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
[tool.poetry]
name = "canvas-course-tools"
version = "0.5.2"
homepage = "https://github.com/davidfokkema/canvas-course-tools"
description = "Canvas course tools"
authors = ["David Fokkema <[email protected]>"]
readme = "README.md"
packages = [{include = "canvas_course_tools", from = "src"}]
license = "GPL-3.0-or-later"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
]
[tool.poetry.scripts]
canvas = "canvas_course_tools.cli:cli"
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.1.3"
appdirs = "^1.4.4"
rich = "^12.5.1"
canvasapi = "^2.2.0"
python-dateutil = "^2.8.1"
rich-click = "^1.5.2"
jinja2 = "^3.1.2"
tomli-w = "^1.0.0"
tomli = "^2.0.1"
[tool.poetry.dev-dependencies]
ipython = "^7.22.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"