https://github.com/romerogroup/pyprocar
Revision 47382431309676f5e409a0ec2db50e1be5da74d1 authored by Uthpala Herath on 29 July 2018, 23:07:44 UTC, committed by Uthpala Herath on 29 July 2018, 23:07:44 UTC
1 parent b45f571
Raw File
Tip revision: 47382431309676f5e409a0ec2db50e1be5da74d1 authored by Uthpala Herath on 29 July 2018, 23:07:44 UTC
Created Mailing list
Tip revision: 4738243
setup.py
from distutils.core import setup, Extension
import pyprocar 

setup(
    name='pyprocar',
    version = pyprocar.__version__,
    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.9.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