forked from duxuhao/Feature-Selection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 1.06 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
from setuptools import setup, find_packages
import io
setup(
name = "MLFeatureSelection",
version = "0.0.9.5.1",
keywords = ("pypi easy_install pip"),
description = "Features selection algorithm based on self selected algorithm, loss function and validation method",
long_description = open("README.rst").read(),
license = "MIT Licence",
url = "https://github.com/duxuhao/Feature-Selection",
author = "Xuhao(Peter) Du",
author_email = "[email protected]",
packages = find_packages(),
platforms = "Linux",
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'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 :: Software Development :: Libraries'
],
install_requires = ["requires"]
)