-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
38 lines (29 loc) · 999 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
35
36
37
38
from setuptools import setup, find_packages
with open('README.rst', 'r', encoding='utf8') as f:
readme = f.read()
version = __import__('esl_model').__version__
setup(name='esl_model',
version=version,
description="Algorithm from The Elements of Statistical Learning book implement by Python 3 code",
long_description=readme,
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
],
url='https://github.com/littlezz/ESL-Model',
author='littlezz',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=['tests*']),
install_requires=[
'numpy',
'pandas',
'scipy',
'scikit-learn',
],
tests_require=['pytest'],
include_package_data=True,
zip_safe=False,
)