-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
executable file
·31 lines (30 loc) · 1.08 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
26
27
28
29
30
31
from setuptools import setup,find_packages
setup(name='openbte',
version='3.0.16',
description='Boltzmann Transport Equation for Phonons',
author='Giuseppe Romano',
author_email='[email protected]',
classifiers=['Programming Language :: Python :: 3.8'],
install_requires=['shapely',
'numpy',
'sqlitedict',
'cachetools',
'sqlitedict',
'icosphere',
'nptyping',
'pickle5',
'plotly',
'jax',
'jaxlib',
'nlopt',
'scikit-image',
'matplotlib',
'scipy',
'gmsh'],
license='GPLv3',\
packages = find_packages(),
entry_points = {
'console_scripts': ['AlmaBTE2OpenBTE=openbte.almabte2openbte:almabte2openbte']},
package_data = {'openbte':['materials/*.db']},
include_package_data=True
)