forked from venmo/business-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix long description and bump to v1.1.1 (venmo#78)
- Loading branch information
1 parent
fb42620
commit b5c1a3c
Showing
6 changed files
with
35 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
*.py[cod] | ||
.DS_Store | ||
|
||
# C extensions | ||
*.so | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
History | ||
========= | ||
|
||
## 1.1.1 | ||
|
||
Release date: 2022-3-18 | ||
|
||
- Fix package description and long description | ||
|
||
## 1.1.0 | ||
|
||
Release date: 2022-3-18 | ||
|
||
- Add support for Python 3.5-3.7 | ||
|
||
## 1.0.1 | ||
|
||
Release date: 2016-3-16 | ||
|
||
- Fixes a packaging bug preventing 1.0.0 from being installed on some platforms. | ||
|
||
## 1.0.0 | ||
|
||
Release date: 2016-3-16 | ||
|
||
- Removes caching layer on rule decorator |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '1.1.0' | ||
__version__ = '1.1.1' | ||
|
||
from .engine import run_all | ||
from .utils import export_rule_data | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
#! /usr/bin/env python | ||
|
||
from setuptools import setup | ||
|
||
from business_rules import __version__ as version | ||
|
||
with open('HISTORY.rst') as f: | ||
history = f.read() | ||
with open('README.md') as f: | ||
readme = f.read() | ||
|
||
description = 'Python DSL for setting up business intelligence rules that can be configured without code' | ||
with open('HISTORY.md') as f: | ||
history = f.read() | ||
|
||
setup( | ||
name='business-rules', | ||
version=version, | ||
description='{0}\n\n{1}'.format(description, history), | ||
description='Python DSL for setting up business intelligence rules that can be configured without code', | ||
long_description='{}\n\n{}'.format(readme, history), | ||
long_description_content_type='text/markdown', | ||
author='Venmo', | ||
author_email='[email protected]', | ||
url='https://github.com/venmo/business-rules', | ||
|