https://github.com/romerogroup/pyprocar
Raw File
Tip revision: 5ac3d3150529711cedaa6ed93f7d3e95facf39bb authored by Uthpala Herath on 25 March 2018, 16:14:06 UTC
Update README.md
Tip revision: 5ac3d31
setup.py
from distutils.core import setup, Extension

setup(
    name='pyprocar',
    version='2.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='http://pyprocar.sourceforge.net/,https://github.com/uthpalah/PyProcar',
    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