forked from LLNL/dynim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (22 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
22
23
24
25
26
27
# Copyright 2020 Lawrence Livermore National Security, LLC and other
# DynIm Project Developers. See the top-level LICENSE file for details.
#
# SPDX-License-Identifier: MIT
################################################################################
from setuptools import setup, find_packages
__version_info__ = ('0', '1', '0')
__version__ = '.'.join(__version_info__)
# ------------------------------------------------------------------------------
setup(
name='dynim',
version=__version__,
license='MIT',
description='Dynamic Importance Sampling',
url='https://github.com/CBIIT/NCI-DOE-Collab-Pilot2-DynIm',
author=['Harsh Bhatia', 'Joseph Y. Moon'],
author_email=['[email protected]', '[email protected]'],
keywords='',
packages=find_packages(),
install_requires=['numpy', 'faiss', 'pyyaml'],
)
# ------------------------------------------------------------------------------