https://github.com/romerogroup/pyprocar
Raw File
Tip revision: 835f1334ef70daf79433fe643f1dc1d8e76bcd8f authored by Uthpala Herath on 18 May 2018, 20:17:34 UTC
Fixed out-of-bounds error in k path generator.
Tip revision: 835f133
setup.py
from distutils.core import setup, Extension

setup(
    name='pyprocar',
    version='2.7',
    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/uthpalah/PyProcar',
    download_url='https://github.com/uthpalah/PyProcar/archive/2.7.tar.gz',
    packages=['pyprocar', 
              'pyprocar.utilsprocar',
              'pyprocar.fermisurface',
              'pyprocar.procarparser',
              'pyprocar.procarfilefilter',
              'pyprocar.procarplot',
              'pyprocar.procarsymmetry',
              'pyprocar.procarselect'],
    license='LICENSE.txt',
    description='A python package for analyzing PROCAR files obtained from VASP and Abinit.',
    #long_description=open('README.rst','rt').read(),
#    install_requires=[
#        "numpy >= 1.5",
#        "scipy >= 0.9",
#    ],
)
back to top