-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (23 loc) · 966 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
import setuptools
from incremental_trees import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name='incremental_trees',
version=__version__,
author="Gareth Jones",
author_email="garethgithub@gmail.com",
description='Sklearn forests with partial fits',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
url="https://github.com/garethjns/IncrementalTrees",
python_requires='>=3.8',
install_requires=[
"scikit-learn==1.2",
"pandas",
"numpy",
"dask==2022.12",
"dask-glm==0.2.0",
"dask-ml==2022.5.27",
"fsspec"
])