1
0
Fork 0
baconscript/setup.py

21 lines
546 B
Python
Raw Permalink Normal View History

2019-11-18 13:22:00 -05:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
2020-11-23 12:31:44 -05:00
"""Setup.py: Module install script."""
2019-11-18 13:22:00 -05:00
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=[
2020-11-23 12:31:44 -05:00
'antlr4-python3-runtime',
'python-osc',
2019-11-18 13:22:00 -05:00
],
zip_safe=False)