File: setup.py

package info (click to toggle)
djvubind 1.2.1-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,712 kB
  • sloc: python: 1,146; makefile: 2
file content (16 lines) | stat: -rwxr-xr-x 609 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /usr/bin/env python3

from setuptools import setup

setup (name='djvubind',
      version='1.2.1',
      description='Creates djvu files with positional ocr, metadata, and bookmarks.',
      author='Adam Zajac',
      author_email='strider1551@gmail.com',
      url='https://code.google.com/p/djvubind/',
      license='GPL-3',
      py_modules=['djvubind/__init__', 'djvubind/encode', 'djvubind/ocr', 'djvubind/organizer', 'djvubind/utils'],
      data_files=[('bin', ['bin/djvubind']),
                  ('/etc/djvubind', ['docs/config']),
                  ('share/man/man1', ['docs/djvubind.1.gz'])]
)