blob: 6e6198c20c80d5953c7101170ca8795dc479c68f [file] [log] [blame]
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="sdbusplus",
version="1.0",
packages=find_packages(),
install_requires=["inflection", "mako", "pyyaml"],
scripts=["sdbus++", "sdbus++-gendir", "sdbus++-gen-meson"],
package_data={"sdbusplus": ["templates/*.mako"]},
url="http://github.com/openbmc/sdbusplus",
classifiers=["License :: OSI Approved :: Apache Software License"],
)