File: setup.py

package info (click to toggle)
bdflib 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 396 kB
  • sloc: python: 4,182; makefile: 13
file content (30 lines) | stat: -rwxr-xr-x 1,028 bytes parent folder | download
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
#!/usr/bin/python
from setuptools import setup

with open("README.md", "r") as handle:
    long_description = handle.read()

setup(
    name="bdflib",
    version="2.1.0",
    description="Library for working with BDF font files.",
    long_description=long_description,
    long_description_content_type="text/markdown",
    author="Timothy Allen",
    author_email="screwtape@froup.com",
    url="https://gitlab.com/Screwtapello/bdflib/",
    packages=["bdflib", "bdflib.test"],
    package_data={"bdflib": ["py.typed"]},
    entry_points={
        "console_scripts": [
            "bdflib-embolden = bdflib.tools:embolden",
            "bdflib-expand= bdflib.tools:expand",
            "bdflib-fill = bdflib.tools:fill",
            "bdflib-merge = bdflib.tools:merge",
            "bdflib-passthrough = bdflib.tools:passthrough",
            "bdflib-validate = bdflib.tools:validate",
            "bdflib-xlfd-validate = bdflib.tools:xlfd_validate",
            "bdflib-xlfd-fix = bdflib.tools:xlfd_fix",
        ]
    },
)