rSW/pyproject.toml

38 lines
839 B
TOML
Raw Normal View History

2022-09-29 23:20:11 +03:00
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = 'reSW'
2022-09-30 12:07:24 +03:00
version = '0.1.2'
2022-09-29 23:20:11 +03:00
description = 'Highly customizable static site generator for reStructuredText markup'
readme = 'README'
2022-09-30 12:07:24 +03:00
requires-python = ">=3.7"
2022-09-29 23:20:11 +03:00
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
2022-09-30 12:07:24 +03:00
zip-safe = true
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
rsw = ['*.jinja2']