-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.38 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="MLstatkit",
version="0.1.7",
description="MLstatkit is a comprehensive Python library designed to seamlessly integrate established statistical methods into machine learning projects.",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/Brritany/MLstatkit',
project_urls={
'Tracker': 'https://github.com/Brritany/MLstatkit/issues',
},
author="Yong-Zhen Huang",
author_email="[email protected]",
packages=find_packages(),
keywords=['python', 'statistics', 'Delong test', 'Bootstrapping', 'AUC2OR'],
install_requires=[
"pandas", "numpy", "scipy", "scikit-learn", "tqdm",
],
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)