-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.cfg
118 lines (102 loc) · 2.37 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[bumpversion]
current_version = 0.5.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>.*)(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}.{release}{build}
{major}.{minor}.{patch}
commit = True
tag = True
[bumpversion:part:release]
first_value = release
optional_value = release
values =
a
b
rc
release
[bumpversion:part:build]
[flake8]
exclude =
env
git_hooks
.git
__pycache__
*.pyc
max-complexity = 10
max-line-length = 110
ignore =
W503
W504
E203
[tool:pytest]
addopts = -s --pdbcls=IPython.terminal.debugger:Pdb
filterwarnings =
ignore::DeprecationWarning:eth_abi.*:
ignore::DeprecationWarning:altair.*:
ignore::UserWarning:vyper.*:
[mypy]
warn_unused_configs = True
[mypy-altair]
ignore_missing_imports = True
[mypy-pandas]
ignore_missing_imports = True
[mypy-gmpy2]
ignore_missing_imports = True
[mypy-matplotlib]
ignore_missing_imports = True
[mypy-matplotlib.pyplot]
ignore_missing_imports = True
[mypy-scipy]
ignore_missing_imports = True
[mypy-scipy.optimize]
ignore_missing_imports = True
[bumpversion:file:curvesim/version.py]
[metadata]
name = curvesim
description = Simulate Curve pools
long_description = file: README.md
long_description_content_type = text/markdown
version = attr: curvesim.version.__version__
url = https://github.com/curveresearch/curvesim
author = Curve Research
author_email = [email protected]
license = MIT
license_files = LICENSE.md
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
Intended Audience :: Developers
Intended Audience :: Financial and Insurance Industry
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
project_urls =
Documentation = https://curvesim.readthedocs.io
Source = https://github.com/curveresearch/curvesim
Tracker = https://github.com/curveresearch/curvesim/issues
[options]
packages = find:
python_requires = >= 3.8
install_requires =
numpy >= 1.23.4
pandas >= 1.5.1
scipy >= 1.9.3, != 1.11.2
gmpy2 >= 2.1.2
matplotlib >= 3.5.3
web3 >= 6.0.0b4
requests >= 2.28.1
tenacity >= 8.1.0
python-dotenv >= 0.21.0
altair >= 5.0.0
[options.packages.find]
exclude =
.github
data
git_hooks
results
test