diffstep 0.0.2__tar.gz → 0.0.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: diffstep
3
- Version: 0.0.2
3
+ Version: 0.0.4
4
4
  Summary: This is a library for Algorithmic Differentiation.
5
5
  Home-page:
6
6
  Author: Ayo
@@ -9,3 +9,5 @@ def multiply_numbers(num1, num2):
9
9
 
10
10
  def divide_numbers(num1, num2):
11
11
  return num1 / num2
12
+
13
+ __all__ = ['add_numbers', 'subtract_numbers', 'multiply_numbers', 'divide_numbers']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: diffstep
3
- Version: 0.0.2
3
+ Version: 0.0.4
4
4
  Summary: This is a library for Algorithmic Differentiation.
5
5
  Home-page:
6
6
  Author: Ayo
@@ -3,7 +3,7 @@ LICENSE.txt
3
3
  MANIFEST.in
4
4
  README.txt
5
5
  setup.py
6
- basic_calculator/__init__.py
6
+ diffstep/__init__.py
7
7
  diffstep.egg-info/PKG-INFO
8
8
  diffstep.egg-info/SOURCES.txt
9
9
  diffstep.egg-info/dependency_links.txt
@@ -0,0 +1 @@
1
+ diffstep
@@ -11,7 +11,7 @@ classifiers = [
11
11
 
12
12
  setup (
13
13
  name='diffstep',
14
- version='0.0.2',
14
+ version='0.0.4',
15
15
  description="This is a library for Algorithmic Differentiation.",
16
16
  long_description=open('README.txt').read() + '\n\n' + open('CHANGELOG.txt').read(),
17
17
  url='',
@@ -1 +0,0 @@
1
- basic_calculator
File without changes
File without changes
File without changes
File without changes
File without changes