-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (29 loc) · 954 Bytes
/
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
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
VERSION = '0.0.2'
with open('README.md', 'r') as f:
long_desc = f.read()
setup(
name='wavecar2unk',
version=VERSION,
author='Mark E. Turiansky',
author_email='[email protected]',
description=('converts VASP WAVECAR file into UNK files for wannier90'),
long_description=long_desc,
long_description_content_type='text/markdown',
url='https://github.com/mturiansky/wavecar2unk',
packages=find_packages(),
py_modules=['wavecar2unk'],
install_requires=['pymatgen > 2020.4.29', 'click >= 7.1.2'],
keywords=[
'physics', 'materials', 'science', 'VASP', 'WAVECAR', 'wannier90'
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
entry_points='''
[console_scripts]
wavecar2unk=wavecar2unk:cli
''',
)