File: setup.py

package info (click to toggle)
seqan 1.4.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 34,156 kB
  • ctags: 30,130
  • sloc: cpp: 226,267; python: 7,737; xml: 189; sh: 153; awk: 129; makefile: 48
file content (14 lines) | stat: -rw-r--r-- 557 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import setup

setup(
    name='TextBoxesMacros',
    version='0.1.7',
    packages=['text_boxes'],
    package_data={'text_boxes' : ['htdocs/css/*.css',
                                  'htdocs/dialog-information.png',
                                  'htdocs/dialog-warning.png',
                                  'htdocs/emblem-important.png',
                                  'htdocs/Accessories-text-editor.png',
                                  ]},
    entry_points = {'trac.plugins': ['textboxesmacros = text_boxes.macro']},
    )