Skip to content

Commit

Permalink
update requirements to python3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dandavies99 committed Mar 19, 2021
1 parent ea1b6cc commit 9a73936
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,29 +27,30 @@
packages=['surfaxe'],
zip_safe=False,
install_requires=['scipy', 'numpy', 'spglib', 'pymatgen','pandas'],
python_requires='>=3.7',
classifiers=[
'Programming Language :: Python',
'Development Status :: Development',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering'
],
],
entry_points={
'console_scripts': [
'surfaxe-getall = surfaxe.cli.getall:main',
'surfaxe-gethkl = surfaxe.cli.gethkl:main',
'surfaxe-parsefols = surfaxe.cli.parsefols:main',
'surfaxe-bonds = surfaxe.cli.bonds:main',
'surfaxe-simplenn = surfaxe.cli.simplenn:main',
'surfaxe-complexnn = surfaxe.cli.complexnn:main',
'surfaxe-potential = surfaxe.cli.potential:main',
'surfaxe-cartdisp = surfaxe.cli.cartdisp:main',
'surfaxe-core = surfaxe.cli.core:main',
'surfaxe-vacuum = surfaxe.cli.vacuum:main',
'surfaxe-plot-surfen = surfaxe.cli.plotsurfen:main',
'surfaxe-plot-enatom = surfaxe.cli.plotenatom:main',
'surfaxe-plot-bonds = surfaxe.cli.plotbonds:main',
'surfaxe-plot-potential = surfaxe.cli.plotpotential:main',
'surfaxe-getall = surfaxe.cli.getall:main',
'surfaxe-gethkl = surfaxe.cli.gethkl:main',
'surfaxe-parsefols = surfaxe.cli.parsefols:main',
'surfaxe-bonds = surfaxe.cli.bonds:main',
'surfaxe-simplenn = surfaxe.cli.simplenn:main',
'surfaxe-complexnn = surfaxe.cli.complexnn:main',
'surfaxe-potential = surfaxe.cli.potential:main',
'surfaxe-cartdisp = surfaxe.cli.cartdisp:main',
'surfaxe-core = surfaxe.cli.core:main',
'surfaxe-vacuum = surfaxe.cli.vacuum:main',
'surfaxe-plot-surfen = surfaxe.cli.plotsurfen:main',
'surfaxe-plot-enatom = surfaxe.cli.plotenatom:main',
'surfaxe-plot-bonds = surfaxe.cli.plotbonds:main',
'surfaxe-plot-potential = surfaxe.cli.plotpotential:main',
]
}
)

0 comments on commit 9a73936

Please sign in to comment.