forked from romerogroup/pyprocar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from distutils.core import setup, Extension
setup(
name='pyprocar',
version='2.8',
author='Francisco Munoz,Aldo Romero,Sobhit Singh,Uthpala Herath,Pedram Tavadze,Eric Bousquet,Xu He',
url='https://github.com/uthpalah/PyProcar',
download_url='https://github.com/uthpalah/PyProcar/archive/2.8.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",
# ],
)