-
Notifications
You must be signed in to change notification settings - Fork 89
/
setup.py
46 lines (43 loc) · 1.31 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
#!/usr/bin/env python
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="featurewiz",
version="0.5.8",
author="Ram Seshadri",
author_email="[email protected]",
description="Select Best Features from your data set - any size - now with XGBoost!",
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache License 2.0',
url="https://github.com/AutoViML/featurewiz",
packages=setuptools.find_packages(exclude=("tests",)),
install_requires=[
"ipython",
"jupyter",
"xgboost>=1.5,<=1.6.2",
"pandas>=1.3.4,<2.0",
"matplotlib",
"seaborn",
"scikit-learn>=0.24,<=1.2.2",
"networkx>=2.6.2",
"category_encoders>=2.6.2",
"xlrd>=2.0.0",
"tqdm>=4.61.1",
"dask>=2021.11.0",
"lightgbm>=3.2.1",
"distributed>=2021.11.0",
"feather-format>=0.4.1",
"pyarrow>=7.0.0",
"fsspec>=0.3.3",
"scipy<1.11.0",
"Pillow>=9.0.0",
"lazytransform>=1.16",
"numexpr>=2.7.3"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)