summaryrefslogtreecommitdiff
path: root/setup.py
blob: ac62ffe9f135f6978ab91654dfa208a79651a112 (plain)
1
2
3
4
5
6
7
8
9
10
11
# This is a dummy setup.py, for use with bumper. It only needs to
# print name and version.

from distutils.core import setup

import extrautils

setup(
    name='extrautils',
    version=extrautils.__version__
)