Skip to content

Commit

Permalink
link from pypi to github and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Bernhardsson committed Dec 4, 2018
1 parent 8f24fb7 commit 9022542
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
from setuptools import setup, find_packages

long_description = '''
For more information, see
`the package documentation <https://better.engineering/convoys>`_
or
`the Github project page <https://github.com/better/convoys>`_.
.. image:: https://better.engineering/convoys/_images/dob-violations-combined.png
'''

setup(name='convoys',
version='0.1.0',
version='0.1.2',
description='Fit machine learning models to predict conversion using Weibull and Gamma distributions',
long_description=long_description,
url='https://better.engineering/convoys',
license='MIT',
author='Erik Bernhardsson',
author_email='erikbern@better.com',
packages=find_packages(),
install_requires=[line.strip() for line in open('requirements.txt')])

0 comments on commit 9022542

Please sign in to comment.