-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 881 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# setup.py
from setuptools import setup, find_packages
setup(
name="exlibris",
version="0.5.0",
packages=find_packages(),
description="Exlibris is a Python library that provides statistical comparisons between different binary classification models. This library is specifically designed to compare the GSGP classifier with other models.",
url='https://github.com/CesarLepeITT/exlibris',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author="Lepe Garcia Cesar",
author_email="l22212360@tijuana.tecnm.mx",
install_requires=[
'matplotlib>=3.10.0',
'pandas>=2.2.3',
'scikit_learn>=1.6.0'
],
package_data={'exlibris': ['datasets/*.csv']},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
)