-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
89 lines (78 loc) · 2.06 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# This file is a part of marzer/poxy and is subject to the the terms of the MIT license.
# Copyright (c) Mark Gillard <[email protected]>
# See https://github.com/marzer/poxy/master/LICENSE.txt for the full license text.
# SPDX-License-Identifier: MIT
# windows:
# python -m build && twine upload dist/* && rmdir /S /Q dist
[build-system]
requires = ['setuptools', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'poxy'
requires-python = '>=3.7'
description = 'Documentation generator for C++.'
authors = [{ name = "Mark Gillard", email = "[email protected]" }]
license = { text = 'MIT' }
keywords = ['c++', 'doxygen', 'documentation']
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: C++',
'Topic :: Documentation',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Documentation',
'Topic :: Utilities',
]
dependencies = [
'misk >= 0.8.1',
'bs4',
'jinja2',
'pygments',
'html5lib',
'lxml',
'tomli',
'schema != 0.7.5',
'requests',
'trieregex',
'colorama',
]
dynamic = ['version', 'readme']
[project.scripts]
poxy = 'poxy:main'
poxyblog = 'poxy:main_blog_post'
[project.urls]
Source = 'https://github.com/marzer/poxy'
Tracker = 'https://github.com/marzer/poxy/issues'
Funding = 'https://github.com/sponsors/marzer'
[tool.setuptools]
zip-safe = true
[tool.setuptools.dynamic]
version = { file = 'src/poxy/version.txt' }
readme = { file = [
'README.md',
'CHANGELOG.md',
], content-type = 'text/markdown' }
[tool.setuptools.packages.find]
where = ["src"]
include = ["poxy*"]
[tool.setuptools.package-data]
"*" = [
'*.css',
'*.woff',
'*.woff2',
'*.json',
'*.rst',
'*.html',
'*.xml',
'*.png',
'*.js',
'*.svg',
'*.txt',
]
[tool.setuptools.exclude-package-data]
"*" = ['meson.build', '.git*', '.istanbul.yaml', '*.pyc']
[tool.black]
line-length = 120
target-version = ['py37']
skip-string-normalization = true
skip-magic-trailing-comma = true