-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
33 lines (31 loc) · 1.15 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
from setuptools import find_packages, setup
requirements = [
'numpy>=1.10.0',
'scipy>=0.18.0',
'xlrd>=1.1.0',
'pandas>=0.23',
'pytest>=4.4.0',
]
setup(name='bayesian_benchmarks',
version='alpha',
author="Hugh Salimbeni",
author_email="[email protected]",
description=("Bayesian benchmarking"),
license="Apache License 2.0",
keywords="machine-learning bayesian-methods",
url="https://github.com/hughsalimbeni/bayesian_benchmarks",
python_requires=">=3.6",
packages=find_packages(include=["bayesian_benchmarks",
"bayesian_benchmarks.*"]),
install_requires=requirements,
package_data={"":["bayesian_benchmarksrc"]},
include_package_data=True,
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
])