Passed
Pull Request — master (#303)
by
unknown
01:20
created

setup   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 0
1
#!/usr/bin/env python
2
# -*- encoding: utf-8 -*-
3
4
from setuptools import setup
5
6
setup(
7
    setup_requires=['pbr'],
8
    pbr=True,
9
)
10