-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.11 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]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pysell"
version = "1.3.5"
description = "A Python-based Simple E-Learning Language for the Rapid Creation of Interactive and Mobile-Friendly STEM Courses"
readme = "README.md"
requires-python = ">=3.8"
authors = [
]
maintainers = [
]
license = { file = "LICENSE" }
keywords = ["dsl", "quiz", "learning", "stem", "teaching", "assessement"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = []
include = ["pysell/*.py"]
[project.scripts]
pysell = "pysell.__main__:main"
[project.urls]
Homepage = "https://pysell.org"
Repository = "https://github.com/andreas-schwenk/pysell"
[tool.hatch.build]
exclude = [
"platforms/",
"docs/",
"img/",
"web/",
"build/",
"examples/",
"llm.md",
"build-pysell.py",
"TODO.txt",
]