summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--code/configuration.rst8
-rw-r--r--code/configuration/Appconfig.rst5
-rw-r--r--code/subcircuit.rst5
-rw-r--r--code/subcircuit/uploadSub.rst5
-rw-r--r--index.rst1
-rw-r--r--setup.py6
6 files changed, 26 insertions, 4 deletions
diff --git a/code/configuration.rst b/code/configuration.rst
new file mode 100644
index 00000000..fef21cde
--- /dev/null
+++ b/code/configuration.rst
@@ -0,0 +1,8 @@
+Configuration Component
+=======================
+
+.. toctree::
+ :maxdepth: 2
+ :caption: Contents:
+
+ configuration/Appconfig
diff --git a/code/configuration/Appconfig.rst b/code/configuration/Appconfig.rst
new file mode 100644
index 00000000..5a08b073
--- /dev/null
+++ b/code/configuration/Appconfig.rst
@@ -0,0 +1,5 @@
+Configuration Component
+=======================
+
+.. automodule:: configuration.Appconfig
+ :members:
diff --git a/code/subcircuit.rst b/code/subcircuit.rst
index ad792b42..497612ce 100644
--- a/code/subcircuit.rst
+++ b/code/subcircuit.rst
@@ -2,8 +2,11 @@ Subcircuit component
====================
.. toctree::
+ :maxdepth: 2
+ :caption: Contents:
+
subcircuit/convertSub
subcircuit/newSub
subcircuit/openSub
subcircuit/Subcircuit
-
+ subcircuit/uploadSub
diff --git a/code/subcircuit/uploadSub.rst b/code/subcircuit/uploadSub.rst
new file mode 100644
index 00000000..48a0db15
--- /dev/null
+++ b/code/subcircuit/uploadSub.rst
@@ -0,0 +1,5 @@
+Upload subcircuit component
+===========================
+
+.. automodule:: subcircuit.uploadSub
+ :members:
diff --git a/index.rst b/index.rst
index 342d4aff..eb40db69 100644
--- a/index.rst
+++ b/index.rst
@@ -30,6 +30,7 @@ Welcome to eSim's documentation!
:maxdepth: 3
:caption: Contents:
+ code/configuration
code/browser
code/frontEnd
code/kicadtoNgspice
diff --git a/setup.py b/setup.py
index 497198b3..58bafffb 100644
--- a/setup.py
+++ b/setup.py
@@ -4,17 +4,17 @@ from setuptools import setup, find_namespace_packages
'''
Created for packaging and distributing of python projects
Makes it easier to get an overview of the project and dependencies
-Also needed for `Read the docs` iinstallation and creating autodocs
+Also needed for `Read the docs` installation and creating autodocs
Needed to define the module structure, look up `Modules` for python
'''
setup(
name='eSim',
version='1.1.3',
- author='Fossee',
+ author='FOSSEE',
author_email='info@fossee.in',
package_dir={'': 'src'},
packages=find_namespace_packages(where='src'),
- license='LICENSE',
+ license='GNU GPL LICENSE',
description='Useful circuit simulation library',
long_description=open('README.md').read(),
)