-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 891 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (25 loc) · 891 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
27
28
29
30
31
import io
from setuptools import find_packages, setup
def long_description():
with io.open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
return readme
setup(name='featselector',
version='0.1.0',
description='Pythonic Features Selector by Statistics and Model',
long_description=long_description(),
long_description_content_type="text/markdown",
url='https://github.com/xiaorancs/feature-select',
author='Ran Xiao',
author_email="xiaoranone@gmail.com",
license='MIT',
packages=find_packages(),
platforms = "Linux",
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires = ['requires']
)