-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 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
26
27
28
29
from setuptools import setup
setup(
name='kappamin',
version='0.3.0',
url='https://github.com/JianboHIT/kappamin',
author='Jianbo ZHU',
description='A python3 code for calculations of the minimum limit to thermal conductivity',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords=['thermal-conductivity', 'limitation', 'condensed-matter-physics', 'phonon-transport'],
license='Apache-2.0 license',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
],
py_modules=['kappamin'],
install_requires=[
'numpy',
'scipy'
],
)