-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathsetup.py
48 lines (45 loc) · 1.35 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
47
48
#!/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.6.1",
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=[
"numpy<2.0",
"ipython",
"jupyter",
"xgboost>=1.6.2,<=1.7.6",
"pandas>=2.0",
"matplotlib",
"seaborn",
"scipy",
"scikit-learn>=1.2.2,<=1.5.2",
"networkx",
"category_encoders==2.6.3",
"xlrd>=2.0.0",
"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",
"tqdm>=4.61.1",
"numexpr>=2.7.3",
"tensorflow>=2.5.2",
"lazytransform>=1.17",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)