-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.33 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
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "xblock-accordion"
dynamic = ["version"]
description = "Accordion XBlock"
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">=3.8"
authors = [
{ name = "OpenCraft", email = "[email protected]" },
]
keywords = [
"Python",
"edx",
"XBlock",
"openedx",
"TypeScript",
"plugin",
"tsx",
"jsx",
"vite",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"edx-i18n-tools",
"XBlock",
"xblock-utils",
"pydantic < 3.0",
]
[project.entry-points."xblock.v1"]
accordion = "accordion:AccordionXBlock"
[project.urls]
Homepage = "https://github.com/open-craft/xblock-accordion"
[tool.hatch.version]
path = "accordion/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/accordion",
]
[tool.hatch.build.targets.wheel]
packages = ["accordion"]
[tool.isort]
include_trailing_comma = true
indent = ' '
line_length = 120
multi_line_output = 3
skip=["migrations"]