From 28c7abf62aaee054d1c6c911b23d5bb7e787ecad Mon Sep 17 00:00:00 2001 From: Kevin Matz Date: Mon, 18 Nov 2019 13:22:00 -0500 Subject: [PATCH] initial import --- setup.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 setup.py 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)