-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 1.14 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
import setuptools
import os
import sys
here = os.path.abspath(os.path.dirname(__file__))
sys.path.insert(0, os.path.join(here, 'detectron_xgb'))
setuptools.setup(name='detectron_xgb',
version='0.0.1',
url='https://github.com/rgklab/detectron_xgb',
description='Robust and Highly Sensitive Covariate Shift Detection using XGBoost',
author='Tom Ginsberg',
python_requires='>=3.10',
install_requires=[
'xgboost>=1.7.3',
'tqdm>=4.64.1',
'numpy>=1.24.2',
'pandas>=1.5.3',
'scikit-learn>=1.2.1'
],
packages=setuptools.find_packages(),
classifiers=[
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Science/Research',
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
)