-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 844 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
28
29
30
31
32
"""Setup script for MOLPIPx"""
import os
from setuptools import find_packages
from setuptools import setup
setup(
name='molpipx',
packages=find_packages(),
version='0.1',
description='Permutationally Invariant Polynomials in JAX',
author='Rodrigo. A. Vargas-Hernandez',
install_requires=[
# List your project's dependencies here,
# e.g., 'requests>=2.23.0',
'jax>0.4.14',
'jaxlib>0.4.14',
'numpy>=1.18.0',
'chex>=0.1.7',
'typing_extensions>=4.8.0',
'jaxtyping',
'flax',
'pytest>=7.4.3',
'jaxopt',
'optax>0.1.7',
'orbax-checkpoint>0.4.4',
'ml-collections',
'gpjax',
],
python_requires='>=3.10',
keywords="jax, pip, computational chemistry, pes, potential energy surface, force field",
)