-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 1.08 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
import os
from setuptools import setup
# Helper function to load up readme as long description.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'ssp_bayes_opt',
version = '0.1',
author='Michael Furlong', # TODO: look up multiple authors
author_email='[email protected]',
description=('An implementation of an efficient Bayesian optimization algorithm using Spatial Semantic Pointers'),
license = 'TBD',
keywords = '',
url='http://github.com/ctn-waterloo/ssp-bayesopt',
packages=['ssp_bayes_opt','tests'],
long_description=read('README.md'),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python :: 3',
'Environment :: Console',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
install_requires=[
'numpy>=1.21.2',
'scipy',
'pytest',
'mypy',
'typing-extensions'
]
)