diff --git a/linfit.py b/linfit/__init__.py similarity index 100% rename from linfit.py rename to linfit/__init__.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..85fe732 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +#!/usr/bin/python3 +# -*- coding: utf-8 -*- + +# Copyright © 2014 Martin Ueding +# Licensed under The Lesser GNU Public License Version 2 (or later) + +from setuptools import setup, find_packages + +setup( + author="David Pine", + description="Least squares linear fit for numpy library of Python", + license="LGPL2", + name="linfit", + packages=find_packages(), + install_requires=[ + 'numpy', + ], + url="https://github.com/djpine/linfit", + download_url="https://github.com/djpine/linfit", + version="2013.11.29", +)