-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 820 Bytes
/
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
import setuptools
from io import open
from os import path
# Get the long description from the README file
with open('README.md','r') as f:
long_description = f.read()
setuptools.setup(
name='mccv',
version='0.1a0',
description='Monte Carlo Cross Validation',
long_description=long_description,
long_description_content_type='text/markdown',
url='',
author='Nicholas Giangreco',
author_email='nick.giangreco@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3'
],
keywords='machine learning cross validation prediction',
license='MIT',
packages=setuptools.find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[
'numpy',
'pandas',
'scikit-learn',
'joblib'
],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)