DeFiPy 1.0.0__tar.gz → 1.0.1__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.
- {defipy-1.0.0 → defipy-1.0.1}/DeFiPy.egg-info/PKG-INFO +2 -2
- {defipy-1.0.0 → defipy-1.0.1}/DeFiPy.egg-info/SOURCES.txt +2 -1
- {defipy-1.0.0 → defipy-1.0.1}/DeFiPy.egg-info/requires.txt +1 -1
- {defipy-1.0.0 → defipy-1.0.1}/PKG-INFO +2 -2
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/__init__.py +2 -1
- defipy-1.0.1/python/prod/analytics/risk/__init__.py +1 -0
- defipy-1.0.1/python/prod/analytics/simulate/__init__.py +1 -0
- {defipy-1.0.0 → defipy-1.0.1}/setup.py +4 -3
- defipy-1.0.0/python/prod/simulate/__init__.py +0 -1
- {defipy-1.0.0 → defipy-1.0.1}/DeFiPy.egg-info/dependency_links.txt +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/DeFiPy.egg-info/not-zip-safe +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/DeFiPy.egg-info/top_level.txt +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/LICENSE.txt +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/README.md +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/erc/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/math/basic/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/math/interest/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/math/interest/ips/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/math/interest/ips/aggregate/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/math/model/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/math/risk/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/process/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/process/burn/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/process/deposit/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/process/join/Join.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/process/join/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/process/liquidity/AddLiquidity.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/process/liquidity/RemoveLiquidity.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/process/liquidity/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/process/mint/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/process/swap/Swap.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/process/swap/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/utils/client/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/utils/data/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/utils/interfaces/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/utils/tools/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/python/prod/utils/tools/v3/__init__.py +0 -0
- {defipy-1.0.0 → defipy-1.0.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: DeFiPy
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: DeFi Analytics with Python
|
|
5
5
|
Home-page: http://github.com/defipy-devs/defipy
|
|
6
6
|
Author: icmoore
|
|
@@ -10,7 +10,7 @@ Description-Content-Type: text/markdown
|
|
|
10
10
|
License-File: LICENSE.txt
|
|
11
11
|
Requires-Dist: scipy>=1.7.3
|
|
12
12
|
Requires-Dist: bokeh==3.3.4
|
|
13
|
-
Requires-Dist: uniswappy==1.
|
|
13
|
+
Requires-Dist: uniswappy==1.7.0
|
|
14
14
|
Requires-Dist: stableswappy==1.0.0
|
|
15
15
|
Requires-Dist: balancerpy==1.0.1
|
|
16
16
|
|
|
@@ -15,6 +15,8 @@ defipy.egg-info/not-zip-safe
|
|
|
15
15
|
defipy.egg-info/requires.txt
|
|
16
16
|
defipy.egg-info/top_level.txt
|
|
17
17
|
python/prod/__init__.py
|
|
18
|
+
python/prod/analytics/risk/__init__.py
|
|
19
|
+
python/prod/analytics/simulate/__init__.py
|
|
18
20
|
python/prod/erc/__init__.py
|
|
19
21
|
python/prod/math/basic/__init__.py
|
|
20
22
|
python/prod/math/interest/__init__.py
|
|
@@ -33,7 +35,6 @@ python/prod/process/liquidity/__init__.py
|
|
|
33
35
|
python/prod/process/mint/__init__.py
|
|
34
36
|
python/prod/process/swap/Swap.py
|
|
35
37
|
python/prod/process/swap/__init__.py
|
|
36
|
-
python/prod/simulate/__init__.py
|
|
37
38
|
python/prod/utils/client/__init__.py
|
|
38
39
|
python/prod/utils/data/__init__.py
|
|
39
40
|
python/prod/utils/interfaces/__init__.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: DeFiPy
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: DeFi Analytics with Python
|
|
5
5
|
Home-page: http://github.com/defipy-devs/defipy
|
|
6
6
|
Author: icmoore
|
|
@@ -10,7 +10,7 @@ Description-Content-Type: text/markdown
|
|
|
10
10
|
License-File: LICENSE.txt
|
|
11
11
|
Requires-Dist: scipy>=1.7.3
|
|
12
12
|
Requires-Dist: bokeh==3.3.4
|
|
13
|
-
Requires-Dist: uniswappy==1.
|
|
13
|
+
Requires-Dist: uniswappy==1.7.0
|
|
14
14
|
Requires-Dist: stableswappy==1.0.0
|
|
15
15
|
Requires-Dist: balancerpy==1.0.1
|
|
16
16
|
|
|
@@ -12,7 +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.process.join import *
|
|
15
|
-
from defipy.simulate import *
|
|
15
|
+
from defipy.analytics.simulate import *
|
|
16
|
+
from defipy.analytics.risk import *
|
|
16
17
|
from defipy.utils.interfaces import *
|
|
17
18
|
from defipy.utils.data import *
|
|
18
19
|
from defipy.utils.client import *
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from uniswappy.analytics.risk import *
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from uniswappy.analytics.simulate import *
|
|
@@ -4,7 +4,7 @@ with open('README.md') as f:
|
|
|
4
4
|
long_description = f.read()
|
|
5
5
|
|
|
6
6
|
setup(name='DeFiPy',
|
|
7
|
-
version='1.0.
|
|
7
|
+
version='1.0.1',
|
|
8
8
|
description='DeFi Analytics with Python',
|
|
9
9
|
long_description=long_description,
|
|
10
10
|
long_description_content_type="text/markdown",
|
|
@@ -29,7 +29,8 @@ setup(name='DeFiPy',
|
|
|
29
29
|
'defipy.process.mint',
|
|
30
30
|
'defipy.process.swap',
|
|
31
31
|
'defipy.process.join',
|
|
32
|
-
'defipy.simulate',
|
|
32
|
+
'defipy.analytics.simulate',
|
|
33
|
+
'defipy.analytics.risk',
|
|
33
34
|
'defipy.utils.interfaces',
|
|
34
35
|
'defipy.utils.data',
|
|
35
36
|
'defipy.utils.client',
|
|
@@ -39,7 +40,7 @@ setup(name='DeFiPy',
|
|
|
39
40
|
install_requires=[
|
|
40
41
|
'scipy >= 1.7.3',
|
|
41
42
|
'bokeh == 3.3.4',
|
|
42
|
-
'uniswappy == 1.
|
|
43
|
+
'uniswappy == 1.7.0',
|
|
43
44
|
'stableswappy == 1.0.0',
|
|
44
45
|
'balancerpy == 1.0.1'
|
|
45
46
|
],
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from uniswappy.simulate import *
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|