-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (41 loc) · 1.44 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
import os
import sys
import re
try:
import setuptools
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import find_packages
try:
from setuptools import setup
setup
except ImportError:
from distutils.core import setup
setup
linearfitVersion = '1.0.2'
setup(
name="linearfit",
description="python package that implements a general least-squares fit of a linear model using numpy matrix inversion",
version=linearfitVersion,
author="Johannes Sahlmann",
author_email="[email protected]",
url="https://github.com/Johannes-Sahlmann/linearfit",
license="BSD 3-Clause",
long_description="python package that implements a general least-squares fit of a linear model using numpy matrix inversion",
packages = find_packages(),
scripts=['test_linearfit.py'], # this will be installed to a bin/ directory
package_data={'': ['LICENSE', 'AUTHORS.rst', 'HISTORY.rst', 'INSTALL', 'MANIFEST.in','README.md','README.rst']},
include_package_data=True,
install_requires=["numpy"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Astronomy",
],
)