38 lines
839 B
TOML
38 lines
839 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = 'reSW'
|
|
version = '0.1.2'
|
|
description = 'Highly customizable static site generator for reStructuredText markup'
|
|
readme = 'README'
|
|
requires-python = ">=3.7"
|
|
keywords = ['reStructuredText', 'SSG', 'static site generator']
|
|
license = {text = 'GNU General Public License v3 or later (GPLv3+)'}
|
|
dependencies = [
|
|
'colorlog==6.7.0',
|
|
'docopt==0.6.2',
|
|
'docutils==0.17.1',
|
|
'Jinja2==3.1.2',
|
|
'Pygments==2.13.0',
|
|
'toml==0.10.2'
|
|
]
|
|
classifiers = [
|
|
'Programming Language :: Python :: 3.10',
|
|
'Operating System :: OS Independent'
|
|
]
|
|
|
|
[project.scripts]
|
|
rsw = 'rsw:cli'
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
zip-safe = true
|
|
|
|
[tool.setuptools.packages]
|
|
find = {}
|
|
|
|
[tool.setuptools.package-data]
|
|
rsw = ['*.jinja2']
|