-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (54 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
65 lines (54 loc) · 1.37 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# test it works
# pip install -e .
# build the package
# pip install build
# python -m build
# check with twine
# pip install twine
# twine check dist/*
# push on testpypi
# twine upload --repository testpypi dist/*
# install from testpypi
# pip install -i https://test.pypi.org/simple/ <your package>
# push on pypi
# twine upload dist/*
[build-system]
requires = ["wheel", "setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "madoc"
version = "1.2.6"
description = "Documentation generator from markdown files"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{name = "Vincent Fabre", email = "peigne.plume@gmail.com"},
]
keywords= ["markdown", "html", "documentation"]
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
]
dependencies = [
"jinja2>=3.1.2,<4.0.0",
"markdown>=3.7,<4.0.0",
"pygments>=2.19.1,<3.0.0",
"requests>=2.32.3,<3.0.0",
]
[project.scripts]
madoc = "madoc.main:cmd"
[project.urls]
Homepage = "https://github.com/byoso/madoc"
Repository = "https://github.com/byoso/madoc"
[tool.setuptools]
packages = [
"madoc",
"madoc.templates",
"madoc.templates.madoc",
"madoc.assets",
"madoc.silly_engine",
]
[tool.setuptools.package-data]
"*" = ['*.tpl', '*.html', '*.ico', '*.css']