-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
67 lines (55 loc) · 1.54 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
[build-system]
requires = ['setuptools']
[project]
name = 'codebraid'
description = 'Live code in Pandoc Markdown'
readme = 'README.md'
requires-python = '>= 3.7'
authors = [
{name = 'Geoffrey M. Poore', email = '[email protected]'}
]
license = {file = 'LICENSE.txt'}
dynamic = ['version']
keywords = [
'dynamic documents',
'reproducible research',
'notebook',
'markdown',
'pandoc',
'LaTeX'
]
dependencies = [
'bespon >= 0.7.0',
]
# https://pypi.python.org/pypi?:action=list_classifiers
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Documentation',
'Topic :: Education',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Documentation',
'Topic :: Text Processing',
'Topic :: Text Processing :: Markup',
]
[project.urls]
homepage = 'https://codebraid.org/'
repository = 'http://github.com/gpoore/codebraid'
changelog = 'https://github.com/gpoore/codebraid/blob/master/CHANGELOG.md'
[project.scripts]
codebraid = 'codebraid.cmdline:main'
[tool.setuptools]
license-files = ['LICENSE*', 'CHANGELOG*']
[tool.setuptools.dynamic]
version = {attr = 'codebraid.__version__'}
[tool.setuptools.package-data]
'*' = ['*.bespon']
[tool.ruff]
line-length = 120