File: setup.py

package info (click to toggle)
pybtex 0.25.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,628 kB
  • sloc: python: 13,585; makefile: 181; sh: 39; javascript: 29
file content (12 lines) | stat: -rw-r--r-- 448 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
from setuptools import setup

setup(name='Sample Pybtex plugins',
    author='Andrey Golovizin',
    py_modules=['toyplugins'],
    entry_points = {
        'pybtex.database.output': 'python = toyplugins:PythonWriter',
        'pybtex.database.output.suffixes': '.py = toyplugins:PythonWriter',
        'pybtex.database.input': 'python = toyplugins:PythonParser',
        'pybtex.database.input.suffixes': '.py = toyplugins:PythonParser',
    },
)