aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 547984dbfbf0e38dfb38f1a9755bc71ecc190628 (plain) (blame)
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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"

[project]
name = "epubgrep"
version = "0.9.0"
authors = [{name = "Matěj Cepl", email = "mcepl@cepl.eu"}]
description = "Grep through EPub files"
classifiers = [
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.3",
    "Programming Language :: Python :: 3.4",
    "Programming Language :: Python :: 3.5",
    "Programming Language :: Python :: 3.6",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.7",
    "Environment :: Console",
    "Intended Audience :: Information Technology",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Topic :: Software Development :: Libraries :: Python Modules",
]
urls = {Homepage = "https://git.cepl.eu/cgit/epubgrep"}
dependencies = ["epub_meta"]

[project.scripts]
epubgrep = "epubgrep:main"