aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 0870416cf95dd685c7e1bd434b7b83b8950c2f78 (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
29
30
31
32
33
34
35
36
37
38
[project]
name = "epubgrep"
description = "Grep through EPub files"
version = "0.10.1"
authors = [
    { name = "Matěj Cepl", email = "mcepl@cepl.eu" }
]
license = { file="LICENSE" }
readme = "README.md"
dependencies = [
    "epub_meta",
]
classifiers = [
    "Environment :: Console",
    "Intended Audience :: Information Technology",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.6",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Topic :: Software Development :: Libraries :: Python Modules",
]

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

[project.urls]
homepage = "https://git.cepl.eu/cgit/toys/epubgrep/"
repository = "https://git.cepl.eu/git/toys/epubgrep"

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"