DeFiPy 0.0.13__tar.gz → 0.0.14__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 (28) hide show
  1. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/DeFiPy.egg-info/PKG-INFO +8 -5
  2. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/DeFiPy.egg-info/requires.txt +0 -1
  3. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/PKG-INFO +8 -5
  4. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/README.md +7 -3
  5. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/setup.py +1 -2
  6. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/DeFiPy.egg-info/SOURCES.txt +0 -0
  7. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/DeFiPy.egg-info/dependency_links.txt +0 -0
  8. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/DeFiPy.egg-info/not-zip-safe +0 -0
  9. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/DeFiPy.egg-info/top_level.txt +0 -0
  10. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/LICENSE.txt +0 -0
  11. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/__init__.py +0 -0
  12. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/erc/__init__.py +0 -0
  13. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/math/basic/__init__.py +0 -0
  14. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/math/interest/__init__.py +0 -0
  15. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/math/interest/ips/__init__.py +0 -0
  16. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/math/interest/ips/aggregate/__init__.py +0 -0
  17. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/math/model/__init__.py +0 -0
  18. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/math/risk/__init__.py +0 -0
  19. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/process/__init__.py +0 -0
  20. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/process/burn/__init__.py +0 -0
  21. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/process/deposit/__init__.py +0 -0
  22. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/process/liquidity/__init__.py +0 -0
  23. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/process/mint/__init__.py +0 -0
  24. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/process/swap/__init__.py +0 -0
  25. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/simulate/__init__.py +0 -0
  26. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/utils/data/__init__.py +0 -0
  27. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/python/prod/utils/interfaces/__init__.py +0 -0
  28. {DeFiPy-0.0.13 → DeFiPy-0.0.14}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: DeFiPy
3
- Version: 0.0.13
3
+ Version: 0.0.14
4
4
  Summary: DeFi Analytics with Python
5
5
  Home-page: http://github.com/defipy-devs/defipy
6
6
  Author: icmoore
@@ -9,25 +9,28 @@ License: MIT
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE.txt
11
11
  Requires-Dist: scipy>=1.7.3
12
- Requires-Dist: gmpy2>=2.0.8
13
12
  Requires-Dist: uniswappy==1.1.4
14
13
  Requires-Dist: stableswappy==0.0.9
15
14
  Requires-Dist: balancerpy==0.0.8
16
15
 
17
16
  # defipy
18
- DeFi Analytics with Python (version 0.0.13)
17
+ DeFi Analytics with Python (version 0.0.14)
19
18
  * Decoupled into [UniswapPy](https://github.com/icmoore/uniswappy),
20
19
  [BalancerPy](https://github.com/icmoore/balancerpy), and [StableSwapPy](https://github.com/icmoore/stableswappy) python packages
21
20
 
22
21
  ## Install
23
- To install package:
22
+ Must first install gmpy2 python package to handle the precision within the StableSwap protocol (requires CPython 3.7 or above). To install the latest release with pip:
23
+ ```
24
+ > pip install gmpy2
25
+ ```
26
+ Also, in many cases will need to have required libraries (GMP, MPFR and MPC) already installed on your system, see [gmpy2 installation docs](https://gmpy2.readthedocs.io/en/latest/install.html) for more info. Once setup, install the latest release of DeFiPy with pip:
24
27
  ```
25
28
  > git clone https://github.com/defipy-devs/defipy
26
29
  > pip install .
27
30
  ```
28
31
  or
29
32
  ```
30
- > pip install DeFiPy
33
+ > pip install defipy
31
34
  ```
32
35
 
33
36
  Uniswap Example
@@ -1,5 +1,4 @@
1
1
  scipy>=1.7.3
2
- gmpy2>=2.0.8
3
2
  uniswappy==1.1.4
4
3
  stableswappy==0.0.9
5
4
  balancerpy==0.0.8
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: DeFiPy
3
- Version: 0.0.13
3
+ Version: 0.0.14
4
4
  Summary: DeFi Analytics with Python
5
5
  Home-page: http://github.com/defipy-devs/defipy
6
6
  Author: icmoore
@@ -9,25 +9,28 @@ License: MIT
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE.txt
11
11
  Requires-Dist: scipy>=1.7.3
12
- Requires-Dist: gmpy2>=2.0.8
13
12
  Requires-Dist: uniswappy==1.1.4
14
13
  Requires-Dist: stableswappy==0.0.9
15
14
  Requires-Dist: balancerpy==0.0.8
16
15
 
17
16
  # defipy
18
- DeFi Analytics with Python (version 0.0.13)
17
+ DeFi Analytics with Python (version 0.0.14)
19
18
  * Decoupled into [UniswapPy](https://github.com/icmoore/uniswappy),
20
19
  [BalancerPy](https://github.com/icmoore/balancerpy), and [StableSwapPy](https://github.com/icmoore/stableswappy) python packages
21
20
 
22
21
  ## Install
23
- To install package:
22
+ Must first install gmpy2 python package to handle the precision within the StableSwap protocol (requires CPython 3.7 or above). To install the latest release with pip:
23
+ ```
24
+ > pip install gmpy2
25
+ ```
26
+ Also, in many cases will need to have required libraries (GMP, MPFR and MPC) already installed on your system, see [gmpy2 installation docs](https://gmpy2.readthedocs.io/en/latest/install.html) for more info. Once setup, install the latest release of DeFiPy with pip:
24
27
  ```
25
28
  > git clone https://github.com/defipy-devs/defipy
26
29
  > pip install .
27
30
  ```
28
31
  or
29
32
  ```
30
- > pip install DeFiPy
33
+ > pip install defipy
31
34
  ```
32
35
 
33
36
  Uniswap Example
@@ -1,17 +1,21 @@
1
1
  # defipy
2
- DeFi Analytics with Python (version 0.0.13)
2
+ DeFi Analytics with Python (version 0.0.14)
3
3
  * Decoupled into [UniswapPy](https://github.com/icmoore/uniswappy),
4
4
  [BalancerPy](https://github.com/icmoore/balancerpy), and [StableSwapPy](https://github.com/icmoore/stableswappy) python packages
5
5
 
6
6
  ## Install
7
- To install package:
7
+ Must first install gmpy2 python package to handle the precision within the StableSwap protocol (requires CPython 3.7 or above). To install the latest release with pip:
8
+ ```
9
+ > pip install gmpy2
10
+ ```
11
+ Also, in many cases will need to have required libraries (GMP, MPFR and MPC) already installed on your system, see [gmpy2 installation docs](https://gmpy2.readthedocs.io/en/latest/install.html) for more info. Once setup, install the latest release of DeFiPy with pip:
8
12
  ```
9
13
  > git clone https://github.com/defipy-devs/defipy
10
14
  > pip install .
11
15
  ```
12
16
  or
13
17
  ```
14
- > pip install DeFiPy
18
+ > pip install defipy
15
19
  ```
16
20
 
17
21
  Uniswap Example
@@ -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='0.0.13',
7
+ version='0.0.14',
8
8
  description='DeFi Analytics with Python',
9
9
  long_description=long_description,
10
10
  long_description_content_type="text/markdown",
@@ -34,7 +34,6 @@ setup(name='DeFiPy',
34
34
  ],
35
35
  install_requires=[
36
36
  'scipy >= 1.7.3',
37
- 'gmpy2 >= 2.0.8',
38
37
  'uniswappy == 1.1.4',
39
38
  'stableswappy == 0.0.9',
40
39
  'balancerpy == 0.0.8'
File without changes
File without changes
File without changes