summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--conf.py10
-rw-r--r--setup.py4
2 files changed, 7 insertions, 7 deletions
diff --git a/conf.py b/conf.py
index 912f62a2..95faa92f 100644
--- a/conf.py
+++ b/conf.py
@@ -17,17 +17,17 @@ import sys
sys.path.insert(0, os.path.abspath('./src'))
# added so that do not need to install them at runtime
-autodoc_mock_imports = ["PyQt4", "pathmagic", "matplotlib", "numpy"]
+autodoc_mock_imports = ["PyQt5", "pathmagic", "matplotlib", "numpy"]
# -- Project information -----------------------------------------------------
project = u'eSim'
-copyright = u'2020, Fossee'
-author = u'Fossee'
+copyright = u'2020, FOSSEE'
+author = u'FOSSEE, IIT Bombay'
# The short X.Y version
-version = u''
+version = u'2.1'
# The full version, including alpha/beta/rc tags
-release = u'2.0.0'
+release = u'2.1.0'
# -- General configuration ---------------------------------------------------
diff --git a/setup.py b/setup.py
index 4c8d3aa0..192f25b5 100644
--- a/setup.py
+++ b/setup.py
@@ -9,9 +9,9 @@ Needed to define the module structure, look up `Modules` for python
'''
setup(
name='eSim',
- version='2.0.0',
+ version='2.1.0',
author='FOSSEE',
- author_email='info@fossee.in',
+ author_email='contact-esim@fossee.in',
package_dir={'': 'src'},
packages=find_namespace_packages(where='src'),
license='GNU GPL LICENSE',