Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-

# Copyright © 2014 Martin Ueding <dev@martin-ueding.de>
# 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",
)