File: setup.py

package info (click to toggle)
python-click-plugins 1.1.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 204 kB
  • sloc: python: 308; makefile: 8
file content (21 lines) | stat: -rwxr-xr-x 329 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python


"""
Setup script for `PrintItStyle`
"""


from setuptools import setup


setup(
    name='PrintItStyle',
    version='0.1dev0',
    packages=['printit_style'],
    entry_points='''
        [printit.plugins]
        background=printit_style.core:background
        color=printit_style.core:color
    '''
)