aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: fe56599ff583be8b5bc5db0e3f3bdfc513ff8675 (plain)
1
2
3
4
5
6
7
8
9
10
11
from setuptools import setup

with open("README.md", "r") as fh:
    long_description = fh.read()

setup(
    requires=['pbd'],
    pbr=True,
    long_description=long_description,
    long_description_content_type="text/markdown",
)