-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.45 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
46
47
48
49
50
51
[build-system]
requires = [
"setuptools >= 45",
"setuptools_scm[toml] >= 6.2",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "scioer/__version__.py"
[project]
name = "sci-oer"
description = "A cli application to help launch the sci-oer course container"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Topic :: Education",
"Topic :: Education :: Computer Aided Instruction (CAI)",
"Topic :: Software Development",
"Topic :: Utilities"
]
dynamic = ["version", "dependencies"]
[[project.authors]]
name = "Marshall Asch"
email = "masch@uoguelph.ca"
[project.urls]
Documentation = "https://github.com/sci-oer/student-cli/blob/main/README.md"
Source = "https://github.com/sci-oer/student-cli"
"Bug Tracker" = "https://github.com/sci-oer/student-cli/issues"
Funding = "https://github.com/sci-oer/student-cli/blob/main/.github/FUNDING.md"
[tool.setuptools.packages.find]
[project.scripts]
scioer = "scioer.cli:app"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}