Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #10 from rsyi/ryi-setup-mod
Browse files Browse the repository at this point in the history
Add setup modification to allow for pypi description.
  • Loading branch information
rsyi authored Dec 22, 2019
2 parents 850a8a0 + 24f1d34 commit 477e094
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
from setuptools import find_packages, setup

# Read the contents of README file.
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(name='pylift',
version='0.1.3',
description='Python implementation of uplift modeling.',
Expand All @@ -14,5 +20,7 @@
'scikit-optimize',
'xgboost'
],
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
zip_safe=False)

0 comments on commit 477e094

Please sign in to comment.