-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
29 lines (25 loc) · 983 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
from pathlib import Path
from setuptools import find_packages, setup
# description
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
#setup initialization
setup(name='zoofs',
version='0.1.26',
url='https://github.com/jaswinder9051998/zoofs',
author='JaswinderSingh',
author_email='[email protected]',
license='Apache License 2.0',
packages=['zoofs'],
description="zoofs is a Python library for performing feature selection using an variety of nature inspired wrapper algorithms..",
long_description=long_description ,
long_description_content_type='text/markdown',
install_requires=["pandas>=1.3.0",
"numpy",
"scipy>=1.4.1",
"plotly>=5.6.0",
"colorlog>=6.6.0"],
include_package_data=True,
zip_safe=True,
python_requires=">=3.7"
)