forked from AutoViML/featurewiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.22 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
#!/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.1.81",
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",
"pandas>=1.3.4",
"matplotlib",
"seaborn",
"scikit-learn>=0.23.2",
"networkx",
"category_encoders",
"xlrd",
"imbalanced-learn>=0.7",
"tqdm",
"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",
"Pillow~=9.0.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)