-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (18 loc) · 826 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
import setuptools
from distutils.util import convert_path
with open('README.md', 'r') as fh:
long_description = fh.read()
main_ns = {}
ver_path = convert_path('scorekit/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
setuptools.setup(name = 'scorekit',
version = main_ns['__version__'],
author = 'Ruslan Sakovich',
description = 'Package for solving binary classification problems by logistic regression',
license = 'BSD',
install_requires = ['pandas', 'matplotlib', 'numpy', 'seaborn', 'scikit-learn', 'scipy', 'statsmodels',
'python-docx', 'openpyxl', 'sklearn', 'optbinning', 'cloudpickle', 'tqdm', 'xlsxwriter'],
long_description = long_description,
packages = setuptools.find_packages())