-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.04 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mohtml"
version = "0.1.3"
description="DSL for Python to HTML aimed at Marimo"
license = {file = "LICENSE"}
readme = "README.md"
authors = [
{name = "Vincent D. Warmerdam"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"beautifulsoup4", "marimo"
]
[project.urls]
repository = "https://github.com/koaning/mohtml"
issue-tracker = "https://github.com/koaning/mohtml/issues"
documentation = "https://koaning.github.io/mohtml/"
[tool.setuptools.packages.find]
include = ["mohtml*"]
exclude = [
"docs",
"images",
"notebooks",
"tests",
]