#! /usr/bin/env python import setuptools from business_rules import __version__ as version with open('HISTORY.rst') as f: history = f.read() description = 'Fork of Venmo-Business-Rules: Python DSL for setting up business intelligence rules that can be configured without code' setuptools.setup( name='business-rules-enhanced', version=version, description='{0}\n\n{1}'.format(description, history), author='cdisc-org', url='https://github.com/cdisc-org/business-rules', packages=['business_rules'], license='MIT' )