summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 1b696770be16bf247f585ddb176c57e0bd26bb51 (plain)
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
py-modules = ['taep']

[project]
name = "taep"
version = "v1.0.0-rc2"
description = "Print pictures as collages using label tape printers"
readme = "README.rst"
authors = [{name = "jaseg", email = "code@jaseg.de"}]
license = {text = "GPLv2+ or LGPLv2.1+"}
requires-python = ">=3.10"
keywords = ['graphics', 'svg', 'printing', 'printer', 'label', 'label printer', 'brother', 'p-touch', 'dithering',
            'image processing', 'collage']
dependencies = ['click', 'beautifulsoup4']
classifiers = [
    'Development Status :: 5 - Production/Stable',
    'Intended Audience :: Developers',
    'Intended Audience :: End Users/Desktop',
    'License :: OSI Approved :: BSD License',
    'Natural Language :: English',
    'Operating System :: POSIX',
    'Programming Language :: Python :: 3.9',
    'Programming Language :: Python :: 3.10',
    'Programming Language :: Python :: 3.11',
    'Programming Language :: Python :: 3.12',
    'Topic :: Multimedia :: Graphics :: Editors :: Vector-Based',
    'Topic :: Multimedia :: Graphics :: Presentation',
    'Topic :: Printing',
    'Topic :: Scientific/Engineering :: Image Processing',
    'Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Printer',
    'Topic :: Utilities',
]

[project.urls]
homepage = "https://github.com/jaseg/taep"