-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
65 lines (53 loc) · 1.98 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
# coding: utf-8
from __future__ import (absolute_import, division, print_function,
unicode_literals)
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.rst")) as f:
long_description = f.read()
def _load_requires_from_file(filepath):
return [pkg_name.rstrip('\r\n') for pkg_name in open(filepath).readlines()]
def _install_requires():
return _load_requires_from_file('requirements.txt')
def _packages():
return find_packages(
exclude=[
'*.tests',
'*.tests.*',
'tests.*',
'tests'
]
)
setup(
name="pyHSICLasso",
version="1.4.2",
author="Makoto Yamada",
author_email="[email protected]",
url="http://www.makotoyamada-ml.com/hsiclasso.html",
description="Supervised, nonlinear feature selection method for high-dimensional datasets.",
long_description=long_description,
download_url="https://github.com/riken-aip/pyHSICLasso",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
],
platforms=["python2.7", "python3.4", "python3.5", "python3.6"],
license="MIT",
keywords="HSIC Lasso HSICLasso feature-selection feature-extraction machine-learning nonlinear data-science",
setup_requires=["pytest-runner"],
tests_require=["pytest"],
install_requires=_install_requires(),
packages=_packages()
)