-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (19 loc) · 927 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='PredictionIntervals',
version='0.1.0',
author='Giorgio Morales - Montana State University',
author_email='[email protected]',
description='DualAQD: Dual Accuracy-quality-driven Prediction Intervals',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/NISL-MSU/PredictionIntervals',
project_urls={"Bug Tracker": "https://github.com/NISL-MSU/PredictionIntervals/issues"},
license='MIT',
package_dir={"": "src"},
packages=setuptools.find_packages('src', exclude=['test']),
install_requires=['matplotlib', 'numpy', 'opencv-python', 'statsmodels', 'tqdm', 'timeout_decorator',
'h5py', 'pyodbc', 'regex', 'tensorboard', 'python-dotenv', 'omegaconf', 'pandas'],
)