-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (27 loc) · 1.01 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
from setuptools import setup, find_packages
setup(
name='selfcalibratingconformal',
version='1.11',
packages=find_packages(),
description='A Python implementation of Self-Calibrating Conformal Prediction',
long_description='A Python implementation of Self-Calibrating Conformal Prediction',
long_description_content_type='text/markdown', # assuming your description is in Markdown format
author='Lars van der Laan',
author_email='[email protected]',
url='https://github.com/Larsvanderlaan/SelfCalibratingConformal',
install_requires=[
'numpy',
'pandas',
'scipy',
'statsmodels',
'matplotlib',
'xgboost'
# Correct: 'math' module is part of Python's standard library and not installable via pip, so it should not be listed here.
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)