Skip to content

Commit

Permalink
Update package descriptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
l0o0 committed Nov 26, 2018
1 parent 4a30c84 commit e9d6b2e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Rosaceae

A python package to construct a score card.
A python package to construct a score card, it's available in Python 2 or Python3.

Install:
```
Expand Down
2 changes: 1 addition & 1 deletion rosaceae/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '0.0.6'
__version__ = '0.0.7'
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ def readme():

setup(
name='rosaceae',
version='0.0.6',
version='0.0.7',
description='Python pacakge for credit risk scorecards',
long_description=readme(),
long_description_content_type='text/markdown',
author='l0o0',
author_email='[email protected]',
keywords=['scorecards', 'woe', 'iv'],
url='',
url='https://github.com/l0o0/rosaceae',
install_requires=['numpy', 'pandas', 'seaborn', 'sklearn'],
packages=find_packages()
packages=find_packages(),
install_requires=['seaborn', 'sklearn', 'numpy', 'pandas', 'scipy']
)

0 comments on commit e9d6b2e

Please sign in to comment.