forked from manny405/PyMoVE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_numba.py
26 lines (24 loc) · 890 Bytes
/
setup_numba.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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from distutils.core import setup
from pymove.molecules.marching_cubes_numba_compilation import cc
setup(
name='pymove',
version='0.0',
packages=['pymove',
'pymove/io',
'pymove/molecules',
'pymove/crystals',
'pymove/libmpi',
'pymove/models',
'pymove/cli',
],
#find_packages(exclude=[]),
install_requires=['numpy', 'matplotlib', 'sklearn',
'pandas','pymatgen', 'scipy', 'pymongo',
'torch', 'numba',
"ase @ https://gitlab.com/ase/tarball/master",
"pycifrw"],
ext_modules=[cc.distutils_extension()],
entry_points={'console_scripts': ['pymove=pymove.cli.main:main']},
)