DeFiPy 1.0.9__tar.gz → 1.0.10__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.9 → defipy-1.0.10}/DeFiPy.egg-info/PKG-INFO +2 -19
- {defipy-1.0.9 → defipy-1.0.10}/PKG-INFO +2 -19
- {defipy-1.0.9 → defipy-1.0.10}/setup.py +1 -10
- {defipy-1.0.9 → defipy-1.0.10}/DeFiPy.egg-info/SOURCES.txt +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/DeFiPy.egg-info/dependency_links.txt +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/DeFiPy.egg-info/not-zip-safe +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/DeFiPy.egg-info/requires.txt +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/DeFiPy.egg-info/top_level.txt +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/LICENSE +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/NOTICE +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/README.md +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/agents/ImpermanentLossAgent.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/agents/PriceThresholdSwapAgent.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/agents/TVLBasedLiquidityExitAgent.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/agents/VolumeSpikeNotifierAgent.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/agents/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/agents/config/ImpermanentLossConfig.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/agents/config/PriceThresholdConfig.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/agents/config/TVLExitConfig.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/agents/config/VolumeSpikeConfig.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/agents/config/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/agents/data/UniswapPoolData.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/agents/data/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/analytics/risk/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/analytics/simulate/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/erc/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/math/basic/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/math/interest/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/math/interest/ips/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/math/interest/ips/aggregate/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/math/model/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/math/risk/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/process/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/process/burn/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/process/deposit/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/process/join/Join.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/process/join/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/process/liquidity/AddLiquidity.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/process/liquidity/RemoveLiquidity.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/process/liquidity/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/process/mint/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/process/swap/Swap.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/process/swap/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/utils/client/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/utils/client/contract/ExecuteScript.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/utils/client/contract/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/utils/data/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/utils/interfaces/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/utils/tools/UniswapScriptHelper.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/utils/tools/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/python/prod/utils/tools/v3/__init__.py +0 -0
- {defipy-1.0.9 → defipy-1.0.10}/setup.cfg +0 -0
|
@@ -1,18 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: DeFiPy
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.10
|
|
4
4
|
Summary: Python SDK for DeFi Analytics, Simulation, and Agents
|
|
5
5
|
Home-page: http://github.com/defipy-devs/defipy
|
|
6
6
|
Author: icmoore
|
|
7
7
|
Author-email: defipy.devs@gmail.com
|
|
8
8
|
License: Apache-2.0
|
|
9
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Operating System :: OS Independent
|
|
12
|
-
Classifier: Intended Audience :: Developers
|
|
13
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
|
-
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
15
|
-
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
16
9
|
Description-Content-Type: text/markdown
|
|
17
10
|
License-File: LICENSE
|
|
18
11
|
License-File: NOTICE
|
|
@@ -22,16 +15,6 @@ Requires-Dist: bokeh==3.3.4
|
|
|
22
15
|
Requires-Dist: uniswappy>=1.7.4
|
|
23
16
|
Requires-Dist: stableswappy>=1.0.3
|
|
24
17
|
Requires-Dist: balancerpy>=1.0.4
|
|
25
|
-
Dynamic: author
|
|
26
|
-
Dynamic: author-email
|
|
27
|
-
Dynamic: classifier
|
|
28
|
-
Dynamic: description
|
|
29
|
-
Dynamic: description-content-type
|
|
30
|
-
Dynamic: home-page
|
|
31
|
-
Dynamic: license
|
|
32
|
-
Dynamic: license-file
|
|
33
|
-
Dynamic: requires-dist
|
|
34
|
-
Dynamic: summary
|
|
35
18
|
|
|
36
19
|
# DeFiPy: Python SDK for DeFi Analytics and Agents
|
|
37
20
|
|
|
@@ -1,18 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: DeFiPy
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.10
|
|
4
4
|
Summary: Python SDK for DeFi Analytics, Simulation, and Agents
|
|
5
5
|
Home-page: http://github.com/defipy-devs/defipy
|
|
6
6
|
Author: icmoore
|
|
7
7
|
Author-email: defipy.devs@gmail.com
|
|
8
8
|
License: Apache-2.0
|
|
9
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Operating System :: OS Independent
|
|
12
|
-
Classifier: Intended Audience :: Developers
|
|
13
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
|
-
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
15
|
-
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
16
9
|
Description-Content-Type: text/markdown
|
|
17
10
|
License-File: LICENSE
|
|
18
11
|
License-File: NOTICE
|
|
@@ -22,16 +15,6 @@ Requires-Dist: bokeh==3.3.4
|
|
|
22
15
|
Requires-Dist: uniswappy>=1.7.4
|
|
23
16
|
Requires-Dist: stableswappy>=1.0.3
|
|
24
17
|
Requires-Dist: balancerpy>=1.0.4
|
|
25
|
-
Dynamic: author
|
|
26
|
-
Dynamic: author-email
|
|
27
|
-
Dynamic: classifier
|
|
28
|
-
Dynamic: description
|
|
29
|
-
Dynamic: description-content-type
|
|
30
|
-
Dynamic: home-page
|
|
31
|
-
Dynamic: license
|
|
32
|
-
Dynamic: license-file
|
|
33
|
-
Dynamic: requires-dist
|
|
34
|
-
Dynamic: summary
|
|
35
18
|
|
|
36
19
|
# DeFiPy: Python SDK for DeFi Analytics and Agents
|
|
37
20
|
|
|
@@ -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.10',
|
|
8
8
|
description='Python SDK for DeFi Analytics, Simulation, and Agents',
|
|
9
9
|
long_description=long_description,
|
|
10
10
|
long_description_content_type="text/markdown",
|
|
@@ -12,15 +12,6 @@ setup(name='DeFiPy',
|
|
|
12
12
|
author = "icmoore",
|
|
13
13
|
author_email = "defipy.devs@gmail.com",
|
|
14
14
|
license="Apache-2.0",
|
|
15
|
-
classifiers=[
|
|
16
|
-
"License :: OSI Approved :: Apache Software License",
|
|
17
|
-
"Programming Language :: Python :: 3",
|
|
18
|
-
"Operating System :: OS Independent",
|
|
19
|
-
"Intended Audience :: Developers",
|
|
20
|
-
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
21
|
-
"Topic :: Scientific/Engineering :: Information Analysis",
|
|
22
|
-
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
|
|
23
|
-
],
|
|
24
15
|
package_dir = {"defipy": "python/prod"},
|
|
25
16
|
packages=[
|
|
26
17
|
'defipy',
|
|
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
|
|
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
|