-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
41 lines (40 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
37
38
39
40
41
from setuptools import find_packages, setup
my_pckg = find_packages(include=["skbel"])
with open("README.rst") as f:
LONG_DESCRIPTION = f.read()
setup(
name="skbel",
version="2.1.14",
packages=my_pckg,
include_package_data=True,
url="https://github.com/robinthibaut/skbel",
license="BSD-3",
author="Robin Thibaut",
author_email="robin.thibaut@UGent.be",
description="A set of Python modules to implement the Bayesian Evidential Learning (BEL) framework",
long_description=LONG_DESCRIPTION,
install_requires=["numpy",
"pandas",
"scipy",
"matplotlib",
"scikit-learn",
"scikit-image",
"seaborn",
"loguru",
"joblib",
"pytest"],
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
python_requires=">=3.7",
)