Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
K
kwantspectrum
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
kwant
kwantspectrum
Commits
77d05139
Commit
77d05139
authored
Mar 12, 2019
by
Christoph Groth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add Python packaging
parent
91c573d6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
0 deletions
+46
-0
.gitignore
.gitignore
+2
-0
MANIFEST.in
MANIFEST.in
+2
-0
README.rst
README.rst
+10
-0
setup.py
setup.py
+32
-0
No files found.
.gitignore
View file @
77d05139
__pycache__/
/build/
/dist/
*~
MANIFEST.in
0 → 100644
View file @
77d05139
include *.rst
include test_*.py
README.rst
0 → 100644
View file @
77d05139
Kwant-Spectrum is an extension to `Kwant <http://kwant-project.org/>`_ that
adaptively analyzes band structures of infinite quasi-1d systems. The
bandstructure is approximated to an arbitrary precision by piecewise cubic
polynomials. Functionality to deal with special points, intervals, and the
periodic nature of the spectrum is provided.
`Full documentation including a tutorial
<https://kwant-project.org/extensions/spectrum/>`_ is available . Report bugs
and follow development through the `Kwant-Spectrum repository
<https://gitlab.kwant-project.org/kwant/spectrum>`_.
setup.py
0 → 100755
View file @
77d05139
#!/usr/bin/env python3
from
setuptools
import
setup
# Get the long description from the README file.
with
open
(
'README.rst'
,
encoding
=
'utf-8'
)
as
f
:
long_description
=
f
.
read
()
setup
(
name
=
'kwant-spectrum'
,
version
=
'0.0'
,
description
=
'Adaptive band structure analyzer for Kwant leads'
,
long_description
=
long_description
,
long_description_content_type
=
'text/x-rst'
,
url
=
'https://gitlab.kwant-project.org/kwant/spectrum'
,
author
=
'T. Kloss, C. W. Groth, X. Waintal, et al.'
,
author_email
=
'kloss@itp.uni-frankfurt.de'
,
classifiers
=
[
'Development Status :: 4 - Beta'
,
'Intended Audience :: Science/Research'
,
'Intended Audience :: Developers'
,
'Topic :: Software Development'
,
'Topic :: Scientific/Engineering'
,
'License :: OSI Approved :: BSD License'
,
'Programming Language :: Python :: 3 :: Only'
,
],
keywords
=
'physics kwant bandstructure'
,
py_modules
=
[
"kwant_spectrum"
],
python_requires
=
'>=3.5'
,
install_requires
=
[
'kwant >= 1.4'
],
extras_require
=
{
'test'
:
[
'pytest'
],},
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment