diff options
author | Anjali Jaiswal | 2019-07-01 12:23:31 +0530 |
---|---|---|
committer | Sunil Shetye | 2019-07-01 12:23:31 +0530 |
commit | 6b410587b3101af7c6378c8e816e7d357beb1929 (patch) | |
tree | 4971a8a2a8c15397d83f59315b866a87b9faf9bc | |
parent | 4540e4674cbf5c5986bbd0dd81a4d379207e8b3f (diff) | |
download | eSim-6b410587b3101af7c6378c8e816e7d357beb1929.tar.gz eSim-6b410587b3101af7c6378c8e816e7d357beb1929.tar.bz2 eSim-6b410587b3101af7c6378c8e816e7d357beb1929.zip |
Added missing .rst files. (#111)
* Added rst files
-rw-r--r-- | code/configuration.rst | 8 | ||||
-rw-r--r-- | code/configuration/Appconfig.rst | 5 | ||||
-rw-r--r-- | code/subcircuit.rst | 5 | ||||
-rw-r--r-- | code/subcircuit/uploadSub.rst | 5 | ||||
-rw-r--r-- | index.rst | 1 | ||||
-rw-r--r-- | setup.py | 6 |
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: @@ -30,6 +30,7 @@ Welcome to eSim's documentation! :maxdepth: 3 :caption: Contents: + code/configuration code/browser code/frontEnd code/kicadtoNgspice @@ -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(), ) |