-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (36 loc) · 1.42 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
34
35
36
37
38
from setuptools import setup, find_packages
setup(
name='minimahopping',
version='1.0.0',
author='Marco Krummenacher, Moritz Gubler, Jonas Finkler, Stefan Goedecker',
description='ASE Minimahopping',
long_description='Minimahopping compatible to ASE',
url='https://github.com/',
keywords='development, setup, setuptools',
python_requires='>=3.7, <4',
packages=find_packages(include=['minimahopping', 'minimahopping.*']),
install_requires=[
'numpy<2.0',
'ase<3.23',
'scipy',
'scikit-learn',
'networkx',
'mpi4py',
'sqnm @ git+https://github.com/moritzgubler/vc-sqnm#egg=sqnm&subdirectory=src/python/',
'dataclasses-json',
'numba',
'spglib==2.4.0'
],
entry_points={
'console_scripts': [
'sortByEnergy=minimahopping.commandLineInterface.sortAtoms:main',
'omfpdistance=minimahopping.commandLineInterface.omfpdistance:main',
'makemolecule=minimahopping.commandLineInterface.makemolecule:main',
'standardizeLattice=minimahopping.commandLineInterface.standardizeLattice:main',
'splitFile=minimahopping.commandLineInterface.splitFile:main',
'scaleAtoms=minimahopping.commandLineInterface.scaleStructure:main',
'graphParser=minimahopping.commandLineInterface.graphParser:main',
'siriusMH=minimahopping.commandLineInterface.siriusMH:main',
]
}
)