blob: 6e5357d56447e7c17aee0bb2986fa10989f33136 [file] [log] [blame]
Patrick Williamsf934ca32020-05-15 17:41:29 -05001#!/usr/bin/env python3
2from setuptools import setup, find_packages
3
4setup(
5 name="sdbusplus",
6 version="1.0",
7 packages=find_packages(),
8 install_requires=["inflection", "mako", "pyyaml"],
9 scripts=["sdbus++"],
10 package_data={"sdbusplus": ["templates/*.mako.*"]},
11 url="http://github.com/openbmc/sdbusplus",
12 classifiers=["License :: OSI Approved :: Apache Software License"],
13)