File: setup.py

package info (click to toggle)
python-retry 0.9.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 156 kB
  • sloc: python: 204; makefile: 7
file content (9 lines) | stat: -rw-r--r-- 149 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
from setuptools import find_packages
from setuptools import setup


setup(
    packages=find_packages(),
    pbr=True,
    setup_requires=['pbr'],
)