-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 796 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md") as readme:
long_description = readme.read()
requirements = [
"matplotlib>=3.5.2",
"numpy>=1.23.1",
"pandas>=1.4.3",
"ReliefF>=0.1.2",
"scikit-learn>=1.1.1",
"seaborn>=0.11.2",
"sklearn>=0.0"
]
setup(
name='feature-selection-package',
version='1.0.0',
license='MIT',
author="Matteo Serafino",
author_email='[email protected]',
description="",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
url='https://github.com/matteo-serafino/feature-selection.git',
keywords='feature-selection',
install_requires=requirements,
python_requires=">=3.6.2",
include_package_data=True
)