forked from venmo/business-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (24 loc) · 746 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#! /usr/bin/env python
from __future__ import absolute_import
import setuptools
from setuptools import find_packages
from business_rules import __version__ as version
with open('HISTORY.rst') as f:
history = f.read()
description = 'Python DSL for setting up business intelligence rules that can be configured without code'
install_requires = [
'pytz>=2016.10',
'typing',
'six',
]
setuptools.setup(
name='business-rules',
version=version,
description='{0}\n\n{1}'.format(description, history),
author='Venmo',
author_email='open-source@venmo.com',
url='https://github.com/venmo/business-rules',
packages=find_packages(exclude=['tests']),
license='MIT',
install_requires=install_requires
)