https://github.com/romerogroup/pyprocar
Raw File
Tip revision: 71e3362fd22ddb615dc42e464d9851910f7a871d authored by Uthpala Herath on 01 March 2020, 22:33:26 UTC
Discontinuous k-path band structure
Tip revision: 71e3362
setup.py
from distutils.core import setup, Extension

setup(
    name='pyprocar',
    version = "5.0.0",
    author='Francisco Munoz,Aldo Romero,Sobhit Singh,Uthpala Herath,Pedram Tavadze,Eric Bousquet, Xu He',
    author_email='fvmunoz@gmail.com,alromero@mail.wvu.edu,smsingh@mix.wvu.edu,ukh0001@mix.wvu.edu,petavazohi@mix.wvu.edu,eric.bousquet@uliege.be,mailhexu@gmail.com',
    url='https://github.com/romerogroup/pyprocar',
    download_url='https://github.com/romerogroup/pyprocar/archive/5.0.0.tar.gz',
    packages=['pyprocar', 
              'pyprocar.utilsprocar',
              'pyprocar.procarparser',
              'pyprocar.procarfilefilter',
              'pyprocar.procarplot',
              'pyprocar.procarsymmetry',
              'pyprocar.procarplotcompare',
              'pyprocar.procarunfold',
              'pyprocar.fermisurface',
              'pyprocar.procarselect'],
    license='LICENSE.txt',
    description='A Python library for electronic structure pre/post-processing.',
    install_requires=['seekpath>=1.0', 'numpy', 'scipy', 'matplotlib', 'ase', 'scikit-image','mayavi==4.6.2','pyfiglet'],
    scripts=['bin/procar']
)
back to top