-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9339e14
commit 0606ec4
Showing
10 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Distribution files | ||
dist/ | ||
*.egg-info/ | ||
|
||
# Python cached files | ||
*.pyc | ||
__pycache__/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
"# scikit-eit" | ||
# scikit-eit | ||
|
||
A Python package for electrical impedance tomography. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
================= | ||
Getting started | ||
================= | ||
|
||
Install the package with | ||
|
||
.. code-block:: bash | ||
pip install scikit-eit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
============================= | ||
Documentation of scikit-eit | ||
============================= | ||
|
||
`scikit-eit <https://github.com/USNavalResearchLaboratory/scikit-eit>`_ is a pure | ||
Python 3.7+ library for performing `electrical impedance tomography | ||
<https://en.wikipedia.org/wiki/Electrical_impedance_tomography>`_. | ||
|
||
.. note:: | ||
|
||
Installing the library with | ||
|
||
.. code-block:: bash | ||
python -m pip install scikit-eit | ||
Table of contents | ||
================= | ||
|
||
.. toctree:: | ||
|
||
self | ||
gettingstarted | ||
api reference |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
========================== | ||
API reference | ||
========================== | ||
|
||
This section contains API documentation for the most commonly used interfaces of the library. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "scikit-eit" | ||
version = "0.0.1" | ||
authors = [ | ||
{ name="George Gatling", email="[email protected]" }, | ||
] | ||
description = "A Python package for electrical impedance tomography." | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
# "License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/USNavalResearchLaboratory/scikit-eit" | ||
"Bug Tracker" = "https://github.com/USNavalResearchLaboratory/scikit-eit/issues" |
Empty file.
File renamed without changes.