diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..08826d3 --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +from setuptools import setup, find_packages + +setup(name='baconscript', + version='3.9', + description='Hog 4 comment macro interpreter and OSC bridge.', + url='https://git.company235.com/kevin/baconscript', + author='Kevin Matz', + author_email='kevin@company235.com', + license='MIT', + packages=find_packages(), + install_requires=[ + 'antlr4-python3-runtime', + 'python-osc', + ], + zip_safe=False)