-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (31 loc) · 974 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
27
28
29
30
31
32
33
34
35
import setuptools
import os
def read(fname):
"""Read function."""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name="transferboost",
version="0.1.3",
description="Transfer Learning with Gradient Boosting Models",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="Sandro Bjelogrlic",
author_email="[email protected]",
license="MIT license",
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(exclude=["notebooks"]),
install_requires=[
"scikit-learn>=0.22.2",
"pandas>=0.25",
"matplotlib>=3.1.1",
"scipy>=1.4.0",
"joblib>=0.13.2",
],
url="https://github.com/sbjelogr/TransferBoost",
zip_safe=False,
)