forked from UBC-MDS/RegscorePy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 834 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
from setuptools import find_packages
setup(
name = 'RegscorePy',
version = '1.1',
author = 'Ha Dinh, Simran Sethi, Ruoqi Xu',
author_email = 'dinhhn.ubc@gmail.com, simran.sethi@alumni.ubc.ca, rq658182@dal.ca',
packages = ['RegscorePy'],
scripts = ['RegscorePy/aic.py', 'RegscorePy/bic.py', 'RegscorePy/mallow.py'],
url = 'https://github.com/UBC-MDS/regscore-py',
license = 'MIT',
description = 'Useful score functions to assist regression model comparison',
long_description = open('README.rst').read(),
install_requires = ['numpy','pandas'],
include_package_data=True,
download_url = 'https://github.com/UBC-MDS/RegscorePy/archive/0.1.tar.gz',
keywords = ['aic','bic','mallows','regression-score','machine-learning'],
classifiers = [],
)