-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 943 Bytes
/
setup.py
File metadata and controls
36 lines (32 loc) · 943 Bytes
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
"""Setup script for MOLPIPx"""
import os
from setuptools import find_packages
from setuptools import setup
setup(
name='molpipx',
packages=find_packages(),
version='0.1.1',
description='Permutationally Invariant Polynomials in JAX',
authors=['Rodrigo. A. Vargas-Hernandez', 'Manuel Drehwald', 'Asma Jamali'],
include_package_data=True,
package_data={
'molpipx': ['data/*.xyz', 'data/*.npy', 'data/*/*.xyz', 'data/*/*.npy'],
},
install_requires=[
'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",
)