-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.04 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
[project]
name = "contextmaker"
version = "1.8.8"
description = "A simple context builder and converter toolkit"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Chadi Ait Ekioui", email = "chadiaitek2004@gmail.com" }
]
requires-python = ">=3.8"
dependencies = [
"sphinx>=5.0.0",
"jupytext>=1.14.0",
"sphinx-rtd-theme>=1.0.0",
"myst-parser>=1.0.0",
"sphinx-markdown-builder>=0.6.5",
"markdownify",
"rich",
"beautifulsoup4",
"html2text",
"markdown",
"numpy",
"docutils",
"jinja2",
"pygments",
"nbformat",
"nbconvert",
"jupyter",
]
[project.optional-dependencies]
dev = ["pytest", "black", "sphinx-autobuild"]
[project.scripts]
contextmaker = "contextmaker.contextmaker:main"
[project.urls]
Homepage = "https://github.com/chadiaitekioui/contextmaker"
Repository = "https://github.com/chadiaitekioui/contextmaker"
[tool.setuptools]
packages = { find = { where = ["src"] } }
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"