-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 960 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
from setuptools import setup, find_packages
setup(
name='LTB-Symm',
version='1.0.0',
license='GNU under General Public License v3.0',
author="Ali Khosravi, Andrea Silva",
author_email='khsrali@gmail.com',
description='Large Scale Tight Binding + Symmetries',
long_description=open('README.md').read(),
packages=find_packages('src'),
package_dir={'': 'src'},
python_requires='>=3.8',
url='https://github.com/khsrali/LTB-Symm',
keywords=' tight-binding wave-function symmetries',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.8',
],
install_requires=[
'numpy',
'scipy',
'matplotlib',
'mpi4py',
'tqdm',
'primme',
],
)