-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 870 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 870 Bytes
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
#!/usr/bin/env python
from distutils.core import setup
setup(
name="featureimpact",
packages=["featureimpact"],
version="2.2.2",
description="Compute the statistical impact of features given a trained estimator",
author="Christian Blume",
author_email="chr.blume@gmail.com",
url="https://github.com/bloomen/featureimpact",
license="MIT",
keywords=["machine learning", "data mining", "statistics"],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development"
],
long_description=open('README.md').read(),
install_requires=['numpy', 'scipy', 'pandas'],
)