-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 1 KB
/
setup.py
File metadata and controls
20 lines (19 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(name='pylr2',
version='0.1.1',
description='Linear Regression Type II Models',
long_description='This python package (pylr2) provides linear regression type 2 (regress2), which are recommended when there is variability in both variables regressed. It uses linear regression type 1 from the statsmodels package.',
url='https://github.com/OceanOptics/pylr2.git',
author='Nils Haentjens',
author_email='nils.haentjens@maine.edu',
license='MIT',
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'],
keywords='lr2 regress2 regression fit',
packages=find_packages(),
install_requires=['numpy', 'statsmodels'],
zip_safe=True)