DeFiPy 0.0.9__tar.gz → 0.0.11__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.
Files changed (32) hide show
  1. DeFiPy-0.0.11/DeFiPy.egg-info/PKG-INFO +35 -0
  2. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/DeFiPy.egg-info/SOURCES.txt +3 -1
  3. DeFiPy-0.0.11/DeFiPy.egg-info/requires.txt +5 -0
  4. DeFiPy-0.0.11/PKG-INFO +35 -0
  5. DeFiPy-0.0.11/README.md +19 -0
  6. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/__init__.py +4 -0
  7. DeFiPy-0.0.11/python/prod/utils/data/__init__.py +1 -0
  8. DeFiPy-0.0.11/python/prod/utils/interfaces/__init__.py +1 -0
  9. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/setup.py +10 -8
  10. DeFiPy-0.0.9/DeFiPy.egg-info/PKG-INFO +0 -35
  11. DeFiPy-0.0.9/DeFiPy.egg-info/requires.txt +0 -5
  12. DeFiPy-0.0.9/PKG-INFO +0 -35
  13. DeFiPy-0.0.9/README.md +0 -19
  14. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/DeFiPy.egg-info/dependency_links.txt +0 -0
  15. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/DeFiPy.egg-info/not-zip-safe +0 -0
  16. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/DeFiPy.egg-info/top_level.txt +0 -0
  17. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/LICENSE.txt +0 -0
  18. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/erc/__init__.py +0 -0
  19. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/math/basic/__init__.py +0 -0
  20. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/math/interest/__init__.py +0 -0
  21. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/math/interest/ips/__init__.py +0 -0
  22. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/math/interest/ips/aggregate/__init__.py +0 -0
  23. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/math/model/__init__.py +0 -0
  24. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/math/risk/__init__.py +0 -0
  25. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/process/__init__.py +0 -0
  26. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/process/burn/__init__.py +0 -0
  27. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/process/deposit/__init__.py +0 -0
  28. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/process/liquidity/__init__.py +0 -0
  29. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/process/mint/__init__.py +0 -0
  30. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/process/swap/__init__.py +0 -0
  31. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/python/prod/simulate/__init__.py +0 -0
  32. {DeFiPy-0.0.9 → DeFiPy-0.0.11}/setup.cfg +0 -0
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.1
2
+ Name: DeFiPy
3
+ Version: 0.0.11
4
+ Summary: DeFi Analytics with Python
5
+ Home-page: http://github.com/defipy-devs/defipy
6
+ Author: icmoore
7
+ Author-email: defipy.devs@gmail.com
8
+ License: MIT
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE.txt
11
+ Requires-Dist: scipy>=1.7.3
12
+ Requires-Dist: gmpy2>=2.0.8
13
+ Requires-Dist: uniswappy==1.1.3
14
+ Requires-Dist: stableswappy==0.0.8
15
+ Requires-Dist: balancerpy==0.0.7
16
+
17
+ # defipy
18
+ DeFi Analytics with Python
19
+ * Currently in Beta (version 0.0.11)
20
+ * Decoupled into [UniswapPy](https://github.com/icmoore/uniswappy),
21
+ [BalancerPy](https://github.com/icmoore/balancerpy), and [StableSwapPy](https://github.com/icmoore/stableswappy) python packages
22
+
23
+ ## Install
24
+ To install package:
25
+ ```
26
+ > git clone https://github.com/defipy-devs/defipy
27
+ > pip install .
28
+ ```
29
+ or
30
+ ```
31
+ > pip install DeFiPy
32
+ ```
33
+
34
+ ## DeFi Overview
35
+ * DeFi Analytics with Python
@@ -28,4 +28,6 @@ python/prod/process/deposit/__init__.py
28
28
  python/prod/process/liquidity/__init__.py
29
29
  python/prod/process/mint/__init__.py
30
30
  python/prod/process/swap/__init__.py
31
- python/prod/simulate/__init__.py
31
+ python/prod/simulate/__init__.py
32
+ python/prod/utils/data/__init__.py
33
+ python/prod/utils/interfaces/__init__.py
@@ -0,0 +1,5 @@
1
+ scipy>=1.7.3
2
+ gmpy2>=2.0.8
3
+ uniswappy==1.1.3
4
+ stableswappy==0.0.8
5
+ balancerpy==0.0.7
DeFiPy-0.0.11/PKG-INFO ADDED
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.1
2
+ Name: DeFiPy
3
+ Version: 0.0.11
4
+ Summary: DeFi Analytics with Python
5
+ Home-page: http://github.com/defipy-devs/defipy
6
+ Author: icmoore
7
+ Author-email: defipy.devs@gmail.com
8
+ License: MIT
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE.txt
11
+ Requires-Dist: scipy>=1.7.3
12
+ Requires-Dist: gmpy2>=2.0.8
13
+ Requires-Dist: uniswappy==1.1.3
14
+ Requires-Dist: stableswappy==0.0.8
15
+ Requires-Dist: balancerpy==0.0.7
16
+
17
+ # defipy
18
+ DeFi Analytics with Python
19
+ * Currently in Beta (version 0.0.11)
20
+ * Decoupled into [UniswapPy](https://github.com/icmoore/uniswappy),
21
+ [BalancerPy](https://github.com/icmoore/balancerpy), and [StableSwapPy](https://github.com/icmoore/stableswappy) python packages
22
+
23
+ ## Install
24
+ To install package:
25
+ ```
26
+ > git clone https://github.com/defipy-devs/defipy
27
+ > pip install .
28
+ ```
29
+ or
30
+ ```
31
+ > pip install DeFiPy
32
+ ```
33
+
34
+ ## DeFi Overview
35
+ * DeFi Analytics with Python
@@ -0,0 +1,19 @@
1
+ # defipy
2
+ DeFi Analytics with Python
3
+ * Currently in Beta (version 0.0.11)
4
+ * Decoupled into [UniswapPy](https://github.com/icmoore/uniswappy),
5
+ [BalancerPy](https://github.com/icmoore/balancerpy), and [StableSwapPy](https://github.com/icmoore/stableswappy) python packages
6
+
7
+ ## Install
8
+ To install package:
9
+ ```
10
+ > git clone https://github.com/defipy-devs/defipy
11
+ > pip install .
12
+ ```
13
+ or
14
+ ```
15
+ > pip install DeFiPy
16
+ ```
17
+
18
+ ## DeFi Overview
19
+ * DeFi Analytics with Python
@@ -12,6 +12,8 @@ from defipy.process.liquidity import *
12
12
  from defipy.process.mint import *
13
13
  from defipy.process.swap import *
14
14
  from defipy.simulate import *
15
+ from defipy.utils.interfaces import *
16
+ from defipy.utils.data import *
15
17
 
16
18
  from uniswappy.cpt.exchg import *
17
19
  from uniswappy.cpt.factory import *
@@ -24,11 +26,13 @@ from stableswappy.quote import *
24
26
  from stableswappy.vault import *
25
27
  from stableswappy.cst.factory import *
26
28
  from stableswappy.cst.exchg import *
29
+ from stableswappy.utils.data import StableswapExchangeData
27
30
 
28
31
  from balancerpy.quote import *
29
32
  from balancerpy.vault import *
30
33
  from balancerpy.cwpt.factory import *
31
34
  from balancerpy.cwpt.exchg import *
35
+ from balancerpy.utils.data import BalancerExchangeData
32
36
 
33
37
 
34
38
 
@@ -0,0 +1 @@
1
+ from uniswappy.utils.data import *
@@ -0,0 +1 @@
1
+ from uniswappy.utils.interfaces import *
@@ -4,13 +4,13 @@ with open('README.md') as f:
4
4
  long_description = f.read()
5
5
 
6
6
  setup(name='DeFiPy',
7
- version='0.0.9',
8
- description='DeFi for Python',
7
+ version='0.0.11',
8
+ description='DeFi Analytics with Python',
9
9
  long_description=long_description,
10
10
  long_description_content_type="text/markdown",
11
- url='http://github.com/icmoore/defipy',
11
+ url='http://github.com/defipy-devs/defipy',
12
12
  author = "icmoore",
13
- author_email = "utiliwire@gmail.com",
13
+ author_email = "defipy.devs@gmail.com",
14
14
  license='MIT',
15
15
  package_dir = {"defipy": "python/prod"},
16
16
  packages=[
@@ -28,13 +28,15 @@ setup(name='DeFiPy',
28
28
  'defipy.process.liquidity',
29
29
  'defipy.process.mint',
30
30
  'defipy.process.swap',
31
- 'defipy.simulate'
31
+ 'defipy.simulate',
32
+ 'defipy.utils.interfaces',
33
+ 'defipy.utils.data'
32
34
  ],
33
35
  install_requires=[
34
36
  'scipy >= 1.7.3',
35
37
  'gmpy2 >= 2.0.8',
36
- 'uniswappy >= 1.1.2',
37
- 'stableswappy >= 0.0.6',
38
- 'balancerpy >= 0.0.6'
38
+ 'uniswappy == 1.1.3',
39
+ 'stableswappy == 0.0.8',
40
+ 'balancerpy == 0.0.7'
39
41
  ],
40
42
  zip_safe=False)
@@ -1,35 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: DeFiPy
3
- Version: 0.0.9
4
- Summary: DeFi for Python
5
- Home-page: http://github.com/icmoore/defipy
6
- Author: icmoore
7
- Author-email: utiliwire@gmail.com
8
- License: MIT
9
- Description-Content-Type: text/markdown
10
- License-File: LICENSE.txt
11
- Requires-Dist: scipy>=1.7.3
12
- Requires-Dist: gmpy2>=2.0.8
13
- Requires-Dist: uniswappy>=1.1.2
14
- Requires-Dist: stableswappy>=0.0.6
15
- Requires-Dist: balancerpy>=0.0.6
16
-
17
- # defipy
18
- Python package for DeFi modelling
19
- * Currently in Beta (version 0.0.9) until fully tested and analyzed
20
- * Decoupled into sub-repos, which include: [UniswapPy](https://github.com/icmoore/uniswappy),
21
- [BalancerPy](https://github.com/icmoore/balancerpy), and [StableSwapPy](https://github.com/icmoore/stableswappy)
22
-
23
- ## Install
24
- To install package:
25
- ```
26
- > git clone https://github.com/icmoore/defipy
27
- > pip install .
28
- ```
29
- or
30
- ```
31
- > pip install DeFiPy
32
- ```
33
-
34
- ## DeFi Overview
35
- * Python for DeFi analytics
@@ -1,5 +0,0 @@
1
- scipy>=1.7.3
2
- gmpy2>=2.0.8
3
- uniswappy>=1.1.2
4
- stableswappy>=0.0.6
5
- balancerpy>=0.0.6
DeFiPy-0.0.9/PKG-INFO DELETED
@@ -1,35 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: DeFiPy
3
- Version: 0.0.9
4
- Summary: DeFi for Python
5
- Home-page: http://github.com/icmoore/defipy
6
- Author: icmoore
7
- Author-email: utiliwire@gmail.com
8
- License: MIT
9
- Description-Content-Type: text/markdown
10
- License-File: LICENSE.txt
11
- Requires-Dist: scipy>=1.7.3
12
- Requires-Dist: gmpy2>=2.0.8
13
- Requires-Dist: uniswappy>=1.1.2
14
- Requires-Dist: stableswappy>=0.0.6
15
- Requires-Dist: balancerpy>=0.0.6
16
-
17
- # defipy
18
- Python package for DeFi modelling
19
- * Currently in Beta (version 0.0.9) until fully tested and analyzed
20
- * Decoupled into sub-repos, which include: [UniswapPy](https://github.com/icmoore/uniswappy),
21
- [BalancerPy](https://github.com/icmoore/balancerpy), and [StableSwapPy](https://github.com/icmoore/stableswappy)
22
-
23
- ## Install
24
- To install package:
25
- ```
26
- > git clone https://github.com/icmoore/defipy
27
- > pip install .
28
- ```
29
- or
30
- ```
31
- > pip install DeFiPy
32
- ```
33
-
34
- ## DeFi Overview
35
- * Python for DeFi analytics
DeFiPy-0.0.9/README.md DELETED
@@ -1,19 +0,0 @@
1
- # defipy
2
- Python package for DeFi modelling
3
- * Currently in Beta (version 0.0.9) until fully tested and analyzed
4
- * Decoupled into sub-repos, which include: [UniswapPy](https://github.com/icmoore/uniswappy),
5
- [BalancerPy](https://github.com/icmoore/balancerpy), and [StableSwapPy](https://github.com/icmoore/stableswappy)
6
-
7
- ## Install
8
- To install package:
9
- ```
10
- > git clone https://github.com/icmoore/defipy
11
- > pip install .
12
- ```
13
- or
14
- ```
15
- > pip install DeFiPy
16
- ```
17
-
18
- ## DeFi Overview
19
- * Python for DeFi analytics
File without changes
File without changes