Skip to content

Commit

Permalink
modified example si_nw_transmission_blocks.py
Browse files Browse the repository at this point in the history
  • Loading branch information
freude committed Jul 26, 2020
1 parent 1ed22b7 commit d866ca0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
3 changes: 2 additions & 1 deletion examples/si_nw_transmission_blocks.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
This example script computes DOS and transmission function for the silicon nanowire
using the recursive Green's function algorithm.
using the recursive Green's function algorithm with splitting the Hamiltonian matrix
into sub-blocks.
"""
import logging
import numpy as np
Expand Down
17 changes: 15 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,28 @@
from setuptools import setup, find_namespace_packages


with open("README.md", "r") as fh:
long_description = fh.read()


setup(name='nanonet',
version='1.0',
version='1.1.5',
description='Python framework for tight-binding computations',
long_description=long_description,
long_description_content_type="text/markdown",
author='M. V. Klymenko, J. A. Vaitkus, J. S. Smith, J. H. Cole',
author_email='mike.klymenko@rmit.edu.au',
license='MIT',
packages=find_namespace_packages(include=['nanonet.*']),
entry_points={
'console_scripts': ['tb = tb.tb_script:main', 'tbmpi = tb.tbmpi_script:main', 'gf = tb.gf_script:main'],
},
zip_safe=False
url = "https://github.com/freude/NanoNet",
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6'
)

0 comments on commit d866ca0

Please sign in to comment.