-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (37 loc) · 1.72 KB
/
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
import setuptools
with open('README.rst', 'r', encoding='utf-8') as fh:
long_description = fh.read()
install_requires = [
"scikit-learn >= 0.20.0",
"pandas >= 0.24.0",
"numpy >= 1.11.0",
"scipy >= 0.17.0",
"joblib >= 0.11.0"]
setuptools.setup(name='glvi',
version='0.1.7',
description='Local variable importance from a global model',
long_description=long_description,
long_description_content_type="text/markdown",
author='TaoLi',
author_email='lp1559345469@gmail.com',
url='https://github.com/PowderL/Local-variable-importance-from-a-global-mode',
keywords='random forests variable importance ',
packages=setuptools.find_packages(),
zip_safe=False,
include_package_data=True,
python_requires=">=3.5",
install_requires = install_requires,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"License :: Freeware",
"Natural Language :: English"
])