-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
56 lines (54 loc) · 1.42 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
49
50
51
52
53
54
55
56
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
setup(
name="causaltune",
version="0.1.6",
description="AutoML for Causal Inference.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Wise",
url="https://github.com/py-why/causaltune",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
install_requires=[
"dowhy==0.9.1",
"econml==0.14.1",
"FLAML==2.2.0",
"xgboost==1.7.6",
"numpy==1.23.5",
"pandas",
"pytest",
"scikit_learn",
"matplotlib",
"dcor",
"holidays",
"setuptools==65.5.1",
"wise-pizza",
"seaborn",
"category_encoders==2.6.3",
],
extras_require={
"test": [
"autoflake",
"black==23.3.0",
"flake8",
"isort",
"pytest",
"pytest-cov",
"nbmake",
],
"ray": ["ray[tune]~=1.11.0"],
},
packages=find_packages(
include=["causaltune", "causaltune.*"],
exclude=["tests*"],
),
include_package_data=True,
keywords="causaltune",
)