forked from marcobn/PAOFLOW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (20 loc) · 778 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
from setuptools import setup
import os
defs = os.path.join('src','defs')
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='PAOFLOW',
version='2.1.0',
description='Utility to construct and operate on Hamiltonians from the Projections of DFT wfc on Atomic Orbital bases (PAO)',
author='Marco Buongiorno Nardelli',
author_email='[email protected]',
platforms='Linux',
url='https://github.com/marcobn/PAOFLOW',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['PAOFLOW', 'PAOFLOW.defs'],
package_dir={'PAOFLOW':'src'},
install_requires=['numpy','scipy'],
extras_require={'weyl_search':['z2pack', 'tbmodels']},
python_requires='>=3.6'
)